/* =============================================================
   Códigos · Agencia — Archetype 05 (Mouse-Reactive Gradient)
   Brand: #c13d58 (rosa-carmín) · #40999d (teal)
   ============================================================= */

/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:        #0b0a0f;
  --bg-2:      #121019;
  --bg-3:      #17141f;
  --surface:   rgba(255, 255, 255, 0.035);
  --surface-2: rgba(255, 255, 255, 0.06);
  --ink:       #f5f2ef;
  --ink-soft:  #c8c5d2;
  --mute:      #8f8ca0;
  --line:      rgba(255, 255, 255, 0.09);
  --line-2:    rgba(255, 255, 255, 0.14);

  --rose:      #c13d58;
  --rose-2:    #e0637e;
  --teal:      #40999d;
  --teal-2:    #58c2c6;

  --grad:      linear-gradient(120deg, var(--rose) 0%, var(--teal) 100%);
  --grad-soft: linear-gradient(120deg, var(--rose-2) 0%, var(--teal-2) 100%);

  --radius:    18px;
  --radius-lg: 26px;
  --maxw:      1200px;
  --gutter:    clamp(20px, 5vw, 64px);

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.4, 0.64, 1);

  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --display: "Space Grotesk", var(--sans);
  --wa: #25d366;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  overflow-x: clip;
  scroll-behavior: smooth;
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
  min-height: 100vh;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
input, select, textarea { font: inherit; color: inherit; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.05; letter-spacing: -0.02em; font-family: var(--display); font-weight: 600; }
::selection { background: var(--rose); color: #fff; }
:focus-visible { outline: 2px solid var(--teal-2); outline-offset: 3px; border-radius: 6px; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--ink); color: var(--bg);
  z-index: 9999; border-radius: 8px; font-weight: 600;
}
.skip-link:focus { top: 1rem; }

/* =============================================================
   3. Ambient background (mouse-reactive gradient)
   ============================================================= */
.bg-field { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.bg-gradient {
  position: absolute; inset: -20%;
  background:
    radial-gradient(closest-side circle at var(--mx, 30%) var(--my, 20%),
      rgba(193, 61, 88, 0.34), transparent 60%),
    radial-gradient(closest-side circle at calc(var(--mx, 70%) + 12%) calc(var(--my, 30%) + 10%),
      rgba(64, 153, 157, 0.30), transparent 58%),
    radial-gradient(closest-side circle at 80% 85%,
      rgba(193, 61, 88, 0.16), transparent 55%);
  filter: blur(70px) saturate(135%);
  transition: background-position .4s var(--ease-out);
  animation: fieldDrift 24s ease-in-out infinite alternate;
}
@keyframes fieldDrift {
  0%   { transform: scale(1) rotate(0deg); }
  100% { transform: scale(1.12) rotate(6deg); }
}
.bg-grain {
  position: absolute; inset: 0; opacity: 0.04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
/* Content sits above the fixed .bg-field (z-index:0) WITHOUT forcing position
   on every child — doing that would clobber position:fixed on nav / wa-float. */
main, .footer { position: relative; z-index: 1; }

/* =============================================================
   4. Splash
   ============================================================= */
.splash {
  position: fixed; inset: 0; z-index: 9998;
  display: grid; place-items: center;
  background: var(--bg);
  transition: opacity .6s var(--ease-out), visibility .6s;
  animation: splashSafety .01s 4.5s forwards;
}
.splash.is-out { opacity: 0; visibility: hidden; pointer-events: none; }
@keyframes splashSafety { to { opacity: 0; visibility: hidden; pointer-events: none; } }
.splash-inner { display: grid; place-items: center; gap: 22px; }
.splash-logo { width: min(240px, 55vw); filter: drop-shadow(0 8px 40px rgba(193,61,88,.35)); animation: splashPulse 1.6s var(--ease-soft) infinite; }
@keyframes splashPulse { 0%,100% { opacity: .7; transform: scale(.98); } 50% { opacity: 1; transform: scale(1); } }
.splash-bar { width: 160px; height: 3px; border-radius: 3px; background: var(--line-2); overflow: hidden; }
.splash-bar-fill { display: block; height: 100%; width: 40%; background: var(--grad); border-radius: 3px; animation: splashBar 1.2s var(--ease-soft) infinite; }
@keyframes splashBar { 0% { transform: translateX(-120%); } 100% { transform: translateX(320%); } }

/* =============================================================
   5. Buttons
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px;
  font-weight: 600; font-size: 0.98rem; letter-spacing: -0.01em;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background .35s, color .35s;
  will-change: transform; white-space: nowrap;
}
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }
.btn-lg { padding: 16px 32px; font-size: 1.02rem; }
.btn-block { width: 100%; }
.btn-primary {
  color: #fff; background: var(--grad); background-size: 160% 160%; background-position: 0% 50%;
  box-shadow: 0 10px 34px rgba(193, 61, 88, 0.32), inset 0 0 0 1px rgba(255,255,255,0.08);
}
.btn-primary:hover { transform: translateY(-2px); background-position: 100% 50%; box-shadow: 0 16px 44px rgba(64, 153, 157, 0.42); }
.btn-ghost { color: var(--ink); background: var(--surface); box-shadow: inset 0 0 0 1px var(--line-2); }
.btn-ghost:hover { background: var(--surface-2); transform: translateY(-2px); }
.btn-whatsapp { color: #063; background: #eafff2; box-shadow: 0 10px 30px rgba(37,211,102,.25), inset 0 0 0 1px rgba(37,211,102,.35); }
.btn-whatsapp svg { color: var(--wa); }
.btn-whatsapp:hover { transform: translateY(-2px); background: #fff; box-shadow: 0 16px 40px rgba(37,211,102,.4); }

/* button spinner (form) */
.btn-spinner { display: none; width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.4); border-top-color: #fff; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.is-sending .btn-label { opacity: .6; }
.is-sending .btn-spinner { display: inline-block; }

/* =============================================================
   6. Kicker / headings shared
   ============================================================= */
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display); font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft);
}
.kicker-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--grad); box-shadow: 0 0 12px var(--rose); }
.grad-text {
  background: var(--grad-soft); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section { padding-block: clamp(72px, 12vw, 140px); }
.section-head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 72px); }
.section-title { font-size: clamp(2rem, 5.5vw, 3.6rem); margin: 18px 0 16px; }
.section-lead { color: var(--ink-soft); font-size: clamp(1.02rem, 2.2vw, 1.2rem); max-width: 56ch; }

/* =============================================================
   7. Nav
   ============================================================= */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: background .4s, box-shadow .4s, backdrop-filter .4s; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.nav.is-scrolled { background: rgba(11, 10, 15, 0.72); backdrop-filter: saturate(150%) blur(14px); box-shadow: 0 1px 0 var(--line); }
.nav-logo { height: 30px; width: auto; }
.nav-links { display: flex; gap: 30px; }
.nav-links a { position: relative; color: var(--ink-soft); font-size: 0.96rem; font-weight: 500; transition: color .25s; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 100%; height: 2px; background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease-out); border-radius: 2px; }
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 40px; height: 40px; align-items: center; justify-content: center; border-radius: 10px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease-out), opacity .3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none; flex-direction: column; gap: 6px; padding: 0 var(--gutter) 8px;
  max-height: 0; overflow: hidden; background: rgba(11, 10, 15, 0.96); backdrop-filter: blur(14px);
  transition: max-height .4s var(--ease-out), padding .4s;
}
.nav-mobile.is-open { max-height: 380px; padding-top: 12px; padding-bottom: 24px; box-shadow: 0 20px 40px rgba(0,0,0,.4); }
.nav-mobile a { padding: 12px 4px; color: var(--ink-soft); font-weight: 500; border-bottom: 1px solid var(--line); }
.nav-mobile a.btn { margin-top: 10px; border: 0; color: #fff; justify-content: center; }

/* =============================================================
   8. Hero
   ============================================================= */
.hero { position: relative; padding-top: 150px; padding-bottom: 90px; min-height: 100svh; display: flex; align-items: center; }
.hero-inner { display: flex; flex-direction: column; align-items: flex-start; }
.hero-title { font-size: clamp(2.6rem, 7.2vw, 6rem); font-weight: 700; letter-spacing: -0.035em; line-height: 0.98; max-width: 16ch; margin: 24px 0; }
.hero-sub { color: var(--ink-soft); font-size: clamp(1.05rem, 2.4vw, 1.35rem); max-width: 60ch; }
.hero-sub strong { color: var(--ink); font-weight: 600; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.hero-visual { width: 100%; margin-top: clamp(48px, 7vw, 80px); }

/* placeholders */
.ph {
  position: relative; border-radius: var(--radius-lg);
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.03) 0 18px, transparent 18px 36px),
    linear-gradient(140deg, rgba(193,61,88,0.16), rgba(64,153,157,0.16));
  box-shadow: inset 0 0 0 1px var(--line-2);
  display: grid; place-items: center; overflow: hidden;
  transition: transform .4s var(--ease-out), box-shadow .4s;
}
.ph-label { padding: 9px 16px; border: 1px dashed var(--line-2); border-radius: 999px; background: rgba(11,10,15,0.5); color: var(--ink-soft); font-size: 0.84rem; letter-spacing: .02em; }
.ph-hero { aspect-ratio: 16 / 7; width: 100%; }
.ph-tall { aspect-ratio: 4 / 5; width: 100%; }

/* real image frames */
.media-frame {
  position: relative; width: 100%; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: inset 0 0 0 1px var(--line-2), 0 24px 60px rgba(0,0,0,.4);
  transition: transform .4s var(--ease-out), box-shadow .4s;
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.media-hero { aspect-ratio: 16 / 9; }
.media-tall { aspect-ratio: 3 / 4; }
.ph-badge { position: absolute; top: 18px; left: 18px; display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; background: rgba(11,10,15,0.66); box-shadow: inset 0 0 0 1px var(--line-2); font-size: .82rem; color: var(--ink); }
.ph-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal-2); box-shadow: 0 0 10px var(--teal-2); animation: pulseDot 2s ease-in-out infinite; }
@keyframes pulseDot { 0%,100% { opacity: 1; } 50% { opacity: .4; } }

/* trust bar */
.trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; width: 100%; margin-top: clamp(40px, 6vw, 68px); padding-top: 34px; border-top: 1px solid var(--line); }
.trust-item { display: flex; flex-direction: column; gap: 4px; }
.trust-num { font-family: var(--display); font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; letter-spacing: -0.03em; background: var(--grad-soft); -webkit-background-clip: text; background-clip: text; color: transparent; }
.trust-label { color: var(--mute); font-size: 0.88rem; }

.scroll-cue { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); width: 26px; height: 42px; border-radius: 14px; box-shadow: inset 0 0 0 1.5px var(--line-2); display: grid; justify-items: center; padding-top: 8px; }
.scroll-cue-line { width: 3px; height: 10px; border-radius: 3px; background: var(--ink-soft); animation: scrollCue 1.8s var(--ease-soft) infinite; }
@keyframes scrollCue { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(14px); opacity: 0; } 100% { opacity: 0; } }

/* =============================================================
   9. Marquee
   ============================================================= */
.marquee { position: relative; overflow: hidden; padding: 22px 0; border-block: 1px solid var(--line); background: rgba(255,255,255,0.015); }
.marquee-track { display: inline-flex; align-items: center; gap: 26px; white-space: nowrap; animation: marquee 28s linear infinite; font-family: var(--display); font-size: clamp(1.1rem, 2.6vw, 1.7rem); font-weight: 600; color: var(--ink); }
.marquee-track span { opacity: .82; }
.marquee-sep { color: var(--rose-2); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =============================================================
   10. Services
   ============================================================= */
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.service-card {
  position: relative; padding: 0; border-radius: var(--radius-lg);
  background: var(--surface); box-shadow: inset 0 0 0 1px var(--line);
  transition: transform .4s var(--ease-out), box-shadow .4s, background .4s;
  overflow: hidden;
}
.service-card::before { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: var(--grad); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity .4s; pointer-events: none; z-index: 3; }
.service-card:hover { transform: translateY(-6px); background: var(--surface-2); box-shadow: 0 22px 50px rgba(0,0,0,.35); }
.service-card:hover::before { opacity: 1; }
.service-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease-out); }
.service-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(11,10,15,.85) 100%); }
.service-card:hover .service-media img { transform: scale(1.06); }
.service-body { position: relative; padding: 0 30px 30px; }
.service-num { position: absolute; top: 16px; right: 18px; z-index: 2; padding: 5px 12px; border-radius: 999px; background: rgba(11,10,15,.55); backdrop-filter: blur(6px); box-shadow: inset 0 0 0 1px var(--line-2); font-family: var(--display); font-size: .86rem; color: var(--ink); letter-spacing: .1em; }
.service-ico { position: relative; z-index: 2; width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; font-size: 1.5rem; color: #fff; background: var(--grad); box-shadow: 0 10px 26px rgba(193,61,88,.3); margin: -34px 0 18px; }
.service-card h3 { font-size: 1.5rem; margin-bottom: 12px; }
.service-card p { color: var(--ink-soft); font-size: 1rem; }
.service-outcome { display: inline-block; margin-top: 18px; font-family: var(--display); font-weight: 500; font-size: 0.92rem; color: var(--teal-2); }

/* =============================================================
   11. Outcomes / method
   ============================================================= */
.outcomes-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.steps { list-style: none; display: flex; flex-direction: column; gap: 20px; margin: 34px 0; }
.step { display: flex; gap: 18px; align-items: flex-start; }
.step-n { flex: none; width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; font-family: var(--display); font-weight: 700; color: var(--ink); background: var(--surface); box-shadow: inset 0 0 0 1px var(--line-2); }
.step h4 { font-size: 1.18rem; margin-bottom: 4px; }
.step p { color: var(--ink-soft); font-size: 0.98rem; }

.outcomes-visual { position: relative; }
.floating-card {
  position: absolute; right: -8px; bottom: -18px; z-index: 2;
  display: flex; flex-direction: column; gap: 3px; padding: 20px 24px;
  border-radius: var(--radius); background: rgba(17, 16, 25, 0.86); backdrop-filter: blur(12px);
  box-shadow: 0 24px 60px rgba(0,0,0,.5), inset 0 0 0 1px var(--line-2);
}
@supports not (backdrop-filter: blur(12px)) { .floating-card { background: #14121c; } }
.fc-label { font-size: 0.78rem; color: var(--mute); letter-spacing: .04em; }
.fc-num { font-family: var(--display); font-size: 2.4rem; font-weight: 700; background: var(--grad-soft); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.fc-trend { font-size: 0.82rem; color: var(--teal-2); font-weight: 500; }

/* =============================================================
   12. Reviews (Google)
   ============================================================= */
.reviews .section-head { margin-bottom: clamp(32px, 4vw, 48px); }
.reviews-rating { display: flex; align-items: center; gap: 12px; margin-top: 18px; flex-wrap: wrap; }
.rr-score { font-family: var(--display); font-size: 1.8rem; font-weight: 700; }
.rr-stars { color: #ffc65c; font-size: 1.2rem; letter-spacing: 2px; }
.rr-count { color: var(--mute); font-size: 0.9rem; }
.google-word { font-family: var(--display); }
.google-word span { display: inline; }
.g-b { color: #4285F4; } .g-r { color: #EA4335; } .g-y { color: #FBBC05; }
.g-b2 { color: #4285F4; } .g-g { color: #34A853; } .g-r2 { color: #EA4335; }

.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 920px; margin-inline: auto; }
.review-card { padding: 26px 26px 28px; border-radius: var(--radius-lg); background: var(--surface); box-shadow: inset 0 0 0 1px var(--line); transition: transform .4s var(--ease-out), box-shadow .4s, background .4s; }
.review-card:hover { transform: translateY(-5px); background: var(--surface-2); box-shadow: 0 20px 46px rgba(0,0,0,.32); }
.review-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.review-avatar { flex: none; width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-family: var(--display); font-weight: 600; color: #fff; background: var(--a, var(--rose)); }
.review-head > div { display: flex; flex-direction: column; line-height: 1.3; margin-right: auto; }
.review-name { font-weight: 600; font-size: 0.98rem; }
.review-meta { font-size: 0.8rem; color: var(--mute); }
.review-g { flex: none; }
.review-stars { color: #ffc65c; letter-spacing: 2px; font-size: 1rem; }
.review-text { margin-top: 10px; color: var(--ink-soft); font-size: 0.98rem; }

/* =============================================================
   13. Contact
   ============================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 72px); align-items: start; }
.contact-perks { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 26px 0 30px; }
.contact-perks li { color: var(--ink-soft); }
.contact-form { padding: clamp(24px, 4vw, 38px); border-radius: var(--radius-lg); background: var(--surface); box-shadow: inset 0 0 0 1px var(--line); position: relative; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { font-size: 0.86rem; color: var(--ink-soft); font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border-radius: 12px; background: rgba(0,0,0,0.24);
  box-shadow: inset 0 0 0 1px var(--line-2); color: var(--ink);
  transition: box-shadow .25s, background .25s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--mute); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; box-shadow: inset 0 0 0 1.5px var(--teal-2); background: rgba(0,0,0,0.34); }
.field textarea { resize: vertical; min-height: 84px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%238f8ca0' stroke-width='2'%3E%3Cpath d='M3 5l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 42px; }
.form-note { margin-top: 14px; font-size: 0.84rem; color: var(--mute); text-align: center; }

.form-success { position: absolute; inset: 0; border-radius: inherit; background: rgba(17,16,25,0.94); backdrop-filter: blur(6px); display: grid; place-content: center; justify-items: center; gap: 10px; text-align: center; padding: 30px; }
.form-success[hidden] { display: none; }   /* the [hidden] attr must win over display:grid */
.form-success h3 { font-size: 1.4rem; }
.form-success p { color: var(--ink-soft); }
.fs-circle { stroke: var(--teal-2); stroke-width: 2.5; stroke-dasharray: 151; stroke-dashoffset: 151; animation: fsCircle .6s var(--ease-out) forwards; }
.fs-check { stroke: var(--teal-2); stroke-width: 3.5; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 40; stroke-dashoffset: 40; animation: fsCheck .4s .5s var(--ease-out) forwards; }
@keyframes fsCircle { to { stroke-dashoffset: 0; } }
@keyframes fsCheck { to { stroke-dashoffset: 0; } }

/* =============================================================
   14. Footer
   ============================================================= */
.footer { border-top: 1px solid var(--line); padding-top: clamp(48px, 7vw, 80px); margin-top: 40px; }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 44px; }
.footer-logo { height: 30px; margin-bottom: 16px; }
.footer-brand p { color: var(--mute); font-size: 0.94rem; max-width: 34ch; }
.footer-col h4 { font-family: var(--display); font-size: 0.86rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink); margin-bottom: 16px; }
.footer-col a { display: block; color: var(--ink-soft); font-size: 0.94rem; padding: 5px 0; transition: color .25s; }
.footer-col a:hover { color: var(--teal-2); }
.footer-bottom { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; padding: 24px 0 40px; border-top: 1px solid var(--line); color: var(--mute); font-size: 0.86rem; }

/* =============================================================
   15. WhatsApp float
   ============================================================= */
.wa-float { position: fixed; right: 24px; bottom: 24px; left: auto; z-index: 300; display: inline-flex; align-items: center; gap: 10px; height: 60px; padding: 0 22px 0 18px; border-radius: 999px; color: #fff; background: var(--wa); box-shadow: 0 14px 36px rgba(37,211,102,.5); transition: transform .3s var(--ease-bounce), box-shadow .3s; font-family: var(--display); font-weight: 600; }
.wa-float svg { flex: none; position: relative; z-index: 1; }
.wa-float-label { position: relative; z-index: 1; white-space: nowrap; font-size: 0.98rem; }
.wa-float:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 18px 44px rgba(37,211,102,.65); }
.wa-float-pulse { position: absolute; inset: 0; border-radius: 999px; box-shadow: 0 0 0 0 rgba(37,211,102,.55); animation: waPulse 2.4s ease-out infinite; }
@media (max-width: 560px) {
  .wa-float { padding: 0; width: 58px; height: 58px; justify-content: center; bottom: 18px; right: 18px; }
  .wa-float-label { display: none; }
}
@keyframes waPulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 70%,100% { box-shadow: 0 0 0 18px rgba(37,211,102,0); } }

/* =============================================================
   16. Reveal on scroll
   ============================================================= */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }

/* =============================================================
   17. Responsive
   ============================================================= */
@media (max-width: 960px) {
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile { display: flex; }
  .service-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .outcomes-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .trust { grid-template-columns: repeat(2, 1fr); gap: 26px 20px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .floating-card { right: 0; }
}
@media (max-width: 560px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .field-row { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .ph-hero { aspect-ratio: 4 / 3; }
}

/* =============================================================
   18. Reduced motion — only gate INTRUSIVE effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .bg-gradient { animation: none; }
  .marquee-track { animation: none; }
  .splash-logo { animation: none; }
  .scroll-cue-line { animation: none; }
  .wa-float-pulse { animation: none; }
  .ph-badge-dot { animation: none; }
  /* Keep: reveals, hovers, tilt, count-up, button transitions */
}
