  :root{
    --navy:#0B2545;
    --blue:#1D63E8;
    --blue-deep:#123F99;
    --blue-pale:#EAF1FE;
    --orange:#F5900D;
    --orange-deep:#D97A00;
    --cream:#F6F9FD;
    --white:#FFFFFF;
    --ink:#22314F;
    --ink-soft:#57667F;
    --line:#DCE6F5;
    --green:#1E9E5A;
    --radius-lg:28px;
    --radius-md:18px;
    --radius-sm:10px;
    --shadow:0 18px 40px -18px rgba(11,37,69,0.25);
    --shadow-sm:0 8px 18px -10px rgba(11,37,69,0.22);
    --maxw:1180px;
  }
  *{box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  @media (prefers-reduced-motion: reduce){ html{scroll-behavior:auto;} *{animation-duration:0.001ms !important; transition-duration:0.001ms !important;} }
  body{
    margin:0;
    font-family:'Source Sans 3', system-ui, sans-serif;
    color:var(--ink);
    background:var(--white);
    -webkit-font-smoothing:antialiased;
  }
  h1,h2,h3,h4{
    font-family:'Lexend', sans-serif;
    color:var(--navy);
    margin:0;
    line-height:1.15;
  }
  p{margin:0; line-height:1.6;}
  a{color:inherit; text-decoration:none;}
  img,svg{display:block; max-width:100%;}
  .wrap{max-width:var(--maxw); margin:0 auto; padding:0 22px;}
  .eyebrow{
    font-family:'IBM Plex Mono', monospace;
    font-size:12.5px;
    letter-spacing:0.09em;
    text-transform:uppercase;
    font-weight:600;
    color:var(--blue-deep);
    display:inline-flex;
    align-items:center;
    gap:8px;
  }
  .eyebrow::before{
    content:"";
    width:7px;height:7px;border-radius:50%;
    background:var(--orange);
    flex:none;
  }
  :focus-visible{ outline:3px solid var(--orange); outline-offset:3px; border-radius:4px; }

  /* ===== Buttons ===== */
  .btn{
    display:inline-flex; align-items:center; justify-content:center; gap:9px;
    font-family:'Source Sans 3', sans-serif;
    font-weight:700; font-size:16px;
    padding:15px 26px;
    border-radius:100px;
    border:2px solid transparent;
    cursor:pointer;
    transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
    white-space:nowrap;
  }
  .btn:hover{ transform:translateY(-2px); }
  .btn-primary{ background:var(--orange); color:var(--navy); box-shadow:var(--shadow-sm); }
  .btn-primary:hover{ background:var(--orange-deep); }
  .btn-outline{ background:var(--white); color:var(--blue-deep); border-color:var(--blue); }
  .btn-outline:hover{ background:var(--blue-pale); }
  .btn-ghost{ background:transparent; color:var(--white); border-color:rgba(255,255,255,0.6); }
  .btn-ghost:hover{ background:rgba(255,255,255,0.12); }
  .btn-block{ width:100%; }
  .btn svg{ flex:none; }

  /* ===== Top utility bar ===== */
  .utility-bar{
    background:var(--navy);
    color:#CFE0FF;
    font-size:13px;
  }
  .utility-bar .wrap{
    display:flex; align-items:center; justify-content:space-between;
    padding-top:9px; padding-bottom:9px; gap:12px; flex-wrap:wrap;
  }
  .utility-bar a{ color:#fff; font-weight:600; }
  .utility-bar .langs{ opacity:0.85; display:none; }
  @media(min-width:760px){ .utility-bar .langs{ display:inline; } }

  /* ===== Header ===== */
  header.site{
    background:var(--white);
    border-bottom:1px solid var(--line);
    /* position:sticky; top:0; z-index:50; */
  }
  header.site .wrap{ display:flex; align-items:center; justify-content:space-between; padding-top:4px; padding-bottom:4px; gap:16px; }
  .logo{ display:flex; align-items:center; gap:10px; }
  .logo-mark{ width:42px; height:42px; flex:none; }
  .logo-text{ font-family:'Lexend'; font-weight:700; font-size:17px; color:var(--navy); line-height:1.15; }
  .logo-text span{ display:block; font-size:11px; letter-spacing:0.06em; color:var(--blue); font-weight:600; }
  header.site nav.actions{ display:flex; align-items:center; gap:10px; }
  .call-pill{
    display:flex; align-items:center; gap:8px;
    border:2px solid var(--blue); color:var(--blue-deep);
    border-radius:100px; padding:10px 16px; font-weight:700; font-size:14.5px;
  }
  @media(max-width:640px){
     .call-pill span.label{ display:none; } .call-pill{ padding:10px 12px; } 
    }

@media (max-width: 640px) {
    header.site .wrap {
        justify-content: center !important;
    }
    .utility-bar .wrap
    {
          justify-content: center;
    }
    .path-toggle
    {
      border-radius: 23px !important;
    }
}

  .header-cta{ display:none; }
  @media(min-width:900px){ .header-cta{ display:inline-flex; } }

  /* ===== Hero ===== */
  .hero{
    background:
      linear-gradient(rgba(255, 255, 255, 0.7), rgba(246, 249, 253, 0.7)),
      url('hero-bg.png') center/cover no-repeat;
    padding:44px 0 40px;
    position:relative;
    overflow:hidden;
  }
  .hero .wrap{ display:grid; gap:38px; }
  @media(min-width:960px){ .hero .wrap{ grid-template-columns:1.05fr 0.95fr; align-items:center; } }

  .path-toggle{
    display:inline-flex; background:var(--white); border:1px solid var(--line);
    border-radius:100px; padding:5px; box-shadow:var(--shadow-sm); margin-top:18px;
    max-width:100%;
  }
  .path-toggle button{
    font-family:'Source Sans 3'; font-weight:700; font-size:13.5px;
    border:none; background:transparent; color:var(--ink-soft);
    padding:11px 16px; border-radius:100px; cursor:pointer;
    transition:background .18s ease, color .18s ease;
    display:flex; align-items:center; gap:7px;
  }
  .path-toggle button.active{ background:var(--blue); color:#fff; box-shadow:0 6px 14px -6px rgba(29,99,232,0.55); }
  @media(max-width:420px){ .path-toggle{ flex-direction:column; width:100%; } .path-toggle button{ justify-content:center; } }

  .hero h1{ font-size:clamp(30px,4.6vw,46px); font-weight:700; margin-top:14px; letter-spacing:-0.01em; }
  .hero h1 .accent{ color:var(--blue); }
  .hero .sub{ margin-top:16px; font-size:17.5px; color:#000; max-width:56ch; }
  .hero .cta-row{ display:flex; flex-wrap:wrap; gap:12px; margin-top:26px; }
  .hero .trust-row{
    display:flex; flex-wrap:wrap; gap:18px; align-items:center;
    margin-top:28px; padding-top:22px; border-top:1px solid var(--line);
  }
  .trust-item{ display:flex; align-items:center; gap:8px; font-size:13.5px; font-weight:600; color:#000; }
  .trust-item svg{ flex:none; color:var(--blue); }

  .hero-art{ position:relative; }
  .hero-card{
    background:var(--white); border-radius:var(--radius-lg);
    box-shadow:var(--shadow); border:1px solid var(--line);
    padding:26px; position:relative; 
  }
  .hero-card .stat{
    display:flex; align-items:baseline; gap:8px; font-family:'IBM Plex Mono';
    color:var(--navy); margin-top:4px;
  }
  .hero-card .stat b{ font-size:44px; font-weight:600; color:var(--orange-deep); }
  .hero-card .stat span{ font-size:13px; color:var(--ink-soft); }
  .hero-card .stat-note{ font-size:12px; color:var(--ink-soft); margin-top:6px; }
  .hero-card .divider{ height:1px; background:var(--line); margin:20px 0; }
  .mini-list{ display:grid; gap:12px; }
  .mini-list li{ list-style:none; display:flex; gap:10px; font-size:14.5px; align-items:flex-start; }
  .mini-list li svg{ flex:none; margin-top:2px; color:var(--green); }
  .badge-float{
    position:absolute; background:var(--navy); color:#fff; border-radius:14px;
    padding:10px 14px; font-size:12.5px; font-weight:700; box-shadow:var(--shadow-sm);
    display:flex; align-items:center; gap:8px;
  }
  .badge-float.b1{ top:-14px; right:18px; }
  .badge-float.b2{ bottom:-16px; left:14px; background:var(--orange); color:var(--navy); }
  @media(max-width:520px){ .mini-list{padding: 0px;} }

  /* ===== Clarifier band ===== */
  .clarifier{
    background:var(--navy); color:#DCE7FB; padding:18px 0;
  }
  .clarifier .wrap{ display:flex; gap:14px; align-items:flex-start; }
  .clarifier svg{ flex:none; color:var(--orange); margin-top:3px; }
  .clarifier p{ font-size:14.5px; }
  .clarifier strong{ color:#fff; }

  /* ===== Section shell ===== */
  section{ padding:70px 0; }
  .section-head{ max-width:680px; margin:0 auto 42px; text-align:center; }
  .section-head h2{ font-size:clamp(26px,3.4vw,36px); margin-top:12px; }
  .section-head p{ margin-top:14px; color:var(--ink-soft); font-size:16.5px; }
  .bg-cream{ background:var(--cream); }
  .bg-navy{ background:var(--navy); color:#fff; }
  .bg-navy h2, .bg-navy h3{ color:#fff; }

  /* ===== Two-path cards ===== */
  .path-cards{ display:grid; gap:24px; }
  @media(min-width:820px){ .path-cards{ grid-template-columns:1fr 1fr; } }
  .path-card{
    background:var(--white); border:1px solid var(--line); border-radius:var(--radius-lg);
    padding:32px; box-shadow:var(--shadow-sm); display:flex; flex-direction:column;
    transition:transform .18s ease, box-shadow .18s ease;
    position:relative; overflow:hidden;
  }
  .path-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow); }
  .path-card .icon-wrap{
    width:58px; height:58px; border-radius:16px; display:flex; align-items:center; justify-content:center;
    background:var(--blue-pale); color:var(--blue-deep); margin-bottom:18px;
  }
  .path-card.alt .icon-wrap{ background:#FFF0DA; color:var(--orange-deep); }

  /* Full-width banner image replacing the icon */
  .path-card .path-img{
    position:absolute; top:0; left:0;
    width:100%;
    height:250px;
    object-fit:cover;
    object-position:center;
    border-top-left-radius:var(--radius-lg);
    border-top-right-radius:var(--radius-lg);
    display:block;
    background:var(--blue-pale);     /* fallback color while image loads or if missing */
  }
  .path-card.alt .path-img{ background:#FFF0DA; }

  /* Reserve space at the top of each card so the absolute image doesn't overlap content */
  .path-card .tag,
  .path-card h3,
  .path-card p.desc,
  .path-card ul,
  .path-card .btn{ position:relative; z-index:1; }
  .path-card .tag{ margin-top:250px; }   /* image height (200px) + breathing room (18px) */
  .path-card h3{ font-size:22px; }
  .path-card .tag{
    font-family:'IBM Plex Mono'; font-size:11.5px; letter-spacing:0.06em; text-transform:uppercase;
    color:var(--blue-deep); font-weight:600; margin-bottom:8px; display:block;
  }
  .path-card.alt .tag{ color:var(--orange-deep); }
  .path-card p.desc{ margin-top:10px; color:var(--ink-soft); font-size:15.5px; }
  .path-card ul{ margin:20px 0 0; padding:0; display:grid; gap:11px; }
  .path-card li{ list-style:none; display:flex; gap:9px; font-size:14.5px; }
  .path-card li svg{ flex:none; margin-top:3px; color:var(--blue); }
  .path-card.alt li svg{ color:var(--orange-deep); }
  .path-card .btn{ margin-top:26px; align-self:flex-start; }

  /* ===== Stipend band ===== */
  .stipend{
    background:linear-gradient(120deg, var(--blue-deep), var(--blue) 65%, #2E7CF6);
    border-radius:var(--radius-lg); color:#fff; padding:44px 34px;
    display:grid; gap:30px; box-shadow:var(--shadow);
  }
  @media(min-width:860px){ .stipend{ grid-template-columns:1.1fr 1fr; align-items:center; padding:52px 54px; } }
  .stipend .amount{ font-family:'IBM Plex Mono'; font-weight:600; font-size:clamp(46px,7vw,72px); line-height:1; color:#fff; }
  .stipend .amount sup{ font-size:0.4em; vertical-align:super; color:#BFD6FF; }
  .stipend .amount-label{ font-size:15px; color:#CFE0FF; margin-top:8px; }
  .stipend h2{ color:#fff; font-size:clamp(22px,3vw,28px); }
  .stipend .fine{ font-size:12px; color:#AFCBFA; margin-top:14px; }
  .stipend-list{ display:grid; gap:14px; }
  .stipend-list li{ list-style:none; display:flex; gap:10px; font-size:15px; }
  .stipend-list li svg{ flex:none; color:var(--orange); margin-top:2px; }

  @media(max-width:760px){ .stipend-list { padding: 0; } }

  /* ===== Process steps ===== */
  .steps{ display:grid; gap:20px; counter-reset:step; }
  @media(min-width:760px){ .steps{ grid-template-columns:repeat(4,1fr); } }
  .step{ position:relative; padding-top:14px; }
  .step .num{
    font-family:'IBM Plex Mono'; font-weight:600; font-size:14px; color:var(--white);
    background:var(--blue); width:34px; height:34px; border-radius:10px;
    display:flex; align-items:center; justify-content:center; margin-bottom:14px;
  }
  .step h4{ font-size:16.5px; }
  .step p{ font-size:14.5px; color:var(--ink-soft); margin-top:8px; }
  .step:not(:last-child)::after{
    content:""; position:absolute; top:31px; left:calc(100% - 8px); width:calc(100% - 18px);
    border-top:2px dashed var(--line); display:none;
  }
  @media(min-width:760px){ .step:not(:last-child)::after{ display:block; } }

  /* ===== Eligibility ===== */
  .elig-grid{ display:grid; gap:22px; }
  @media(min-width:820px){ .elig-grid{ grid-template-columns:1fr 1fr; } }
  .elig-card{ background:var(--white); border:1px solid var(--line); border-radius:var(--radius-md); padding:26px; }
  .elig-card h3{ font-size:18.5px; display:flex; align-items:center; gap:10px; }
  .elig-card h3 svg{ color:var(--blue); }
  .elig-card ul{ margin:16px 0 0; padding:0; display:grid; gap:11px; }
  .elig-card li{ list-style:none; display:flex; gap:9px; font-size:14.5px; color:var(--ink-soft); }
  .elig-card li svg{ flex:none; color:var(--green); margin-top:2px; }

  /* ===== Testimonials (Google-style slider) ===== */
  :root{ --review-bg:#F2F4F7; }
  .stars{ color:var(--orange); letter-spacing:2px; font-size:14px; }

  .reviews{ position:relative; padding:0 8px; }
  .reviews__viewport{ overflow:hidden; }
  .reviews__track{
    display:flex; gap:18px;
    transition:transform .5s cubic-bezier(.4,0,.2,1);
    will-change:transform;
  }
  .review-card{
    flex:0 0 calc(100% - 0px);                       /* mobile: 1 per view */
    background:var(--review-bg); border-radius:12px;
    padding:22px; display:flex; flex-direction:column; gap:12px;
    box-sizing:border-box;
  }
  @media(min-width:700px){ .review-card{ flex:0 0 calc((100% - 18px) / 2); } }    /* tablet: 2 */
  @media(min-width:1040px){ .review-card{ flex:0 0 calc((100% - 36px) / 3); } }   /* desktop: 3 */

  .review-card__head{ display:flex; align-items:center; gap:12px; }
  .review-card__id{ min-width:0; }
  .review-card__name{
    display:flex; align-items:center; gap:6px;
    font-family:'Lexend'; font-weight:700; font-size:14.5px; color:var(--navy);
    line-height:1.2;
  }
  .review-card__name .g-logo{ flex:none; }
  .review-card__meta{
    display:flex; align-items:center; gap:6px;
    font-size:12px; color:var(--ink-soft); margin-top:3px;
  }
  .local-guide{
    display:inline-block; background:#E8F0FE; color:#1967D2;
    font-size:11px; font-weight:600; padding:2px 8px; border-radius:10px;
  }
  .review-card__quote{
    font-size:14px; color:var(--ink-soft); line-height:1.55;
    display:-webkit-box; -webkit-line-clamp:5; line-clamp:5; -webkit-box-orient:vertical;
    overflow:hidden;
  }
  .review-card.expanded .review-card__quote{
    display:block; overflow:visible;
  }
  .read-more{
    align-self:flex-start; background:none; border:0; padding:0;
    font:inherit; font-size:13px; font-weight:700; color:var(--blue-deep);
    cursor:pointer;
  }
  .read-more:hover{ color:var(--orange-deep); }

  .reviews__arrow{
    position:absolute; top:38%; z-index:3;
    width:42px; height:42px; border-radius:50%;
    background:var(--white); color:var(--blue-deep);
    border:1px solid var(--line); box-shadow:var(--shadow-sm);
    display:flex; align-items:center; justify-content:center;
    cursor:pointer; transition:background .15s ease, opacity .15s ease, transform .15s ease;
  }
  .reviews__arrow:hover{ background:var(--blue-pale); transform:translateY(-50%) scale(1.05); }
  .reviews__arrow:disabled{ opacity:.35; cursor:not-allowed; }
  .reviews__arrow--prev{ left:-6px; }
  .reviews__arrow--next{ right:-6px; }
  @media(min-width:760px){
    .reviews__arrow{ top:42%; }
    .reviews__arrow--prev{ left:-22px; }
    .reviews__arrow--next{ right:-22px; }
  }

  .reviews__dots{
    display:flex; justify-content:center; gap:8px; margin-top:24px;
  }
  .reviews__dots button{
    width:9px; height:9px; padding:0; border:0; border-radius:50%;
    background:var(--line); cursor:pointer; transition:background .15s ease, transform .15s ease;
  }
  .reviews__dots button:hover{ background:var(--ink-soft); }
  .reviews__dots button.active{ background:var(--blue); transform:scale(1.3); }

  .avatar{ width:40px; height:40px; border-radius:50%; background:var(--blue-pale); color:var(--blue-deep);
    display:flex; align-items:center; justify-content:center; font-family:'Lexend'; font-weight:700; font-size:14px; flex:none; }

  .rating-summary{ display:flex; align-items:center; gap:12px; justify-content:center; margin-top:6px; }
  .rating-summary b{ font-family:'IBM Plex Mono'; font-size:20px; color:var(--navy); }

  /* ===== Service area ===== */
  .area-wrap{ display: flex; justify-content: center;}
  @media(min-width:900px){ .area-wrap{ grid-template-columns:1fr 1fr; } }
  .chip-group{ display:flex; flex-wrap:wrap; gap:10px; margin-top:16px;justify-content: center; }
  .chip{
    background:var(--white); border:1px solid var(--line); border-radius:100px;
    padding:8px 15px; font-size:13.5px; font-weight:600; color:var(--ink);
  }
  .chip.lang{ background:var(--blue-pale); border-color:transparent; color:var(--blue-deep); }

  /* ===== Final CTA / form ===== */
  .final-cta{ display:grid; gap:34px; }
  @media(min-width:960px){ .final-cta{ grid-template-columns:1fr 1fr; align-items:start; } }
  .final-copy h2{ color:#fff; font-size:clamp(26px,3.4vw,36px); }
  .final-copy p{ color:#CFE0FF; margin-top:14px; font-size:16px; max-width:48ch; }
  .call-blocks{ display:flex; gap:16px; margin-top:26px; flex-wrap:wrap; }
  .call-block{ background:rgba(255,255,255,0.07); border:1px solid rgba(255,255,255,0.18); border-radius:var(--radius-sm); padding:16px 18px; }
  .call-block .label{ font-size:12px; color:#AFCBFA; text-transform:uppercase; letter-spacing:0.05em; font-family:'IBM Plex Mono'; }
  .call-block .num{ font-family:'Lexend'; font-weight:700; font-size:19px; margin-top:6px; color:#fff; }

  .final-copy{margin-top: 100px;}

  @media(max-width:767px){ .call-blocks, .foot-trust{ display:none !important; }.final-copy{margin-top:0px;} .img-responsive{display:none !important;} }

  .foot-trust{
    display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
    margin-top: 32px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.12);
  }
  .foot-trust-item{
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px; padding: 10px 16px;
    color: #fff; font-size: 13.5px; font-weight: 600;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  }
  .foot-trust-item:hover{
    background: rgba(255,255,255,0.12);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }
  .foot-trust-item svg{ flex: none; stroke: #8FB2F5; transition: stroke 0.2s ease; }
  .foot-trust-item:hover svg{ stroke: #fff; }

  .lead-form{
    background:var(--white); border-radius:var(--radius-lg); padding:30px; box-shadow:var(--shadow);
  }
  .lead-form h3{ font-size:19px; }
  .lead-form .sub{ color:var(--ink-soft); font-size:14px; margin-top:6px; }
  .field{ margin-top:10px; }
  .field label{ display:block; font-size:13px; font-weight:700; color:var(--navy); margin-bottom:6px; }
  .field input, .field select, .field textarea{
    width:100%; border:1.5px solid var(--line); border-radius:10px; padding:8px 13px;
    font-family:'Source Sans 3'; font-size:15px; color:var(--ink); background:var(--white);
  }
  .field input:focus, .field select:focus, .field textarea:focus{ border-color:var(--blue); outline:none; }
  .field textarea{ resize:vertical; min-height:60px; line-height:1.5; }
  .radio-row{ display:flex; gap:10px; margin-top:6px; flex-wrap:wrap; }
  .radio-opt{
    flex:1; min-width:150px; border:1.5px solid var(--line); border-radius:12px; padding:12px 13px;
    cursor:pointer; font-size:13.5px; font-weight:600; display:flex; align-items:center; gap:8px;
    transition:border-color .15s ease, background .15s ease;
  }
  .radio-opt input{ accent-color:var(--blue); width: auto; }
  .radio-opt.checked{ border-color:var(--blue); background:var(--blue-pale); }
  .lead-form .btn{ margin-top:20px; }
  .form-note{ font-size:11.5px; color:var(--ink-soft); margin-top:12px; text-align:center; }
  .success-msg{
    display:none; background:#EAF9F0; border:1.5px solid #BEE9CC; color:#166534;
    border-radius:12px; padding:14px 16px; font-size:14px; font-weight:600; margin-top:16px;
    align-items:center; gap:10px;
  }
  .success-msg svg{ flex:none; }

  /* Inline field error */
  .field-error{
    color:#b91c1c; background:rgba(185,28,28,0.04); border:1px solid rgba(185,28,28,0.12);
    padding:8px 10px; border-radius:8px; font-size:13px; margin-top:8px;
  }

  /* ===== Footer ===== */
  footer{ background:#08172E; color:#9FB6DD; padding:52px 0 26px; }
  .foot-grid{ display:grid; gap:34px; }
  @media(min-width:760px){ .foot-grid{ grid-template-columns:1fr 1fr 1fr 1fr; } }
  footer h4{ color:#fff; font-size:14px; text-transform:uppercase; letter-spacing:0.05em; font-family:'IBM Plex Mono'; margin-bottom:14px; }
  footer .foot-logo{ display:flex; align-items:center; gap:10px; margin-bottom:14px; }
  footer .foot-logo .logo-text{ color:#fff; }
  footer .foot-logo .logo-text span{ color:#8FB2F5; }
  footer p{ font-size:13.5px; line-height:1.7; }
  footer ul{ list-style:none; margin:0; padding:0; display:grid; gap:10px; }
  footer ul a{ font-size:13.5px; color:#9FB6DD; }
  footer ul a:hover{ color:#fff; }
  .carf-badge{
    display:inline-flex; align-items:center; gap:10px; background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.15); border-radius:12px; padding:10px 14px; margin-top:6px;
  }
  .foot-bottom{
    border-top:1px solid rgba(255,255,255,0.12); margin-top:40px; padding-top:20px;
    display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; font-size:12.5px;
  }

  /* ===== Sticky mobile CTA ===== */
  .sticky-mobile{
    position:fixed; bottom:0; left:0; right:0; z-index:60;
    background:var(--white); border-top:1px solid var(--line);
    box-shadow:0 -10px 24px -14px rgba(11,37,69,0.3);
    padding:10px 14px; display:flex; gap:10px;
  }
  .sticky-mobile .btn{ flex:1; padding:13px 10px; font-size:14.5px; }
  @media(min-width:900px){ .sticky-mobile{ display:none; } }
  body{ padding-bottom:76px; }
  @media(min-width:900px){ body{ padding-bottom:0; } }

  [data-reveal]{ opacity:0; transform:translateY(16px); transition:opacity .6s ease, transform .6s ease; }
  [data-reveal].in{ opacity:1; transform:translateY(0); }

  [data-only]{ display:none; }
  [data-only].show{ display:block; }
  span[data-only].show{ display:inline; }
