:root {
  --bg: #f7f9fb;
  --surface: #ffffff;
  --surface-soft: #eef4ff;
  --text: #17202a;
  --muted: #5f6f82;
  --line: #dfe7f1;
  --primary: #1259c3;
  --primary-dark: #0c3f8d;
  --green: #168a4a;
  --amber: #b86b00;
  --red: #c0392b;
  --purple: #7c3aed;
  --shadow: 0 20px 50px rgba(22, 33, 54, 0.12);
  --shadow-strong: 0 28px 80px rgba(18, 47, 90, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 10%, rgba(18, 89, 195, 0.10), transparent 28%),
    radial-gradient(circle at 88% 6%, rgba(22, 138, 74, 0.10), transparent 26%),
    linear-gradient(180deg, #f7f9fb 0%, #eef4fb 100%);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 249, 251, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(223, 231, 241, 0.8);
}

.nav {
  width: min(1120px, calc(100% - 32px));
  min-height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--primary);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid var(--primary);
  box-shadow: 0 10px 24px rgba(18, 89, 195, 0.16);
  transition: transform 0.16s ease, background 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.button:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(18, 89, 195, 0.22);
}

.button.secondary {
  background: #fff;
  color: var(--primary);
  border-color: var(--line);
  box-shadow: none;
}

.whatsapp-button {
  background: #128c4a;
  border-color: #128c4a;
}

.whatsapp-button:hover {
  background: #0d7a3e;
  border-color: #0d7a3e;
}

.wa-icon {
  width: 17px;
  height: 17px;
  display: inline-block;
  flex: 0 0 auto;
  margin-right: 7px;
  border-radius: 50%;
  background: currentColor;
  position: relative;
}

.wa-icon::before {
  content: "";
  position: absolute;
  inset: 3px;
  border: 2px solid #fff;
  border-radius: 50%;
}

.wa-icon::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 5px;
  left: 2px;
  bottom: 1px;
  background: currentColor;
  transform: rotate(-25deg);
  border-radius: 1px;
}

.wa-icon.small {
  width: 14px;
  height: 14px;
  margin-right: 5px;
}

.hero {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 74px 0 54px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 42px;
  align-items: center;
}

.hero-modern {
  grid-template-columns: minmax(0, 0.86fr) minmax(500px, 1.14fr);
  padding-top: 82px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--primary);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 1.12;
  margin: 0;
}

h1 {
  font-size: clamp(38px, 5vw, 62px);
}

h2 {
  font-size: clamp(28px, 3.2vw, 42px);
}

h3 {
  font-size: 20px;
}

.lead {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.small-lead {
  font-size: 16px;
  margin-top: 12px;
}

.price-strip {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 9px 12px;
  border: 1px solid rgba(18, 89, 195, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 30px rgba(22, 33, 54, 0.08);
}

.price-strip strong {
  color: var(--primary-dark);
}

.price-strip span {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.trust-item {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  padding: 12px;
}

.trust-item strong {
  display: block;
  font-size: 14px;
}

.trust-item span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-top: 3px;
}

.laptop {
  position: relative;
  padding: 14px 14px 24px;
  border-radius: 20px;
  background: #182234;
  box-shadow: var(--shadow);
  transform: perspective(1200px) rotateX(2deg) rotateY(-4deg);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.laptop:hover {
  transform: perspective(1200px) rotateX(0deg) rotateY(0deg) translateY(-3px);
  box-shadow: var(--shadow-strong);
}

.laptop::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 7px;
  height: 5px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.18);
}

.app-frame {
  overflow: hidden;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.app-topbar {
  height: 42px;
  background: #fff;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}

.dots {
  display: flex;
  gap: 6px;
}

.dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #cbd5e1;
}

.app-title {
  font-size: 13px;
  font-weight: 800;
}

.app-content {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 14px;
  padding: 16px;
}

.richer-app {
  grid-template-columns: 210px 1fr;
  background:
    linear-gradient(180deg, rgba(238, 244, 255, 0.65), rgba(248, 250, 252, 0));
}

.mini-calendar,
.task-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
}

.month-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 12px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.calendar-grid span {
  aspect-ratio: 1;
  border-radius: 6px;
  background: #eef2f7;
}

.calendar-grid .active {
  background: var(--primary);
}

.calendar-grid .warm {
  background: #f8d7a6;
}

.calendar-grid .green {
  background: #bfe8cf;
}

.calendar-grid .purple {
  background: #d7c7ff;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 25px;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: #eef4ff;
  color: #1d4f91;
}

.chip.blue {
  background: #e8f1ff;
  color: #1259c3;
}

.chip.green {
  background: #e6f6ec;
  color: var(--green);
}

.chip.purple {
  background: #f1eaff;
  color: var(--purple);
}

.mini-link {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.task-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.task-header strong {
  font-size: 15px;
}

.task-header small {
  color: var(--muted);
  display: block;
  font-size: 12px;
  margin-top: 2px;
}

.search-pill {
  height: 28px;
  width: 150px;
  border-radius: 7px;
  background: #eef2f7;
}

.task-list {
  display: grid;
  gap: 10px;
}

.task-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  display: grid;
  gap: 8px;
  background: #fff;
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.task-card:hover,
.task-card.highlighted {
  border-color: rgba(18, 89, 195, 0.22);
  box-shadow: 0 14px 30px rgba(22, 33, 54, 0.08);
  transform: translateY(-1px);
}

.task-card.sent {
  opacity: 0.58;
}

.task-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.tag {
  font-size: 11px;
  font-weight: 800;
  border-radius: 999px;
  padding: 4px 8px;
  background: var(--surface-soft);
  color: var(--primary);
}

.tag.green {
  background: #e6f6ec;
  color: var(--green);
}

.tag.amber {
  background: #fff4dd;
  color: var(--amber);
}

.tag.purple {
  background: #f1eaff;
  color: var(--purple);
}

.task-card p {
  color: var(--muted);
  margin: 0;
  font-size: 13px;
}

.whatsapp-line {
  height: 30px;
  width: 118px;
  border-radius: 7px;
  background: #e9f8ef;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}

.message-preview {
  display: flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  border-radius: 8px;
  background: #e9f8ef;
  color: #12643a;
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 700;
}

.showcase {
  position: relative;
}

.floating-card {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 2px;
  padding: 12px 14px;
  border: 1px solid rgba(223, 231, 241, 0.9);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(22, 33, 54, 0.14);
  backdrop-filter: blur(12px);
  animation: float-soft 4.5s ease-in-out infinite;
}

.floating-card strong {
  font-size: 13px;
}

.floating-card span {
  color: var(--muted);
  font-size: 12px;
}

.insight-card {
  top: -22px;
  left: 18px;
}

.revenue-card {
  right: -10px;
  bottom: 36px;
  animation-delay: 0.8s;
}

@keyframes float-soft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 58px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading p {
  color: var(--muted);
  font-size: 17px;
  margin: 12px 0 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.feature:hover {
  transform: translateY(-2px);
  border-color: rgba(18, 89, 195, 0.2);
  box-shadow: 0 16px 34px rgba(22, 33, 54, 0.08);
}

.feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--surface-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.feature p {
  color: var(--muted);
  margin: 10px 0 0;
}

.band {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.problem-section {
  padding-top: 72px;
}

.problem-grid,
.category-grid,
.control-grid {
  display: grid;
  gap: 16px;
}

.problem-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.problem-card {
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.82);
  padding: 24px;
  box-shadow: 0 18px 44px rgba(22, 33, 54, 0.08);
}

.problem-card span {
  color: var(--primary);
  font-weight: 900;
  font-size: 13px;
}

.problem-card h3 {
  margin-top: 16px;
}

.problem-card p {
  color: var(--muted);
  margin: 12px 0 0;
}

.category-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.category-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 22px;
  min-height: 168px;
}

.category-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--primary);
}

.category-card.cart::before {
  background: var(--amber);
}

.category-card.pickup::before,
.category-card.review::before {
  background: var(--green);
}

.category-card.cancelled::before {
  background: var(--red);
}

.category-card.repurchase::before {
  background: var(--purple);
}

.category-card strong {
  display: block;
  font-size: 18px;
}

.category-card p {
  color: var(--muted);
  margin: 10px 0 0;
}

.control-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-section {
  padding-top: 30px;
}

.pricing-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 28px;
  align-items: center;
  border: 1px solid rgba(18, 89, 195, 0.16);
  border-radius: 14px;
  background: linear-gradient(135deg, #fff 0%, #eef5ff 100%);
  padding: 30px;
  box-shadow: var(--shadow);
}

.pricing-card p {
  color: var(--muted);
  margin: 12px 0 0;
}

.price-box {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 22px;
  text-align: center;
}

.price-box span {
  color: var(--muted);
  font-weight: 800;
}

.price-box strong {
  font-size: 58px;
  line-height: 1;
  color: var(--primary-dark);
}

.price-box small {
  color: var(--muted);
  font-weight: 800;
}

.price-box p {
  margin: 4px 0 18px;
}

.maker-section {
  padding-top: 18px;
}

.maker-section a:not(.button) {
  display: inline-block;
  margin-top: 10px;
  color: var(--primary);
  font-weight: 800;
  text-decoration: none;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  counter-reset: step;
}

.step {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  padding: 18px;
  counter-increment: step;
}

.step::before {
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  margin-bottom: 14px;
}

.step p {
  margin: 8px 0 0;
  color: var(--muted);
}

.cta {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.cta p {
  color: var(--muted);
  margin: 8px 0 0;
}

.site-footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 14px;
}

.site-footer a {
  text-decoration: none;
  margin-left: 14px;
}

.legal-page {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
  padding: 58px 0;
}

.legal-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 30px;
}

.legal-card h1 {
  font-size: clamp(32px, 4vw, 46px);
}

.legal-card h2 {
  font-size: 22px;
  margin-top: 28px;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.legal-card ul {
  padding-left: 22px;
}

.support-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.support-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #fff;
}

.support-box p {
  margin-bottom: 0;
}

@media (max-width: 920px) {
  .hero,
  .app-content,
  .feature-grid,
  .problem-grid,
  .category-grid,
  .control-grid,
  .pricing-card,
  .workflow,
  .support-options {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 42px;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }

  .floating-card {
    display: none;
  }

  .laptop {
    transform: none;
  }

  .cta,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .laptop {
    padding: 8px 8px 18px;
    border-radius: 14px;
  }

  .task-header,
  .task-card-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .search-pill {
    width: 100%;
  }

  .legal-card {
    padding: 22px;
  }

  .price-box strong {
    font-size: 46px;
  }
}
