/* ============================================================
   Fikcit — landing page redesign (index.html only)
   Other pages keep using styles.css. This file is standalone.
   Sections: tokens · base · nav · loader · hero · phone ·
   marquee · stats · how · services · island · pros · voices ·
   cta · footer · responsive · a11y
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,560;0,9..144,640;1,9..144,400;1,9..144,560&family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@500;600&display=swap');

/* ---------- Tokens ---------- */
:root {
  --navy-950: #051A35;
  --navy-900: #0A2A52;
  --navy-700: #1B4A8C;
  --navy-500: #3D74C4;
  --gold-500: #FFC72C;
  --gold-300: #FFDA6B;
  --coral-500: #FF7A59;
  --sea-500:  #2EC4B6;
  --sea-100:  #E6F4F1;
  --sand-100: #FBF6EC;
  --sand-200: #F4EBDA;
  --ink-900:  #0F1419;
  --ink-500:  #5B6470;
  --white:    #FFFFFF;
  --wa-green: #25D366;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'Space Grotesk', 'SF Mono', monospace;

  --container: 1240px;
  --nav-h: 76px;
  --radius-md: 16px;
  --radius-lg: 26px;
  --radius-xl: 36px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --shadow-md: 0 10px 30px rgba(5, 26, 53, 0.10);
  --shadow-lg: 0 24px 64px rgba(5, 26, 53, 0.18);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--sand-100);
  color: var(--ink-900);
  line-height: 1.55;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, p, figure { margin: 0; }
img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

::selection { background: var(--gold-500); color: var(--navy-950); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--navy-900); color: var(--white);
  padding: 0.75rem 1.25rem; border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }

/* Display type */
.d1 {
  font-family: var(--font-display);
  font-weight: 560;
  font-size: clamp(2.75rem, 7.6vw, 6.25rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--navy-950);
}
.d2 {
  font-family: var(--font-display);
  font-weight: 560;
  font-size: clamp(2rem, 4.4vw, 3.75rem);
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: var(--navy-950);
}
.d1 em, .d2 em { font-style: italic; font-weight: 400; color: var(--navy-700); }
.accent-gold { color: transparent; -webkit-text-stroke: 2px var(--navy-900); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--navy-700);
}
.eyebrow::before {
  content: ''; width: 26px; height: 2px;
  background: var(--gold-500); border-radius: 2px;
}
.on-dark .eyebrow { color: var(--gold-300); }

.lead { font-size: clamp(1.05rem, 1.4vw, 1.25rem); color: var(--ink-500); max-width: 54ch; }

/* Split-line reveal: lines are wrapped in .hl > .hl__in by markup */
.hl { display: block; overflow: hidden; padding-block: 0.06em; margin-block: -0.06em; }
.hl__in { display: block; will-change: transform; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  font-weight: 600; font-size: 1rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.25s;
  white-space: nowrap;
}
.btn svg { flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--wa {
  background: var(--navy-950); color: var(--white);
  box-shadow: 0 8px 24px rgba(5, 26, 53, 0.25);
}
.btn--wa:hover { box-shadow: 0 14px 34px rgba(5, 26, 53, 0.3); }
.btn--wa .wa-ic { color: var(--wa-green); }
.btn--gold {
  background: var(--gold-500); color: var(--navy-950);
  box-shadow: 0 8px 24px rgba(255, 199, 44, 0.35);
}
.btn--ghost {
  color: var(--navy-900);
  box-shadow: inset 0 0 0 2px rgba(10, 42, 82, 0.25);
}
.btn--ghost:hover { box-shadow: inset 0 0 0 2px var(--navy-900); }
.on-dark .btn--ghost { color: var(--white); box-shadow: inset 0 0 0 2px rgba(255,255,255,0.35); }
.on-dark .btn--ghost:hover { box-shadow: inset 0 0 0 2px var(--white); }
.btn--lg { padding: 1.15rem 2.1rem; font-size: 1.1rem; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 90;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), backdrop-filter 0.4s;
}
.nav.is-scrolled {
  background: rgba(251, 246, 236, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(5, 26, 53, 0.08);
}
.nav__inner { display: flex; align-items: center; gap: 2rem; }
.nav__logo {
  font-family: var(--font-display); font-weight: 640;
  font-size: 1.7rem; line-height: 1; color: var(--ink-900);
}
.nav__logo:hover { text-decoration: none; }
.nav__logo .lx { color: var(--navy-700); }
.nav__logo .lc { color: var(--gold-500); }
.nav__links { display: flex; gap: 1.75rem; margin-left: auto; }
.nav__links a {
  font-size: 0.95rem; font-weight: 500; color: var(--navy-900);
  position: relative; padding-block: 0.3rem;
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; background: var(--gold-500);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__cta { padding: 0.65rem 1.3rem; font-size: 0.92rem; }
.nav__burger {
  display: none; width: 44px; height: 44px;
  align-items: center; justify-content: center;
  color: var(--navy-950);
}

.mobile-menu {
  position: fixed; inset: 0; z-index: 80;
  background: var(--navy-950); color: var(--white);
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(1.5rem, 6vw, 3rem);
  gap: 0.4rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu a:not(.btn) {
  font-family: var(--font-display); font-weight: 560;
  font-size: clamp(2rem, 8vw, 3rem); line-height: 1.3;
  color: var(--sand-100);
}
.mobile-menu a:not(.btn):hover { color: var(--gold-500); }
.mobile-menu .btn { margin-top: 1.5rem; justify-content: center; }
.mobile-menu .btn--ghost { color: var(--white); box-shadow: inset 0 0 0 2px rgba(255,255,255,0.4); margin-top: 0.75rem; }

/* keep nav controls visible over the open menu */
body.menu-open .nav { background: transparent; box-shadow: none; backdrop-filter: none; -webkit-backdrop-filter: none; }
body.menu-open .nav__logo, body.menu-open .nav__logo .lx { color: var(--sand-100); }
body.menu-open .nav__burger { color: var(--sand-100); }
body.menu-open .nav__cta { visibility: hidden; }

/* ---------- Loader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 120;
  background: var(--navy-950);
  display: flex; align-items: center; justify-content: center;
}
.loader__word {
  font-family: var(--font-display); font-weight: 560;
  font-size: clamp(3rem, 10vw, 6rem); color: var(--sand-100);
  display: flex; overflow: hidden;
}
.loader__word .loader__ch { display: inline-block; transform: translateY(110%); }
.loader__word .lx { color: var(--navy-500); }
.loader__word .lc { color: var(--gold-500); }
.loader__swap { position: relative; overflow: hidden; }
.loader__kc { display: inline-flex; }
.loader__kc span { display: inline-block; }
.loader__trident {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.loader__trident svg { height: 1.04em; width: auto; fill: var(--gold-500); }
html.no-js .loader, html.reduced .loader { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding-top: calc(var(--nav-h) + 2rem);
  padding-bottom: clamp(3rem, 8vh, 6rem);
  background: linear-gradient(180deg, #FDFAF3 0%, var(--sand-100) 55%, #F2E9D6 100%);
  overflow: hidden;
}
.hero__canvas {
  position: absolute; inset: auto 0 0 0;
  width: 100%; height: 46%;
  pointer-events: none;
}
.hero__sun {
  position: absolute; top: 9%; right: 12%;
  width: clamp(120px, 16vw, 220px); aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 35%, var(--gold-300), var(--gold-500) 62%, var(--coral-500) 130%);
  box-shadow: 0 0 90px rgba(255, 199, 44, 0.55);
  pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero__title { margin: 1.4rem 0 1.5rem; }
.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.2rem; }
.hero__meta {
  display: flex; align-items: center; gap: 0.9rem;
  margin-top: 2.4rem; color: var(--ink-500); font-size: 0.92rem;
}
.hero__avatars { display: flex; }
.hero__avatars span {
  width: 38px; height: 38px; border-radius: 50%;
  border: 2.5px solid var(--sand-100);
  display: grid; place-items: center;
  font-size: 1rem; margin-left: -10px;
}
.hero__avatars span:first-child { margin-left: 0; }
.hero__scrollcue {
  position: absolute; bottom: 1.6rem; left: 50%;
  transform: translateX(-50%); z-index: 3;
  color: var(--navy-900); opacity: 0.55;
  font-family: var(--font-mono); font-size: 0.72rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
}
.hero__scrollcue::after {
  content: ''; width: 1.5px; height: 34px;
  background: currentColor;
  animation: cue 1.8s var(--ease) infinite;
  transform-origin: top;
}
@keyframes cue {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- Phone mockup ---------- */
.phone-wrap { position: relative; display: flex; justify-content: center; }
.phone {
  width: clamp(270px, 24vw, 330px);
  border-radius: 44px;
  background: var(--navy-950);
  padding: 12px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(5,26,53,0.2);
  will-change: transform;
}
.phone__screen {
  border-radius: 34px;
  background: #ECE5DD; /* WhatsApp wallpaper tone */
  overflow: hidden;
  display: flex; flex-direction: column;
  height: clamp(480px, 56vh, 600px);
}
.phone__bar {
  background: var(--navy-900); color: var(--white);
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.85rem 1rem 0.7rem;
}
.phone__bar img { width: 32px; height: 32px; border-radius: 50%; background: var(--white); padding: 3px; }
.phone__bar b { font-size: 0.88rem; display: block; line-height: 1.2; }
.phone__bar small { font-size: 0.7rem; opacity: 0.75; }
.phone__chat {
  flex: 1; padding: 1rem 0.85rem;
  display: flex; flex-direction: column; gap: 0.55rem;
  overflow: hidden;
}
.msg {
  max-width: 86%;
  padding: 0.55rem 0.8rem;
  border-radius: 14px;
  font-size: 0.83rem; line-height: 1.4;
  box-shadow: 0 1px 1px rgba(0,0,0,0.08);
  will-change: transform, opacity;
}
.msg--out { align-self: flex-end; background: #DCF8C6; border-bottom-right-radius: 4px; }
.msg--in  { align-self: flex-start; background: var(--white); border-bottom-left-radius: 4px; }
.msg--photo { padding: 0.3rem; }
.msg--photo svg { border-radius: 10px; width: 180px; height: auto; }
.msg__time { display: block; font-size: 0.62rem; color: rgba(15,20,25,0.45); text-align: right; margin-top: 2px; }
.quote-card {
  border: 1.5px solid var(--sea-100);
  border-radius: 12px; overflow: hidden;
  margin-top: 0.4rem; background: var(--sand-100);
}
.quote-card__top { display: flex; gap: 0.55rem; align-items: center; padding: 0.55rem 0.6rem 0.3rem; }
.quote-card__avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-500), var(--navy-700));
  color: var(--white); display: grid; place-items: center;
  font-weight: 700; font-size: 0.7rem;
}
.quote-card__top b { font-size: 0.78rem; display: block; }
.quote-card__top small { font-size: 0.66rem; color: var(--ink-500); }
.quote-card__price {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 0.25rem 0.65rem 0.55rem;
}
.quote-card__price b { font-size: 0.95rem; color: var(--navy-900); }
.quote-card__price small { font-size: 0.66rem; color: var(--ink-500); }
.quote-card__btn {
  display: block; text-align: center;
  background: var(--gold-500); color: var(--navy-950);
  font-weight: 700; font-size: 0.78rem;
  padding: 0.5rem;
}
.msg--status {
  align-self: center; background: rgba(10, 42, 82, 0.08);
  color: var(--navy-900); font-weight: 600; font-size: 0.74rem;
  border-radius: 999px; padding: 0.35rem 0.9rem;
  box-shadow: none;
}
.typing { display: inline-flex; gap: 4px; padding: 0.25rem 0.2rem; }
.typing i {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(15,20,25,0.35);
  animation: tdot 1.1s infinite;
}
.typing i:nth-child(2) { animation-delay: 0.18s; }
.typing i:nth-child(3) { animation-delay: 0.36s; }
@keyframes tdot { 0%, 60%, 100% { transform: translateY(0); } 30% { transform: translateY(-4px); } }

/* floating chips around the phone */
.float-chip {
  position: absolute; z-index: 3;
  background: var(--white); border-radius: 14px;
  box-shadow: var(--shadow-md);
  padding: 0.55rem 0.85rem;
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; font-weight: 600; color: var(--navy-900);
  will-change: transform;
}
.float-chip svg { flex: none; }
.float-chip--1 { top: 12%; left: -6%; }
.float-chip--2 { bottom: 20%; right: -8%; }
.float-chip--3 { bottom: 4%; left: -2%; }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--navy-950); color: var(--sand-100);
  padding: 1.1rem 0;
  overflow: hidden;
  transform: rotate(-1.2deg) scale(1.02);
  margin-block: -1rem 0;
  position: relative; z-index: 4;
}
.marquee__track {
  display: flex; gap: 2.5rem; width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee__track span {
  font-family: var(--font-mono); font-weight: 600;
  font-size: 0.95rem; letter-spacing: 0.14em; text-transform: uppercase;
  display: flex; align-items: center; gap: 2.5rem; white-space: nowrap;
}
.marquee__track span i {
  font-style: normal; color: var(--gold-500); font-size: 0.8rem;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Stats ---------- */
.stats { padding: clamp(4rem, 9vw, 7rem) 0 clamp(3rem, 7vw, 5.5rem); }
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
}
.stat { border-top: 2px solid rgba(10, 42, 82, 0.14); padding-top: 1.2rem; }
.stat__num {
  font-family: var(--font-display); font-weight: 560;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  color: var(--navy-950); line-height: 1;
  display: flex; align-items: baseline;
}
.stat__num small { font-size: 0.5em; color: var(--coral-500); margin-left: 2px; }
.stat__label { margin-top: 0.5rem; color: var(--ink-500); font-size: 0.95rem; }

/* ---------- How it works ---------- */
.how { padding: clamp(4rem, 10vw, 8rem) 0; background: var(--sand-200); position: relative; }
.how__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2.5rem, 6vw, 6rem); }
.how__sticky { position: sticky; top: calc(var(--nav-h) + 2rem); align-self: start; }
.how__sticky .lead { margin-top: 1.2rem; }
.how__steps { display: flex; flex-direction: column; gap: 1.4rem; }
.step-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  display: flex; gap: 1.4rem; align-items: flex-start;
  box-shadow: var(--shadow-md);
  will-change: transform, opacity;
}
.step-card__num {
  font-family: var(--font-mono); font-weight: 600;
  color: var(--coral-500); font-size: 0.9rem; letter-spacing: 0.1em;
  padding-top: 0.3rem; flex: none;
}
.step-card h3 {
  font-family: var(--font-display); font-weight: 560;
  font-size: clamp(1.3rem, 2vw, 1.65rem); color: var(--navy-950);
  margin-bottom: 0.4rem;
}
.step-card p { color: var(--ink-500); font-size: 0.98rem; }
.step-card__icon {
  margin-left: auto; flex: none;
  width: 52px; height: 52px; border-radius: 16px;
  background: var(--sea-100); color: var(--navy-700);
  display: grid; place-items: center;
}

/* ---------- Services (horizontal) ---------- */
.services { background: var(--navy-950); color: var(--sand-100); overflow: hidden; }
.services__head {
  padding-block: clamp(4rem, 9vw, 7rem) clamp(2rem, 4vw, 3rem);
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.services__head .d2 { color: var(--sand-100); }
.services__head .d2 em { color: var(--gold-500); }
.services__hint { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(251,246,236,0.5); }
.services__viewport { position: relative; }
.services__track {
  display: flex; gap: clamp(1.2rem, 2vw, 2rem);
  padding: 0 clamp(1.25rem, 4vw, 2.5rem) clamp(4rem, 8vw, 6rem);
  width: max-content;
  will-change: transform;
}
.svc {
  width: clamp(260px, 26vw, 360px);
  border-radius: var(--radius-xl);
  padding: 1.8rem 1.8rem 2rem;
  display: flex; flex-direction: column; gap: 1.1rem;
  min-height: 380px;
  position: relative; overflow: hidden;
  transition: transform 0.4s var(--ease);
}
.svc:hover { transform: translateY(-8px); }
.svc__num { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.15em; opacity: 0.6; }
.svc__art { margin: auto 0; display: flex; justify-content: center; }
.svc__art svg { width: 120px; height: 120px; }
.svc h3 { font-family: var(--font-display); font-weight: 560; font-size: 1.5rem; }
.svc p { font-size: 0.92rem; opacity: 0.75; line-height: 1.45; }
.svc__badge {
  position: absolute; top: 1.4rem; right: 1.4rem;
  background: var(--coral-500); color: var(--white);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em;
  border-radius: 999px; padding: 0.3rem 0.7rem;
}
.svc--sand  { background: var(--sand-100); color: var(--navy-950); }
.svc--sea   { background: var(--sea-100); color: var(--navy-950); }
.svc--gold  { background: var(--gold-500); color: var(--navy-950); }
.svc--navy  { background: var(--navy-700); color: var(--sand-100); }
.svc--coral { background: #FFE9E2; color: var(--navy-950); }

/* mobile: native scroll-snap fallback */
@media (max-width: 860px) {
  .services__track {
    width: auto;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .services__track::-webkit-scrollbar { display: none; }
  .svc { scroll-snap-align: center; flex: none; }
}

/* ---------- Island / why ---------- */
.island {
  background: linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 100%);
  color: var(--sand-100);
  position: relative;
  padding: clamp(4rem, 10vw, 8rem) 0 clamp(5rem, 11vw, 9rem);
}
.island::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 120px;
  background: var(--navy-950);
  clip-path: ellipse(75% 100% at 50% 0%);
  display: none;
}
.island__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.island .d2 { color: var(--sand-100); }
.island .d2 em { color: var(--gold-500); }
.island__values { margin-top: 2.2rem; display: flex; flex-direction: column; gap: 1.6rem; }
.value { display: flex; gap: 1.1rem; align-items: flex-start; }
.value__ic {
  flex: none; width: 46px; height: 46px; border-radius: 14px;
  background: rgba(255, 199, 44, 0.14); color: var(--gold-500);
  display: grid; place-items: center;
}
.value h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.25rem; color: var(--white); }
.value p { font-size: 0.95rem; color: rgba(251, 246, 236, 0.65); max-width: 44ch; }
.island__map { position: relative; display: flex; justify-content: center; }
.island__map svg { width: min(100%, 480px); height: auto; }
.map-pin { transform-origin: center; }
.island__chips { display: flex; gap: 0.6rem; flex-wrap: wrap; justify-content: center; margin-top: 1.6rem; }
.island__chips span {
  font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.1em;
  border: 1px solid rgba(251, 246, 236, 0.25); color: rgba(251, 246, 236, 0.8);
  border-radius: 999px; padding: 0.35rem 0.9rem;
}
.island__chips span.is-live { border-color: var(--gold-500); color: var(--gold-500); }

/* wave divider */
.wave { display: block; width: 100%; height: clamp(40px, 7vw, 90px); }

/* ---------- Pros ---------- */
.pros { padding: clamp(4.5rem, 10vw, 8rem) 0; background: var(--sand-100); overflow: hidden; }
.pros__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.pros__ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.2rem; }
.pros__perks { margin: 1.8rem 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.pros__perks li { display: flex; gap: 0.7rem; align-items: center; color: var(--ink-500); }
.pros__perks svg { color: var(--sea-500); flex: none; }
.lead-stack { position: relative; min-height: 420px; }
.lead-card {
  position: absolute; left: 50%; top: 50%;
  width: min(330px, 86%);
  background: var(--white); border-radius: 20px;
  box-shadow: var(--shadow-lg);
  padding: 1.2rem 1.3rem;
  will-change: transform;
}
.lead-card--1 { transform: translate(-62%, -78%) rotate(-7deg); }
.lead-card--2 { transform: translate(-38%, -42%) rotate(4deg); }
.lead-card--3 { transform: translate(-52%, -10%) rotate(-2deg); z-index: 2; }
.lead-card__tag {
  font-family: var(--font-mono); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--coral-500);
}
.lead-card h4 { font-size: 1.02rem; color: var(--navy-950); margin: 0.3rem 0 0.2rem; }
.lead-card p { font-size: 0.85rem; color: var(--ink-500); }
.lead-card__foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 0.9rem; padding-top: 0.8rem;
  border-top: 1px solid rgba(10,42,82,0.08);
}
.lead-card__foot b { color: var(--navy-900); font-size: 0.95rem; }
.lead-card__foot span {
  background: var(--sea-100); color: var(--navy-700);
  font-size: 0.72rem; font-weight: 700;
  border-radius: 999px; padding: 0.3rem 0.75rem;
}

/* ---------- Voices ---------- */
.voices { padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(4.5rem, 9vw, 7rem); background: var(--sand-200); overflow: hidden; }
.voices__head { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.voices__row { display: flex; gap: 1.4rem; width: max-content; will-change: transform; padding-block: 0.5rem; }
.voices__row + .voices__row { margin-top: 1.4rem; }
.voice {
  width: clamp(280px, 30vw, 400px);
  background: var(--white); border-radius: 20px;
  padding: 1.6rem 1.7rem;
  box-shadow: var(--shadow-md);
  flex: none;
}
.voice p {
  font-family: var(--font-display); font-weight: 400; font-style: italic;
  font-size: clamp(1.02rem, 1.3vw, 1.18rem); color: var(--navy-950); line-height: 1.4;
}
.voice footer { margin-top: 1rem; display: flex; align-items: center; gap: 0.7rem; }
.voice__avatar {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  color: var(--white); font-weight: 700; font-size: 0.8rem;
}
.voice footer b { font-size: 0.88rem; color: var(--navy-950); display: block; }
.voice footer small { font-size: 0.76rem; color: var(--ink-500); }
.voice__stars { margin-left: auto; color: var(--gold-500); font-size: 0.8rem; letter-spacing: 0.1em; }

/* ---------- CTA ---------- */
.cta {
  background: var(--navy-950);
  color: var(--sand-100);
  position: relative; overflow: hidden;
  padding: clamp(5rem, 12vw, 10rem) 0;
  text-align: center;
}
.cta__sun {
  position: absolute; left: 50%; bottom: -28vw;
  width: 56vw; aspect-ratio: 1; transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 30%, rgba(255,199,44,0.35), rgba(255,122,89,0.12) 55%, transparent 75%);
  pointer-events: none;
}
.cta .d1 { color: var(--sand-100); }
.cta .d1 em { color: var(--gold-500); }
.cta__sub { margin: 1.4rem auto 2.6rem; color: rgba(251,246,236,0.7); font-size: clamp(1.05rem, 1.5vw, 1.3rem); max-width: 44ch; }
.cta__note { margin-top: 1.6rem; font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(251,246,236,0.45); }

/* ---------- Footer ---------- */
.footer { background: var(--navy-950); color: rgba(251,246,236,0.75); padding: 1.5rem 0 2rem; }
.footer__rule { border: 0; border-top: 1px solid rgba(251,246,236,0.12); margin: 0 0 2.5rem; }
.footer__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem; padding-bottom: 3rem;
}
.footer__wordmark {
  font-family: var(--font-display); font-weight: 560;
  font-size: 1.8rem; color: var(--sand-100); line-height: 1;
}
.footer__wordmark .lx { color: var(--navy-500); }
.footer__wordmark .lc { color: var(--gold-500); }
.footer__brand p { margin-top: 1rem; font-size: 0.92rem; max-width: 38ch; line-height: 1.6; }
.footer__col h4 {
  font-family: var(--font-mono); font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-500); margin-bottom: 1rem;
}
.footer__col a { display: block; padding-block: 0.3rem; font-size: 0.95rem; }
.footer__col a:hover { color: var(--gold-300); }
.footer__big {
  font-family: var(--font-display); font-weight: 560;
  font-size: clamp(4rem, 16vw, 13rem); line-height: 0.9;
  color: rgba(251,246,236,0.06);
  text-align: center; user-select: none; pointer-events: none;
}
.footer__bottom {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: 0.84rem; color: rgba(251,246,236,0.45);
  padding-top: 1.5rem;
}
.footer__bottom a:hover { color: var(--gold-300); }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .hero__inner { grid-template-columns: 1fr; }
  .phone-wrap { margin-top: 1rem; }
  .float-chip--1 { left: 2%; }
  .float-chip--2 { right: 0; }
  .how__grid, .island__grid, .pros__grid { grid-template-columns: 1fr; }
  .how__sticky { position: static; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .hero__scrollcue { display: none; }
}
@media (max-width: 600px) {
  .nav__cta { display: none; }
  .hero { padding-top: calc(var(--nav-h) + 1rem); }
  .hero__sun { right: 4%; top: 6%; }
  .phone { width: min(300px, 84vw); }
  .phone__screen { height: 500px; }
  .float-chip { font-size: 0.72rem; padding: 0.45rem 0.65rem; }
  .float-chip--3 { display: none; }
  .stats__grid { gap: 1.6rem 1.2rem; }
  .lead-stack { min-height: 460px; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .btn--lg { padding: 1rem 1.6rem; font-size: 1rem; }
}

/* ---------- Inner pages (for-pros, about) ---------- */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + clamp(3rem, 8vh, 6rem)) 0 clamp(3rem, 7vw, 5.5rem);
  background: linear-gradient(180deg, #FDFAF3 0%, var(--sand-100) 70%);
  overflow: hidden;
}
.page-hero--split .page-hero__inner {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.page-hero--center { text-align: center; }
.page-hero--center .lead { margin-inline: auto; }
.page-hero .d1 { margin: 1.4rem 0 1.5rem; }
.page-hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.2rem; }
.page-hero--center .page-hero__ctas { justify-content: center; }

.prose { max-width: 68ch; margin: 0 auto; }
.prose p { font-size: 1.0875rem; line-height: 1.75; color: var(--ink-900); }
.prose p + p { margin-top: 1.4rem; }
.prose .pull {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(1.5rem, 2.6vw, 2rem); line-height: 1.3; color: var(--navy-700);
  border-left: 3px solid var(--gold-500);
  padding-left: 1.4rem; margin: 2.4rem 0;
}

.section-pad { padding: clamp(4rem, 9vw, 7rem) 0; }
.section-head { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head .eyebrow { justify-content: center; }
.section-head .lead { margin: 1.2rem auto 0; }

.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.5vw, 2rem); }
.benefit {
  background: var(--white); border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  box-shadow: var(--shadow-md);
}
.benefit__ic {
  width: 52px; height: 52px; border-radius: 16px;
  background: var(--sea-100); color: var(--navy-700);
  display: grid; place-items: center; margin-bottom: 1.1rem;
}
.benefit h3 {
  font-family: var(--font-display); font-weight: 560;
  font-size: 1.35rem; color: var(--navy-950); margin-bottom: 0.5rem;
}
.benefit p { color: var(--ink-500); font-size: 0.97rem; }

.roadmap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; position: relative; }
.roadmap::before {
  content: ''; position: absolute; top: 26px; left: 8%; right: 8%;
  border-top: 2px dashed rgba(10, 42, 82, 0.2);
}
.roadmap__stop { position: relative; text-align: center; padding-top: 0; }
.roadmap__dot {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--white); color: var(--navy-900);
  box-shadow: inset 0 0 0 2px rgba(10, 42, 82, 0.2);
  display: grid; place-items: center;
  font-family: var(--font-mono); font-weight: 600;
  margin: 0 auto 0.9rem; position: relative; z-index: 1;
}
.roadmap__stop--live .roadmap__dot { background: var(--gold-500); box-shadow: 0 8px 20px rgba(255,199,44,0.4); }
.roadmap__label { font-weight: 600; color: var(--navy-950); }
.roadmap__sub { font-size: 0.85rem; color: var(--ink-500); margin-top: 0.2rem; }
.roadmap__stop--live .roadmap__sub { color: var(--coral-500); font-weight: 600; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.2rem, 2.5vw, 2rem); max-width: 920px; margin: 0 auto; }
.contact-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3.5vw, 2.6rem);
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; align-items: flex-start; gap: 0.9rem;
}
.contact-card h3 { font-family: var(--font-display); font-weight: 560; font-size: 1.45rem; color: var(--navy-950); }
.contact-card p { color: var(--ink-500); font-size: 0.97rem; }
.contact-card .btn { margin-top: auto; }
.contact-card a.mail { color: var(--navy-700); font-weight: 600; }

.early {
  background: var(--gold-500); border-radius: var(--radius-xl);
  padding: clamp(2rem, 5vw, 3.5rem);
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.early h3 { font-family: var(--font-display); font-weight: 560; font-size: clamp(1.5rem, 2.6vw, 2.1rem); color: var(--navy-950); max-width: 24ch; }
.early p { color: rgba(5, 26, 53, 0.75); margin-top: 0.6rem; max-width: 50ch; }
.early .btn--wa { flex: none; }

@media (max-width: 1020px) {
  .page-hero--split .page-hero__inner { grid-template-columns: 1fr; }
  .benefits { grid-template-columns: 1fr; }
  .roadmap { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.2rem; }
  .roadmap::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* ---------- A11y / motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .marquee__track, .voices__row { animation: none !important; }
  html { scroll-behavior: auto; }
}
:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 3px; border-radius: 4px; }
