/* ==========================================================================
   Merlion Media — Design Tokens
   ========================================================================== */
:root{
  --black:       #0B0B0C;
  --ink:         #17171A;
  --yellow:      #FCDF05;
  --yellow-deep: #E0C600;
  --cream:       #FAF8F2;
  --white:       #FFFFFF;
  --gray-900:    #1E1E1E;
  --gray-600:    #63625B;
  --gray-300:    #D8D5C9;
  --gray-100:    #EFEDE4;

  --font-display: 'Space Grotesk', sans-serif;
  --font-body:    'Inter', sans-serif;

  --container: 1180px;
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;

  --ease: cubic-bezier(.22,.68,0,1);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
}

body{
  margin:0;
  font-family:var(--font-body);
  background:var(--cream);
  color:var(--black);
  -webkit-font-smoothing:antialiased;
  line-height:1.5;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ font-family:var(--font-display); margin:0; line-height:1.05; letter-spacing:-0.01em; }
p{ margin:0; }

.wrap{ max-width:var(--container); margin:0 auto; padding:0 28px; }

:focus-visible{ outline:3px solid var(--black); outline-offset:3px; }
section :focus-visible{ outline-color:var(--black); }
.on-dark :focus-visible{ outline-color:var(--yellow); }

/* ---------- Eyebrow / labels ---------- */
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--font-display);
  font-size:12.5px; font-weight:700; letter-spacing:0.16em; text-transform:uppercase;
  color:var(--gray-600);
}
.on-dark .eyebrow{ color:var(--yellow); }
.eyebrow::before{
  content:''; width:7px; height:7px; background:var(--yellow-deep); border-radius:2px; flex:none;
}
.on-dark .eyebrow::before{ background:var(--yellow); }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  font-family:var(--font-display); font-weight:700; font-size:15px;
  padding:16px 26px; border-radius:100px; border:2px solid transparent;
  transition:transform .18s var(--ease), background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
  white-space:nowrap;
}
.btn:hover{ transform:translateY(-2px); }
.btn-primary{ background:var(--yellow); color:var(--black); }
.btn-primary:hover{ background:var(--black); color:var(--yellow); }
.btn-dark{ background:var(--black); color:var(--yellow); }
.btn-dark:hover{ background:var(--yellow); color:var(--black); }
.btn-outline{ background:transparent; border-color:currentColor; color:var(--black); }
.btn-outline:hover{ background:var(--black); color:var(--yellow); border-color:var(--black); }
.on-dark .btn-outline{ color:var(--white); }
.on-dark .btn-outline:hover{ background:var(--white); color:var(--black); }
.btn-sm{ padding:11px 20px; font-size:13.5px; }
.btn svg{ width:16px; height:16px; flex:none; }

/* ==========================================================================
   Nav
   ========================================================================== */
.nav{
  position:sticky; top:0; z-index:100;
  background:var(--cream);
  border-bottom:1px solid var(--gray-300);
}
.nav .wrap{ display:flex; align-items:center; justify-content:space-between; height:78px; }
.brand{ display:flex; align-items:center; gap:10px; }
.brand img{ height:34px; width:auto; }
.brand span{ font-family:var(--font-display); font-weight:700; font-size:18px; letter-spacing:-0.01em; }
.nav-links{ display:flex; align-items:center; gap:34px; }
.nav-links a{ font-size:14.5px; font-weight:600; }
.nav-links a{ position:relative; padding:4px 0; }
.nav-links a::after{ content:''; position:absolute; left:0; bottom:-2px; width:0; height:2px; background:var(--yellow-deep); transition:width .2s var(--ease); }
.nav-links a:hover::after{ width:100%; }
.nav-cta{ display:flex; align-items:center; gap:14px; }
.nav-cta-mobile{ display:none; }
.nav-toggle{ display:none; background:none; border:none; padding:6px; }
.nav-toggle span{ display:block; width:24px; height:2px; background:var(--black); margin:5px 0; transition:transform .25s var(--ease), opacity .25s var(--ease); }

@media (max-width:920px){
  .nav-links{
    position:fixed; inset:78px 0 0 0; background:var(--cream); z-index:150;
    flex-direction:column; justify-content:flex-start; gap:0;
    padding:10px 28px 30px; transform:translateX(100%); transition:transform .32s var(--ease);
    border-top:1px solid var(--gray-300); overflow-y:auto;
  }
  .nav-links.open{ transform:translateX(0); }
  .nav-links a{ width:100%; padding:16px 0; border-bottom:1px solid var(--gray-300); font-size:17px; }
  .nav-links a.nav-cta-mobile{ display:inline-flex; width:auto; border-bottom:none; margin-top:20px; }
  .nav-cta .btn-desktop{ display:none; }
  .nav-toggle{ display:block; }
  .nav-toggle.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2){ opacity:0; }
  .nav-toggle.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{ position:relative; overflow:hidden; padding:76px 0 0; background:var(--cream); }
.hero-grid{ display:grid; grid-template-columns:1.05fr 0.95fr; gap:40px; align-items:center; }
.hero-copy h1{ font-size:clamp(40px,5.4vw,68px); margin:20px 0 22px; }
.hero-copy h1 em{ font-style:normal; color:var(--black); background:linear-gradient(180deg, transparent 62%, var(--yellow) 62%); padding:0 2px; }
.hero-copy p.lead{ font-size:18px; color:var(--gray-600); max-width:520px; margin-bottom:32px; }
.hero-ctas{ display:flex; gap:16px; flex-wrap:wrap; margin-bottom:44px; }

.stat-strip{ display:flex; gap:34px; flex-wrap:wrap; padding-top:28px; border-top:1px solid var(--gray-300); }
.stat-strip .stat b{ display:block; font-family:var(--font-display); font-size:28px; }
.stat-strip .stat span{ font-size:13px; color:var(--gray-600); }

.hero-website-pill{
  display:inline-flex; align-items:center; gap:6px; margin-top:22px;
  font-size:13.5px; font-weight:600; color:var(--gray-900);
  padding:10px 16px; border:1px solid var(--gray-300); border-radius:100px; background:var(--white);
  transition:border-color .2s var(--ease), transform .2s var(--ease);
}
.hero-website-pill:hover{ border-color:var(--black); transform:translateY(-1px); }

/* Reel strip — signature element */
.reel-col{ position:relative; height:640px; }
.reel-track{
  position:absolute; inset:0; display:flex; flex-direction:column; gap:18px;
  animation:reelScroll 26s linear infinite;
}
.reel-track.reverse{ animation-direction:reverse; }
@keyframes reelScroll{
  from{ transform:translateY(0); }
  to{ transform:translateY(-50%); }
}
.reel-cols{ display:grid; grid-template-columns:1fr 1fr; gap:18px; height:100%; }
.reel-cols .reel-col:nth-child(2) .reel-track{ animation-duration:32s; }

.reel-card{
  flex:none; width:100%; aspect-ratio:9/16; border-radius:var(--radius-md);
  position:relative; overflow:hidden; box-shadow:0 14px 30px -14px rgba(0,0,0,.35);
  display:flex; flex-direction:column; justify-content:space-between; padding:14px;
  background-size:cover; background-position:center; background-color:var(--ink);
}
.reel-card::before{
  content:''; position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 55%, rgba(0,0,0,.65) 100%);
  pointer-events:none;
}
.reel-card > *{ position:relative; z-index:1; }
.reel-card .tag{
  align-self:flex-start; font-family:var(--font-display); font-weight:700; font-size:11px;
  letter-spacing:.04em; text-transform:uppercase; background:rgba(255,255,255,.92); color:var(--black);
  padding:6px 10px; border-radius:100px;
}
.reel-card .play{
  align-self:center; width:44px; height:44px; border-radius:50%; background:rgba(255,255,255,.22);
  border:1.5px solid rgba(255,255,255,.7); display:flex; align-items:center; justify-content:center;
  backdrop-filter:blur(2px);
}
.reel-card .play svg{ width:16px; height:16px; fill:#fff; margin-left:2px; }
.reel-card .cap{ color:#fff; font-size:12.5px; font-weight:600; text-shadow:0 1px 6px rgba(0,0,0,.5); }
.reel-card.ph-cafe{ background-image:url('photos/cafe.jpg'); }
.reel-card.ph-salon{ background-image:url('photos/salon.jpg'); }
.reel-card.ph-studio{ background-image:url('photos/gym.jpg'); }
.reel-card.ph-boutique{ background-image:url('photos/boutique.jpg'); }
.reel-card.ph-bakery{ background-image:url('photos/bakery.jpg'); }
.reel-card.ph-gym{ background-image:url('photos/gym.jpg'); }

@media (max-width:920px){
  .hero-grid{ grid-template-columns:1fr; }
  .reel-col{ height:340px; }
  .reel-cols{ grid-template-columns:1fr 1fr; }
}

/* ==========================================================================
   Marquee (brands / neighborhoods)
   ========================================================================== */
.marquee-band{ background:var(--black); color:var(--white); padding:20px 0; overflow:hidden; border-top:1px solid var(--gray-900); border-bottom:1px solid var(--gray-900); }
.marquee-track{ display:flex; gap:56px; width:max-content; animation:marquee 28s linear infinite; }
@keyframes marquee{ from{ transform:translateX(0);} to{ transform:translateX(-50%);} }
.marquee-track span{ font-family:var(--font-display); font-weight:700; font-size:16px; letter-spacing:.02em; color:var(--gray-300); white-space:nowrap; display:flex; align-items:center; gap:16px; }
.marquee-track span::after{ content:'•'; color:var(--yellow); }

/* ==========================================================================
   Section basics
   ========================================================================== */
section{ padding:104px 0; }
.section-head{ max-width:640px; margin-bottom:56px; }
.section-head h2{ font-size:clamp(30px,4vw,46px); margin-top:16px; }
.section-head p{ color:var(--gray-600); font-size:17px; margin-top:16px; }
.on-dark{ background:var(--black); color:var(--white); }
.on-dark .section-head p{ color:#B9B8AF; }
.on-yellow{ background:var(--yellow); color:var(--black); }

/* ---------- Problem section ---------- */
.pain-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-bottom:56px; }
.pain-card{ background:var(--ink); border:1px solid #2A2A2C; border-radius:var(--radius-md); padding:30px 26px; }
.pain-card .num{ font-family:var(--font-display); color:var(--yellow); font-size:13px; font-weight:700; letter-spacing:.08em; }
.pain-card h3{ font-size:20px; margin:14px 0 10px; color:#fff; }
.pain-card p{ color:#B9B8AF; font-size:15px; }
.solution-banner{ display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap; background:var(--yellow); color:var(--black); border-radius:var(--radius-lg); padding:34px 40px; }
.solution-banner h3{ font-size:24px; max-width:520px; }
.solution-banner.on-black{ background:var(--black); color:#fff; }
.solution-banner.on-black h3{ color:#fff; }

@media (max-width:860px){ .pain-grid{ grid-template-columns:1fr; } }

/* ---------- Process ---------- */
.process-list{ display:flex; flex-direction:column; }
.process-item{ display:grid; grid-template-columns:110px 1fr; gap:32px; padding:38px 0; border-top:1px solid var(--gray-300); }
.process-item:last-child{ border-bottom:1px solid var(--gray-300); }
.process-item .step-num{ font-family:var(--font-display); font-size:44px; font-weight:700; color:var(--gray-300); }
.process-item h3{ font-size:24px; margin-bottom:10px; }
.process-item p{ color:var(--gray-600); font-size:16px; max-width:560px; }
.process-item .meta{ display:inline-block; margin-top:14px; font-family:var(--font-display); font-size:12.5px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; background:var(--gray-100); padding:6px 12px; border-radius:100px; }

@media (max-width:640px){ .process-item{ grid-template-columns:1fr; gap:10px; } }

/* ---------- Services ---------- */
.services-grid{ display:grid; grid-template-columns:repeat(auto-fit, minmax(260px, 1fr)); gap:20px; }
.service-card{ background:var(--white); border:1px solid var(--gray-300); border-radius:var(--radius-md); padding:30px 26px; transition:transform .2s var(--ease), box-shadow .2s var(--ease); }
.service-card:hover{ transform:translateY(-4px); box-shadow:0 20px 34px -22px rgba(0,0,0,.25); }
.service-card .icon{ width:44px; height:44px; border-radius:12px; background:var(--black); display:flex; align-items:center; justify-content:center; margin-bottom:20px; }
.service-card .icon svg{ width:22px; height:22px; stroke:var(--yellow); fill:none; }
.service-card h3{ font-size:18.5px; margin-bottom:8px; }
.service-card p{ color:var(--gray-600); font-size:14.5px; }

/* ---------- Packages ---------- */
.pkg-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; align-items:stretch; }
.pkg-card{ display:flex; flex-direction:column; background:var(--white); border:1px solid var(--gray-300); border-radius:var(--radius-lg); padding:34px 30px; position:relative; }
.pkg-card.featured{ background:var(--black); color:var(--white); border-color:var(--black); transform:translateY(-14px); }
.pkg-badge{ position:absolute; top:-14px; right:28px; background:var(--yellow); color:var(--black); font-family:var(--font-display); font-weight:700; font-size:12px; letter-spacing:.04em; text-transform:uppercase; padding:7px 14px; border-radius:100px; }
.pkg-badge-alt{ background:var(--black); color:var(--yellow); }
.pkg-name{ font-family:var(--font-display); font-weight:700; font-size:13px; letter-spacing:.1em; text-transform:uppercase; color:var(--gray-600); }
.pkg-card.featured .pkg-name{ color:var(--yellow); }
.pkg-price{ font-family:var(--font-display); font-size:38px; margin:14px 0 4px; }
.pkg-cadence{ font-size:13.5px; color:var(--gray-600); margin-bottom:26px; }
.pkg-cadence .was{ text-decoration:line-through; opacity:.6; }
.pkg-cadence .now{ font-family:var(--font-display); font-weight:700; color:var(--black); font-size:15px; }
.pkg-card.featured .pkg-cadence .now{ color:var(--yellow); }
.pkg-fine{ display:block; margin-top:14px; font-size:12px; color:var(--gray-600); text-align:center; }
.pkg-fine.light{ color:#B9B8AF; }
.pkg-cadence-sub{ font-size:11.5px; color:var(--gray-600); margin-top:-20px; margin-bottom:22px; }
.pkg-card.featured .pkg-cadence-sub{ color:#B9B8AF; }
.pkg-highlight{ background:rgba(252,223,5,.12); border-radius:8px; padding:8px 10px; margin:0 -10px; }
.pkg-highlight svg{ stroke:var(--yellow); }
.pkg-card.featured .pkg-cadence{ color:#B9B8AF; }
.pkg-list{ display:flex; flex-direction:column; gap:13px; margin-bottom:30px; flex:1; }
.pkg-list li{ display:flex; gap:10px; font-size:14.5px; align-items:flex-start; }
.pkg-list svg{ width:16px; height:16px; flex:none; margin-top:3px; stroke:var(--yellow-deep); }
.pkg-card.featured .pkg-list svg{ stroke:var(--yellow); }
.pkg-note{ text-align:center; color:var(--gray-600); margin-top:36px; font-size:14px; }

.website-card{
  margin-top:40px; background:var(--white); border:2px solid var(--black); border-radius:var(--radius-lg);
  padding:40px; display:grid; grid-template-columns:1.4fr 1fr; gap:40px; align-items:center;
}
.website-card-copy h3{ font-size:26px; margin:14px 0 12px; }
.website-card-copy p{ color:var(--gray-600); font-size:15px; margin-bottom:20px; max-width:440px; }
.website-list{ display:flex; flex-direction:column; gap:11px; }
.website-list li{ display:flex; gap:10px; font-size:14.5px; align-items:flex-start; }
.website-list svg{ width:16px; height:16px; flex:none; margin-top:3px; stroke:var(--yellow-deep); }
.website-card-price{ text-align:center; background:var(--cream); border-radius:var(--radius-md); padding:30px 24px; }
.wc-price{ font-family:var(--font-display); font-weight:700; font-size:40px; }
.wc-sub{ font-size:13px; color:var(--gray-600); margin-bottom:14px; }
.wc-addon{ font-size:13px; color:var(--gray-900); margin-bottom:20px; padding-bottom:20px; border-bottom:1px solid var(--gray-300); }
.wc-addon span{ color:var(--gray-600); }
.website-card-price .btn{ width:100%; }

@media (max-width:780px){
  .website-card{ grid-template-columns:1fr; }
}

.portfolio-strip{ margin-top:28px; }
.portfolio-label{ display:block; font-family:var(--font-display); font-weight:700; font-size:12.5px; letter-spacing:.1em; text-transform:uppercase; color:var(--gray-600); margin-bottom:16px; }
.portfolio-items{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.portfolio-item{ display:block; border-radius:var(--radius-md); overflow:hidden; border:1px solid var(--gray-300); background:var(--white); transition:transform .2s var(--ease), box-shadow .2s var(--ease); }
a.portfolio-item:hover{ transform:translateY(-3px); box-shadow:0 16px 30px -18px rgba(0,0,0,.3); }
.portfolio-thumb{ aspect-ratio:16/10; background-size:cover; background-position:top center; }
.portfolio-thumb-placeholder{
  display:flex; align-items:center; justify-content:center;
  background:linear-gradient(155deg,var(--gray-100),var(--gray-300));
  color:var(--gray-600); font-family:var(--font-display); font-weight:700; font-size:15px; letter-spacing:.02em;
}
.portfolio-meta{ padding:14px 16px; }
.portfolio-meta b{ display:block; font-size:14.5px; margin-bottom:3px; }
.portfolio-meta span{ font-size:12.5px; color:var(--gray-600); }

@media (max-width:640px){ .portfolio-items{ grid-template-columns:1fr; } }

@media (max-width:920px){ .pkg-grid{ grid-template-columns:1fr; } .pkg-card.featured{ transform:none; } }

/* ---------- Case studies ---------- */
.case-grid{ display:grid; grid-template-columns:1fr 1fr; gap:24px; }
.case-card{ background:var(--ink); border-radius:var(--radius-lg); padding:36px; color:#fff; border:1px solid #2A2A2C; }
.case-top{ display:flex; justify-content:space-between; align-items:flex-start; gap:16px; margin-bottom:22px; }
.case-top h3{ font-size:22px; }
.case-top span.loc{ color:#B9B8AF; font-size:13.5px; }
.sample-tag{ font-size:11px; font-family:var(--font-display); font-weight:700; letter-spacing:.06em; text-transform:uppercase; color:var(--black); background:var(--yellow); padding:5px 10px; border-radius:100px; flex:none; }
.case-block{ margin-bottom:16px; }
.case-block b{ display:block; font-family:var(--font-display); font-size:11.5px; letter-spacing:.1em; text-transform:uppercase; color:var(--yellow); margin-bottom:6px; }
.case-block p{ color:#D6D4C9; font-size:14.5px; }
.case-stats{ display:flex; gap:26px; margin-top:24px; padding-top:22px; border-top:1px solid #2A2A2C; }
.case-stats div b{ display:block; font-family:var(--font-display); font-size:24px; }
.case-stats div span{ font-size:12px; color:#B9B8AF; }

@media (max-width:860px){ .case-grid{ grid-template-columns:1fr; } }

/* ---------- Testimonials ---------- */
.testi-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.testi-card{ background:var(--white); border:1px solid var(--gray-300); border-radius:var(--radius-md); padding:28px; }
.testi-stars{ display:flex; gap:3px; margin-bottom:16px; }
.testi-stars svg{ width:15px; height:15px; fill:var(--yellow-deep); }
.testi-card p{ font-size:15px; color:var(--gray-900); margin-bottom:20px; }
.testi-who{ display:flex; align-items:center; gap:12px; }
.testi-avatar{ width:38px; height:38px; border-radius:50%; background:var(--black); color:var(--yellow); display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-weight:700; font-size:14px; }
.testi-who b{ display:block; font-size:14px; }
.testi-who span{ font-size:12.5px; color:var(--gray-600); }

@media (max-width:860px){ .testi-grid{ grid-template-columns:1fr; } }

/* ---------- Lead magnet ---------- */
.magnet{ display:grid; grid-template-columns:1fr 1fr; gap:50px; align-items:center; }
.magnet-visual{ background:linear-gradient(155deg,var(--yellow),#e7cf20 60%,var(--black) 150%); border-radius:var(--radius-lg); aspect-ratio:4/3; display:flex; align-items:center; justify-content:center; padding:36px; }
.magnet-book-img{
  width:56%; border-radius:6px; box-shadow:0 24px 50px -18px rgba(0,0,0,.45);
  transform:rotate(-4deg); border:1px solid rgba(0,0,0,.08);
}
.magnet-copy .eyebrow{ margin-bottom:16px; }
.magnet-copy h2{ font-size:clamp(28px,3.6vw,38px); margin-bottom:16px; }
.magnet-copy p{ color:var(--gray-600); font-size:16px; margin-bottom:28px; }
.magnet-form{ display:flex; gap:10px; flex-wrap:wrap; }
.magnet-form input[type=email], .magnet-form input[type=text]{
  flex:1; min-width:200px; padding:15px 18px; border-radius:100px; border:2px solid var(--gray-300);
  font-family:var(--font-body); font-size:15px; background:var(--white);
}
.magnet-form input:focus{ border-color:var(--black); outline:none; }
.magnet-fine{ font-size:12.5px; color:var(--gray-600); margin-top:12px; }
.form-success{ display:none; font-family:var(--font-display); font-weight:700; padding:14px 18px; background:var(--black); color:var(--yellow); border-radius:100px; }
.form-success.show{ display:inline-flex; align-items:center; gap:8px; }

@media (max-width:860px){ .magnet{ grid-template-columns:1fr; } .magnet-visual{ order:-1; } }

/* ---------- FAQ ---------- */
.faq-list{ border-top:1px solid var(--gray-300); }
.faq-item{ border-bottom:1px solid var(--gray-300); }
.faq-q{ width:100%; background:none; border:none; text-align:left; display:flex; justify-content:space-between; align-items:center; gap:20px; padding:26px 4px; font-family:var(--font-display); font-weight:700; font-size:17px; }
.faq-q .plus{ width:26px; height:26px; border-radius:50%; border:1.5px solid var(--black); position:relative; flex:none; transition:transform .25s var(--ease), background .25s var(--ease); }
.faq-q .plus::before, .faq-q .plus::after{ content:''; position:absolute; background:var(--black); top:50%; left:50%; }
.faq-q .plus::before{ width:10px; height:1.6px; transform:translate(-50%,-50%); }
.faq-q .plus::after{ width:1.6px; height:10px; transform:translate(-50%,-50%); transition:opacity .2s var(--ease); }
.faq-item.open .faq-q .plus{ background:var(--black); transform:rotate(180deg); }
.faq-item.open .faq-q .plus::before, .faq-item.open .faq-q .plus::after{ background:var(--yellow); }
.faq-item.open .faq-q .plus::after{ opacity:0; }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .32s var(--ease); }
.faq-a p{ padding:0 4px 26px; color:var(--gray-600); font-size:15.5px; max-width:680px; }

/* ---------- Final CTA ---------- */
.final-cta{ text-align:center; padding:110px 0; }
.final-cta h2{ font-size:clamp(34px,5.4vw,58px); margin-bottom:20px; }
.final-cta p{ color:#B9B8AF; font-size:17px; max-width:520px; margin:0 auto 36px; }
.final-cta .ctas{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

/* ==========================================================================
   Footer
   ========================================================================== */
footer{ background:var(--black); color:#B9B8AF; padding-top:70px; }
.footer-top{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:40px; padding-bottom:56px; border-bottom:1px solid var(--gray-900); }
.footer-brand img{ height:32px; margin-bottom:16px; }
.footer-brand p{ font-size:14px; max-width:260px; }
.footer-col h4{ font-family:var(--font-display); font-size:13px; letter-spacing:.08em; text-transform:uppercase; color:#fff; margin-bottom:18px; }
.footer-col ul{ display:flex; flex-direction:column; gap:12px; }
.footer-col a{ font-size:14.5px; }
.footer-col a:hover{ color:var(--yellow); }
.footer-social{ display:flex; gap:12px; margin-top:20px; }
.footer-social a{ width:38px; height:38px; border-radius:50%; border:1px solid var(--gray-900); display:flex; align-items:center; justify-content:center; }
.footer-social svg{ width:16px; height:16px; stroke:#fff; fill:none; }
.footer-social a:hover{ background:var(--yellow); border-color:var(--yellow); }
.footer-social a:hover svg{ stroke:var(--black); }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding:26px 0; font-size:13px; flex-wrap:wrap; gap:10px; }

@media (max-width:860px){ .footer-top{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .footer-top{ grid-template-columns:1fr; } }

/* ==========================================================================
   Floating WhatsApp + mobile sticky CTA
   ========================================================================== */
.whatsapp-float{
  position:fixed; right:22px; bottom:22px; z-index:90;
  width:58px; height:58px; border-radius:50%; background:#25D366;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 12px 26px -8px rgba(0,0,0,.4); transition:transform .2s var(--ease);
}
.whatsapp-float:hover{ transform:scale(1.08); }
.whatsapp-float svg{ width:28px; height:28px; fill:#fff; }

.mobile-cta-bar{ display:none; }
@media (max-width:640px){
  .mobile-cta-bar{
    display:flex; position:fixed; left:0; right:0; bottom:0; z-index:95;
    background:var(--black); padding:12px 16px; gap:10px;
    box-shadow:0 -8px 20px rgba(0,0,0,.2);
  }
  .mobile-cta-bar .btn{ flex:1; }
  .whatsapp-float{ bottom:84px; }
  body{ padding-bottom:74px; }
}

/* ==========================================================================
   Reveal animation
   ========================================================================== */
.reveal{ opacity:0; transform:translateY(22px); transition:opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in{ opacity:1; transform:translateY(0); }
