/* ==========================================================================
   CertiSupport landing page
   1. Tokens      2. Reset      3. Utilities   4. Buttons    5. Header
   6. Hero        7. Trusted    8. Stats       9. FAQ        10. Modules
   11. Why/Guarantee   12. Paths   13. Testimonials   14. CTA
   15. Footer     16. Floating buttons   17. Responsive
   ========================================================================== */

/* ------------------------------------------------------------- 1. Tokens */
:root{
  --navy-950:#03102A;
  --navy-900:#061A3C;
  --navy-800:#08234F;
  --navy-700:#0B2C63;
  --navy-600:#123A7D;

  --brand:#1668E3;
  --brand-dark:#0F53BC;
  --brand-light:#2E86F0;
  --brand-sky:#3B9EFF;

  --wa:#16A34A;
  --wa-light:#22B858;
  --gold:#FFC629;

  --ink:#0F2246;
  --muted:#5B6B85;
  --line:#E4E9F2;
  --page:#F4F7FB;
  --white:#FFFFFF;

  --shell:1200px;
  --radius:10px;
  --radius-sm:6px;

  --shadow-card:0 1px 2px rgba(15,34,70,.04), 0 8px 24px rgba(15,34,70,.06);
  --shadow-hover:0 8px 16px rgba(15,34,70,.08), 0 20px 40px rgba(15,34,70,.10);
  --shadow-float:0 10px 30px rgba(0,0,0,.25);

  --font-body:'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-head:'Poppins', var(--font-body);
}

/* -------------------------------------------------------------- 2. Reset */
*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  margin:0;
  font-family:var(--font-body);
  font-size:16px;
  line-height:1.5;
  color:var(--ink);
  background:var(--page);
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4{font-family:var(--font-head);margin:0;line-height:1.25}
p{margin:0}
ul{margin:0;padding:0;list-style:none}
a{color:inherit;text-decoration:none}
img{max-width:100%;height:auto;display:block}
button{font:inherit;color:inherit;background:none;border:0;cursor:pointer}
input,select,textarea{font:inherit}

:focus-visible{outline:3px solid var(--brand-sky);outline-offset:2px;border-radius:4px}

.sprite{position:absolute;width:0;height:0;overflow:hidden}
.skip-link{
  position:absolute;left:-9999px;top:0;z-index:100;
  background:#fff;color:var(--ink);padding:10px 16px;border-radius:0 0 6px 0;
}
.skip-link:focus{left:0}

/* ----------------------------------------------------------- 3. Utilities */
.shell{width:100%;max-width:var(--shell);margin:0 auto;padding:0 16px}

.ico{width:24px;height:24px;fill:none;stroke:currentColor;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round;flex:0 0 auto}
.ico.xs{width:14px;height:14px}
.ico.sm{width:18px;height:18px}
.ico.md{width:24px;height:24px}
.ico.lg{width:34px;height:34px}
.ico.xl{width:30px;height:30px}
.ico.brand{color:var(--brand)}
/* filled glyphs (whatsapp / phone / quote) */
#i-whatsapp,#i-phone,#i-quote{fill:currentColor;stroke:none}
.ico use{pointer-events:none}

.section-title{
  text-align:center;font-size:19px;font-weight:700;text-transform:uppercase;
  letter-spacing:.02em;color:var(--ink);
}
.card-title{font-size:15px;font-weight:700;text-transform:uppercase;letter-spacing:.02em}

.card{
  background:var(--white);border:1px solid var(--line);
  border-radius:var(--radius);box-shadow:var(--shadow-card);padding:26px;
}

.link-arrow{
  display:inline-flex;align-items:center;gap:7px;
  font-size:12.5px;font-weight:600;color:var(--brand);transition:color .2s;
}
.link-arrow:hover{color:var(--brand-dark)}

.reveal{opacity:0;transform:translateY(18px);transition:opacity .55s ease-out, transform .55s ease-out}
.reveal.is-visible{opacity:1;transform:none}

/* ------------------------------------------------------------- 4. Buttons */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  font-family:var(--font-head);font-size:13px;font-weight:600;
  text-transform:uppercase;letter-spacing:.04em;
  padding:14px 24px;border-radius:var(--radius-sm);
  transition:background-color .2s, transform .2s, box-shadow .2s;
}
.btn-sm{font-size:11.5px;padding:10px 16px}
.btn-block{display:flex;width:100%}

.btn-primary{background:var(--brand);color:#fff}
.btn-primary:hover{background:var(--brand-dark);transform:translateY(-2px);box-shadow:0 8px 18px rgba(22,104,227,.3)}

.btn-ghost{background:rgba(255,255,255,.06);color:#fff;border:1px solid rgba(255,255,255,.35)}
.btn-ghost:hover{background:rgba(255,255,255,.16);transform:translateY(-2px)}

.btn-white{background:#fff;color:var(--brand)}
.btn-white:hover{background:rgba(255,255,255,.9);transform:translateY(-2px);box-shadow:0 8px 18px rgba(0,0,0,.16)}

/* shared WhatsApp / Call button pair */
.contact-pair{display:flex;gap:12px}
.contact-btn{
  display:flex;align-items:center;gap:12px;flex:1 1 0;min-width:0;
  padding:13px 13px;border-radius:var(--radius-sm);color:#fff;
  transition:background-color .2s, transform .2s, box-shadow .2s;
}
.contact-btn:hover{transform:translateY(-2px);box-shadow:0 8px 18px rgba(0,0,0,.2)}
.contact-btn.wa{background:var(--wa)}
.contact-btn.wa:hover{background:var(--wa-light)}
.contact-btn.call{background:var(--brand)}
.contact-btn.call:hover{background:var(--brand-light)}
.cb-icon{
  display:flex;align-items:center;justify-content:center;
  width:38px;height:38px;border-radius:50%;background:rgba(255,255,255,.2);flex:0 0 auto;
}
.contact-btn b{display:block;font-family:var(--font-head);font-size:16px;font-weight:700;line-height:1.15;white-space:nowrap}
.contact-btn small{display:block;font-size:10px;font-weight:600;text-transform:uppercase;letter-spacing:.12em;opacity:.85;white-space:nowrap}
.contact-pair.sm .contact-btn{padding:10px 12px}
.contact-pair.sm .cb-icon{width:34px;height:34px}
.contact-pair.sm .contact-btn b{font-size:14px}

/* -------------------------------------------------------------- 5. Header */
.site-header{
  position:fixed;inset:0 0 auto 0;z-index:50;
  background:transparent;transition:background-color .3s, box-shadow .3s;
}
.site-header.is-stuck{background:rgba(3,16,42,.96);box-shadow:0 2px 20px rgba(3,16,42,.2);backdrop-filter:blur(8px)}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:16px;height:72px}

.brand{display:flex;align-items:center;gap:10px}
.brand-mark{width:36px;height:40px;flex:0 0 auto}
.brand-name{display:block;font-family:var(--font-head);font-size:21px;font-weight:700;letter-spacing:-.01em;color:#fff;line-height:1}
.brand-name span{color:var(--brand-sky)}
.brand-tag{display:block;margin-top:4px;font-size:8.5px;font-weight:500;text-transform:uppercase;letter-spacing:.06em;color:rgba(255,255,255,.65)}

.main-nav ul{display:flex;align-items:center;gap:24px}
.main-nav a{
  display:flex;align-items:center;gap:4px;
  font-size:12.5px;font-weight:600;text-transform:uppercase;letter-spacing:.04em;
  color:rgba(255,255,255,.9);transition:color .2s;
}
.main-nav a:hover{color:var(--brand-sky)}

.header-actions{display:flex;align-items:center;gap:12px}

.nav-toggle{
  display:none;width:40px;height:40px;border:1px solid rgba(255,255,255,.25);
  border-radius:var(--radius-sm);position:relative;
}
.nav-toggle span{
  position:absolute;left:11px;width:18px;height:2px;background:#fff;
  transition:transform .25s, opacity .25s, top .25s;
}
.nav-toggle span:nth-child(1){top:13px}
.nav-toggle span:nth-child(2){top:19px}
.nav-toggle span:nth-child(3){top:25px}
.nav-toggle[aria-expanded="true"] span:nth-child(1){top:19px;transform:rotate(45deg)}
.nav-toggle[aria-expanded="true"] span:nth-child(2){opacity:0}
.nav-toggle[aria-expanded="true"] span:nth-child(3){top:19px;transform:rotate(-45deg)}

.mobile-nav{
  display:none;background:var(--navy-950);border-top:1px solid rgba(255,255,255,.1);
  max-height:0;overflow:hidden;transition:max-height .3s ease;
}
.mobile-nav.is-open{max-height:520px}
.mobile-nav ul{padding:8px 16px 0}
.mobile-nav a{
  display:block;padding:14px 0;border-bottom:1px solid rgba(255,255,255,.06);
  font-size:13px;font-weight:600;text-transform:uppercase;letter-spacing:.04em;color:rgba(255,255,255,.9);
}
.mobile-nav .btn{margin:16px}

/* ---------------------------------------------------------------- 6. Hero */
.hero{
  position:relative;overflow:hidden;padding:104px 0 60px;
  background:radial-gradient(120% 90% at 78% 18%, var(--navy-600) 0%, var(--navy-800) 42%, var(--navy-950) 100%);
}
.hero::after{
  content:"";position:absolute;inset:0;pointer-events:none;opacity:.16;
  background-image:
    linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.14) 1px, transparent 1px);
  background-size:54px 54px;
  -webkit-mask-image:radial-gradient(80% 70% at 50% 30%, #000 0%, transparent 75%);
          mask-image:radial-gradient(80% 70% at 50% 30%, #000 0%, transparent 75%);
}
.hero-grid{position:relative;z-index:1;display:grid;grid-template-columns:1fr 460px;gap:48px;align-items:start}

.hero-copy{padding-top:40px}
.hero-copy h1{font-size:46px;font-weight:700;color:#fff;letter-spacing:-.015em;line-height:1.15}
.hero-copy h1 .accent{color:var(--brand-sky)}
.hero-sub{margin-top:20px;font-family:var(--font-head);font-size:19px;font-weight:500;color:rgba(255,255,255,.85);line-height:1.5}

.hero-features{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin-top:36px}
.hero-features li{display:flex;flex-direction:column;align-items:center;text-align:center;color:#fff}
.hero-features span{margin-top:12px;font-size:11.5px;font-weight:500;line-height:1.4;color:rgba(255,255,255,.85)}

.hero-cta{display:flex;gap:16px;margin-top:36px}

/* pass-guarantee card */
.promise-card{border-radius:var(--radius);overflow:hidden;box-shadow:0 20px 50px rgba(0,0,0,.35)}
.promise-top{background:#fff;padding:28px 32px}
.promise-title{text-align:center;font-family:var(--font-head);font-size:13.5px;font-weight:700;text-transform:uppercase;letter-spacing:.03em}
.promise-body{display:grid;grid-template-columns:150px 1fr;gap:24px;align-items:center;margin-top:24px}
.promise-badge{display:flex;flex-direction:column;align-items:center}
.guarantee-shield{width:104px;height:118px}
.promise-pct{margin-top:4px;font-family:var(--font-head);font-size:30px;font-weight:700;line-height:1}
.promise-label{margin-top:4px;font-family:var(--font-head);font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:.06em;color:var(--brand)}
.promise-list li{display:flex;align-items:flex-start;gap:12px;font-size:13.5px;font-weight:500;line-height:1.35}
.promise-list li+li{margin-top:14px}
.promise-list .ico{color:var(--brand);margin-top:1px}

.promise-foot{background:var(--navy-800);padding:20px 32px 24px}
.promise-foot p{font-size:12.5px;line-height:1.55;color:rgba(255,255,255,.85)}
.promise-foot .contact-pair{margin-top:16px}

/* ------------------------------------------------------------- 7. Trusted */
.trusted{background:#fff;padding:40px 0}
.rule-heading{display:flex;align-items:center;gap:16px}
.rule-heading .rule{flex:1;height:1px;background:var(--line)}
.rule-heading h2{
  font-size:17px;font-weight:700;text-transform:uppercase;letter-spacing:.02em;white-space:nowrap;
}
.logo-grid{display:grid;grid-template-columns:repeat(10,1fr);gap:12px;margin-top:28px}
.logo-grid li{
  display:flex;align-items:center;justify-content:center;height:62px;padding:0 10px;
  border:1px solid var(--line);border-radius:var(--radius);background:#fff;
  box-shadow:var(--shadow-card);transition:box-shadow .2s;
}
.logo-grid li:hover{box-shadow:var(--shadow-hover)}
.logo-grid img{max-height:30px;max-width:100%;width:auto;height:auto;object-fit:contain}
.trusted-note{margin-top:24px;text-align:center;font-size:12.5px;color:var(--muted)}

/* --------------------------------------------------------------- 8. Stats */
.stats-wrap{padding:24px 0 16px}
.stats{
  display:grid;grid-template-columns:repeat(4,1fr);
  background:#fff;border:1px solid var(--line);border-radius:var(--radius);box-shadow:var(--shadow-card);
}
.stat{display:flex;align-items:center;justify-content:center;gap:16px;padding:24px 20px}
.stat+.stat{border-left:1px solid var(--line)}
.stat dt{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap}
.stat dd{margin:0}
.stat dd b{display:block;font-family:var(--font-head);font-size:24px;font-weight:700;line-height:1}
.stat dd span{display:block;margin-top:6px;font-size:12.5px;color:var(--muted)}

/* ----------------------------------------------------------------- 9. FAQ */
.faq-section{padding:24px 0}
.faq-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px;align-items:stretch}
.faq-card{display:flex;flex-direction:column}

.accordion{margin-top:20px;flex:1}
.accordion li{border-bottom:1px solid var(--line)}
.accordion li:last-child{border-bottom:0}
.acc-btn{
  display:flex;align-items:center;gap:12px;width:100%;padding:14px 0;text-align:left;
  transition:color .2s;
}
.acc-btn:hover{color:var(--brand)}
.acc-btn span{flex:1;font-size:13.5px;font-weight:500;line-height:1.35}
.acc-btn i{font-style:normal;font-size:18px;font-weight:300;color:var(--muted);transition:transform .2s}
.acc-btn[aria-expanded="true"] i{transform:rotate(45deg)}
.acc-panel{display:none;padding:0 24px 16px 30px}
.acc-panel p{font-size:13px;line-height:1.65;color:var(--muted)}
.acc-panel.is-open{display:block}
.faq-card .link-arrow{margin-top:20px}

/* consultation card */
.consult-card{
  position:relative;overflow:hidden;border-radius:var(--radius);padding:30px;
  background:radial-gradient(120% 120% at 85% 30%, var(--navy-600) 0%, var(--navy-800) 55%, var(--navy-900) 100%);
  box-shadow:var(--shadow-card);
}
.consult-copy{position:relative;z-index:2;max-width:330px}
.consult-copy h2{font-size:23px;font-weight:700;line-height:1.3;color:#fff}
.consult-copy p{margin-top:12px;font-size:13px;line-height:1.6;color:rgba(255,255,255,.8)}
.consult-copy .btn{margin-top:20px}
.consult-card .contact-pair{position:relative;z-index:2;margin-top:24px}
.consult-art{position:absolute;right:0;top:16px;width:auto;height:230px;object-fit:contain;pointer-events:none;z-index:1}

/* ----------------------------------------------------------- 10. Modules */
.modules-section{padding:40px 0}
.module-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:24px}
.module-card{
  display:flex;flex-direction:column;overflow:hidden;
  background:#fff;border:1px solid var(--line);border-radius:var(--radius);
  box-shadow:var(--shadow-card);transition:box-shadow .2s;
}
.module-card:hover{box-shadow:var(--shadow-hover)}
.module-card h3{
  display:flex;align-items:center;gap:12px;padding:14px 20px;
  background:var(--brand);color:#fff;
  font-size:13px;font-weight:600;text-transform:uppercase;letter-spacing:.05em;
}
.module-list{flex:1;padding:20px}
.module-list li{display:flex;align-items:flex-start;gap:8px;font-size:12.5px;line-height:1.4}
.module-list li+li{margin-top:10px}
.module-list .ico{color:var(--muted);margin-top:3px}
.module-card .link-arrow{padding:0 20px 20px}

/* ------------------------------------------------- 11. Why + guarantee */
.why-section{padding:0 0 24px}
.why-grid{display:grid;grid-template-columns:1.55fr 1fr;gap:20px;align-items:stretch}
.benefits{display:grid;grid-template-columns:repeat(7,1fr);gap:12px;margin-top:28px}
.benefits li{display:flex;flex-direction:column;align-items:center;text-align:center}
.benefits span{margin-top:12px;font-size:11px;font-weight:500;line-height:1.45}

.guarantee-card{
  border-radius:var(--radius);padding:28px;box-shadow:var(--shadow-card);
  background:radial-gradient(120% 120% at 80% 20%, var(--navy-600) 0%, var(--navy-800) 55%, var(--navy-950) 100%);
}
.g-eyebrow{font-family:var(--font-head);font-size:12.5px;font-weight:700;text-transform:uppercase;letter-spacing:.05em;color:#fff}
.g-title{margin-top:8px;font-size:27px;font-weight:700;line-height:1;color:var(--gold)}
.g-title sup{font-size:16px}
.g-copy{margin-top:12px;max-width:46ch;font-size:12px;line-height:1.6;color:rgba(255,255,255,.8)}
.guarantee-card .contact-pair{margin-top:20px}

/* ------------------------------------------------------------- 12. Paths */
.paths-section{padding:40px 0}
.path-grid{display:grid;grid-template-columns:repeat(8,1fr);gap:16px;margin-top:24px}
.path-card{
  display:flex;flex-direction:column;align-items:center;text-align:center;height:100%;
  padding:20px 12px;background:#fff;border:1px solid var(--line);border-radius:var(--radius);
  box-shadow:var(--shadow-card);transition:transform .2s, box-shadow .2s, border-color .2s;
}
.path-card:hover{transform:translateY(-4px);border-color:rgba(22,104,227,.4);box-shadow:var(--shadow-hover)}
.path-card b{margin-top:12px;font-family:var(--font-head);font-size:12px;font-weight:600;line-height:1.35}
.path-card span{
  display:inline-flex;align-items:center;gap:5px;margin-top:8px;
  font-size:10.5px;font-weight:600;color:var(--brand);
}
.path-card:hover span .ico{transform:translateX(2px)}
.path-card span .ico{transition:transform .2s}

/* -------------------------------------------------------- 13. Testimonials */
.testimonials-section{padding:40px 0}
.testimonial-track{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:24px}
.testimonial{
  display:flex;flex-direction:column;height:100%;margin:0;padding:20px;
  background:#fff;border:1px solid var(--line);border-radius:var(--radius);
  box-shadow:var(--shadow-card);transition:box-shadow .2s;
}
.testimonial:hover{box-shadow:var(--shadow-hover)}
.testimonial .quote{color:rgba(22,104,227,.4)}
.testimonial blockquote{flex:1;margin:8px 0 0;font-size:12.5px;line-height:1.65}
.testimonial figcaption{display:flex;align-items:center;gap:12px;margin-top:16px}
.testimonial figcaption img{width:40px;height:40px;border-radius:50%;object-fit:cover;flex:0 0 auto}
.testimonial figcaption b{display:block;font-family:var(--font-head);font-size:12.5px;font-weight:700}
.testimonial figcaption small{display:block;font-size:11.5px;color:var(--muted)}

.dots{display:none;justify-content:center;gap:8px;margin-top:16px}
.dots button{width:8px;height:8px;border-radius:50%;background:var(--line);transition:background-color .2s}
.dots button[aria-selected="true"]{background:var(--brand)}

/* ----------------------------------------------------------------- 14. CTA */
.cta-section{padding:8px 0 40px}
.cta-bar{
  display:flex;align-items:center;justify-content:space-between;gap:20px;
  padding:24px;background:var(--brand);border-radius:var(--radius);box-shadow:var(--shadow-card);color:#fff;
}
.cta-copy{display:flex;align-items:center;gap:16px}
.cta-copy h2{font-size:21px;font-weight:700;text-transform:uppercase;letter-spacing:.01em}
.cta-copy p{margin-top:4px;font-size:12.5px;color:rgba(255,255,255,.85)}

/* -------------------------------------------------------------- 15. Footer */
.site-footer{
  background:radial-gradient(110% 130% at 20% 0%, var(--navy-800) 0%, var(--navy-950) 60%, var(--navy-950) 100%);
  padding-top:40px;color:#fff;
}
.footer-grid{
  display:grid;grid-template-columns:1.4fr 1fr 1.2fr 1fr 1.4fr;gap:36px;padding-bottom:40px;
}
.footer-blurb{margin-top:16px;max-width:34ch;font-size:11.5px;line-height:1.7;color:rgba(255,255,255,.65)}
.site-footer h2{font-size:11.5px;font-weight:700;text-transform:uppercase;letter-spacing:.08em}
.site-footer nav ul{margin-top:14px;display:grid;gap:8px}
.site-footer nav a{font-size:11.5px;color:rgba(255,255,255,.65);transition:color .2s}
.site-footer nav a:hover{color:var(--brand-sky)}
.footer-bar{border-top:1px solid rgba(255,255,255,.1)}
.footer-bar .shell{
  display:flex;align-items:center;justify-content:space-between;gap:12px;
  padding-top:20px;padding-bottom:20px;font-size:11px;color:rgba(255,255,255,.5);
}

/* ---------------------------------------------------- 16. Floating buttons */
.fab{
  position:fixed;bottom:24px;z-index:40;
  display:flex;align-items:center;justify-content:center;
  width:64px;height:64px;border-radius:50%;color:#fff;
  box-shadow:var(--shadow-float);transition:transform .2s, background-color .2s;
}
.fab:hover{transform:scale(1.1)}
.fab:active{transform:scale(.95)}
.fab-wa{left:24px;background:var(--wa)}
.fab-wa:hover{background:var(--wa-light)}
.fab-call{right:24px;background:var(--brand)}
.fab-call:hover{background:var(--brand-light)}
.fab .ico{width:30px;height:30px}

/* ------------------------------------------------------------ 17. Responsive */

/* --- 1440 --- */
@media (max-width:1440px){
  .hero-copy h1{font-size:42px}
}

/* --- 1024 --- */
@media (max-width:1024px){
  .main-nav{display:none}
  .nav-toggle{display:block}
  .mobile-nav{display:block}

  .hero{padding-top:96px}
  .hero-grid{grid-template-columns:1fr;gap:36px}
  .hero-copy{padding-top:16px}
  .hero-copy h1{font-size:38px}
  .promise-card{max-width:520px}

  .logo-grid{grid-template-columns:repeat(5,1fr)}
  .stats{grid-template-columns:repeat(2,1fr)}
  .stat:nth-child(odd){border-left:0}
  .stat:nth-child(-n+2){border-bottom:1px solid var(--line)}

  .faq-grid{grid-template-columns:1fr}
  .module-grid{grid-template-columns:1fr}
  .why-grid{grid-template-columns:1fr}
  .benefits{grid-template-columns:repeat(4,1fr);gap:24px 12px}
  .path-grid{grid-template-columns:repeat(4,1fr)}
  .consult-art{display:none}
  .consult-copy{max-width:none}

  .testimonial-track{
    display:flex;overflow-x:auto;scroll-snap-type:x mandatory;
    scrollbar-width:none;padding-bottom:8px;
  }
  .testimonial-track::-webkit-scrollbar{display:none}
  .testimonial-track li{flex:0 0 100%;scroll-snap-align:center}
  .dots{display:flex}

  .footer-grid{grid-template-columns:repeat(2,1fr);gap:28px}
}

/* --- 768 --- */
@media (max-width:768px){
  .hero-copy h1{font-size:32px}
  .hero-sub{font-size:17px}
  .hero-sub br{display:none}
  .hero-features{grid-template-columns:repeat(2,1fr);gap:26px 12px}
  .hero-cta{flex-direction:column}
  .hero-cta .btn{width:100%}

  .rule-heading .rule{display:none}
  .rule-heading h2{white-space:normal;text-align:center;font-size:15px;margin:0 auto}
  .logo-grid{grid-template-columns:repeat(3,1fr)}

  .promise-body{grid-template-columns:1fr;gap:20px}
  .promise-top,.promise-foot{padding-left:22px;padding-right:22px}
  .contact-pair{flex-direction:column}

  .cta-bar{flex-direction:column;text-align:center}
  .cta-copy{flex-direction:column;text-align:center}
  .cta-bar .btn{width:100%}

  .footer-bar .shell{flex-direction:column;text-align:center}
}

/* --- 480 --- */
@media (max-width:480px){
  .shell{padding:0 14px}
  .hero-copy h1{font-size:27px}
  .brand-tag{display:none}
  .header-actions .btn-primary{display:none}
  .section-title{font-size:16px}
  .logo-grid{grid-template-columns:repeat(2,1fr)}
  .stats{grid-template-columns:1fr}
  .stat+.stat{border-left:0;border-top:1px solid var(--line)}
  .stat:nth-child(-n+2){border-bottom:0}
  .benefits{grid-template-columns:repeat(2,1fr)}
  .path-grid{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr}
  .card,.consult-card,.guarantee-card{padding:20px}
  .fab{width:56px;height:56px;bottom:18px}
  .fab-wa{left:18px}
  .fab-call{right:18px}
}

/* --------------------------------------------------- reduced motion */
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  .reveal,.reveal.is-visible{opacity:1;transform:none;transition:none}
  *,*::before,*::after{animation-duration:.01ms !important;transition-duration:.01ms !important}
}