/* ---------- Base ---------- */
:root {
  --bg: #f6f8fc;
  --paper: #ffffff;
  --ink: #0b1220;
  --muted: #667085;
  --dark: #08101d;
  --dark-2: #0c1525;
  --line: rgba(11, 18, 32, .09);
  --line-light: rgba(255, 255, 255, .11);
  --purple: #754C9C;
  --purple-2: #9B73C2;
  --cyan: #F4AD32;
  --green: #F4AD32;
  --radius: 28px;
  --radius-sm: 18px;
  --shadow: 0 28px 80px rgba(27, 39, 75, .13);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
::selection { background: rgba(117, 76, 156, .24); }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}
.section {
  position: relative;
  padding: 118px 0;
}
.section-light { background: var(--paper); }
.section-dark {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 15% 5%, rgba(255,255,255,.10), transparent 28%),
    radial-gradient(circle at 85% 18%, rgba(244, 173, 50, .16), transparent 26%),
    radial-gradient(circle at 50% 100%, rgba(64, 28, 100, .35), transparent 34%),
    linear-gradient(180deg, #754C9C 0%, #6B448F 60%, #5E3A80 100%);
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .025;
  z-index: 999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  transition: background .28s ease, border .28s ease, box-shadow .28s ease;
}
.site-header.scrolled {
  background: rgba(117, 76, 156, .86);
  border-bottom: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(65,26,96,.18);
}
.header-inner {
  height: 84px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: 166px;
  height: 34px;
}
.brand-logo {
  width: 166px;
  max-height: 34px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
}
.brand-fallback {
  display: none;
  color: #fff;
  font-weight: 900;
  letter-spacing: -.04em;
  font-size: 19px;
}
.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-left: auto;
}
.desktop-nav a {
  color: rgba(255,255,255,.86);
  font-size: 14px;
  font-weight: 650;
  transition: color .2s ease;
}
.desktop-nav a:hover { color: #fff; }
.header-cta { margin-left: 8px; }
.menu-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 99px;
}
.mobile-menu {
  overflow: hidden;
  max-height: 0;
  background: rgba(8, 16, 29, .97);
  transition: max-height .35s ease;
}
.mobile-menu.open { max-height: 460px; }
.mobile-menu-inner {
  padding-top: 10px;
  padding-bottom: 24px;
  display: grid;
  gap: 6px;
}
.mobile-menu a:not(.button) {
  color: rgba(255,255,255,.83);
  padding: 12px 4px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-weight: 700;
}

/* ---------- Type ---------- */
.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--purple);
  font-size: 12px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow {
  color: rgba(255,255,255,.75);
  margin-bottom: 24px;
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 6px rgba(55, 211, 132, .12);
}
.kicker-light { color: #a998ff; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  letter-spacing: -.045em;
  text-wrap: balance;
}
h1 {
  margin-bottom: 24px;
  max-width: 820px;
  font-size: clamp(48px, 6.3vw, 82px);
  line-height: 1.04;
  font-weight: 850;
  overflow: visible;
}
h2 {
  margin-bottom: 20px;
  font-size: clamp(38px, 4.25vw, 59px);
  line-height: 1.02;
  font-weight: 820;
}
h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.1;
}
p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 16px;
}
.gradient-text {
  display: inline;
  color: transparent;
  background: linear-gradient(105deg, #fff 3%, #efe5fb 46%, #F4AD32 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

/* ---------- Buttons ---------- */
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border .22s ease;
}
.button:hover { transform: translateY(-2px); }
.button-sm { min-height: 44px; padding: 0 18px; }
.button-lg { min-height: 57px; padding: 0 27px; border-radius: 16px; }
.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #F4AD32, #E39B1C);
  color: #08101d;
  box-shadow: 0 16px 34px rgba(244, 173, 50, .28);
}
.button-primary:hover { box-shadow: 0 20px 44px rgba(244, 173, 50, .34); }
.button-ghost {
  color: #fff;
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.05);
}
.button-ghost:hover { background: rgba(255,255,255,.09); }
.button-dark {
  color: #fff;
  background: var(--dark);
  box-shadow: 0 14px 30px rgba(8, 16, 29, .14);
}
.button-white {
  color: var(--dark);
  background: #fff;
  box-shadow: 0 14px 34px rgba(0,0,0,.18);
}

/* ---------- Hero ---------- */
.hero {
  min-height: 820px;
  display: flex;
  align-items: center;
  padding: 160px 0 90px;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 40px;
  align-items: center;
}
.hero-copy { padding-right: 14px; }
.hero-lead {
  max-width: 670px;
  margin-bottom: 34px;
  color: rgba(255,255,255,.80);
  font-size: 18px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-proof {
  margin-top: 48px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.11);
  display: flex;
  align-items: center;
  gap: 24px;
}
.proof-item {
  display: grid;
  gap: 5px;
}
.proof-item strong {
  font-size: 17px;
  letter-spacing: -.02em;
}
.proof-item span {
  color: rgba(255,255,255,.48);
  font-size: 12px;
}
.proof-divider {
  width: 1px;
  height: 35px;
  background: rgba(255,255,255,.12);
}
.hero-visual {
  position: relative;
  min-height: 570px;
  display: grid;
  place-items: end center;
}
.hero-image-shell {
  position: relative;
  z-index: 3;
  width: min(100%, 570px);
  min-height: 540px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-image {
  width: 100%;
  max-height: 540px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 35px 50px rgba(0,0,0,.30));
}
.hero-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(166, 151, 255, .20);
  border-radius: 50%;
}
.orbit-one {
  width: 480px;
  height: 480px;
  left: 52%;
  top: 42%;
  transform: translate(-50%,-50%);
  border-color: rgba(255,255,255,.18);
}
.orbit-two {
  width: 380px;
  height: 380px;
  left: 49%;
  top: 48%;
  transform: translate(-50%,-50%);
  border-style: dashed;
  border-color: rgba(244,173,50,.22);
  animation: spin 24s linear infinite;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: .32;
}
.hero-glow-1 {
  width: 420px;
  height: 420px;
  right: 3%;
  top: 18%;
  background: rgba(244,173,50,.18);
}
.hero-glow-2 {
  width: 280px;
  height: 280px;
  right: 20%;
  bottom: 5%;
  background: rgba(255,255,255,.10);
}
.floating-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  color: var(--ink);
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(255,255,255,.74);
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(0,0,0,.18);
  backdrop-filter: blur(14px);
}
.float-card-a { left: -16px; top: 37%; }
.float-card-b { right: -2px; bottom: 13%; }
.floating-card small,
.floating-card strong { display: block; }
.floating-card small { color: #7f8794; font-size: 10px; margin-bottom: 2px; }
.floating-card strong { font-size: 12px; }
.mini-icon {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  font-weight: 900;
}
.mini-icon.green { color: #9a6500; background: #fff2d9; }
.mini-icon.purple { color: #6e54ee; background: #efe6f8; }
.hero-bottom-fade {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 100px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.015));
}
@keyframes spin { to { transform: translate(-50%,-50%) rotate(360deg); } }

/* ---------- Section heading ---------- */
.section-heading {
  max-width: 760px;
  margin-bottom: 54px;
}
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading .kicker { margin-bottom: 16px; }
.section-heading p { max-width: 610px; margin: 0 auto; }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.service-card {
  min-height: 300px;
  padding: 30px;
  background: #f8f9fd;
  border: 1px solid #eceef5;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border .25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  background: #fff;
  border-color: rgba(117,76,156,.24);
  box-shadow: 0 24px 56px rgba(36,46,83,.10);
}
.service-icon {
  width: 49px;
  height: 49px;
  margin-bottom: 44px;
  display: grid;
  place-items: center;
  color: var(--purple);
  background: #f4ecfb;
  border-radius: 14px;
}
.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card p { margin-bottom: 24px; font-size: 14px; }
.service-card a {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}
.service-card a span { color: var(--purple); }

/* ---------- Alternating splits ---------- */
.split-section { overflow: hidden; }
.split-sites {
  background:
    radial-gradient(circle at 92% 20%, rgba(117,76,156,.10), transparent 30%),
    #f3f5fa;
}
.split-google { background: #fff; }
.split-grid {
  display: grid;
  grid-template-columns: .93fr 1.07fr;
  gap: 85px;
  align-items: center;
}
.split-grid.reverse { grid-template-columns: 1.07fr .93fr; }
.split-copy .kicker { margin-bottom: 18px; }
.split-copy p {
  max-width: 585px;
  margin-bottom: 28px;
  font-size: 17px;
}
.secondary-copy { color: #8490a1; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
  color: var(--purple);
  font-size: 14px;
  font-weight: 850;
}
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translate(3px,-3px); }
.check-grid {
  margin: 32px 0 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}
.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 720;
}
.check-item span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--purple);
  border-radius: 50%;
  font-size: 11px;
}

/* Browser mockup */
.browser-showcase { position: relative; min-height: 510px; display: grid; place-items: center; }
.browser-window {
  width: 100%;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(19,28,49,.10);
  border-radius: 22px;
  box-shadow: var(--shadow);
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
}
.browser-top {
  height: 44px;
  padding: 0 13px;
  display: grid;
  grid-template-columns: 70px 1fr 70px;
  align-items: center;
  background: #f1f3f8;
  border-bottom: 1px solid #e7eaf0;
}
.browser-dots { display: flex; gap: 5px; }
.browser-dots i { width: 8px; height: 8px; border-radius: 50%; background: #c9cfdb; }
.browser-address {
  width: 72%;
  margin: auto;
  height: 22px;
  display: grid;
  place-items: center;
  color: #a0a8b5;
  background: #fff;
  border-radius: 7px;
  font-size: 8px;
}
.browser-content { padding: 25px; }
.browser-nav { display: flex; align-items: center; justify-content: space-between; }
.fake-logo {
  width: 28px; height: 28px; border-radius: 9px;
  display: grid; place-items: center; color: #fff;
  background: var(--purple); font-weight: 900; font-size: 11px;
}
.fake-links { display: flex; gap: 11px; }
.fake-links span { width: 31px; height: 5px; background: #dfe3ec; border-radius: 99px; }
.fake-button { width: 58px; height: 20px; border-radius: 7px; background: #0c1525; }
.browser-hero {
  min-height: 265px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 18px;
}
.browser-text { display: grid; gap: 9px; }
.browser-text span { display: block; border-radius: 99px; }
.fake-kicker { width: 47px; height: 5px; background: #754C9C; }
.fake-title { width: 92%; height: 16px; background: #162031; }
.fake-title.short { width: 73%; }
.fake-paragraph { width: 86%; height: 5px; background: #d8dde7; }
.fake-paragraph.small { width: 64%; }
.fake-cta { width: 84px; height: 24px; margin-top: 7px; background: #F4AD32; border-radius: 8px !important; }
.browser-graphic {
  position: relative;
  height: 190px;
  display: grid;
  place-items: center;
}
.graphic-orb {
  width: 150px; height: 150px; border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, #bfb2ff, #7559ff 60%, #4830c5);
  box-shadow: 0 26px 50px rgba(117,89,255,.25);
}
.graphic-card {
  position: absolute;
  width: 90px; height: 48px;
  border-radius: 11px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 14px 32px rgba(34,42,70,.18);
}
.g1 { left: 8px; top: 36px; transform: rotate(-5deg); }
.g2 { right: 2px; bottom: 28px; transform: rotate(6deg); }
.browser-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 9px; }
.browser-cards i { height: 55px; border-radius: 11px; background: #f3f5f9; border: 1px solid #e9ecf2; }
.site-badge {
  position: absolute;
  right: -25px;
  bottom: 36px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 16px;
  background: #fff;
  border: 1px solid #eef0f5;
  border-radius: 16px;
  box-shadow: 0 20px 46px rgba(36,46,83,.14);
}
.site-badge small, .site-badge strong { display: block; }
.site-badge small { color: #929aaa; font-size: 9px; }
.site-badge strong { font-size: 11px; }
.badge-icon {
  width: 32px; height: 32px; border-radius: 10px;
  display: grid; place-items: center;
  background: #fff2d9;
}

/* Google */
.google-visual {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
}
.visual-backdrop {
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
}
.purple-backdrop {
  background:
    radial-gradient(circle at 30% 30%, #d7cfff, #8c76ff 50%, #654be8 76%, #4d37c7);
  box-shadow: 0 32px 80px rgba(117,89,255,.21);
}
.phone-card {
  position: relative;
  z-index: 2;
  width: min(64%, 350px);
  transform: rotate(-2deg);
  filter: drop-shadow(0 28px 34px rgba(39,37,88,.25));
}
.phone-card img { width: 100%; }
.map-pin {
  position: absolute;
  z-index: 3;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  color: #fff;
  border: 7px solid rgba(255,255,255,.92);
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 10px 28px rgba(0,0,0,.15);
  font-size: 0;
}
.map-pin::after {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #fff;
}
.pin-a { top: 18%; right: 12%; }
.pin-b { bottom: 17%; left: 11%; background: var(--purple); }
.pin-c { top: 34%; left: 9%; width: 28px; height: 28px; border-width: 5px; background: var(--cyan); }
.feature-stack { margin: 34px 0 34px; }
.feature-row {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.feature-row:last-child { border-bottom: 1px solid var(--line); }
.feature-number {
  color: var(--purple);
  font-size: 11px;
  font-weight: 900;
}
.feature-row strong, .feature-row small { display: block; }
.feature-row strong { margin-bottom: 5px; font-size: 15px; }
.feature-row small { color: #8490a1; font-size: 12px; line-height: 1.5; }

/* IA */
.split-ai { padding: 130px 0; }
.ai-grid-lines {
  position: absolute;
  inset: 0;
  opacity: .08;
  background-image:
    linear-gradient(rgba(255,255,255,.6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.6) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(circle at 70% 50%, #000 0%, transparent 62%);
}
.light-copy { position: relative; z-index: 2; }
.light-copy h2 { color: #fff; }
.light-copy p { color: rgba(255,255,255,.60); }
.pill-grid {
  margin: 33px 0 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.pill-grid span {
  padding: 11px 13px;
  color: rgba(255,255,255,.80);
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}
.ai-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}
.ai-glow {
  position: absolute;
  width: 390px; height: 390px;
  border-radius: 50%;
  background: rgba(117,76,156,.28);
  filter: blur(35px);
}
.ai-image-card {
  position: relative;
  z-index: 2;
  width: min(95%, 560px);
  padding: 25px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 28px;
  backdrop-filter: blur(10px);
  box-shadow: 0 40px 90px rgba(0,0,0,.28);
}
.ai-image-card img {
  width: 100%;
  filter: saturate(.88) contrast(1.03);
}
.ai-chip {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  color: #fff;
  background: rgba(12,21,37,.88);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  box-shadow: 0 16px 38px rgba(0,0,0,.24);
  backdrop-filter: blur(12px);
  font-size: 11px;
  font-weight: 750;
}
.ai-chip span { color: #F4AD32; }
.chip-one { top: 13%; right: -8px; }
.chip-two { bottom: 18%; left: -18px; }
.chip-three { top: 38%; left: -6px; }

/* ---------- Results ---------- */
.results-section { border-bottom: 1px solid var(--line); }
.results-intro {
  max-width: 700px;
  margin-bottom: 55px;
}
.results-intro .kicker { margin-bottom: 18px; }
.results-intro p { max-width: 590px; }
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.metric-card {
  min-height: 190px;
  padding: 34px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
}
.metric-card:last-child { border-right: 0; }
.metric-card strong {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -.05em;
}
.metric-card span {
  max-width: 220px;
  color: #7d8795;
  font-size: 12px;
  line-height: 1.55;
}

/* ---------- About ---------- */
.about-section {
  background:
    radial-gradient(circle at 9% 48%, rgba(117,89,255,.07), transparent 28%),
    #f3f5fa;
}
.about-visual {
  position: relative;
  min-height: 550px;
  display: grid;
  place-items: end center;
}
.about-shape {
  position: absolute;
  width: 430px; height: 430px;
  border-radius: 44% 56% 54% 46% / 45% 38% 62% 55%;
  background: linear-gradient(135deg, #8F66B7, #754C9C);
  transform: rotate(-6deg);
  box-shadow: 0 38px 80px rgba(117,76,156,.22);
}
.about-visual img {
  position: relative;
  z-index: 2;
  max-height: 535px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 40px rgba(31,38,70,.20));
}
.about-label {
  position: absolute;
  z-index: 4;
  left: 5px;
  bottom: 28px;
  padding: 15px 18px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(36,46,83,.14);
}
.about-label span, .about-label strong { display: block; }
.about-label span { margin-bottom: 3px; color: #8c95a3; font-size: 9px; }
.about-label strong { font-size: 12px; }
.dark-link { color: var(--ink); }

/* ---------- FAQ ---------- */
.faq-section { background: #fff; }
.faq-grid {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 90px;
  align-items: start;
}
.faq-heading { position: sticky; top: 130px; }
.faq-heading .kicker { margin-bottom: 18px; }
.faq-heading h2 { margin-bottom: 15px; }
.faq-heading p { max-width: 360px; margin-bottom: 28px; }
.accordion {
  border-top: 1px solid var(--line);
}
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-trigger {
  width: 100%;
  min-height: 88px;
  padding: 0;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  text-align: left;
  cursor: pointer;
  font-size: 17px;
  font-weight: 780;
}
.accordion-trigger i {
  width: 30px; height: 30px;
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f4ecfb;
  font-style: normal;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.accordion-item.active .accordion-trigger i {
  color: #fff;
  background: var(--purple);
  transform: rotate(45deg);
}
.accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .32s ease;
}
.accordion-content > p {
  overflow: hidden;
  margin: 0;
}
.accordion-item.active .accordion-content {
  grid-template-rows: 1fr;
}
.accordion-item.active .accordion-content > p {
  padding-bottom: 26px;
}

/* ---------- CTA ---------- */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 40px 0 70px;
  background: #fff;
}
.cta-box {
  position: relative;
  overflow: hidden;
  padding: 66px;
  min-height: 340px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 15%, rgba(244,173,50,.18), transparent 27%),
    radial-gradient(circle at 15% 110%, rgba(117,76,156,.33), transparent 42%),
    var(--dark);
  border-radius: 34px;
  display: grid;
  grid-template-columns: 1.5fr .5fr;
  align-items: center;
  gap: 60px;
  box-shadow: 0 30px 80px rgba(8,16,29,.18);
}
.cta-box .kicker { margin-bottom: 18px; }
.cta-box h2 { max-width: 740px; margin-bottom: 18px; }
.cta-box p { max-width: 640px; margin: 0; color: rgba(255,255,255,.60); }
.cta-actions { display: grid; justify-items: start; gap: 12px; }
.cta-actions small { color: rgba(255,255,255,.44); font-size: 10px; }

/* ---------- Footer ---------- */
.footer {
  padding: 68px 0 28px;
  color: #fff;
  background: #050a12;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  gap: 60px;
}
.footer-brand p {
  max-width: 430px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.45);
  font-size: 13px;
}
.footer-links {
  display: grid;
  align-content: start;
  gap: 12px;
}
.footer-links a,
.footer-contact a {
  color: rgba(255,255,255,.56);
  font-size: 13px;
  font-weight: 650;
}
.footer-links a:hover,
.footer-contact a:hover { color: #fff; }
.footer-contact {
  display: grid;
  align-content: start;
  gap: 12px;
}
.footer-contact strong { font-size: 14px; }
.footer-bottom {
  margin-top: 58px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.09);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,.34);
  font-size: 10px;
}

/* ---------- WhatsApp ---------- */
.whatsapp-float {
  position: fixed;
  z-index: 95;
  right: 22px;
  bottom: 22px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #F4AD32; color: #08101d;
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(244,173,50,.34);
  transition: transform .2s ease;
}
.whatsapp-float:hover { transform: translateY(-4px) scale(1.03); }
.whatsapp-float svg { width: 25px; fill: currentColor; }

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

/* ---------- Responsive ---------- */
@media (max-width: 1060px) {
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .header-inner { height: 74px; }

  .hero {
    min-height: auto;
    padding-top: 140px;
  }
  .hero-grid,
  .split-grid,
  .split-grid.reverse {
    grid-template-columns: 1fr;
  }
  .hero-grid { gap: 10px; }
  .hero-copy { padding-right: 0; }
  .hero-visual { min-height: 560px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .split-grid { gap: 50px; }
  .split-grid.reverse .split-visual { order: 2; }
  .split-grid.reverse .split-copy { order: 1; }
  .google-visual { min-height: 500px; }
  .faq-grid { gap: 55px; }
  .cta-box { grid-template-columns: 1fr; gap: 34px; }
  .metrics-grid { grid-template-columns: 1fr 1fr; }
  .metric-card:nth-child(2) { border-right: 0; }
  .metric-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 30px), var(--container)); }
  .section { padding: 82px 0; }
  h1 { font-size: clamp(44px, 14vw, 66px); line-height: 1.06; }
  h2 { font-size: clamp(35px, 10vw, 48px); }

  .brand-logo { width: 146px; }
  .brand { min-width: 146px; }

  .hero { padding-top: 120px; padding-bottom: 65px; }
  .hero-lead { font-size: 16px; }
  .hero-actions { display: grid; }
  .button-lg { width: 100%; }
  .hero-proof {
    align-items: flex-start;
    gap: 14px;
    overflow-x: auto;
  }
  .proof-item { min-width: 110px; }
  .proof-divider { flex: 0 0 1px; }
  .hero-visual { min-height: 440px; margin-top: 20px; }
  .hero-image-shell { min-height: 420px; }
  .hero-image { max-height: 420px; }
  .orbit-one { width: 330px; height: 330px; }
  .orbit-two { width: 270px; height: 270px; }
  .floating-card { transform: scale(.88); }
  .float-card-a { left: -20px; top: 28%; }
  .float-card-b { right: -20px; bottom: 10%; }

  .section-heading { margin-bottom: 34px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 250px; }
  .service-icon { margin-bottom: 28px; }

  .split-grid, .split-grid.reverse { gap: 38px; }
  .split-copy p { font-size: 16px; }
  .check-grid { grid-template-columns: 1fr; }
  .browser-showcase { min-height: 390px; }
  .browser-window { transform: none; }
  .site-badge { right: -6px; bottom: 0; }
  .browser-content { padding: 16px; }
  .browser-hero { min-height: 200px; }
  .graphic-orb { width: 110px; height: 110px; }
  .graphic-card { width: 70px; height: 38px; }

  .google-visual { min-height: 410px; }
  .visual-backdrop { width: 310px; height: 310px; }
  .phone-card { width: min(66%, 275px); }
  .pin-a { right: 5%; }
  .pin-b { left: 3%; }

  .split-ai { padding: 92px 0; }
  .ai-visual { min-height: 380px; }
  .ai-chip { font-size: 9px; }
  .chip-one { right: -2px; }
  .chip-two { left: -3px; }
  .chip-three { left: 0; }
  .ai-image-card { padding: 13px; border-radius: 20px; }

  .metrics-grid { grid-template-columns: 1fr; }
  .metric-card {
    min-height: 145px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .metric-card:last-child { border-bottom: 0; }

  .about-visual { min-height: 430px; }
  .about-shape { width: 320px; height: 320px; }
  .about-visual img { max-height: 420px; }

  .faq-grid { grid-template-columns: 1fr; gap: 42px; }
  .faq-heading { position: static; }
  .accordion-trigger { min-height: 78px; font-size: 15px; }

  .cta-section { padding: 25px 0 50px; }
  .cta-box { padding: 38px 26px; border-radius: 25px; }
  .cta-box .button { width: 100%; }

  .footer { padding-top: 50px; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .footer-bottom { flex-direction: column; margin-top: 42px; }

  .whatsapp-float {
    right: 15px;
    bottom: 15px;
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }
}

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