/* ============================================================
   TaleNScale — Design System
   Concept: Serif = the "Tale" (brand). Sans + numbers = the "Scale" (performance).
   Pastel, light, modern, lead-gen centric.
   ============================================================ */

:root {
  /* Brand — pulled from logo */
  --purple: #6D3BCC;
  --purple-deep: #4E22A6;
  --purple-soft: # EDE7FB;
  --purple-tint: #F6F2FE;
  --gold: #F2B705;
  --gold-deep: #D99A00;
  --gold-soft: #FDF3D2;

  /* Neutrals — warm, slightly violet ink */
  --ink: #211C32;
  --ink-2: #4A4560;
  --muted: #76718C;
  --line: #ECE9F2;
  --bg: #FDFCFB;
  --bg-lav: #FAF8FE;
  --bg-cream: #FBF7EF;
  --white: #FFFFFF;

  /* WhatsApp */
  --wa: #25D366;
  --wa-deep: #128C7E;

  --radius: 18px;
  --radius-lg: 28px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 8px rgba(33, 28, 50, 0.05);
  --shadow: 0 14px 40px -18px rgba(78, 34, 166, 0.18);
  --shadow-lg: 0 30px 70px -30px rgba(78, 34, 166, 0.30);

  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-script: "Dancing Script", cursive;
}

/* Fix the soft purple typo-safe */
:root { --purple-soft: #EDE7FB; }

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Type helpers ---------- */
.serif { font-family: var(--font-serif); }
.script { font-family: var(--font-script); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--purple);
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--purple), var(--gold));
}
.eyebrow.center { justify-content: center; }

h1, h2, h3 { font-weight: 600; line-height: 1.08; letter-spacing: -0.01em; }

.display {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2.6rem, 6.2vw, 5.1rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.section-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
}
.lede { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--ink-2); line-height: 1.55; }
.script-n { font-family: var(--font-script); color: var(--purple); font-weight: 700; font-style: normal; }
.ink-gold { color: var(--gold-deep); }
.ink-purple { color: var(--purple); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px; border-radius: 100px; font-weight: 700; font-size: 16px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--purple); color: #fff; box-shadow: 0 12px 26px -10px rgba(109,59,204,.6); }
.btn-primary:hover { background: var(--purple-deep); transform: translateY(-2px); box-shadow: 0 18px 34px -10px rgba(109,59,204,.7); }
.btn-gold { background: var(--gold); color: #3a2c00; box-shadow: 0 12px 26px -10px rgba(217,154,0,.6); }
.btn-gold:hover { background: var(--gold-deep); transform: translateY(-2px); color:#2a2000; }
.btn-ghost { background: #fff; color: var(--ink); border: 1.5px solid var(--line); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { border-color: var(--purple); color: var(--purple); transform: translateY(-2px); }
.btn-wa { background: var(--wa); color: #053a26; box-shadow: 0 12px 26px -10px rgba(37,211,102,.55); }
.btn-wa:hover { background: #1fbb59; transform: translateY(-2px); }
.btn-lg { padding: 18px 34px; font-size: 17px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.nav.scrolled { border-color: var(--line); box-shadow: 0 6px 24px -16px rgba(33,28,50,.3); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 24px; }
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 38px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-size: 15px; font-weight: 600; color: var(--ink-2); padding: 9px 14px; border-radius: 10px;
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--purple); background: var(--purple-tint); }
.nav-cta { display: flex; align-items: center; gap: 12px; }

.wa-pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--wa); color: #043b25; font-weight: 800; font-size: 15px;
  padding: 11px 18px; border-radius: 100px;
  box-shadow: 0 10px 22px -10px rgba(37,211,102,.6);
  transition: transform .25s var(--ease), box-shadow .25s;
}
.wa-pill:hover { transform: translateY(-2px); box-shadow: 0 16px 28px -10px rgba(37,211,102,.7); }
.wa-pill svg { width: 19px; height: 19px; }
.wa-pill .wa-num { letter-spacing: .01em; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 10px; }
.nav-toggle span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: .3s; }

/* mobile menu */
.mobile-menu {
  display: none; position: fixed; inset: 76px 0 0 0; z-index: 99;
  background: rgba(253,252,251,.98); backdrop-filter: blur(8px);
  padding: 28px 24px; flex-direction: column; gap: 6px;
  transform: translateY(-12px); opacity: 0; pointer-events: none; transition: .35s var(--ease);
}
.mobile-menu.open { opacity: 1; transform: none; pointer-events: auto; }
.mobile-menu a { font-size: 20px; font-weight: 600; padding: 14px 8px; border-bottom: 1px solid var(--line); color: var(--ink); }
.mobile-menu .btn, .mobile-menu .wa-pill { margin-top: 14px; justify-content: center; padding: 16px; font-size: 17px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: 64px 0 40px; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 50% at 82% 8%, rgba(242,183,5,.16), transparent 60%),
    radial-gradient(55% 55% at 8% 18%, rgba(109,59,204,.14), transparent 60%),
    linear-gradient(180deg, var(--bg-lav), var(--bg) 60%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap; font-size: 13.5px; font-weight: 700;
  color: var(--purple-deep); background: var(--purple-soft);
  padding: 9px 17px; border-radius: 100px; margin-bottom: 22px; line-height: 1.3;
}
.hero-badge b { color: var(--gold-deep); white-space: nowrap; }
.hero-badge .sep { color: rgba(109,59,204,.35); }
.hero h1 { margin-bottom: 22px; }
.hero h1 .line2 { display: block; }
.hero .lede { max-width: 540px; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero-trust { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero-trust .stars { color: var(--gold); font-size: 17px; letter-spacing: 2px; }
.hero-trust span { font-size: 14.5px; color: var(--muted); font-weight: 500; }
.hero-trust strong { color: var(--ink); }

/* Hero visual card */
.hero-visual { position: relative; }
.hero-card {
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  border: 1px solid var(--line); padding: 26px; position: relative; overflow: hidden;
}
.hero-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.hero-card-head .t { font-weight: 700; font-size: 15px; }
.hero-card-head .pill { font-size: 12px; font-weight: 700; color: var(--wa-deep); background: #E4F8EC; padding: 5px 11px; border-radius: 100px; }
.chart { display: flex; align-items: flex-end; gap: 10px; height: 150px; padding: 8px 4px 0; }
.chart .bar { flex: 1; border-radius: 8px 8px 4px 4px; background: linear-gradient(180deg, var(--purple), #9166dd); opacity: .85; transition: height 1s var(--ease); }
.chart .bar:last-child { background: linear-gradient(180deg, var(--gold), var(--gold-deep)); opacity: 1; }
.chart-x { display: flex; justify-content: space-between; font-size: 11px; color: var(--muted); margin-top: 8px; font-weight: 600; }
.hero-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 18px; }
.hero-metric { background: var(--bg-lav); border-radius: 14px; padding: 14px 16px; }
.hero-metric .v { font-family: var(--font-sans); font-weight: 800; font-size: 24px; color: var(--purple); letter-spacing: -.02em; }
.hero-metric .v.gold { color: var(--gold-deep); }
.hero-metric .l { font-size: 12.5px; color: var(--muted); font-weight: 600; }
.hero-float {
  position: absolute; bottom: -22px; left: -26px; background: #fff; border-radius: 16px;
  box-shadow: var(--shadow); border: 1px solid var(--line); padding: 13px 17px;
  display: flex; align-items: center; gap: 11px;
}
.hero-float .ic { width: 38px; height: 38px; border-radius: 10px; background: var(--gold-soft); display: grid; place-items: center; font-size: 20px; }
.hero-float .v { font-weight: 800; font-size: 17px; line-height: 1.1; }
.hero-float .l { font-size: 11.5px; color: var(--muted); font-weight: 600; }

/* ---------- Marquee / clients ---------- */
.clients { padding: 26px 0 8px; }
.clients-label { text-align: center; font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; gap: 56px; width: max-content; animation: scrollx 28s linear infinite; }
.marquee-track .logo-item { font-family: var(--font-serif); font-weight: 600; font-size: 26px; color: #B6B0C6; white-space: nowrap; display: flex; align-items: center; }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* ============================================================
   SECTION SCAFFOLD
   ============================================================ */
section { position: relative; }
.section { padding: 96px 0; }
.section-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section-head .lede { margin-top: 18px; }
.bg-lav { background: var(--bg-lav); }
.bg-cream { background: var(--bg-cream); }

/* ============================================================
   STORY (Tale n Scale)
   ============================================================ */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 12px; }
.story-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 40px; position: relative; overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.story-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.story-card .big-word { font-family: var(--font-serif); font-size: clamp(2.4rem,4vw,3.2rem); font-weight: 600; line-height: 1; margin-bottom: 6px; }
.story-card.tale .big-word { color: var(--purple); }
.story-card.scale .big-word { color: var(--gold-deep); }
.story-card .num { position: absolute; top: 22px; right: 30px; font-family: var(--font-serif); font-size: 3.4rem; color: var(--line); font-weight: 600; }
.story-card p { color: var(--ink-2); margin-top: 12px; }
.story-card ul { margin-top: 20px; display: flex; flex-direction: column; gap: 11px; }
.story-card li { display: flex; align-items: flex-start; gap: 11px; font-size: 15.5px; font-weight: 600; color: var(--ink); }
.story-card li svg { flex-shrink: 0; margin-top: 3px; }
.story-arc { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 38px auto 0; font-family: var(--font-serif); font-size: clamp(1.4rem,2.5vw,2rem); color: var(--ink); }
.story-arc .arc-arrow { color: var(--gold-deep); font-size: 1.6em; }

/* ============================================================
   STATS / RESULTS
   ============================================================ */
.stats { background: linear-gradient(135deg, var(--purple-deep), var(--purple) 55%, #7d4cd6); color: #fff; border-radius: var(--radius-lg); padding: 60px clamp(28px,5vw,72px); position: relative; overflow: hidden; }
.stats::after { content:""; position:absolute; right:-80px; top:-80px; width:340px; height:340px; border-radius:50%; background: radial-gradient(circle, rgba(242,183,5,.35), transparent 70%); }
.stats-head { max-width: 640px; margin-bottom: 44px; position: relative; }
.stats-head h2 { color: #fff; }
.stats-head .eyebrow { color: var(--gold); }
.stats-head .eyebrow::before { background: var(--gold); }
.stats-head p { color: rgba(255,255,255,.78); margin-top: 14px; font-size: 1.1rem; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; position: relative; }
.stat .v { font-family: var(--font-sans); font-weight: 800; font-size: clamp(2.2rem,4vw,3.1rem); letter-spacing: -.02em; line-height: 1; }
.stat .v .unit { color: var(--gold); }
.stat .l { margin-top: 10px; font-size: 15px; color: rgba(255,255,255,.8); font-weight: 500; line-height: 1.4; }
.stat { border-left: 2px solid rgba(255,255,255,.18); padding-left: 22px; }

/* ============================================================
   SERVICES
   ============================================================ */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
  position: relative; overflow: hidden;
}
.svc-card::before { content:""; position:absolute; inset:0 0 auto 0; height:3px; background: linear-gradient(90deg,var(--purple),var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.svc-card:hover::before { transform: scaleX(1); }
.svc-ic { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 18px; background: var(--purple-soft); color: var(--purple-deep); }
.svc-ic.gold { background: var(--gold-soft); color: var(--gold-deep); }
.svc-ic svg { width: 26px; height: 26px; }
.svc-card h3 { font-family: var(--font-sans); font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.svc-card p { font-size: 15px; color: var(--muted); line-height: 1.5; }
.svc-tag { display:inline-block; margin-bottom: 14px; font-size: 11.5px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--purple); background: var(--purple-tint); padding: 4px 10px; border-radius: 100px; }

/* ============================================================
   PROCESS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; counter-reset: step; }
.step { position: relative; }
.step .n { width: 54px; height: 54px; border-radius: 16px; background: #fff; border:1px solid var(--line); display:grid; place-items:center; font-family: var(--font-serif); font-weight:600; font-size: 26px; color: var(--purple); margin-bottom: 18px; box-shadow: var(--shadow-sm); }
.step:nth-child(4) .n { color: var(--gold-deep); }
.step h3 { font-family: var(--font-sans); font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 15px; color: var(--muted); }
.step:not(:last-child)::after { content:"→"; position:absolute; top: 14px; right: -16px; color: var(--line); font-size: 22px; font-weight: 700; }

/* ============================================================
   WHY US
   ============================================================ */
.why-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.why-list { display: flex; flex-direction: column; gap: 22px; }
.why-item { display: flex; gap: 16px; }
.why-item .ic { flex-shrink: 0; width: 46px; height: 46px; border-radius: 13px; background: var(--purple-soft); color: var(--purple-deep); display: grid; place-items: center; }
.why-item .ic svg { width: 23px; height: 23px; }
.why-item h3 { font-family: var(--font-sans); font-size: 18px; font-weight: 700; margin-bottom: 5px; }
.why-item p { font-size: 15px; color: var(--muted); }
.why-visual { background: linear-gradient(160deg, var(--bg-cream), #fff); border:1px solid var(--line); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm); }
.why-badge-big { font-family: var(--font-serif); font-weight: 600; line-height: .9; }
.why-badge-big .yrs { font-size: clamp(4rem,9vw,6.5rem); color: var(--purple); display:block; }
.why-badge-big .lbl { font-size: 1.5rem; color: var(--ink); }
.why-mini { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 30px; }
.why-mini div { background: #fff; border:1px solid var(--line); border-radius: 14px; padding: 16px; }
.why-mini .v { font-weight: 800; font-size: 22px; color: var(--gold-deep); }
.why-mini .l { font-size: 13px; color: var(--muted); font-weight: 600; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.tst-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.tst-card { background: #fff; border:1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.tst-card .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 16px; font-size: 15px; }
.tst-card .q { font-family: var(--font-serif); font-size: 1.35rem; line-height: 1.4; color: var(--ink); margin-bottom: 22px; flex: 1; }
.tst-who { display: flex; align-items: center; gap: 13px; }
.tst-who .av { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg,var(--purple),var(--gold)); display:grid; place-items:center; color:#fff; font-weight:800; font-size: 16px; }
.tst-who .nm { font-weight: 700; font-size: 15px; }
.tst-who .rl { font-size: 13px; color: var(--muted); }

/* ============================================================
   LEAD FORM / CTA
   ============================================================ */
.lead { position: relative; overflow: hidden; }
.lead-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); display: grid; grid-template-columns: 0.92fr 1.08fr; overflow: hidden;
}
.lead-left { background: linear-gradient(160deg, var(--purple-deep), var(--purple)); color: #fff; padding: 48px; display: flex; flex-direction: column; }
.lead-left .eyebrow { color: var(--gold); }
.lead-left .eyebrow::before { background: var(--gold); }
.lead-left h2 { color: #fff; font-family: var(--font-serif); font-size: clamp(1.9rem,3vw,2.6rem); margin: 14px 0 16px; }
.lead-left p { color: rgba(255,255,255,.82); font-size: 1.02rem; }
.lead-points { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.lead-points li { display: flex; gap: 11px; align-items: center; font-weight: 600; font-size: 15px; }
.lead-points svg { flex-shrink: 0; }
.lead-wa { margin-top: auto; padding-top: 28px; }
.lead-wa .or { font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 12px; font-weight: 600; }

.lead-right { padding: 44px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13.5px; font-weight: 700; color: var(--ink-2); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 12px;
  font-family: inherit; font-size: 15.5px; color: var(--ink); background: var(--bg-lav); transition: border-color .2s, background .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--purple); background: #fff; box-shadow: 0 0 0 4px var(--purple-tint); }
.field textarea { resize: vertical; min-height: 84px; }
.form-note { font-size: 12.5px; color: var(--muted); margin-top: 6px; text-align: center; }
.form-success { display: none; text-align: center; padding: 30px 10px; }
.form-success.show { display: block; }
.form-success .ic { width: 64px; height: 64px; border-radius: 50%; background: #E4F8EC; color: var(--wa-deep); display: grid; place-items: center; margin: 0 auto 18px; }
.form-success h3 { font-family: var(--font-serif); font-size: 1.8rem; margin-bottom: 8px; }
.form-success p { color: var(--muted); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 24px 4px; text-align: left; font-weight: 700; font-size: 18px; color: var(--ink); }
.faq-q .tog { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: var(--purple-tint); color: var(--purple); display: grid; place-items: center; font-size: 20px; font-weight: 600; transition: .3s var(--ease); }
.faq-item.open .tog { background: var(--purple); color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a-inner { padding: 0 4px 24px; color: var(--ink-2); font-size: 16px; line-height: 1.6; max-width: 700px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: #fff; padding: 70px 0 30px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 40px; padding-bottom: 46px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand .wordmark { font-family: var(--font-serif); font-size: 30px; font-weight: 600; letter-spacing: .02em; margin-bottom: 14px; }
.footer-brand .wordmark .n { font-family: var(--font-script); color: var(--gold); margin: 0 4px; }
.footer-brand p { color: rgba(255,255,255,.6); font-size: 15px; max-width: 320px; }
.footer-brand .socials { display: flex; gap: 10px; margin-top: 22px; }
.footer-brand .socials a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: background .25s, transform .25s; }
.footer-brand .socials a:hover { background: var(--purple); transform: translateY(-2px); }
.footer-brand .socials svg { width: 19px; height: 19px; }
.footer-col h4 { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 18px; font-weight: 700; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { color: rgba(255,255,255,.78); font-size: 15px; transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.footer-contact p { color: rgba(255,255,255,.78); font-size: 15px; margin-bottom: 12px; display: flex; gap: 10px; }
.footer-contact a { color: #fff; font-weight: 600; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 26px; flex-wrap: wrap; }
.footer-bottom p { color: rgba(255,255,255,.5); font-size: 13.5px; }
.footer-seo { color: rgba(255,255,255,.4); font-size: 12.5px; line-height: 1.7; margin-top: 22px; max-width: 100%; }

/* ============================================================
   FLOATING WHATSAPP (mobile)
   ============================================================ */
.wa-float {
  position: fixed; bottom: 20px; right: 20px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%; background: var(--wa);
  display: grid; place-items: center; box-shadow: 0 14px 30px -8px rgba(37,211,102,.7);
  animation: wa-pulse 2.6s ease-in-out infinite;
}
.wa-float svg { width: 32px; height: 32px; }
@keyframes wa-pulse { 0%,100% { box-shadow: 0 14px 30px -8px rgba(37,211,102,.6), 0 0 0 0 rgba(37,211,102,.4); } 50% { box-shadow: 0 14px 30px -8px rgba(37,211,102,.7), 0 0 0 14px rgba(37,211,102,0); } }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .marquee-track { animation: none; } .wa-float { animation: none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 480px; }
  .svc-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 30px 26px; }
  .steps { grid-template-columns: repeat(2,1fr); gap: 30px; }
  .step:not(:last-child)::after { display: none; }
  .why-grid { grid-template-columns: 1fr; gap: 36px; }
  .tst-grid { grid-template-columns: 1fr; }
  .lead-card { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: flex; }
  .nav-cta { gap: 8px; }
  .wa-pill .wa-num { display: none; }
  .wa-pill { padding: 11px 13px; }
  .section { padding: 64px 0; }
  .story-grid { grid-template-columns: 1fr; }
  .stats { padding: 44px 26px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .lead-left, .lead-right { padding: 32px 26px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .hero-float { left: 0; }
  .section-head { margin-bottom: 40px; }
}
@media (max-width: 420px) {
  .stats-grid { grid-template-columns: 1fr; gap: 22px; }
  .svc-grid { grid-template-columns: 1fr; }
}
