:root {
  --deep: #050816;
  --panel: #0d1224;
  --panel-2: #111832;
  --blue: #0f3dff;
  --blue-2: #2d6bff;
  --gold: #d4af37;
  --gold-2: #f5d97a;
  --text: #ffffff;
  --muted: #aeb7d0;
  --line: rgba(255, 255, 255, 0.11);
  --glass: rgba(13, 18, 36, 0.72);
  --page-gradient:
    radial-gradient(circle at 12% 4%, rgba(45, 107, 255, 0.34), transparent 34rem),
    radial-gradient(circle at 86% 10%, rgba(212, 175, 55, 0.20), transparent 30rem),
    radial-gradient(circle at 58% 48%, rgba(11, 27, 76, 0.74), transparent 42rem),
    linear-gradient(145deg, #03050e 0%, #07132d 42%, #0b1020 70%, #050816 100%);
  --mesh-opacity: 0.34;
  --noise-opacity: 0.055;
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.38);
  --radius: 8px;
  --max: 1200px;
  color-scheme: dark;
}

[data-theme="light"] {
  --deep: #f6f8ff;
  --panel: #ffffff;
  --panel-2: #eef3ff;
  --text: #07101f;
  --muted: #5b6680;
  --line: rgba(15, 61, 255, 0.14);
  --glass: rgba(255, 255, 255, 0.76);
  --page-gradient:
    radial-gradient(circle at 12% 4%, rgba(45, 107, 255, 0.15), transparent 32rem),
    radial-gradient(circle at 88% 8%, rgba(212, 175, 55, 0.18), transparent 30rem),
    radial-gradient(circle at 50% 50%, rgba(205, 221, 255, 0.72), transparent 44rem),
    linear-gradient(145deg, #fbfcff 0%, #edf3ff 48%, #fff8e3 100%);
  --mesh-opacity: 0.18;
  --noise-opacity: 0.035;
  --shadow: 0 24px 74px rgba(15, 61, 255, 0.13);
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  background: var(--deep);
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--page-gradient);
  background-attachment: fixed;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 50% 0%, rgba(245, 217, 122, 0.10), transparent 34rem);
  background-size: 96px 96px, 96px 96px, 100% 100%;
  opacity: var(--mesh-opacity);
}

[data-theme="light"] body::before {
  background-image:
    linear-gradient(rgba(15, 61, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 61, 255, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.16), transparent 34rem);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

img,
canvas {
  max-width: 100%;
}

main,
.topbar,
.footer,
.whatsapp-float,
.mobile-sticky-cta {
  position: relative;
  z-index: 2;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: var(--noise-opacity);
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.95) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 60%, rgba(212, 175, 55, 0.75) 0 1px, transparent 1px);
  background-size: 74px 74px, 116px 116px;
}

.topbar {
  position: fixed;
  inset: 16px 16px auto;
  z-index: 30;
  width: min(calc(100% - 32px), var(--max));
  min-height: 68px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 12px;
  background: color-mix(in srgb, var(--panel) 78%, transparent);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px);
}

.brand,
.topbar nav,
.topbar-actions,
.theme-toggle,
.theme-switch,
.btn,
.proof-row,
.field,
.social-proof,
.whatsapp-float,
.mobile-sticky-cta {
  display: inline-flex;
  align-items: center;
}

.brand {
  gap: 10px;
  min-width: 0;
  font-weight: 900;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.topbar nav {
  justify-content: center;
  gap: 6px;
}

.topbar nav a,
.topbar-cta,
.theme-toggle {
  min-height: 42px;
  border-radius: 999px;
  padding: 0 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.topbar nav a:hover,
.theme-toggle:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

.topbar-actions {
  gap: 8px;
}

.theme-toggle {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.theme-toggle span {
  margin-right: 7px;
}

.theme-switch {
  gap: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.04);
}

.theme-switch button {
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  padding: 0 12px;
  color: var(--muted);
  background: transparent;
  font-size: 12px;
  font-weight: 900;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.theme-switch button.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.28), rgba(45, 107, 255, 0.76));
  box-shadow: 0 10px 28px rgba(45, 107, 255, 0.24);
}

.topbar-cta {
  color: #ffffff;
  background: linear-gradient(135deg, #12245c, var(--blue), var(--blue-2));
  box-shadow: 0 15px 42px rgba(45, 107, 255, 0.28), 0 0 0 1px rgba(212, 175, 55, 0.22) inset;
}

.section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 96px 22px;
  scroll-margin-top: 100px;
}

.hero {
  width: min(100%, 1320px);
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(430px, 0.92fr);
  gap: 34px;
  align-items: center;
  padding-top: 110px;
  padding-bottom: 44px;
}

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

.badge,
.eyebrow,
.form-head span,
.compare-card > span,
.cta-band p {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.badge::before,
.eyebrow::before,
.form-head span::before,
.cta-band p::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 22px rgba(212, 175, 55, 0.75);
}

[data-theme="light"] .badge,
[data-theme="light"] .eyebrow,
[data-theme="light"] .form-head span,
[data-theme="light"] .compare-card > span,
[data-theme="light"] .cta-band p,
[data-theme="light"] .proof-row strong {
  color: #8a6a00;
}

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

h1 {
  max-width: 660px;
  margin-bottom: 20px;
  color: var(--text);
  font-size: 52px;
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: 42px;
  line-height: 1.05;
  font-weight: 930;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 610px;
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 19px;
  line-height: 1.45;
  font-weight: 700;
}

[data-theme="light"] .hero-subtitle {
  color: var(--text);
}

.hero-description,
.section-head p,
.ecosystem-intro p,
.suite-copy p,
.final-copy p,
.impact-copy p,
.faq-list p,
.footer p,
.timeline-step p,
.compare-card li,
.compare-card p,
.future-card li,
.answer-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.hero-description {
  max-width: 620px;
  margin-bottom: 26px;
}

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

.btn {
  position: relative;
  isolation: isolate;
  min-height: 54px;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 20px;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.58), transparent);
  transform: translateX(-120%);
}

.btn:hover {
  transform: translateY(-3px);
}

.btn:hover::after {
  opacity: 0.55;
  animation: buttonSweep 900ms ease;
}

@keyframes buttonSweep {
  to {
    transform: translateX(120%);
  }
}

.btn-primary {
  color: #ffffff;
  border-color: rgba(45, 107, 255, 0.54);
  background:
    radial-gradient(circle at 18% 8%, rgba(245, 217, 122, 0.34), transparent 30%),
    linear-gradient(135deg, #10214b 0%, var(--blue) 70%, var(--blue-2) 120%);
  box-shadow: 0 22px 62px rgba(45, 107, 255, 0.32), 0 0 0 1px rgba(212, 175, 55, 0.18) inset;
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

[data-theme="light"] .btn-secondary {
  background: rgba(255, 255, 255, 0.78);
}

.proof-row {
  flex-wrap: wrap;
  gap: 10px;
}

.proof-row div {
  min-width: 128px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  background: rgba(255, 255, 255, 0.045);
}

.proof-row strong {
  display: block;
  color: var(--gold-2);
  font-size: 26px;
  line-height: 1;
}

.proof-row span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.hero-conversion {
  display: grid;
  gap: 14px;
}

.hero-visual,
.lead-form,
.ecosystem-intro,
.symptom-card,
.impact-section,
.compare-card,
.timeline-step,
.suite-visual,
.future-card,
.cta-band,
.faq-list details,
.closing-faq,
.answer-card,
.final-section {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-visual {
  position: relative;
  overflow: hidden;
  margin: 0;
  background:
    radial-gradient(circle at 70% 18%, rgba(212, 175, 55, 0.20), transparent 34%),
    linear-gradient(135deg, rgba(5, 8, 22, 0.94), rgba(13, 18, 36, 0.74));
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 28% 8%, rgba(245, 217, 122, 0.20), transparent 28%),
    linear-gradient(180deg, transparent 48%, rgba(5, 8, 22, 0.64));
}

.hero-visual img {
  width: 100%;
  height: auto;
  max-height: 430px;
  display: block;
  object-fit: contain;
}

.hero-visual figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 12px 14px;
  background: rgba(5, 8, 22, 0.68);
  backdrop-filter: blur(12px);
}

.hero-visual figcaption span,
.hero-visual figcaption strong {
  display: block;
}

.hero-visual figcaption span {
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
}

.hero-visual figcaption strong {
  margin-top: 4px;
  color: #ffffff;
  font-size: 15px;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 18px;
}

.form-head,
.field-wide,
.form-submit,
.social-proof,
.form-status {
  grid-column: 1 / -1;
}

.form-head h2 {
  margin: 0;
  font-size: 25px;
}

.form-head span {
  margin-bottom: 6px;
  font-size: 11px;
}

.field {
  position: relative;
  min-height: 54px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 19px 14px 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

[data-theme="light"] .field input,
[data-theme="light"] .field select,
[data-theme="light"] .field textarea {
  background: rgba(255, 255, 255, 0.86);
}

.field textarea {
  min-height: 82px;
  resize: vertical;
}

.field select {
  appearance: none;
}

.field span {
  position: absolute;
  left: 14px;
  top: 17px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  pointer-events: none;
  transition: transform 160ms ease, color 160ms ease, font-size 160ms ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(45, 107, 255, 0.74);
  box-shadow: 0 0 0 4px rgba(45, 107, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.field input:focus + span,
.field input:not(:placeholder-shown) + span,
.field textarea:focus + span,
.field textarea:not(:placeholder-shown) + span,
.field select:focus + span,
.field select:valid + span {
  color: var(--gold-2);
  font-size: 11px;
  transform: translateY(-11px);
}

.social-proof {
  justify-content: center;
  min-height: 34px;
  margin: 0;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 999px;
  padding: 0 12px;
  color: var(--gold-2);
  background: rgba(212, 175, 55, 0.08);
  font-size: 12px;
  font-weight: 850;
  text-align: center;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.form-status[data-tone="success"] {
  color: #74f0b0;
}

.form-status[data-tone="error"] {
  color: #ff9a9a;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.section-head {
  max-width: 790px;
  margin-bottom: 42px;
}

.ecosystem-intro {
  display: grid;
  grid-template-columns: 0.78fr 0.92fr 0.9fr;
  gap: 26px;
  align-items: center;
  padding: 28px;
}

.ecosystem-intro h2 {
  margin-bottom: 0;
}

.ecosystem-intro a {
  color: var(--gold-2);
  font-weight: 900;
}

.section-image,
.card-image,
.cta-visual {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.section-image::after,
.card-image::after,
.cta-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 20%, rgba(245, 217, 122, 0.16), transparent 30%),
    linear-gradient(180deg, transparent 52%, rgba(5, 8, 22, 0.40));
}

.section-image img,
.card-image img,
.cta-visual img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.section-image img {
  aspect-ratio: 16 / 10;
}

.signal-section .section-head,
.opportunity-section .section-head,
.future-section .section-head {
  max-width: 860px;
}

.symptom-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.symptom-card {
  position: relative;
  min-height: 150px;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.35;
  font-weight: 900;
}

.symptom-card::before {
  content: "✓";
  position: absolute;
  top: 18px;
  left: 18px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #06101f;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  font-size: 14px;
}

.section-punch {
  max-width: 820px;
  margin: 30px 0 0;
  color: var(--text);
  font-size: 24px;
  line-height: 1.35;
  font-weight: 900;
}

.impact-section {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 30px;
  align-items: center;
  padding: 34px;
}

.impact-copy h3 {
  color: var(--gold-2);
  font-size: 30px;
}

.impact-image img {
  min-height: 420px;
  object-fit: cover;
}

.opportunity-grid {
  max-width: none;
  margin-top: 0;
}

.opportunity-grid span {
  min-height: 76px;
  display: grid;
  place-items: center;
  font-size: 15px;
}

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

.compare-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
}

.card-image {
  margin: -10px -10px 22px;
}

.card-image img {
  aspect-ratio: 16 / 8.8;
}

.compare-card::after,
.timeline-step::after,
.lead-form::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(245, 217, 122, 0.14), transparent 34%);
  transition: opacity 180ms ease;
}

.compare-card:hover,
.timeline-step:hover,
.faq-list details:hover {
  border-color: rgba(212, 175, 55, 0.36);
  transform: translateY(-3px);
}

.compare-card:hover::after,
.timeline-step:hover::after,
.lead-form:hover::after {
  opacity: 1;
}

.compare-card ul {
  display: grid;
  gap: 11px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.compare-savalde {
  background:
    radial-gradient(circle at 80% 10%, rgba(212, 175, 55, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(15, 61, 255, 0.16), rgba(255, 255, 255, 0.035)),
    var(--glass);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-2), var(--gold), transparent);
}

.timeline-step {
  position: relative;
  min-height: 242px;
  padding: 26px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.timeline-step > span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 42px;
  border: 1px solid rgba(212, 175, 55, 0.38);
  border-radius: 50%;
  color: #050816;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 0 28px rgba(212, 175, 55, 0.24);
  font-weight: 950;
}

.suite-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 30px;
  align-items: center;
}

.suite-visual {
  overflow: hidden;
}

.suite-visual img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.suite-copy {
  max-width: 560px;
}

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

.feature-grid span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

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

.future-card {
  padding: 30px;
}

.future-card > span {
  display: block;
  margin-bottom: 18px;
  color: var(--text);
  font-size: 26px;
  line-height: 1.1;
  font-weight: 950;
}

.future-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.future-risk {
  background:
    radial-gradient(circle at 15% 0%, rgba(255, 120, 120, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.060), rgba(255, 255, 255, 0.025)),
    var(--glass);
}

.future-growth {
  background:
    radial-gradient(circle at 80% 0%, rgba(212, 175, 55, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(45, 107, 255, 0.16), rgba(255, 255, 255, 0.035)),
    var(--glass);
}

.closing-faq {
  padding: 38px;
  background:
    radial-gradient(circle at 14% 4%, rgba(212, 175, 55, 0.16), transparent 30%),
    radial-gradient(circle at 92% 0%, rgba(45, 107, 255, 0.20), transparent 32%),
    var(--glass);
}

.closing-faq .section-head {
  margin-bottom: 28px;
}

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

.answer-card {
  padding: 22px;
  box-shadow: none;
}

.answer-card h3 {
  color: var(--text);
}

.answer-card p {
  margin-bottom: 0;
}

.closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.cta-band {
  padding: 42px;
  text-align: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(45, 107, 255, 0.22), transparent 28%),
    radial-gradient(circle at 80% 0%, rgba(212, 175, 55, 0.18), transparent 28%),
    var(--glass);
}

.cta-visual {
  width: min(100%, 760px);
  margin: 0 auto 28px;
}

.cta-visual img {
  aspect-ratio: 16 / 7;
}

.cta-band h2 {
  max-width: 780px;
  margin: 0 auto 24px;
}

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

.faq-list details {
  padding: 20px 22px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.faq-list summary {
  color: var(--text);
  font-size: 18px;
  font-weight: 900;
}

.faq-list p {
  margin: 12px 0 0;
}

.final-section {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 28px;
  align-items: center;
  padding: 38px;
}

.final-copy h2 {
  font-size: 38px;
}

.final-form {
  box-shadow: none;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  min-height: 50px;
  justify-content: center;
  border: 1px solid rgba(116, 240, 176, 0.34);
  border-radius: 999px;
  padding: 0 18px;
  color: #052e16;
  background: linear-gradient(135deg, #86efac, #22c55e);
  box-shadow: 0 18px 50px rgba(34, 197, 94, 0.28);
  font-size: 13px;
  font-weight: 950;
}

.mobile-sticky-cta {
  display: none;
}

.footer {
  width: min(100%, var(--max));
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: 28px 22px 90px;
  color: var(--muted);
}

.footer div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}

.footer img {
  width: 34px;
  height: 34px;
}

.footer p {
  max-width: 720px;
  margin: 0;
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 680ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 680ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 36px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

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

  .hero-conversion {
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
    align-items: stretch;
  }

  .hero-visual img {
    max-height: 520px;
  }

  .lead-form {
    align-content: start;
  }
}

@media (max-width: 920px) {
  .topbar {
    grid-template-columns: auto auto;
    border-radius: 24px;
  }

  .topbar nav {
    display: none;
  }

  .topbar-actions {
    justify-self: end;
  }

  .theme-toggle strong,
  .brand span {
    display: none;
  }

  .section {
    padding: 76px 16px;
    scroll-margin-top: 90px;
  }

  .hero {
    padding-top: 104px;
    padding-bottom: 34px;
  }

  h1 {
    font-size: 42px;
    line-height: 1.02;
  }

  h2,
  .final-copy h2 {
    font-size: 31px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-actions,
  .proof-row,
  .hero-conversion,
  .ecosystem-intro,
  .impact-section,
  .comparison-grid,
  .timeline,
  .suite-section,
  .future-grid,
  .answer-grid,
  .final-section {
    grid-template-columns: 1fr;
  }

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

  .hero-actions,
  .proof-row {
    display: grid;
  }

  .btn {
    width: 100%;
    min-height: 56px;
    padding: 0 16px;
  }

  .hero-visual img {
    max-height: none;
  }

  .timeline::before {
    left: 27px;
    right: auto;
    top: 36px;
    bottom: 36px;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, var(--blue-2), var(--gold), transparent);
  }

  .timeline-step {
    min-height: 0;
    padding-left: 86px;
  }

  .timeline-step > span {
    position: absolute;
    left: 18px;
    top: 22px;
    margin: 0;
  }

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

  .whatsapp-float {
    right: 12px;
    bottom: 76px;
    min-height: 44px;
    padding: 0 14px;
    font-size: 12px;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    min-height: 52px;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, #10214b, var(--blue), var(--blue-2));
    box-shadow: 0 18px 54px rgba(45, 107, 255, 0.34);
    font-size: 13px;
    font-weight: 950;
    text-transform: uppercase;
  }
}

@media (max-width: 560px) {
  .topbar {
    inset: 10px 10px auto;
    width: calc(100% - 20px);
    min-height: 62px;
    padding: 8px;
  }

  .topbar-cta {
    display: none;
  }

  .hero {
    padding-top: 94px;
  }

  h1 {
    font-size: 36px;
  }

  .badge,
  .eyebrow {
    font-size: 11px;
  }

  .lead-form {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .hero-visual figcaption {
    position: static;
    border-radius: 0;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
  }

  .section-image img,
  .card-image img,
  .cta-visual img {
    aspect-ratio: 16 / 10;
  }

  .compare-card,
  .cta-band,
  .closing-faq,
  .final-section,
  .impact-section,
  .ecosystem-intro {
    padding: 22px;
  }

  .closing-actions {
    display: grid;
  }

  .symptom-grid {
    grid-template-columns: 1fr;
  }

  .symptom-card {
    min-height: 118px;
  }

  .section-punch {
    font-size: 20px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}
