:root {
  --navy: #071C33;
  --deep-navy: #041322;
  --purple: #7C5CFF;
  --violet: #A855F7;
  --orange: #FF8A3D;
  --gold: #D8B45A;
  --gold-2: #F0CB68;
  --green: #116B4B;
  --emerald: #1E8B62;
  --cream: #F8F3E8;
  --paper: #FFFDF8;
  --white: #FEFCF8;
  --ink: #101B2A;
  --muted: #657082;
  --line: rgba(7, 28, 51, 0.14);
  --danger: #A83232;
  --danger-soft: #FFF1EA;
  --shadow: 0 28px 90px rgba(4, 19, 34, 0.18);
  --shadow-soft: 0 16px 44px rgba(4, 19, 34, 0.11);
  --motion-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --motion-ease-strong: cubic-bezier(0.19, 1, 0.22, 1);
  --radius: 22px;
  --font-display: "Libre Baskerville", Georgia, serif;
  --font-body: "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(216, 180, 90, 0.12), transparent 26%),
    radial-gradient(circle at 92% 10%, rgba(110, 84, 216, 0.1), transparent 28%),
    var(--cream);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.68;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
img, svg { display: block; }
img { max-width: 100%; }

:focus-visible {
  outline: 3px solid rgba(216, 180, 90, 0.75);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 10px;
  z-index: 999;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--deep-navy);
  font-weight: 800;
}

.skip-link:focus { transform: translateY(0); }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background:
    linear-gradient(135deg, rgba(4, 19, 34, 0.9), rgba(24, 18, 68, 0.88)),
    rgba(4, 19, 34, 0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(216, 180, 90, 0.18);
  transition: box-shadow 360ms var(--motion-ease), background 360ms var(--motion-ease);
}

.site-header::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 180, 90, 0.72), rgba(110, 84, 216, 0.56), transparent);
}

.site-header.is-scrolled {
  background:
    linear-gradient(135deg, rgba(4, 19, 34, 0.96), rgba(19, 15, 55, 0.94)),
    var(--deep-navy);
  box-shadow: 0 18px 52px rgba(4, 19, 34, 0.22);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand { display: inline-flex; align-items: center; gap: 12px; min-height: 44px; }
.brand-lockup {
  display: block;
  width: auto;
  height: 44px;
  object-fit: contain;
}
.site-header .brand-lockup { height: 42px; }
.site-footer .brand-lockup { height: 54px; }
.brand-mark {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(216, 180, 90, 0.2), rgba(110, 84, 216, 0.22));
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(216, 180, 90, 0.28) inset;
}
.brand-mark svg { width: 42px; height: 42px; }
.brand-mark-letter {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
}
.brand-copy { display: grid; line-height: 1.08; }
.brand-copy strong { color: var(--white); font-size: 18px; font-weight: 900; }
.brand-copy small { color: rgba(255, 255, 255, 0.72); font-size: 12px; font-weight: 800; }

.site-nav { display: flex; align-items: center; gap: 22px; color: rgba(255, 255, 255, 0.76); font-size: 14px; font-weight: 800; }
.site-nav a { min-height: 44px; display: inline-flex; align-items: center; transition: color 300ms var(--motion-ease), transform 300ms var(--motion-ease); }
.site-nav a:hover { color: var(--gold-2); transform: translateY(-1px); }
.site-nav .nav-launch { display: none; }

.nav-toggle {
  display: none;
  position: relative;
  z-index: 104;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(216, 180, 90, 0.24);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  padding: 12px;
}
.nav-toggle span:not(.sr-only) { display: block; height: 2px; background: var(--white); margin: 5px 0; }
.nav-toggle.is-open span:not(.sr-only):nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:not(.sr-only):nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:not(.sr-only):nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-toggle span:not(.sr-only) { transition: transform 260ms var(--motion-ease), opacity 260ms var(--motion-ease); }
.nav-backdrop { display: none; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 22px;
  border: 1px solid transparent;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  transition: transform 340ms var(--motion-ease), box-shadow 340ms var(--motion-ease), border-color 340ms var(--motion-ease), background 340ms var(--motion-ease);
}

.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0) scale(0.985); }

.button-primary {
  color: var(--white);
  background: var(--navy);
  border-color: rgba(216, 180, 90, 0.28);
  box-shadow: 0 18px 40px rgba(7, 28, 51, 0.22);
}
.button-primary:hover { background: var(--deep-navy); box-shadow: 0 22px 52px rgba(7, 28, 51, 0.3); }
.header-cta {
  color: var(--deep-navy);
  background: var(--white);
  border-color: rgba(240, 203, 104, 0.72);
  box-shadow: 0 0 0 1px rgba(255, 253, 248, 0.24), 0 16px 38px rgba(0, 0, 0, 0.22);
}
.header-cta:hover {
  color: var(--deep-navy);
  background: var(--paper);
  border-color: rgba(216, 180, 90, 0.72);
  box-shadow: 0 0 0 1px rgba(240, 203, 104, 0.3), 0 16px 38px rgba(0, 0, 0, 0.22);
}
.section-navy .button-primary, .highlighted .button-primary, .dashboard-section .button-primary {
  color: var(--deep-navy);
  background: var(--gold);
  border-color: rgba(216, 180, 90, 0.72);
}
.section-navy .button-primary:hover, .highlighted .button-primary:hover, .dashboard-section .button-primary:hover { background: var(--gold-2); }

.button-secondary {
  color: var(--navy);
  background: rgba(255, 253, 248, 0.9);
  border-color: rgba(7, 28, 51, 0.16);
  box-shadow: 0 12px 30px rgba(4, 19, 34, 0.08);
}
.glass-button { color: var(--white); background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.22); }

.section {
  padding: clamp(78px, 8vw, 118px) 0;
  position: relative;
}

.section + .section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(920px, calc(100% - 40px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(7, 28, 51, 0.12), transparent);
}

.section-navy {
  color: var(--white);
  background:
    radial-gradient(circle at 14% 18%, rgba(110, 84, 216, 0.26), transparent 26%),
    radial-gradient(circle at 82% 16%, rgba(216, 180, 90, 0.16), transparent 24%),
    radial-gradient(circle at 70% 82%, rgba(30, 139, 98, 0.14), transparent 25%),
    linear-gradient(145deg, var(--deep-navy), var(--navy) 58%, #20154f);
}

.section-soft {
  background:
    radial-gradient(circle at 86% 10%, rgba(216, 180, 90, 0.14), transparent 25%),
    linear-gradient(180deg, #fffaf1, var(--cream));
}

.compare-section, .features-section, .pricing-section, .faq-section, .testimonials-section {
  overflow: hidden;
}

.compare-section::after, .features-section::after, .pricing-section::after, .testimonials-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 88% 12%, rgba(110, 84, 216, 0.09), transparent 24%),
    radial-gradient(circle at 8% 82%, rgba(216, 180, 90, 0.1), transparent 24%);
}

.container { position: relative; z-index: 1; }

.section-intro {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}
.section-intro-left { margin-left: 0; text-align: left; }
.section-intro h1, .section-intro h2 {
  margin: 18px 0 14px;
}
.section-intro p {
  max-width: 690px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(18px, 1.35vw, 20px);
  line-height: 1.68;
}
.section-intro-left p { margin-left: 0; }
.hero-intro p { color: rgba(255, 255, 255, 0.78); }

.eyebrow, .kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 13px;
  border: 1px solid rgba(216, 180, 90, 0.42);
  border-radius: 999px;
  color: var(--gold-2);
  background: rgba(216, 180, 90, 0.1);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.kicker { color: var(--navy); background: rgba(216, 180, 90, 0.16); border-color: rgba(216, 180, 90, 0.28); }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  color: inherit;
  font-family: var(--font-display);
  letter-spacing: 0;
  line-height: 1.14;
  font-weight: 700;
}
h1 { max-width: 700px; font-size: clamp(40px, 4.5vw, 60px); }
h2 { font-size: clamp(32px, 3.2vw, 44px); }
h3 { font-size: clamp(24px, 2vw, 28px); }
.gradient-text { color: var(--gold-2); }

.hero {
  min-height: auto;
  display: flex;
  align-items: center;
  padding: 42px 0 30px;
  overflow: hidden;
  --parallax-x: 0px;
  --parallax-y: 0px;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 72% 38%, black 0%, transparent 64%);
  opacity: 0.36;
}

.hero-motion-layer, .hero-glow-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-motion-layer {
  background:
    radial-gradient(circle at 18% 24%, rgba(110, 84, 216, 0.26), transparent 24%),
    radial-gradient(circle at 76% 16%, rgba(216, 180, 90, 0.18), transparent 22%),
    linear-gradient(118deg, transparent 24%, rgba(255, 255, 255, 0.08), transparent 68%);
  filter: blur(12px);
  animation: heroMeshShift 18s var(--motion-ease-strong) infinite alternate;
}
.hero-glow-field {
  background:
    radial-gradient(circle at calc(54% + var(--parallax-x)) calc(34% + var(--parallax-y)), rgba(216, 180, 90, 0.18), transparent 18%),
    radial-gradient(circle at calc(78% - var(--parallax-x)) calc(62% - var(--parallax-y)), rgba(110, 84, 216, 0.2), transparent 20%);
  mix-blend-mode: screen;
  opacity: 0.78;
  animation: heroGlowDrift 14s var(--motion-ease-strong) infinite alternate;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(450px, 1.08fr);
  gap: 62px;
  align-items: center;
}
.hero-lede { max-width: 690px; font-size: clamp(18px, 1.45vw, 21px); line-height: 1.68; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.trust-chips { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 26px; }
.trust-chips span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 15px;
  font-weight: 800;
}
.trust-chips svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

.hero-visual {
  position: relative;
  min-height: 480px;
  transform: translate3d(calc(var(--parallax-x) * 0.35), calc(var(--parallax-y) * 0.35), 0);
  transition: transform 420ms var(--motion-ease);
}

.browser-mockup, .compare-card, .step-card, .feature-card, .price-card, .domain-panel, .device-stage, .whatsapp-card, .trust-grid article, .trust-pillar, .testimonial-card, .consultation-card {
  border: 1px solid rgba(7, 28, 51, 0.1);
  box-shadow: var(--shadow-soft);
}
.browser-mockup {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 30px;
  background: var(--paper);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.3);
}
.browser-mockup::after, [data-motion-card]::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(125deg, transparent 0%, rgba(255, 255, 255, 0.2) 42%, transparent 65%);
  opacity: 0;
  transform: translateX(-34%);
  transition: opacity 360ms var(--motion-ease), transform 900ms var(--motion-ease-strong);
}
.hero-visual:hover .browser-mockup { transform: translateY(-6px); box-shadow: 0 44px 120px rgba(0, 0, 0, 0.36); }
.hero-visual:hover .browser-mockup::after, [data-motion-card]:hover::after, [data-motion-card]:focus-within::after { opacity: 1; transform: translateX(42%); }

.browser-top, .preview-bar {
  height: 52px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  color: rgba(255, 255, 255, 0.72);
  background: linear-gradient(90deg, var(--deep-navy), #201153);
  font-size: 13px;
  font-weight: 800;
}
.browser-top span, .preview-bar span { width: 12px; height: 12px; border-radius: 50%; background: var(--gold); opacity: 0.82; }
.browser-top div { flex: 1; min-width: 0; margin-left: 8px; padding: 9px 12px; border-radius: 999px; background: rgba(255, 255, 255, 0.1); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.browser-body { padding: 18px; color: var(--ink); background: linear-gradient(180deg, #fff, #fbf2e8); }
.mock-nav { display: flex; align-items: center; justify-content: space-between; gap: 14px; color: var(--muted); font-size: 13px; font-weight: 900; }
.mock-nav strong { color: var(--navy); }
.mock-hero {
  margin-top: 22px;
  padding: 26px;
  border-radius: 24px;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 18%, rgba(216, 180, 90, 0.24), transparent 28%),
    linear-gradient(145deg, var(--navy), #1b1460 72%, var(--deep-navy));
}
.mock-hero span, .preview-layout > div > span { color: var(--gold-2); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.mock-hero h2 { margin: 12px 0; font-size: 28px; line-height: 1.16; }
.mock-hero p { color: rgba(255, 255, 255, 0.78); font-size: 16px; line-height: 1.58; }
.mock-hero button { min-height: 44px; border: 0; border-radius: 999px; padding: 12px 18px; color: var(--deep-navy); background: var(--gold); font-weight: 900; }

.analytics-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; margin-top: 14px; }
.analytics-card { padding: 13px; border-radius: 16px; background: rgba(255, 255, 255, 0.94); box-shadow: 0 10px 26px rgba(4, 19, 34, 0.08); }
.analytics-card span { display: block; color: var(--muted); font-size: 12px; font-weight: 900; }
.analytics-card strong { display: block; margin: 5px 0 9px; color: var(--navy); font-size: 19px; line-height: 1; }
.analytics-card i { display: block; height: 6px; border-radius: 999px; background: linear-gradient(90deg, var(--purple) var(--bar), rgba(110, 84, 216, 0.14) var(--bar)); }
.analytics-card.live i { background: linear-gradient(90deg, var(--green) var(--bar), rgba(17, 107, 75, 0.14) var(--bar)); }
.chart-line { margin-top: 14px; padding: 12px; border-radius: 18px; background: rgba(7, 28, 51, 0.04); }
.chart-line svg { width: 100%; height: 70px; }
.chart-line path { fill: none; stroke: var(--orange); stroke-width: 4; stroke-linecap: round; }
.chart-line rect { fill: rgba(110, 84, 216, 0.2); rx: 8; }

.float-card {
  position: absolute;
  z-index: 3;
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  padding: 10px 15px;
  color: var(--deep-navy);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  font-size: 14px;
  font-weight: 900;
  animation: floatDrift 8s var(--motion-ease-strong) infinite alternate;
}
.card-ssl { top: 44px; right: -22px; }
.card-wa { top: 172px; left: -32px; animation-delay: -1.6s; }
.card-pa { right: 0; bottom: 86px; animation-delay: -3.2s; }
.card-live { left: 36px; bottom: -16px; background: linear-gradient(135deg, var(--gold), #fff0a6); animation-delay: -4.8s; }

.icon svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

[data-reveal] { opacity: 0; transform: translate3d(0, 28px, 0); transition: opacity 780ms var(--motion-ease), transform 780ms var(--motion-ease); transition-delay: var(--reveal-delay, 0ms); }
[data-reveal].is-visible { opacity: 1; transform: translate3d(0, 0, 0); }
[data-motion-card] { position: relative; isolation: isolate; overflow: hidden; transition: transform 360ms var(--motion-ease), box-shadow 360ms var(--motion-ease), border-color 360ms var(--motion-ease), background 360ms var(--motion-ease), color 360ms var(--motion-ease); }
[data-motion-card]:hover, [data-motion-card]:focus-within { transform: translateY(-6px); border-color: rgba(216, 180, 90, 0.36); box-shadow: 0 28px 76px rgba(4, 19, 34, 0.16); }
.float-card[data-motion-card] { position: absolute; }

.compare-grid, .pricing-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }
.compare-card { padding: 38px; border-radius: var(--radius); }
.compare-card .label { display: inline-flex; align-items: center; gap: 9px; color: var(--danger); font-size: 13px; font-weight: 900; text-transform: uppercase; }
.old-way { background: linear-gradient(145deg, #fff8f1, var(--danger-soft)); }
.new-way {
  color: var(--white);
  background:
    radial-gradient(circle at 90% 14%, rgba(216, 180, 90, 0.18), transparent 26%),
    linear-gradient(145deg, var(--navy), #20145d 64%, var(--deep-navy));
  border-color: rgba(216, 180, 90, 0.3);
}
.new-way .label { color: var(--white); }
.new-way h3 { color: var(--gold-2); }
.compare-card h3 { font-size: clamp(28px, 2.5vw, 34px); line-height: 1.16; }
.compare-card p, .compare-card li { font-size: 17px; line-height: 1.58; }
.price-anchor { margin: 12px 0 22px; color: var(--gold-2); font: 700 30px/1.08 var(--font-display); }
.old-price { color: var(--danger); text-decoration: line-through; text-decoration-thickness: 2px; }
.compare-card ul, .price-card ul { display: grid; gap: 12px; padding: 0; margin: 22px 0 0; list-style: none; }
.compare-card li { display: flex; gap: 10px; align-items: flex-start; }
.compare-card li .icon { margin-top: 4px; color: var(--purple); }
.new-way li { color: rgba(255, 255, 255, 0.8); }
.new-way li .icon { color: var(--gold-2); }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; position: relative; }
.steps::before { content: ""; position: absolute; left: 10%; right: 10%; top: 58px; height: 3px; border-radius: 999px; background: linear-gradient(90deg, transparent, var(--gold), var(--purple), transparent); animation: connectorPulse 4.8s var(--motion-ease-strong) infinite alternate; }
.step-card { z-index: 1; padding: 32px; border-radius: var(--radius); background: rgba(255, 253, 248, 0.92); }
.step-icon { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 18px; border-radius: 18px; color: #fff; background: linear-gradient(135deg, var(--navy), var(--purple)); box-shadow: 0 16px 30px rgba(7, 28, 51, 0.18); }
.step-card:hover, .step-card:focus-within { color: var(--white); background: linear-gradient(145deg, var(--navy), #20145d); }
.step-card:hover p, .step-card:focus-within p { color: rgba(255, 255, 255, 0.76); }
.step-card:hover .step-icon { box-shadow: 0 18px 44px rgba(216, 180, 90, 0.24); background: linear-gradient(135deg, var(--gold), var(--purple)); }
.step-number { color: var(--orange); font-weight: 900; }
.step-card h3 { font-size: 26px; line-height: 1.18; }
.step-card p { color: var(--muted); font-size: 17px; line-height: 1.6; }
.section-cta { display: flex; justify-content: center; margin-top: 30px; }

.capability-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); background: rgba(255, 253, 248, 0.42); }
.capability-card {
  min-height: 160px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  padding: 26px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 253, 248, 0.76);
  box-shadow: none;
}
.capability-card .icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; color: var(--navy); background: rgba(216, 180, 90, 0.16); }
.capability-card .whatsapp-icon { color: var(--green); background: rgba(17, 107, 75, 0.12); }
.capability-card strong { display: block; color: var(--navy); font: 700 21px/1.22 var(--font-display); }
.capability-card p { margin: 10px 0 0; color: var(--muted); font-size: 16px; font-weight: 700; line-height: 1.55; }
.feature-card:hover { background: var(--paper); color: var(--ink); }
.feature-card:hover p { color: var(--muted); }
.feature-card:hover strong { color: var(--navy); }

.demo-grid, .dashboard-grid, .domain-grid, .og-grid, .faq-grid { display: grid; grid-template-columns: minmax(0, 0.86fr) minmax(430px, 1.14fr); gap: 58px; align-items: center; }
.narrative-line { color: var(--navy); font-size: 24px; line-height: 1.2; }
.template-switch { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 0; }
.template-switch button { min-height: 44px; border: 1px solid var(--line); border-radius: 999px; padding: 10px 15px; background: var(--paper); color: var(--navy); font-size: 16px; font-weight: 900; cursor: pointer; }
.template-switch button.is-active { color: var(--navy); background: var(--white); border-color: var(--gold); box-shadow: 0 10px 26px rgba(4, 19, 34, 0.1); }

.device-stage {
  min-height: 560px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 76% 16%, rgba(216, 180, 90, 0.18), transparent 25%),
    linear-gradient(145deg, #fdf8ed, #ece7ff);
  position: relative;
  overflow: hidden;
}
.device { position: absolute; border-radius: 24px; background: #151927; box-shadow: 0 28px 70px rgba(4, 19, 34, 0.24); padding: 12px; }
.device-screen { height: 100%; border-radius: 16px; padding: 24px; color: var(--white); background: linear-gradient(145deg, var(--deep-navy), var(--navy)); overflow: hidden; }
.device-screen span { color: var(--gold-2); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.device-screen h3 { margin: 12px 0; font-size: 30px; line-height: 1.16; }
.device-screen p { color: rgba(255, 255, 255, 0.72); font-size: 16px; line-height: 1.58; }
.laptop { left: 34px; right: 54px; top: 54px; height: 300px; }
.tablet { right: 28px; bottom: 70px; width: 210px; height: 270px; }
.phone { left: 70px; bottom: 50px; width: 150px; height: 270px; border-radius: 30px; }
.phone .device-screen h3 { font-size: 23px; }
.screen-lines { display: grid; gap: 10px; margin-top: 28px; }
.screen-lines i { display: block; height: 12px; border-radius: 999px; background: rgba(255, 255, 255, 0.18); }
.consultation-card {
  position: absolute;
  right: 42px;
  top: 300px;
  z-index: 4;
  width: 210px;
  overflow: hidden;
  border-radius: 22px;
  background: var(--paper);
}
.consultation-card img { width: 100%; height: 126px; object-fit: cover; }
.consultation-card div { padding: 13px; }
.consultation-card strong, .consultation-card span { display: block; }
.consultation-card span { color: var(--muted); font-size: 13px; line-height: 1.4; }

.pricing-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
.price-card { display: flex; flex-direction: column; padding: 34px; border-radius: var(--radius); background: rgba(255, 253, 248, 0.94); }
.plan-badge { align-self: flex-start; margin-bottom: 18px; padding: 7px 12px; border-radius: 999px; color: var(--navy); background: rgba(216, 180, 90, 0.15); font-size: 13px; font-weight: 900; }
.price-card h3 { font-size: 28px; line-height: 1.18; }
.price-card .price { margin-bottom: 18px; color: var(--navy); font-size: 40px; font-weight: 900; line-height: 1; }
.price-card .price span { color: var(--muted); font-size: 18px; font-weight: 800; }
.price-card p { color: var(--muted); font-size: 17px; line-height: 1.6; }
.price-card li { font-size: 17px; line-height: 1.55; }
.price-card li { position: relative; padding-left: 24px; }
.price-card li::before { content: ""; position: absolute; left: 0; top: 0.74em; width: 9px; height: 9px; border-radius: 50%; background: var(--gold); }
.price-card .button { margin-top: auto; }
.price-card ul { margin-bottom: 30px; }
.highlighted {
  color: var(--white);
  background:
    radial-gradient(circle at 86% 12%, rgba(216, 180, 90, 0.2), transparent 26%),
    linear-gradient(145deg, var(--navy), #20145d 64%, var(--deep-navy));
  border-color: rgba(216, 180, 90, 0.48);
  transform: translateY(-14px);
  animation: professionalGlow 5.6s var(--motion-ease-strong) infinite alternate;
}
.highlighted h3, .highlighted .price { color: var(--white); }
.highlighted p, .highlighted li, .highlighted .price span { color: rgba(255, 255, 255, 0.76); }
.popular { position: absolute; top: 22px; right: 22px; padding: 7px 12px; border-radius: 999px; color: var(--deep-navy); background: linear-gradient(135deg, var(--gold), #fff0a6); font-size: 13px; font-weight: 900; }
.highlighted .plan-badge { color: var(--deep-navy); background: var(--white); border: 1px solid rgba(216, 180, 90, 0.52); }
.popular {
  color: var(--deep-navy);
  background: var(--gold-2);
  border: 1px solid rgba(255, 253, 248, 0.7);
  box-shadow: 0 0 0 5px rgba(216, 180, 90, 0.16), 0 14px 34px rgba(0, 0, 0, 0.22);
  animation: popularPulse 4.8s var(--motion-ease-strong) infinite;
}

.dashboard-section { background: var(--paper); }
.dashboard-grid { grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr); }
.dashboard-mockup {
  min-height: 420px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--cream);
  box-shadow: var(--shadow-soft);
}
.dashboard-shell {
  min-height: 360px;
  display: grid;
  grid-template-columns: 120px 1fr;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(7, 28, 51, 0.12);
  background: var(--paper);
  box-shadow: 0 24px 70px rgba(4, 19, 34, 0.16);
}
.dashboard-sidebar { display: grid; align-content: start; gap: 18px; padding: 24px; color: var(--white); background: var(--deep-navy); }
.dashboard-sidebar strong { color: var(--gold-2); font-family: var(--font-display); }
.dashboard-sidebar span { height: 10px; border-radius: 999px; background: rgba(255, 255, 255, 0.18); }
.dashboard-panel { padding: 34px; }
.dashboard-panel > span { color: var(--green); font-size: 13px; font-weight: 900; text-transform: uppercase; }
.dashboard-panel h3 { font-size: 28px; line-height: 1.18; }
.dashboard-lines { display: grid; gap: 12px; margin: 28px 0; }
.dashboard-lines i { display: block; height: 14px; border-radius: 999px; background: rgba(7, 28, 51, 0.08); }
.dashboard-lines i:nth-child(2) { width: 78%; }
.dashboard-lines i:nth-child(3) { width: 62%; }
.dashboard-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.dashboard-stats b { min-height: 74px; display: flex; align-items: end; padding: 14px; border-radius: 16px; color: var(--navy); background: rgba(216, 180, 90, 0.16); font-size: 14px; line-height: 1.25; }
.dashboard-copy ul { display: grid; gap: 12px; padding: 0; margin: 22px 0 28px; list-style: none; }
.dashboard-copy li { position: relative; padding-left: 26px; color: var(--muted); font-size: 17px; line-height: 1.58; font-weight: 800; }
.dashboard-copy li::before { content: ""; position: absolute; left: 0; top: 0.72em; width: 9px; height: 9px; border-radius: 50%; background: var(--gold); }

.domain-section { background: linear-gradient(180deg, var(--paper), #f2ecff); }
.domain-grid { grid-template-columns: 1fr; }
.domain-panel { padding: 26px; border-radius: 28px; background: rgba(255, 253, 248, 0.9); }
.domain-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 20px; }
.domain-search-label { grid-column: 1 / -1; }
.domain-form label { display: grid; gap: 8px; color: var(--navy); font-size: 13px; font-weight: 900; text-transform: uppercase; }
.domain-form input { min-height: 52px; width: 100%; border: 1px solid var(--line); border-radius: 14px; padding: 13px 14px; background: var(--paper); color: var(--ink); font: inherit; font-size: 18px; }
.domain-suggestions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px; }
.domain-suggestion { min-height: 52px; display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 11px 13px; border-radius: 16px; background: rgba(7, 28, 51, 0.04); border: 1px solid rgba(7, 28, 51, 0.08); font-size: 17px; font-weight: 900; }
.domain-suggestion span { padding: 5px 9px; border-radius: 999px; color: var(--green); background: rgba(17, 107, 75, 0.1); font-size: 12px; }

.og-section {
  color: var(--white);
  background:
    radial-gradient(circle at 16% 18%, rgba(216, 180, 90, 0.16), transparent 25%),
    radial-gradient(circle at 80% 22%, rgba(255, 255, 255, 0.11), transparent 24%),
    linear-gradient(145deg, #083926, var(--green) 62%, #06402f);
  overflow: hidden;
}
.og-section::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px); background-size: 22px 22px; opacity: 0.42; }
.og-section .section-intro p { color: rgba(255, 255, 255, 0.76); }
.og-section .kicker { color: var(--white); background: rgba(255, 255, 255, 0.13); border-color: rgba(255, 255, 255, 0.32); }
.identity-wallet { min-height: 480px; position: relative; z-index: 1; }
.identity-card {
  position: absolute;
  left: 10%;
  right: 0;
  min-height: 210px;
  display: grid;
  grid-template-columns: 38% 1fr;
  gap: 0;
  align-items: center;
  padding: 0;
  border-radius: 28px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: transform 380ms var(--motion-ease), z-index 0ms linear 120ms, box-shadow 380ms var(--motion-ease);
}
.identity-card:nth-child(1) { top: 18px; transform: rotate(-3deg) translateX(4px); z-index: 3; }
.identity-card:nth-child(2) { top: 136px; transform: rotate(2deg) translateX(44px); z-index: 2; }
.identity-card:nth-child(3) { top: 254px; transform: rotate(-1deg) translateX(10px); z-index: 1; }
.identity-card.is-active { z-index: 5; transform: translateX(0) translateY(-8px) rotate(0deg); box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28); }
.identity-card img { width: 100%; height: 100%; min-height: 226px; object-fit: cover; border-radius: 28px 0 0 28px; border-right: 1px solid rgba(7, 28, 51, 0.12); }
.identity-card div { padding: 22px; }
.identity-card strong { display: block; color: var(--navy); font: 700 25px/1.12 var(--font-display); }
.identity-card span { color: var(--green); font-size: 14px; line-height: 1.35; font-weight: 900; }
.identity-card p { margin: 10px 0 15px; color: var(--muted); font-size: 16px; line-height: 1.5; }
.identity-card nav { display: flex; flex-wrap: wrap; gap: 8px; }
.identity-card nav a { min-height: 38px; display: inline-flex; align-items: center; padding: 7px 11px; border-radius: 999px; background: rgba(17, 107, 75, 0.1); color: var(--green); font-size: 13px; font-weight: 900; }

.trust-section { background: linear-gradient(135deg, var(--deep-navy), #1d1153 72%, var(--navy)); color: var(--white); }
.trust-section .section-intro p { color: rgba(255, 255, 255, 0.72); }
.trust-section .kicker { color: var(--deep-navy); background: var(--gold-2); border-color: rgba(255, 253, 248, 0.42); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.trust-grid article, .trust-pillar { min-height: 190px; padding: 24px; border-radius: 22px; color: var(--white); background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.1); }
.trust-grid .icon { width: 42px; height: 42px; display: grid; place-items: center; margin-bottom: 16px; border-radius: 14px; color: var(--gold-2); background: rgba(216, 180, 90, 0.1); }
.trust-grid strong { display: block; margin-bottom: 10px; color: var(--white); font-family: var(--font-display); font-size: 24px; line-height: 1.18; }
.trust-grid span:last-child { color: rgba(255, 255, 255, 0.72); font-size: 16px; line-height: 1.55; }

.testimonial-carousel { position: relative; overflow: hidden; padding-bottom: 62px; }
.testimonial-track { display: flex; gap: 22px; transition: transform 600ms var(--motion-ease-strong); will-change: transform; }
.testimonial-card { flex: 0 0 calc((100% - 44px) / 3); padding: 24px; border-radius: 24px; background: rgba(255, 253, 248, 0.94); }
.testimonial-card img { width: 76px; height: 76px; border-radius: 50%; object-fit: cover; margin-bottom: 18px; }
.testimonial-card blockquote { margin: 0 0 18px; color: var(--navy); font: 600 21px/1.28 var(--font-display); }
.testimonial-card strong, .testimonial-card span { display: block; }
.testimonial-card strong { font-size: 17px; line-height: 1.35; }
.testimonial-card span { color: var(--muted); font-size: 15px; line-height: 1.4; }
.testimonial-card a { display: inline-flex; margin-top: 18px; color: var(--purple); font-weight: 900; }
.testimonial-card.proof-card { min-height: 240px; display: flex; flex-direction: column; justify-content: space-between; gap: 16px; }
.testimonial-card.proof-card strong { color: var(--navy); font: 700 25px/1.16 var(--font-display); }
.testimonial-card.proof-card span { flex: 1; font-size: 16px; line-height: 1.55; }
.testimonial-controls { position: absolute; left: 50%; bottom: 0; display: flex; gap: 10px; transform: translateX(-50%); }
.testimonial-controls button { min-height: 44px; padding: 10px 16px; border: 1px solid var(--line); border-radius: 999px; color: var(--navy); background: var(--paper); font-weight: 900; cursor: pointer; }

.faq-grid { grid-template-columns: minmax(0, 840px); justify-content: center; align-items: start; }
.faq-intro .kicker { margin-bottom: 10px; }
.faq-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 24px; }
.faq-list { display: grid; gap: 14px; }
.faq-item { border: 1px solid var(--line); border-radius: 20px; overflow: hidden; background: rgba(255, 253, 248, 0.94); box-shadow: 0 10px 28px rgba(4, 19, 34, 0.07); transition: transform 260ms var(--motion-ease), box-shadow 260ms var(--motion-ease), border-color 260ms var(--motion-ease); }
.faq-item:hover, .faq-item.is-open { transform: translateY(-2px); border-color: rgba(216, 180, 90, 0.42); box-shadow: 0 18px 42px rgba(4, 19, 34, 0.1); }
.faq-item button { width: 100%; min-height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; border: 0; color: var(--navy); background: transparent; font: inherit; font-size: 18px; font-weight: 900; text-align: left; cursor: pointer; }
.faq-item button span { width: 24px; height: 24px; flex: 0 0 24px; position: relative; border-radius: 50%; background: rgba(216, 180, 90, 0.18); }
.faq-item button span::before, .faq-item button span::after { content: ""; position: absolute; inset: 11px 6px auto; height: 2px; background: var(--navy); }
.faq-item button span::after { transform: rotate(90deg); transition: transform 240ms var(--motion-ease); }
.faq-item button[aria-expanded="true"] span::after { transform: rotate(0); }
.faq-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 300ms var(--motion-ease); }
.faq-panel p { min-height: 0; overflow: hidden; margin: 0; padding: 0 22px; opacity: 0; transform: translateY(-6px); color: var(--muted); font-size: 17px; line-height: 1.62; transition: opacity 240ms var(--motion-ease), transform 240ms var(--motion-ease), padding-bottom 240ms var(--motion-ease); }
.faq-item.is-open .faq-panel { grid-template-rows: 1fr; }
.faq-item.is-open .faq-panel p { opacity: 1; transform: translateY(0); padding-bottom: 22px; }

.final-cta { padding: 108px 0; text-align: center; overflow: hidden; }
.final-cta-inner { max-width: 860px; }
.final-cta p { max-width: 700px; margin-left: auto; margin-right: auto; color: rgba(255, 255, 255, 0.76); font-size: 20px; line-height: 1.65; }
.final-cta .hero-actions { justify-content: center; }

.site-footer { padding: 58px 0 34px; color: rgba(255, 255, 255, 0.72); background: var(--deep-navy); border-top: 1px solid rgba(255, 255, 255, 0.1); }
.footer-grid { display: grid; grid-template-columns: minmax(250px, 1.1fr) minmax(360px, 1.4fr); gap: 34px; align-items: start; }
.site-footer .brand-copy strong { color: var(--white); }
.site-footer .brand-copy small, .site-footer p { color: rgba(255, 255, 255, 0.62); }
.site-footer nav { display: grid; gap: 9px; font-weight: 800; }
.site-footer nav strong { color: var(--gold-2); font-family: var(--font-display); font-size: 23px; }
.site-footer nav a { min-height: 32px; }
.footer-nav-group { grid-template-columns: repeat(3, max-content); column-gap: 24px; row-gap: 9px; }
.footer-nav-group strong { grid-column: 1 / -1; }
.footer-nav-group a { white-space: nowrap; }
.logo-concepts { display: none; }
.logo-option { width: 72px; height: 72px; align-items: center; justify-content: center; }

.internal-hero {
  overflow: hidden;
  padding: clamp(92px, 10vw, 138px) 0 clamp(64px, 7vw, 96px);
}
.internal-hero .section-intro {
  max-width: 900px;
  margin-left: 0;
  text-align: left;
}
.internal-hero h1 {
  max-width: 890px;
  margin: 18px 0 18px;
}
.internal-hero p {
  max-width: 720px;
  margin-left: 0;
  color: rgba(255, 255, 255, 0.78);
}
.internal-kicker-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.internal-kicker-row span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 7px 13px;
  border: 1px solid rgba(216, 180, 90, 0.28);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  font-size: 14px;
  font-weight: 900;
}
.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(360px, 1fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: start;
}
.editorial-copy {
  max-width: 670px;
}
.editorial-copy h2,
.internal-panel h2,
.comparison-table h2 {
  margin-bottom: 16px;
}
.editorial-copy p,
.internal-panel p,
.internal-card p,
.comparison-table p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}
.internal-panel,
.internal-card,
.contact-form,
.comparison-table,
.route-card {
  border: 1px solid rgba(7, 28, 51, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.94);
  box-shadow: var(--shadow-soft);
}
.internal-panel,
.contact-form,
.comparison-table {
  padding: clamp(24px, 4vw, 40px);
}
.internal-list,
.check-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}
.internal-list li,
.check-list li {
  position: relative;
  padding-left: 27px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.55;
}
.internal-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}
.internal-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.internal-card {
  min-height: 210px;
  padding: 24px;
}
.internal-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 23px;
  line-height: 1.18;
}
.contact-form {
  display: grid;
  gap: 15px;
}
.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-size: 18px;
}
.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}
.faq-category {
  margin-bottom: 28px;
}
.faq-category h2 {
  margin-bottom: 14px;
  color: var(--navy);
}
.comparison-table {
  overflow-x: auto;
}
.comparison-table table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}
.comparison-table th,
.comparison-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.comparison-table th {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 20px;
}
.route-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.route-card {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  color: var(--navy);
  font-weight: 900;
}
.route-card span {
  color: var(--muted);
  font-weight: 800;
}

@keyframes heroMeshShift { 0% { opacity: 0.72; } 100% { opacity: 1; } }
@keyframes heroGlowDrift { 0% { opacity: 0.56; } 100% { opacity: 0.86; } }
@keyframes floatDrift { 0% { transform: translate3d(0, 0, 0); } 100% { transform: translate3d(6px, -10px, 0); } }
@keyframes professionalGlow { 0% { box-shadow: 0 28px 82px rgba(4, 19, 34, 0.24), 0 0 0 rgba(216, 180, 90, 0); } 100% { box-shadow: 0 32px 92px rgba(4, 19, 34, 0.3), 0 0 44px rgba(216, 180, 90, 0.18); } }
@keyframes connectorPulse { 0% { opacity: 0.52; transform: scaleX(0.86); } 100% { opacity: 1; transform: scaleX(1); } }
@keyframes popularPulse { 0%, 100% { box-shadow: 0 0 0 5px rgba(216, 180, 90, 0.16), 0 14px 34px rgba(0, 0, 0, 0.22); } 50% { box-shadow: 0 0 0 9px rgba(216, 180, 90, 0.08), 0 18px 42px rgba(0, 0, 0, 0.28); } }

@media (max-width: 980px) {
  .header-cta { display: none; }
  .nav-toggle { display: inline-block; }
  .nav-backdrop { position: fixed; inset: 0; z-index: 101; display: block; pointer-events: none; background: rgba(4, 19, 34, 0.48); opacity: 0; transition: opacity 300ms var(--motion-ease); }
  .nav-backdrop.is-open { pointer-events: auto; opacity: 1; }
  .site-nav { position: fixed; z-index: 103; top: 0; right: 0; bottom: 0; width: min(86vw, 360px); height: 100vh; min-height: 100dvh; display: grid; align-content: start; gap: 8px; padding: 96px 24px 24px; border-left: 1px solid rgba(216, 180, 90, 0.22); background: var(--deep-navy); box-shadow: var(--shadow); transform: translateX(105%); transition: transform 340ms var(--motion-ease-strong); }
  .site-nav.is-open { transform: translateX(0); }
  .site-nav a { padding: 10px 12px; }
  .site-nav .nav-launch { display: inline-flex; justify-content: center; margin-top: 8px; border-radius: 999px; background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: var(--deep-navy); box-shadow: 0 16px 36px rgba(216, 180, 90, 0.24); }
  .site-nav .nav-launch:hover { color: var(--deep-navy); }
  .hero-grid, .demo-grid, .dashboard-grid, .domain-grid, .og-grid, .faq-grid { grid-template-columns: 1fr; }
  .editorial-grid, .internal-card-grid, .route-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 500px; }
  .compare-grid, .pricing-grid { grid-template-columns: 1fr; }
  .highlighted { transform: none; }
  .steps, .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .capability-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .testimonial-card { flex-basis: calc((100% - 22px) / 2); }
  .steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-nav-group { grid-template-columns: repeat(2, max-content); }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1180px); }
  .site-nav { left: 0; width: 100vw; border-left: 0; background: var(--deep-navy); }
  .section { padding: 68px 0; }
  .hero { padding: 36px 0 44px; }
  .hero-grid { gap: 28px; }
  h1 { font-size: 36px; line-height: 1.16; }
  h2 { font-size: 30px; line-height: 1.18; }
  h3 { font-size: 24px; }
  .section-intro { margin-bottom: 32px; }
  .section-intro h1, .section-intro h2 { margin: 14px 0 12px; }
  .section-intro p, .hero-lede, .final-cta p { font-size: 17px; line-height: 1.62; }
  .hero-actions { width: auto; }
  .hero-actions .button { width: auto; min-width: 0; padding-inline: 18px; }
  .trust-chips { display: flex; }
  .brand-copy small { display: none; }
  .hero-visual { min-height: auto; }
  .browser-mockup { border-radius: 22px; }
  .browser-top { height: 44px; padding: 0 12px; font-size: 11px; }
  .browser-body { padding: 14px; }
  .mock-nav span { display: none; }
  .mock-hero { margin-top: 18px; padding: 19px; border-radius: 18px; }
  .mock-hero h2 { font-size: 23px; }
  .analytics-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .chart-line svg { height: 58px; }
  .float-card { min-height: 34px; padding: 8px 10px; font-size: 12px; }
  .card-ssl { top: 24px; right: 4px; }
  .card-wa { top: auto; left: -5px; bottom: 68px; }
  .card-pa { display: none; }
  .card-live { left: 12px; right: 12px; bottom: -16px; justify-content: center; }
  .steps, .capability-grid, .trust-grid { grid-template-columns: 1fr; }
  .capability-grid { border-left: 0; }
  .capability-card { border-right: 0; min-height: 0; padding: 20px 0; background: transparent; }
  .compare-card, .step-card, .price-card { padding: 24px; }
  .compare-card h3 { font-size: 27px; }
  .price-card .price { font-size: 36px; }
  .domain-form, .domain-suggestions, .dashboard-stats { grid-template-columns: 1fr; }
  .dashboard-shell { grid-template-columns: 1fr; }
  .dashboard-sidebar { grid-template-columns: auto 1fr 1fr 1fr; align-items: center; }
  .testimonial-card { flex-basis: 100%; }
  .device-stage { min-height: 680px; }
  .laptop { left: 16px; right: 16px; top: 28px; height: 245px; }
  .tablet { right: 16px; bottom: 150px; width: 190px; height: 240px; }
  .phone { left: 18px; bottom: 130px; width: 130px; height: 235px; }
  .consultation-card { position: absolute; left: 18px; right: 18px; top: auto; bottom: 18px; width: auto; display: grid; grid-template-columns: 96px 1fr; }
  .consultation-card img { height: 100%; }
  .identity-wallet { min-height: 690px; }
  .identity-card { left: 0; right: 0; grid-template-columns: 38% 1fr; padding: 0; }
  .identity-card:nth-child(1) { top: 0; }
  .identity-card:nth-child(2) { top: 210px; transform: none; }
  .identity-card:nth-child(3) { top: 420px; transform: none; }
  .identity-card img { width: 100%; height: 100%; min-height: 190px; border-radius: 28px 0 0 28px; }
  .identity-card div { padding: 16px; }
  .identity-card strong { font-size: 20px; }
  .identity-card span { font-size: 13px; }
  .identity-card p { font-size: 15px; }
  .identity-card nav a { font-size: 12px; }
  .popular { position: static; align-self: flex-start; margin-bottom: 12px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-nav-group { grid-template-columns: 1fr; }
}

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