:root {
  color-scheme: light;
  --navy-950: #000a18;
  --navy-900: #001432;
  --navy-800: #002e74;
  --blue-700: #0054c3;
  --blue-600: #1177ff;
  --blue-100: #cee9ff;
  --blue-50: #f4faff;
  --gold: #ffb000;
  --gold-dark: #dc8f00;
  --ink: #0d1525;
  --muted: #5f6b7e;
  --line: #d9e4f2;
  --surface: #ffffff;
  --soft: #f6f9fc;
  --shadow: 0 22px 70px rgba(0, 20, 50, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(217, 228, 242, 0.75);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy-900);
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
}

.nav {
  display: flex;
  gap: 24px;
  color: #334154;
  font-size: 0.95rem;
}

.nav a:hover,
.footer-links a:hover {
  color: var(--blue-700);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  color: #fff;
  background: var(--navy-900);
  border-radius: 6px;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.92fr);
  align-items: center;
  gap: clamp(36px, 5vw, 72px);
  min-height: calc(100vh - 75px);
  padding: clamp(48px, 6vw, 86px) clamp(20px, 5vw, 76px) 44px;
  overflow: hidden;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  color: var(--navy-950);
  font-size: clamp(2.55rem, 5.2vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  color: var(--navy-950);
  font-size: clamp(2rem, 3.2vw, 3.7rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  color: var(--navy-900);
  font-size: 1.12rem;
  letter-spacing: 0;
}

.hero-text {
  max-width: 620px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.price-strip {
  display: inline-grid;
  grid-template-columns: auto auto;
  gap: 4px 14px;
  align-items: center;
  margin-bottom: 22px;
  padding: 14px 16px;
  background: #fff7df;
  border: 1px solid #ffe0a0;
  border-radius: 8px;
}

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

.price-strip strong {
  color: var(--navy-950);
  font-size: 1.55rem;
  line-height: 1;
}

.price-strip small {
  grid-column: 1 / -1;
  color: #775600;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 7px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: #061221;
  background: var(--gold);
  box-shadow: 0 16px 28px rgba(255, 176, 0, 0.22);
}

.button.primary:hover {
  background: #ffc13a;
}

.button.ghost {
  color: var(--navy-900);
  background: var(--blue-50);
  border: 1px solid var(--line);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  color: #435168;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 0.92rem;
}

.trust-row strong {
  color: var(--navy-900);
}

.hero-visual {
  position: relative;
  min-height: 540px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 38px 0 auto auto;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(17, 119, 255, 0.17), transparent 66%);
  pointer-events: none;
}

.system-window {
  position: relative;
  z-index: 1;
  width: min(100%, 650px);
  margin: 22px 0 0 auto;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.window-top {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  color: #75849a;
  background: var(--navy-900);
}

.window-top span {
  width: 10px;
  height: 10px;
  background: #85a3c9;
  border-radius: 50%;
}

.window-top small {
  margin-left: auto;
  color: #d5e6ff;
  font-weight: 700;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 18px;
  background: linear-gradient(180deg, #fafdff, #eef6ff);
}

.metric-card,
.chart-panel,
.task-list {
  min-height: 136px;
  padding: 18px;
  background: #fff;
  border: 1px solid #dfebf8;
  border-radius: 8px;
}

.metric-card small,
.metric-card span {
  display: block;
  color: var(--muted);
}

.metric-card strong {
  display: block;
  margin: 8px 0 6px;
  color: var(--navy-950);
  font-size: 2rem;
  line-height: 1;
}

.metric-card.accent {
  color: #fff;
  background: var(--blue-700);
  border-color: var(--blue-700);
}

.metric-card.accent strong,
.metric-card.accent small,
.metric-card.accent span {
  color: #fff;
}

.chart-panel {
  display: flex;
  align-items: end;
  gap: 12px;
}

.bar {
  flex: 1;
  min-width: 24px;
  background: linear-gradient(180deg, var(--gold), var(--gold-dark));
  border-radius: 5px 5px 0 0;
}

.b1 { height: 42%; }
.b2 { height: 72%; }
.b3 { height: 55%; }
.b4 { height: 88%; }
.b5 { height: 66%; }

.task-list {
  display: grid;
  align-content: center;
  gap: 12px;
}

.task-list span {
  position: relative;
  padding-left: 24px;
  color: #2e3b4f;
  font-weight: 700;
}

.task-list span::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 12px;
  height: 7px;
  border-left: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  transform: rotate(-45deg);
}

.phone-card {
  position: absolute;
  right: 6%;
  bottom: 20px;
  z-index: 2;
  display: grid;
  gap: 6px;
  width: min(250px, 56vw);
  padding: 20px;
  color: #fff;
  background: var(--navy-950);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 55px rgba(0, 20, 50, 0.28);
}

.phone-card span {
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.phone-card strong {
  font-size: 1.55rem;
}

.phone-card small {
  color: #cbd8ea;
}

.pain-band {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 36px;
  align-items: end;
  padding: 58px clamp(20px, 5vw, 76px);
  color: #fff;
  background: var(--navy-950);
}

.pain-band h2 {
  margin-bottom: 0;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.pain-band p:not(.eyebrow) {
  margin-bottom: 0;
  color: #d5e0ee;
  font-size: 1.08rem;
}

.section,
.lead-section {
  padding: clamp(66px, 8vw, 112px) clamp(20px, 5vw, 76px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 32px;
}

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

.system-list-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.system-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 38px rgba(0, 20, 50, 0.06);
}

.system-card p {
  color: var(--muted);
}

.system-card a {
  margin-top: auto;
  color: var(--blue-700);
  font-weight: 900;
}

.system-tag {
  align-self: flex-start;
  padding: 6px 10px;
  color: #061221;
  background: var(--gold);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 900;
}

.feature-card {
  min-height: 248px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 38px rgba(0, 20, 50, 0.06);
}

.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  color: var(--navy-900);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: 6px;
  font-weight: 900;
}

.feature-card p,
.split-copy p,
.lead-copy p,
.section-heading p,
.footer p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 42px;
  align-items: center;
  background: var(--soft);
}

.split-copy {
  max-width: 650px;
}

.segment-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.segment-list article {
  min-height: 160px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.segment-list strong,
.segment-list span {
  display: block;
}

.segment-list strong {
  margin-bottom: 10px;
  color: var(--navy-900);
  font-size: 1.08rem;
}

.segment-list span {
  color: var(--muted);
}

.proof-section {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-card {
  display: grid;
  gap: 6px;
  min-height: 180px;
  align-content: center;
  justify-items: center;
  padding: 28px 18px;
  background: #fff;
  text-align: center;
}

.proof-card strong {
  color: var(--blue-700);
  font-size: clamp(2.1rem, 3.4vw, 4.2rem);
  line-height: 1;
}

.proof-card span {
  color: var(--muted);
  font-weight: 700;
}

.testimonials {
  background: #fff;
}

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

.testimonial-card {
  min-height: 220px;
  padding: 24px;
  color: #27364c;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.testimonial-card p {
  font-size: 1.06rem;
}

.testimonial-card strong {
  color: var(--navy-900);
}

.faq-section {
  background: var(--soft);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
}

.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--navy-900);
  font-weight: 900;
}

.faq-list details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.lead-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.75fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: start;
  background: linear-gradient(180deg, var(--blue-50), #fff);
}

.lead-copy {
  max-width: 690px;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #2e3b4f;
  font-weight: 700;
}

.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--navy-900);
  font-size: 0.92rem;
  font-weight: 800;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 48px;
  padding: 0 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cfdbea;
  border-radius: 6px;
  outline: none;
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 4px rgba(17, 119, 255, 0.12);
}

.full {
  grid-column: 1 / -1;
}

.consent {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.consent input {
  min-height: 18px;
  margin-top: 2px;
}

.consent a {
  color: var(--blue-700);
  text-decoration: underline;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  color: var(--blue-700);
  font-weight: 800;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 36px clamp(20px, 5vw, 76px);
  background: var(--navy-950);
}

.footer,
.footer .brand {
  color: #fff;
}

.footer p {
  max-width: 520px;
  margin: 14px 0 0;
  color: #cbd8ea;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #dbe8f8;
  font-weight: 700;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  color: #061221;
  background: var(--gold);
  border-radius: 7px;
  box-shadow: 0 16px 34px rgba(0, 20, 50, 0.18);
  font-weight: 900;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 84px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
  padding: 14px;
  color: #fff;
  background: var(--navy-950);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 20px 48px rgba(0, 20, 50, 0.22);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 0;
  color: #dbe8f8;
  font-size: 0.92rem;
}

.cookie-banner a {
  color: var(--gold);
  text-decoration: underline;
}

.cookie-banner .button {
  min-height: 42px;
  flex: 0 0 auto;
}

.page-hero {
  padding: clamp(58px, 8vw, 118px) clamp(20px, 5vw, 76px) clamp(44px, 6vw, 76px);
  background: linear-gradient(180deg, var(--blue-50), #fff);
}

.page-hero h1 {
  max-width: 880px;
  font-size: clamp(2.35rem, 4.8vw, 5rem);
}

.page-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.15rem;
}

.content-page {
  padding: clamp(48px, 7vw, 92px) clamp(20px, 5vw, 76px);
}

.content-layout {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 34px;
  align-items: start;
}

.content-layout > aside {
  position: sticky;
  top: 92px;
  padding: 22px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.content-layout > aside a {
  display: block;
  padding: 9px 0;
  color: var(--navy-900);
  font-weight: 800;
}

.article-content {
  display: grid;
  gap: 26px;
}

.article-content section {
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.article-content h2 {
  font-size: clamp(1.7rem, 2.4vw, 2.6rem);
}

.article-content p,
.article-content li {
  color: var(--muted);
}

.article-content ul {
  display: grid;
  gap: 10px;
  padding-left: 20px;
}

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

.plan-card {
  display: grid;
  gap: 18px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 38px rgba(0, 20, 50, 0.06);
}

.plan-card.featured {
  border-color: var(--gold);
  box-shadow: 0 18px 54px rgba(255, 176, 0, 0.16);
}

.plan-price {
  color: var(--navy-950);
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
}

.plan-price small {
  color: var(--muted);
  font-size: 0.95rem;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.comparison-table th,
.comparison-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.comparison-table th {
  color: var(--navy-900);
  background: var(--blue-50);
}

.comparison-table td {
  color: var(--muted);
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .hero,
  .pain-band,
  .split,
  .lead-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 430px;
  }

  .feature-grid,
  .system-list-grid,
  .testimonial-grid,
  .plan-grid,
  .proof-section {
    grid-template-columns: 1fr 1fr;
  }

  .content-layout {
    grid-template-columns: 1fr;
  }

  .content-layout > aside {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-inline: 16px;
  }

  .brand span {
    font-size: 0.98rem;
  }

  .header-cta {
    min-height: 38px;
    padding-inline: 12px;
    font-size: 0.88rem;
  }

  .hero {
    padding-inline: 16px;
  }

  .hero-actions,
  .button,
  .header-cta,
  .floating-whatsapp {
    width: 100%;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
  }

  .dashboard-grid,
  .feature-grid,
  .system-list-grid,
  .testimonial-grid,
  .plan-grid,
  .segment-list,
  .proof-section,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .price-strip {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    bottom: 72px;
  }

  .comparison-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .hero-visual {
    min-height: 510px;
  }

  .phone-card {
    right: 16px;
    left: 16px;
    width: auto;
  }

  .section,
  .lead-section,
  .pain-band {
    padding-inline: 16px;
  }

  .footer {
    flex-direction: column;
    padding-bottom: 92px;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}
