/* ============================================================
   CONTALIA — Despacho contable para empresas
   v2 "Editorial Ledger" design system.
   Warm paper canvas, ink navy, one electric blue accent.
   Ledger rules + mono numerals replace cards and gradients.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Surfaces */
  --paper:      #f4efe6;
  --paper-2:    #ebe4d6;
  --ink:        #0b1024;
  --ink-deep:   #070b19;

  /* Accent */
  --blue:       #3d5afe;
  --blue-deep:  #2337d8;
  --violet:     #7c4dff;   /* logo only */
  --green:      #1fa464;

  /* Semantic text (light zones by default) */
  --t-strong:   #0b1024;
  --t-body:     #3c4152;
  --t-mute:     #767b8d;
  --t-faintest: #a9adba;
  --rule:       rgba(11, 16, 36, 0.16);
  --rule-strong:rgba(11, 16, 36, 0.34);
  --surface:    var(--paper);
  --accent:     var(--blue-deep);

  /* Type */
  --f-logo: "Poppins", -apple-system, system-ui, sans-serif;
  --f-head: "Bricolage Grotesque", -apple-system, system-ui, sans-serif;
  --f-body: "Hanken Grotesk", -apple-system, system-ui, sans-serif;
  --f-accent: "Fraunces", Georgia, serif;
  --f-mono: "IBM Plex Mono", ui-monospace, "SF Mono", monospace;

  /* Layout */
  --maxw: 1440px;
  --gutter: clamp(20px, 4vw, 72px);
  --r: 4px;
  --r-lg: 10px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --snap: cubic-bezier(0.77, 0, 0.18, 1);
}

/* Dark zones flip the semantic tokens */
.dark {
  --t-strong:   #f4efe6;
  --t-body:     #b9bdcc;
  --t-mute:     #7e8497;
  --t-faintest: #565c72;
  --rule:       rgba(244, 239, 230, 0.14);
  --rule-strong:rgba(244, 239, 230, 0.32);
  --surface:    var(--ink);
  --accent:     #6d83ff;
  background: var(--ink);
  color: var(--t-body);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--f-body);
  background: var(--paper);
  color: var(--t-body);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Paper grain */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: 0.55;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 3px; }
::selection { background: var(--blue); color: #fff; }

/* ---------- Type scale ---------- */
h1, h2, h3, h4 { font-family: var(--f-head); color: var(--t-strong); line-height: 1.02; font-weight: 700; letter-spacing: -0.02em; }

.h-display {
  font-size: clamp(2.9rem, 7.6vw, 8rem);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.h-display em.accent, .h-display .accent {
  font-family: var(--f-accent);
  font-style: italic;
  font-weight: 480;
  text-transform: none;
  letter-spacing: -0.015em;
  color: var(--accent);
}
.h-section { font-size: clamp(2.1rem, 4.6vw, 3.9rem); font-weight: 700; letter-spacing: -0.025em; text-wrap: balance; }
.h-sub { font-size: clamp(1.3rem, 2.4vw, 1.8rem); font-weight: 600; }

.mono { font-family: var(--f-mono); }

.eyebrow {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--t-mute);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before { content: ""; width: 9px; height: 9px; background: var(--blue); display: inline-block; }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--t-body); line-height: 1.65; }
.muted { color: var(--t-mute); }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
section { position: relative; padding-block: clamp(76px, 10vw, 150px); }
.sec-rule { border-top: 1px solid var(--rule); }

.section-head { max-width: 780px; margin-bottom: clamp(44px, 6vw, 84px); }
.section-head .h-section { margin-top: 22px; }
.section-head p { margin-top: 20px; max-width: 60ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 17px 28px;
  border-radius: var(--r);
  min-height: 54px;
  position: relative;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
  will-change: transform;
}
.btn .arrow { transition: transform 0.35s var(--ease); font-family: var(--f-body); }
.btn:hover .arrow { transform: translateX(5px); }

.btn-primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 14px 30px -16px rgba(61, 90, 254, 0.9);
}
.btn-primary:hover { background: var(--blue-deep); box-shadow: 0 20px 40px -18px rgba(35, 55, 216, 0.9); }
.btn-primary:active { transform: scale(0.98); }

.btn-ghost {
  color: var(--t-strong);
  border: 1px solid var(--rule-strong);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--t-strong); background: var(--t-strong); color: var(--surface); }

/* ---------- Cursor glow ---------- */
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 420px; height: 420px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(61, 90, 254, 0.10), transparent 65%);
  opacity: 0;
  transition: opacity 0.5s ease;
}
@media (hover: hover) and (pointer: fine) { .cursor-glow.on { opacity: 1; } }

/* ============================================================
   TOP BAR + MENU
   ============================================================ */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gutter);
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), border-color 0.4s var(--ease), color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
  color: var(--ink);
}
.page-home .topbar:not(.scrolled) { color: var(--paper); }
.topbar.scrolled {
  background: rgba(244, 239, 230, 0.86);
  backdrop-filter: blur(14px) saturate(130%);
  border-bottom-color: rgba(11, 16, 36, 0.12);
  padding-block: 12px;
  color: var(--ink);
}

.logo { display: inline-flex; align-items: center; gap: 12px; color: inherit; }
.logo svg { width: 34px; height: 34px; display: block; }
.logo .wordmark {
  font-family: var(--f-logo);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  color: currentColor;
  line-height: 1;
}

.nav-cta { display: inline-flex; align-items: center; gap: 16px; }

.menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: currentColor;
}
.menu-btn .bars { display: inline-flex; flex-direction: column; gap: 4px; width: 22px; }
.menu-btn .bars span { height: 2px; background: currentColor; transition: transform 0.4s var(--ease), width 0.4s var(--ease); }
.menu-btn .bars span:nth-child(1) { width: 22px; }
.menu-btn .bars span:nth-child(2) { width: 14px; align-self: flex-end; }
.menu-btn:hover .bars span:nth-child(2) { width: 22px; }

/* Side panel (stays ink) */
.menu-panel {
  position: fixed;
  top: 0; right: 0;
  height: 100%;
  width: min(460px, 92vw);
  background: var(--ink-deep);
  border-left: 1px solid rgba(244, 239, 230, 0.12);
  z-index: 80;
  transform: translateX(100%);
  transition: transform 0.6s var(--snap);
  display: flex;
  flex-direction: column;
  padding: 34px 42px;
  color: #b9bdcc;
}
.menu-panel.open { transform: translateX(0); }
.menu-panel .logo { color: var(--paper); }
.menu-overlay {
  position: fixed; inset: 0;
  background: rgba(7, 11, 25, 0.55);
  backdrop-filter: blur(3px);
  z-index: 70;
  opacity: 0; visibility: hidden;
  transition: opacity 0.5s var(--ease), visibility 0.5s;
}
.menu-overlay.open { opacity: 1; visibility: visible; }
.menu-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 52px; }
.menu-close { font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: #7e8497; display: inline-flex; gap: 9px; align-items: center; transition: color 0.3s; }
.menu-close:hover { color: var(--paper); }
.menu-close span { font-size: 1.2rem; line-height: 1; }
.menu-nav { display: flex; flex-direction: column; }
.menu-nav a {
  font-family: var(--f-head);
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #9aa0b2;
  padding: 12px 0;
  display: flex;
  align-items: baseline;
  gap: 16px;
  border-bottom: 1px solid rgba(244, 239, 230, 0.08);
  transition: color 0.3s var(--ease), padding-left 0.4s var(--ease);
}
.menu-nav a .idx { font-family: var(--f-mono); font-size: 0.68rem; color: #565c72; font-weight: 500; letter-spacing: 0.1em; }
.menu-nav a:hover { color: var(--paper); padding-left: 10px; }
.menu-foot { margin-top: auto; padding-top: 30px; border-top: 1px solid rgba(244, 239, 230, 0.12); color: #7e8497; font-size: 0.88rem; }
.menu-foot a:hover { color: var(--paper); }
.menu-foot .mf-row { margin-bottom: 8px; }

/* ============================================================
   HERO — full-width editorial, dark ink
   ============================================================ */
.hero {
  background: var(--ink);
  padding-top: clamp(120px, 16vh, 190px);
  padding-bottom: 0;
  overflow: hidden;
}
/* faint ledger grid on the ink */
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(244,239,230,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,239,230,0.045) 1px, transparent 1px);
  background-size: 110px 110px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.9), transparent 75%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.9), transparent 75%);
  pointer-events: none;
}
.hero .wrap { position: relative; }

.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-bottom: 22px;
  margin-bottom: clamp(28px, 4vw, 52px);
  border-bottom: 1px solid var(--rule);
}
.hero-meta { font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--t-mute); }

.hero h1 { max-width: none; }
.hero-row {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: clamp(28px, 5vw, 90px);
  align-items: end;
  margin-top: clamp(32px, 4.5vw, 60px);
}
.hero .lead { max-width: 56ch; color: var(--t-body); }
.hero-side { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* Bottom band: trust ledger + full-bleed photo */
.hero-bottom {
  display: grid;
  grid-template-columns: minmax(280px, 0.38fr) 1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: stretch;
  margin-top: clamp(44px, 6vw, 90px);
}
.hero-trust { display: flex; flex-direction: column; justify-content: flex-end; }
.hero-trust .ht {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid var(--rule);
}
.hero-trust .ht:last-child { border-bottom: 1px solid var(--rule); }
.hero-trust .ht b {
  font-family: var(--f-head);
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  color: var(--t-strong);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.hero-trust .ht span { font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--t-mute); text-align: right; }

.hero-media {
  position: relative;
  height: clamp(340px, 52vh, 560px);
  margin-right: calc(var(--gutter) * -1);
  overflow: hidden;
  border-radius: var(--r-lg) 0 0 0;
}
.hero-media img {
  width: 100%;
  height: 116%;
  object-fit: cover;
  object-position: 50% 22%;
  will-change: transform;
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(11,16,36,0.0) 55%, rgba(11,16,36,0.42));
  pointer-events: none;
}

/* Floating chips */
.chip {
  position: absolute;
  z-index: 3;
  font-family: var(--f-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 10px 14px;
  border-radius: var(--r);
  background: var(--paper);
  box-shadow: 0 18px 40px -18px rgba(7, 11, 25, 0.75);
  display: inline-flex; align-items: center; gap: 8px;
  white-space: nowrap;
}
.chip i { width: 8px; height: 8px; background: var(--green); display: inline-block; }
.chip.c1 { top: 9%; right: 7%; }
.chip.c2 { bottom: 12%; left: 6%; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee { background: var(--ink); color: var(--paper); padding-block: clamp(34px, 5vw, 64px); border-block: 1px solid rgba(244, 239, 230, 0.14); overflow: hidden; }
.marquee-track { display: flex; gap: 0; white-space: nowrap; width: max-content; will-change: transform; }
.marquee-track span {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: clamp(2.2rem, 6vw, 5rem);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1.2px rgba(244, 239, 230, 0.4);
  padding-inline: 30px;
  display: inline-flex; align-items: center; gap: 30px;
}
.marquee-track span::after { content: "•"; color: var(--blue); -webkit-text-stroke: 0; font-size: 0.5em; }
.marquee-track .filled { color: var(--paper); -webkit-text-stroke: 0; }

/* ============================================================
   LEDGER SECTION LABELS (shared)
   ============================================================ */
.sec-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-bottom: 18px;
  margin-bottom: clamp(36px, 5vw, 64px);
  border-bottom: 1px solid var(--rule);
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--t-mute);
}

/* ============================================================
   WHATSAPP DEMO
   ============================================================ */
.wa-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(40px, 6vw, 100px); align-items: center; }
.wa-copy .section-head { margin-bottom: 0; }
.wa-bullets { display: flex; flex-direction: column; margin-top: 34px; }
.wa-bullets li {
  display: flex; gap: 14px; align-items: center;
  color: var(--t-body); font-size: 1.02rem;
  padding: 15px 0;
  border-top: 1px solid var(--rule);
  transition: padding-left 0.35s var(--ease);
}
.wa-bullets li:last-child { border-bottom: 1px solid var(--rule); }
.wa-bullets li:hover { padding-left: 8px; }
.wa-bullets .tick { flex: none; width: 26px; height: 26px; border-radius: var(--r); background: var(--green); display: grid; place-items: center; }
.wa-bullets .tick svg { width: 14px; height: 14px; }

/* Phone frame */
.wa-phone {
  width: min(380px, 100%);
  margin-inline: auto;
  border-radius: 40px;
  background: #0b141a;
  padding: 12px;
  box-shadow: 0 60px 110px -50px rgba(11, 16, 36, 0.65), 0 0 0 1px rgba(11, 16, 36, 0.1);
  transform: rotate(1.6deg);
  transition: transform 0.6s var(--ease);
}
.wa-phone:hover { transform: rotate(0deg); }
.wa-screen { border-radius: 30px; overflow: hidden; display: flex; flex-direction: column; height: 560px; }

.wa-header { background: #008069; color: #fff; display: flex; align-items: center; gap: 12px; padding: 14px 16px; flex: none; }
.wa-header .wa-back { font-size: 1.3rem; line-height: 1; opacity: 0.95; }
.wa-avatar { width: 40px; height: 40px; border-radius: 50%; background: #0b1024; display: grid; place-items: center; flex: none; overflow: hidden; }
.wa-avatar svg { width: 24px; height: 24px; }
.wa-id { display: flex; flex-direction: column; line-height: 1.25; }
.wa-id b { font-family: var(--f-body); font-size: 1rem; font-weight: 700; color: #fff; }
.wa-id span { font-size: 0.78rem; color: rgba(255, 255, 255, 0.85); }
.wa-header .wa-actions { margin-left: auto; display: flex; gap: 18px; opacity: 0.92; }
.wa-header .wa-actions svg { width: 19px; height: 19px; }

.wa-body {
  flex: 1;
  background-color: #efeae2;
  background-image: radial-gradient(rgba(11, 20, 26, 0.07) 1.4px, transparent 1.4px);
  background-size: 18px 18px;
  padding: 18px 14px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scroll-behavior: smooth;
}
.wa-body::-webkit-scrollbar { width: 0; }

.wa-msg {
  position: relative;
  max-width: 80%;
  padding: 7px 10px 18px;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #111b21;
  border-radius: 8px;
  box-shadow: 0 1px 1px rgba(11, 20, 26, 0.13);
  animation: waPop 0.26s var(--ease-spring) both;
}
.wa-msg.in { align-self: flex-start; background: #ffffff; border-radius: 0 8px 8px 8px; }
.wa-msg.out { align-self: flex-end; background: #d9fdd3; border-radius: 8px 0 8px 8px; }
.wa-msg.in::before { content: ""; position: absolute; top: 0; left: -7px; border-top: 8px solid #ffffff; border-left: 7px solid transparent; }
.wa-msg.out::before { content: ""; position: absolute; top: 0; right: -7px; border-top: 8px solid #d9fdd3; border-right: 7px solid transparent; }
.wa-meta { position: absolute; right: 9px; bottom: 5px; display: flex; align-items: center; gap: 3px; font-size: 0.64rem; color: #667781; }
.wa-meta .wa-checks { width: 15px; height: 15px; color: #53bdeb; }
@keyframes waPop { from { opacity: 0; transform: translateY(8px) scale(0.96); } to { opacity: 1; transform: translateY(0) scale(1); } }

.wa-typing { align-self: flex-start; background: #fff; border-radius: 0 8px 8px 8px; padding: 12px 14px; display: inline-flex; gap: 4px; box-shadow: 0 1px 1px rgba(11,20,26,0.13); animation: waPop 0.26s var(--ease-spring) both; position: relative; }
.wa-typing::before { content: ""; position: absolute; top: 0; left: -7px; border-top: 8px solid #fff; border-left: 7px solid transparent; }
.wa-typing i { width: 7px; height: 7px; border-radius: 50%; background: #9aa6ad; display: inline-block; animation: waDot 1.2s infinite ease-in-out; }
.wa-typing i:nth-child(2) { animation-delay: 0.2s; }
.wa-typing i:nth-child(3) { animation-delay: 0.4s; }
@keyframes waDot { 0%, 60%, 100% { transform: translateY(0); opacity: 0.5; } 30% { transform: translateY(-4px); opacity: 1; } }

.wa-input { flex: none; background: #f0f2f5; padding: 8px 12px; display: flex; align-items: center; gap: 10px; }
.wa-input .wa-field { flex: 1; background: #fff; border-radius: 100px; padding: 9px 14px; color: #8696a0; font-size: 0.85rem; }
.wa-input .wa-send { width: 38px; height: 38px; border-radius: 50%; background: #008069; display: grid; place-items: center; flex: none; }
.wa-input .wa-send svg { width: 18px; height: 18px; }

@media (prefers-reduced-motion: reduce) {
  .wa-msg, .wa-typing { animation: none !important; }
  .wa-typing i { animation: none !important; }
  .wa-body { scroll-behavior: auto; }
}

/* ============================================================
   PROBLEMA — editorial ledger rows (no cards)
   ============================================================ */
.ledger-rows { border-bottom: 1px solid var(--rule); }
.lrow {
  display: grid;
  grid-template-columns: 130px 1.05fr 0.95fr 60px;
  gap: clamp(18px, 3vw, 48px);
  align-items: center;
  padding: clamp(26px, 3.4vw, 44px) clamp(8px, 1vw, 18px);
  border-top: 1px solid var(--rule);
  position: relative;
  transition: background 0.45s var(--ease), color 0.45s var(--ease);
  cursor: default;
}
.lrow .lrow-num { font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--t-mute); transition: color 0.45s var(--ease); }
.lrow h3 { font-size: clamp(1.35rem, 2.4vw, 2rem); font-weight: 700; letter-spacing: -0.02em; line-height: 1.12; transition: color 0.45s var(--ease); }
.lrow p { font-size: 1rem; color: var(--t-mute); line-height: 1.6; transition: color 0.45s var(--ease); }
.lrow .lrow-mark { font-family: var(--f-body); font-size: 1.5rem; color: var(--t-faintest); justify-self: end; transition: transform 0.45s var(--ease), color 0.45s var(--ease); }
.lrow:hover { background: var(--ink); }
.lrow:hover h3 { color: var(--paper); }
.lrow:hover p { color: rgba(244, 239, 230, 0.65); }
.lrow:hover .lrow-num { color: var(--blue); }
.lrow:hover .lrow-mark { color: var(--blue); transform: translateX(6px); }

/* ============================================================
   SOLUTION
   ============================================================ */
.solution-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 6vw, 100px); align-items: center; }
.solution-visual {
  position: relative;
  aspect-ratio: 4/3.4;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.solution-visual img { width: 100%; height: 114%; object-fit: cover; will-change: transform; }
.solution-visual::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(11, 16, 36, 0.12); border-radius: var(--r-lg); pointer-events: none; }

.sol-list { display: flex; flex-direction: column; margin-top: 32px; }
.sol-list li {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 15px 0;
  border-top: 1px solid var(--rule);
  transition: padding-left 0.35s var(--ease);
}
.sol-list li:last-child { border-bottom: 1px solid var(--rule); }
.sol-list li:hover { padding-left: 8px; }
.sol-list .tick { flex: none; width: 24px; height: 24px; border-radius: var(--r); background: var(--blue); display: grid; place-items: center; margin-top: 3px; }
.sol-list .tick svg { width: 13px; height: 13px; }
.sol-list p { color: var(--t-body); font-size: 1.02rem; }
.sol-list a { color: var(--blue-deep); border-bottom: 1px solid currentColor; }
.sol-note { margin-top: 28px; display: inline-flex; align-items: center; gap: 10px; font-family: var(--f-mono); font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--t-mute); }
.sol-note .dot { width: 9px; height: 9px; background: var(--green); display: inline-block; }

/* ============================================================
   SERVICES — dark, horizontal scroll panels
   ============================================================ */
.svc { background: var(--ink); overflow: hidden; padding-bottom: 0; }
.svc .section-head { margin-bottom: clamp(30px, 4vw, 56px); }

.svc-track-wrap { position: relative; }
.svc-track {
  display: flex;
  align-items: stretch;
  width: max-content;
  padding-left: max(var(--gutter), calc((100vw - var(--maxw)) / 2 + var(--gutter)));
  padding-right: var(--gutter);
  padding-bottom: clamp(76px, 10vw, 150px);
  will-change: transform;
}
.svc-panel {
  flex: none;
  width: min(500px, 82vw);
  padding: clamp(30px, 3vw, 48px) clamp(26px, 2.6vw, 44px);
  border-left: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background 0.5s var(--ease);
}
.svc-panel:last-child { border-right: 1px solid var(--rule); }
.svc-panel:hover { background: rgba(244, 239, 230, 0.035); }
.svc-panel::before {
  content: "";
  position: absolute;
  top: 0; left: -1px;
  width: 1px; height: 100%;
  background: var(--blue);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.6s var(--snap);
}
.svc-panel:hover::before { transform: scaleY(1); }
.svc-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: clamp(34px, 4vw, 64px); }
.svc-num { font-family: var(--f-mono); font-size: 0.72rem; color: var(--t-mute); letter-spacing: 0.16em; }
.svc-icon { width: 46px; height: 46px; border: 1px solid var(--rule-strong); border-radius: var(--r); display: grid; place-items: center; color: var(--accent); }
.svc-icon svg { width: 22px; height: 22px; stroke: currentColor !important; }
.svc-panel h3 { font-size: clamp(1.7rem, 2.6vw, 2.4rem); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 16px; }
.svc-panel p { color: var(--t-body); font-size: 1rem; line-height: 1.65; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; padding-top: 30px; }
.svc-tags span {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t-body);
  padding: 7px 12px;
  border: 1px solid var(--rule);
  border-radius: var(--r);
  transition: color 0.3s, border-color 0.3s, transform 0.3s var(--ease);
}
.svc-tags span:hover { color: var(--paper); border-color: var(--blue); transform: translateY(-2px); }

/* Fallback: no GSAP / reduced motion — native horizontal scroll on desktop too */
.svc-static .svc { padding-bottom: clamp(76px, 10vw, 150px); }
.svc-static .svc-track {
  width: auto;
  overflow-x: auto;
  padding-left: var(--gutter);
  padding-bottom: 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.svc-static .svc-panel { scroll-snap-align: start; }
.svc-static .svc-progress { display: none; }
.svc-static .svc-hint { position: static; margin-top: 26px; }

/* Progress hint under the track */
.svc-hint {
  position: absolute;
  bottom: clamp(30px, 4.4vw, 60px);
  left: var(--gutter);
  right: var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--t-mute);
  pointer-events: none;
}
.svc-progress { flex: 1; height: 1px; background: var(--rule); margin-inline: 22px; position: relative; overflow: hidden; }
.svc-progress i { position: absolute; inset: 0; background: var(--blue); transform: scaleX(0); transform-origin: left; display: block; }

/* ============================================================
   STATS — giant editorial numerals + full-bleed photo band
   ============================================================ */
.stats { padding-bottom: 0; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 10px clamp(18px, 2.4vw, 40px) 26px; border-left: 1px solid var(--rule); }
.stat:first-child { border-left: none; padding-left: 0; }
.stat .num {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: clamp(3.4rem, 7.6vw, 7.6rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--t-strong);
}
.stat .num .suffix { color: var(--blue); font-size: 0.55em; font-weight: 700; }
.stat .label { margin-top: 16px; font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--t-mute); }

.stats-band {
  position: relative;
  margin-top: clamp(50px, 7vw, 100px);
  height: clamp(300px, 52vh, 560px);
  overflow: hidden;
}
.stats-band img { width: 100%; height: 118%; object-fit: cover; object-position: 50% 30%; will-change: transform; }
.stats-band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,16,36,0.05), rgba(11,16,36,0.3)); pointer-events: none; }
.stats-band .chip { position: absolute; bottom: 26px; left: var(--gutter); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-progress { height: 2px; background: var(--rule); margin-bottom: clamp(40px, 5vw, 70px); position: relative; overflow: hidden; }
.steps-progress i { position: absolute; inset: 0; background: var(--blue); transform: scaleX(0); transform-origin: left; display: block; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 70px); }
.step { position: relative; }
.step .step-no {
  font-family: var(--f-head);
  font-size: clamp(4.4rem, 8vw, 7.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1.4px var(--rule-strong);
  display: block;
  transition: color 0.5s var(--ease);
}
.step:hover .step-no { color: var(--blue); -webkit-text-stroke: 1.4px transparent; }
.step h3 { font-size: 1.45rem; font-weight: 700; margin: 22px 0 12px; }
.step p { color: var(--t-mute); font-size: 0.99rem; }

/* ============================================================
   PRICING — editorial split, dark featured panel
   ============================================================ */
.price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; max-width: 1080px; margin-inline: auto; border: 1px solid var(--rule); border-radius: var(--r-lg); overflow: hidden; }
.price-card {
  position: relative;
  padding: clamp(38px, 4vw, 60px) clamp(30px, 3.4vw, 54px);
  display: flex; flex-direction: column;
  background: var(--paper);
}
.price-card + .price-card { border-left: 1px solid var(--rule); }
.price-card.featured {
  background: var(--ink);
  --t-strong: #f4efe6;
  --t-body: #b9bdcc;
  --t-mute: #7e8497;
  --rule: rgba(244, 239, 230, 0.14);
  --rule-strong: rgba(244, 239, 230, 0.32);
  --surface: var(--ink);
  color: var(--t-body);
}
.price-badge {
  position: absolute; top: 26px; right: 26px;
  font-family: var(--f-mono);
  font-size: 0.64rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink);
  padding: 8px 13px;
  background: var(--blue);
  color: #fff;
  border-radius: var(--r);
}
.price-name {
  font-family: var(--f-head);
  font-size: clamp(1.9rem, 2.8vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--t-strong);
}
.price-desc { color: var(--t-mute); font-size: 0.99rem; margin-top: 14px; margin-bottom: 30px; }
.price-incl { font-family: var(--f-mono); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--t-mute); margin-bottom: 6px; padding-bottom: 12px; border-bottom: 1px solid var(--rule); }
.price-list { display: flex; flex-direction: column; margin-bottom: 34px; }
.price-list li {
  display: flex; gap: 12px; align-items: flex-start;
  color: var(--t-body); font-size: 0.98rem;
  padding: 11px 0;
  border-bottom: 1px solid var(--rule);
  transition: padding-left 0.3s var(--ease);
}
.price-list li:hover { padding-left: 6px; }
.price-list .tick { flex: none; width: 20px; height: 20px; display: grid; place-items: center; margin-top: 4px; color: var(--blue); }
.price-list .tick svg { width: 13px; height: 13px; }
.price-card .btn { margin-top: auto; width: 100%; justify-content: center; }
.price-card.featured .btn-primary { box-shadow: 0 18px 40px -16px rgba(61, 90, 254, 0.65); }
.price-note { text-align: center; margin-top: 34px; color: var(--t-mute); font-size: 0.96rem; }
.price-note a { color: var(--blue-deep); border-bottom: 1px solid currentColor; }

/* ============================================================
   TESTIMONIALS — editorial columns, no cards
   ============================================================ */
.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.tst-card { padding: 10px clamp(22px, 2.6vw, 44px) 6px; border-left: 1px solid var(--rule); display: flex; flex-direction: column; position: relative; }
.tst-card:first-child { border-left: none; padding-left: 0; }
.tst-card::before {
  content: "\201C";
  font-family: var(--f-accent);
  font-style: italic;
  font-size: 4.6rem;
  line-height: 0.6;
  color: var(--blue);
  display: block;
  margin-bottom: 22px;
}
.tst-stars { display: flex; gap: 3px; margin-bottom: 18px; color: var(--ink); }
.tst-stars svg { width: 15px; height: 15px; }
.tst-card blockquote { font-size: 1.1rem; color: var(--t-strong); line-height: 1.55; font-weight: 500; }
.tst-author { display: flex; align-items: center; gap: 14px; margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--rule); }
.tst-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--ink); display: grid; place-items: center; font-family: var(--f-head); font-weight: 700; color: var(--paper); font-size: 0.92rem; flex: none; }
.tst-author .who b { display: block; color: var(--t-strong); font-weight: 700; font-size: 0.98rem; }
.tst-author .who span { font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.04em; color: var(--t-mute); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.faq-grid .section-head a { color: var(--blue-deep); border-bottom: 1px solid currentColor; }
.faq-list { border-top: 1px solid var(--rule); }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-q {
  width: 100%;
  display: flex; align-items: baseline; gap: 18px;
  text-align: left;
  padding: 26px 0;
  font-family: var(--f-head);
  font-size: 1.14rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--t-strong);
  transition: color 0.3s;
}
.faq-q .q-num { font-family: var(--f-mono); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.1em; color: var(--t-mute); flex: none; transition: color 0.3s; }
.faq-q:hover { color: var(--blue-deep); }
.faq-q:hover .q-num { color: var(--blue-deep); }
.faq-icon { flex: none; width: 28px; height: 28px; margin-left: auto; align-self: center; display: grid; place-items: center; position: relative; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: var(--t-strong); transition: transform 0.4s var(--ease), background 0.3s; }
.faq-icon::before { width: 14px; height: 2px; }
.faq-icon::after { width: 2px; height: 14px; }
.faq-item.open .faq-icon::before { background: var(--blue); }
.faq-item.open .faq-icon::after { transform: rotate(90deg) scaleX(0); }
.faq-a { overflow: hidden; height: 0; }
.faq-a-inner { padding: 0 0 28px 44px; color: var(--t-mute); font-size: 1rem; line-height: 1.68; max-width: 62ch; }

/* ============================================================
   FINAL CTA + FORM — dark ink
   ============================================================ */
.cta { background: var(--ink); overflow: hidden; }
.cta::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(244,239,230,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,239,230,0.04) 1px, transparent 1px);
  background-size: 110px 110px;
  mask-image: linear-gradient(0deg, rgba(0,0,0,0.9), transparent 70%);
  -webkit-mask-image: linear-gradient(0deg, rgba(0,0,0,0.9), transparent 70%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(44px, 6vw, 110px);
  align-items: start;
}
.cta-copy .h-section { margin: 20px 0 18px; }
.cta-bullets { display: flex; flex-direction: column; margin-top: 30px; }
.cta-bullets li {
  display: flex; gap: 12px; align-items: center;
  color: var(--t-body); font-size: 0.99rem;
  padding: 13px 0;
  border-top: 1px solid var(--rule);
}
.cta-bullets li:last-child { border-bottom: 1px solid var(--rule); }
.cta-bullets .tick { flex: none; width: 22px; height: 22px; display: grid; place-items: center; color: var(--blue); border: 1px solid var(--rule-strong); border-radius: var(--r); }
.cta-bullets .tick svg { width: 11px; height: 11px; }

/* ============================================================
   FOOTER — ink, giant wordmark
   ============================================================ */
.footer { background: var(--ink-deep); padding-block: clamp(60px, 8vw, 100px) 40px; overflow: hidden; }
.footer-giant {
  font-family: var(--f-logo);
  font-weight: 600;
  font-size: clamp(4rem, 13.5vw, 15rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(244, 239, 230, 0.16);
  user-select: none;
  pointer-events: none;
  margin-bottom: clamp(40px, 6vw, 80px);
  white-space: nowrap;
}
.footer-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; margin-bottom: 50px; }
.footer-brand { max-width: 340px; }
.footer-brand .logo { color: var(--paper); }
.footer-brand p { margin-top: 18px; color: #7e8497; font-size: 0.95rem; }
.footer-cols { display: flex; gap: clamp(40px, 7vw, 100px); flex-wrap: wrap; }
.footer-col h4 { font-family: var(--f-mono); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: #565c72; font-weight: 500; margin-bottom: 18px; }
.footer-col a, .footer-col p { display: block; color: #b9bdcc; font-size: 0.95rem; padding: 6px 0; transition: color 0.3s, padding-left 0.3s var(--ease); }
.footer-col a:hover { color: var(--paper); padding-left: 5px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; padding-top: 30px; border-top: 1px solid rgba(244, 239, 230, 0.12); }
.footer-copy { font-size: 0.9rem; color: #a09890; }
.footer-copy a { color: #d7dbe6; transition: color 0.3s; }
.footer-copy a:hover { color: var(--paper); }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { font-size: 0.85rem; color: #8a8278; transition: color 0.3s; }
.footer-legal a:hover { color: var(--paper); }

/* WhatsApp float */
.wa-float { position: fixed; bottom: 24px; right: 24px; z-index: 55; width: 56px; height: 56px; border-radius: 50%; background: #25d366; display: grid; place-items: center; box-shadow: 0 14px 30px -10px rgba(37, 211, 102, 0.7); transition: transform 0.4s var(--ease-spring); }
.wa-float:hover { transform: scale(1.08) translateY(-2px); }
.wa-float svg { width: 30px; height: 30px; }

/* ---------- Reveal defaults (JS-driven) ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); }
.reveal-ready [data-reveal] { will-change: opacity, transform; }

/* Word split reveal */
.words-split .word { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: 0.14em; margin-bottom: -0.14em; }
.words-split .word-inner { display: inline-block; will-change: transform; }

@media (prefers-reduced-motion: reduce) {
  .words-split .word { overflow: visible; }
  .words-split .word-inner { transform: none !important; }
}

/* ============================================================
   SIMPLE / LEGAL / THANK-YOU PAGES (light)
   ============================================================ */
.doc { padding-top: clamp(130px, 16vh, 180px); padding-bottom: clamp(70px, 10vw, 130px); min-height: 70vh; }
.doc .wrap { max-width: 840px; }
.doc .eyebrow { margin-bottom: 18px; }
.doc h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 14px; letter-spacing: -0.025em; }
.doc .updated { font-family: var(--f-mono); color: var(--t-mute); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 44px; }
.doc h2 { font-size: 1.45rem; margin: 42px 0 14px; }
.doc h3 { font-size: 1.12rem; margin: 26px 0 10px; }
.doc p, .doc li { color: var(--t-body); font-size: 1.02rem; line-height: 1.75; margin-bottom: 14px; }
.doc ul { padding-left: 22px; list-style: disc; }
.doc ul li { margin-bottom: 8px; }
.doc a { color: var(--blue-deep); border-bottom: 1px solid currentColor; }
.doc strong { color: var(--t-strong); }
.doc .back { display: inline-flex; align-items: center; gap: 8px; margin-top: 46px; font-family: var(--f-head); font-weight: 700; color: var(--blue-deep); border-bottom: none; }
.doc .back:hover { color: var(--ink); }

.ty { min-height: 100svh; display: grid; place-items: center; text-align: center; padding: 120px var(--gutter) 80px; }
.ty-inner { max-width: 640px; }
.ty .badge { width: 84px; height: 84px; border-radius: 50%; background: var(--blue); display: grid; place-items: center; margin: 0 auto 30px; box-shadow: 0 28px 60px -24px rgba(61, 90, 254, 0.7); }
.ty .badge svg { width: 40px; height: 40px; }
.ty h1 { font-size: clamp(2.2rem, 6vw, 3.4rem); margin-bottom: 18px; }
.ty p { color: var(--t-body); font-size: 1.1rem; margin-bottom: 14px; }
.ty .ty-cta { margin-top: 34px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-row { grid-template-columns: 1fr; align-items: start; }
  .hero-bottom { grid-template-columns: 1fr; }
  .hero-trust { flex-direction: row; }
  .hero-trust .ht { flex: 1; flex-direction: column; align-items: flex-start; gap: 8px; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); padding: 18px 0; }
  .hero-trust .ht span { text-align: left; }
  .hero-media { margin-left: calc(var(--gutter) * -1); border-radius: 0; }
  .solution-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 34px 0; }
  .stat:nth-child(3) { border-left: none; padding-left: 0; }
  .cta-inner { grid-template-columns: 1fr; }
  .wa-grid { grid-template-columns: 1fr; gap: 48px; }
  .wa-copy .section-head { max-width: 640px; }
  .lrow { grid-template-columns: 90px 1fr 40px; }
  .lrow p { grid-column: 2; }
  .lrow .lrow-mark { grid-row: 1; grid-column: 3; }

  /* Services: no pin — swipeable strip */
  .svc { padding-bottom: clamp(76px, 10vw, 150px); }
  .svc-track {
    width: auto;
    overflow-x: auto;
    padding-left: var(--gutter);
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .svc-track::-webkit-scrollbar { height: 0; }
  .svc-panel { scroll-snap-align: start; width: min(420px, 84vw); }
  .svc-hint { position: static; margin-top: 26px; pointer-events: auto; }
  .svc-progress { display: none; }
}

@media (max-width: 768px) {
  body { font-size: 16px; }
  .steps-grid { grid-template-columns: 1fr; gap: 44px; }
  .price-grid { grid-template-columns: 1fr; }
  .price-card + .price-card { border-left: none; border-top: 1px solid rgba(11, 16, 36, 0.16); }
  .tst-grid { grid-template-columns: 1fr; gap: 44px; }
  .tst-card { border-left: none; border-top: 1px solid var(--rule); padding: 34px 0 0; }
  .tst-card:first-child { border-top: none; padding-top: 10px; }
  .nav-cta .btn-primary { display: none; }
  .hero { padding-top: 110px; }
  .hero-top { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero-trust { flex-direction: column; }
  .hero-trust .ht { flex-direction: row; align-items: baseline; }
  .hero-trust .ht span { text-align: right; }
  .footer-top { flex-direction: column; }
  .lrow { grid-template-columns: 1fr 40px; padding-inline: 0; row-gap: 10px; }
  .lrow .lrow-num { grid-column: 1; }
  .lrow h3 { grid-column: 1 / -1; grid-row: 2; }
  .lrow p { grid-column: 1 / -1; grid-row: 3; }
  .lrow .lrow-mark { grid-row: 1; grid-column: 2; }
  .faq-a-inner { padding-left: 0; }
}

@media (max-width: 480px) {
  :root { --gutter: 18px; }
  .h-display { font-size: clamp(1.95rem, 10.1vw, 3.2rem); word-break: break-word; }
  .stats-row { grid-template-columns: 1fr; gap: 30px; }
  .stat { border-left: none; padding-left: 0; border-top: 1px solid var(--rule); padding-top: 22px; }
  .stat:first-child { border-top: none; padding-top: 0; }
  .hero-cta { flex-direction: column; align-items: stretch; width: 100%; }
  .hero-cta .btn { justify-content: center; }
  .hero-media { height: 320px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .menu-panel { padding: 26px 24px; }
  .wa-float { width: 52px; height: 52px; bottom: 18px; right: 18px; }
  .footer-giant { font-size: 18vw; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .marquee-track { transform: none !important; }
  .svc-track { transform: none !important; }
  .cursor-glow { display: none !important; }
  .chip { animation: none !important; }
  .wa-phone { transform: none; }
}
