  :root{
    --navy-950:#080b12;
    --navy-900:#0d121c;
    --navy-800:#141c2b;
    --navy-700:#1c2740;
    --navy-600:#26365a;
    --blue-600:#1e5f96;
    --blue-500:#2f7fc4;
    --blue-400:#4f9fe0;
    --blue-300:#8fc4ef;
    --blue-100:#e3f1fc;
    --chrome-100:#eef1f5;
    --chrome-300:#c4cdd8;
    --chrome-500:#8b96a6;
    --ink:#0f1421;
    --ink-soft:#3c4658;
    --paper:#f4f6f9;
    --white:#ffffff;
    --line:rgba(15,20,33,0.10);
    --line-dark:rgba(255,255,255,0.12);
    --danger:#c0392b;
    --radius-s:3px;
    --radius-m:6px;
    --shadow-1:0 1px 2px rgba(8,11,18,0.08);
    --shadow-2:0 8px 24px rgba(8,11,18,0.16);
    --maxw:1180px;
  }
  *{box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    margin:0;
    font-family:'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color:var(--ink);
    background:var(--paper);
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }
  h1,h2,h3,h4{
    font-family:'Oswald', 'Arial Narrow', sans-serif;
    font-weight:600;
    line-height:1.1;
    margin:0;
    letter-spacing:0.2px;
  }
  p{margin:0;}
  a{color:inherit;text-decoration:none;}
  img{max-width:100%;display:block;}
  button{font-family:inherit;cursor:pointer;}
  ul{margin:0;padding:0;list-style:none;}
  .wrap{max-width:var(--maxw);margin:0 auto;padding:0 24px;}
  .visually-hidden{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;}

  /* focus visibility */
  a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible{
    outline:3px solid var(--blue-400);
    outline-offset:2px;
  }

  @media (prefers-reduced-motion: reduce){
    *{animation-duration:0.001ms !important; transition-duration:0.001ms !important; scroll-behavior:auto !important;}
  }

  /* ---------- BUTTONS ---------- */
  .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:14px 26px;
    font-size:15px;
    font-weight:600;
    border-radius:var(--radius-s);
    border:2px solid transparent;
    transition:transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
    white-space:nowrap;
  }
  .btn-primary{
    background:var(--blue-500);
    color:var(--white);
    box-shadow:var(--shadow-1);
  }
  .btn-primary:hover{background:var(--blue-400); box-shadow:var(--shadow-2); transform:translateY(-1px);}
  .btn-outline{
    background:transparent;
    color:var(--white);
    border-color:rgba(255,255,255,0.55);
  }
  .btn-outline:hover{border-color:var(--white); background:rgba(255,255,255,0.08);}
  .btn-dark{
    background:var(--navy-900);
    color:var(--white);
  }
  .btn-dark:hover{background:var(--navy-700);}
  .btn-ghost{
    background:transparent;
    color:var(--navy-900);
    border-color:var(--line);
  }
  .btn-ghost:hover{border-color:var(--blue-500); color:var(--blue-600);}
  .btn-block{width:100%;}
  .btn-sm{padding:10px 18px; font-size:14px;}

  /* ---------- NAV ---------- */
  #topbar{
    position:sticky; top:0; z-index:100;
    background:rgba(8,11,18,0.92);
    backdrop-filter:blur(8px);
    border-bottom:1px solid var(--line-dark);
  }
  #topbar .bar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:72px;
    gap:20px;
  }
  .brand{
    display:flex;
    align-items:center;
    gap:12px;
    color:var(--white);
    flex-shrink:0;
  }
  .brand img{
    height:48px;width:48px;
    border-radius:var(--radius-s);
    background:var(--white);
    object-fit:contain;
    padding:2px;
    box-shadow:0 0 0 2px var(--blue-500);
  }
  .brand-text{
    font-family:'Oswald',sans-serif;
    font-size:16px;
    line-height:1.15;
    font-weight:600;
    letter-spacing:0.3px;
  }
  .brand-text small{
    display:block;
    font-family:'Work Sans',sans-serif;
    font-weight:400;
    font-size:10.5px;
    color:var(--blue-300);
    letter-spacing:0.6px;
    margin-top:2px;
  }
  #primary-nav{
    display:flex;
    align-items:center;
    gap:28px;
  }
  #primary-nav a{
    color:var(--chrome-100);
    font-size:14.5px;
    font-weight:500;
    padding:6px 2px;
    border-bottom:2px solid transparent;
    transition:color .15s ease, border-color .15s ease;
  }
  #primary-nav a:hover, #primary-nav a.active{
    color:var(--white);
    border-bottom-color:var(--blue-400);
  }
  .nav-right{display:flex; align-items:center; gap:14px;}
  .lang-switch{
    display:flex;
    border:1px solid var(--line-dark);
    border-radius:20px;
    overflow:hidden;
  }
  .lang-switch button{
    background:transparent;
    color:var(--chrome-300);
    border:none;
    padding:7px 14px;
    font-size:13px;
    font-weight:600;
  }
  .lang-switch button.active{
    background:var(--blue-500);
    color:var(--white);
  }
  .nav-toggle{
    display:none;
    background:transparent;
    border:none;
    color:var(--white);
    padding:6px;
  }
  .nav-toggle svg{width:26px;height:26px;}

  @media (max-width: 920px){
    #primary-nav{
      position:fixed;
      top:72px; left:0; right:0; bottom:0;
      background:var(--navy-950);
      flex-direction:column;
      align-items:flex-start;
      padding:28px 24px;
      gap:6px;
      transform:translateX(-100%);
      transition:transform .25s ease;
      overflow-y:auto;
    }
    #primary-nav.open{transform:translateX(0);}
    #primary-nav a{
      width:100%;
      padding:14px 4px;
      border-bottom:1px solid var(--line-dark);
      font-size:17px;
    }
    .nav-toggle{display:inline-flex;}
    .nav-cta-desktop{display:none;}
  }

  /* ---------- HERO ---------- */
  .hero{
    position:relative;
    background:linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 55%, var(--navy-800) 100%);
    color:var(--white);
    overflow:hidden;
    padding:88px 0 96px;
  }
  .hero-wave{
    position:absolute;
    inset:0;
    opacity:0.5;
    pointer-events:none;
  }
  .hero-inner{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1.15fr 0.85fr;
    gap:56px;
    align-items:center;
  }
  .hero-eyebrow{
    display:inline-block;
    color:var(--blue-300);
    font-size:14px;
    font-weight:600;
    margin-bottom:18px;
    letter-spacing:0.3px;
  }
  .hero h1{
    font-size:clamp(2.4rem, 5vw, 3.6rem);
    color:var(--white);
    margin-bottom:20px;
    max-width:15ch;
  }
  .hero h1 span{color:var(--blue-400);}
  .hero p.lead{
    font-size:18px;
    color:var(--chrome-100);
    max-width:46ch;
    margin-bottom:34px;
    line-height:1.55;
  }
  .hero-actions{display:flex; flex-wrap:wrap; gap:14px; margin-bottom:34px;}
  .hero-badges{display:flex; flex-wrap:wrap; gap:22px;}
  .hero-badge{display:flex; align-items:center; gap:10px; color:var(--chrome-100); font-size:14px;}
  .hero-badge svg{width:20px;height:20px; color:var(--blue-400); flex-shrink:0;}
  .hero-art{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .hero-art .plate{
    width:100%;
    max-width:380px;
    aspect-ratio:1/1;
    border-radius:var(--radius-m);
    background:radial-gradient(circle at 32% 28%, rgba(79,159,224,0.35), rgba(13,18,28,0) 65%), var(--navy-800);
    border:1px solid var(--line-dark);
    display:flex;
    align-items:center;
    justify-content:center;
    padding:26px;
  }
  .hero-art img{width:100%; height:100%; object-fit:contain; background:var(--white); border-radius:var(--radius-s);}

  @media (max-width: 880px){
    .hero-inner{grid-template-columns:1fr; text-align:left;}
    .hero-art{order:-1; max-width:220px; margin:0 auto 8px;}
    .hero-art .plate{max-width:220px;}
  }

  /* ---------- SECTIONS ---------- */
  section.block{padding:76px 0;}
  section.block.tight{padding:56px 0;}
  .block-dark{background:var(--navy-950); color:var(--white);}
  .block-navy{background:var(--navy-900); color:var(--white);}
  .block-white{background:var(--white);}
  .section-head{max-width:640px; margin-bottom:44px;}
  .section-head .kicker{
    color:var(--blue-500);
    font-weight:600;
    font-size:13.5px;
    margin-bottom:10px;
    display:block;
  }
  .block-dark .section-head .kicker, .block-navy .section-head .kicker{color:var(--blue-300);}
  .section-head h2{font-size:clamp(1.7rem, 3.4vw, 2.4rem);}
  .section-head p{margin-top:14px; color:var(--ink-soft); font-size:16.5px; line-height:1.6;}
  .block-dark .section-head p, .block-navy .section-head p{color:var(--chrome-300);}

  /* ---------- SERVICE OVERVIEW GRID (home) ---------- */
  .svc-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:20px;}
  .svc-card{
    background:var(--white);
    border:1px solid var(--line);
    border-radius:var(--radius-m);
    padding:26px 24px;
    display:flex;
    flex-direction:column;
    gap:14px;
    transition:box-shadow .18s ease, transform .18s ease;
  }
  .svc-card:hover{box-shadow:var(--shadow-2); transform:translateY(-2px);}
  .svc-num{
    font-family:'Oswald',sans-serif;
    color:var(--blue-300);
    -webkit-text-stroke:1px var(--blue-500);
    color:transparent;
    font-size:34px;
    font-weight:600;
  }
  .svc-card h3{font-size:19px; color:var(--ink);}
  .svc-card .from{font-size:13.5px; color:var(--ink-soft);}
  .svc-card .from b{color:var(--blue-600); font-size:16px;}
  .svc-card a.card-link{font-size:14px; font-weight:600; color:var(--blue-600); margin-top:auto;}

  @media (max-width: 920px){ .svc-grid{grid-template-columns:repeat(2,1fr);} }
  @media (max-width: 620px){ .svc-grid{grid-template-columns:1fr;} }

  /* ---------- LOCATION OPTIONS ---------- */
  .loc-grid{display:grid; grid-template-columns:1fr 1fr; gap:22px;}
  .loc-card{
    background:var(--navy-800);
    border:1px solid var(--line-dark);
    border-radius:var(--radius-m);
    padding:30px;
    color:var(--white);
  }
  .loc-card svg{width:34px;height:34px;color:var(--blue-400); margin-bottom:16px;}
  .loc-card h3{font-size:19px; margin-bottom:10px;}
  .loc-card p{color:var(--chrome-300); font-size:15px; line-height:1.55;}
  @media (max-width:720px){.loc-grid{grid-template-columns:1fr;}}

  .disclaimer-box{
    border:1px dashed var(--line-dark);
    border-radius:var(--radius-m);
    padding:20px 22px;
    margin-top:26px;
    color:var(--chrome-300);
    font-size:14px;
    line-height:1.6;
  }
  .block-white .disclaimer-box{border-color:var(--line); color:var(--ink-soft); background:var(--paper);}

  /* ---------- BENEFITS ---------- */
  .benefit-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:22px;}
  .benefit{padding:4px;}
  .benefit svg{width:28px;height:28px;color:var(--blue-500); margin-bottom:14px;}
  .benefit h4{font-size:16.5px; margin-bottom:8px;}
  .benefit p{font-size:14.5px; color:var(--ink-soft); line-height:1.55;}
  @media (max-width:920px){.benefit-grid{grid-template-columns:repeat(2,1fr);}}
  @media (max-width:560px){.benefit-grid{grid-template-columns:1fr;}}

  /* ---------- FEATURED WORK / OUR WORK CAROUSELS ---------- */
  /* Side-by-side, uncropped Before/After panels navigated with arrows/dots/swipe.
     object-fit:contain everywhere so the complete photo is always visible. */
  .owork-category{margin-bottom:52px;}
  .owork-category-title{font-size:21px; margin-bottom:20px; padding-bottom:12px; border-bottom:1px solid var(--line);}
  .owork-carousel{position:relative; max-width:100%;}
  .owork-viewport{overflow:hidden; border-radius:var(--radius-m); border:1px solid var(--line); background:var(--paper);}
  .owork-track{display:flex; transition:transform .35s ease;}
  .owork-slide{flex:0 0 100%; box-sizing:border-box; padding:22px;}
  .owork-slide-title{font-size:14.5px; font-weight:600; color:var(--ink); margin-bottom:14px;}
  .owork-compare{display:grid; grid-template-columns:1fr 1fr; gap:14px;}
  .owork-panel{
    position:relative;
    background:var(--white);
    border:1px solid var(--line);
    border-radius:var(--radius-s);
    display:flex; align-items:center; justify-content:center;
    min-height:260px;
    overflow:hidden;
  }
  .owork-panel img{
    max-width:100%;
    max-height:440px;
    width:auto; height:auto;
    object-fit:contain;
    display:block;
  }
  .owork-tag{
    position:absolute; top:10px; left:10px; z-index:2;
    background:rgba(15,20,33,0.78);
    color:var(--white);
    font-size:11px; font-weight:700; letter-spacing:0.6px;
    padding:4px 11px; border-radius:14px;
  }
  .owork-arrow{
    position:absolute; top:50%; transform:translateY(-50%);
    background:var(--white); border:1px solid var(--line);
    width:38px; height:38px; border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    box-shadow:var(--shadow-1); z-index:3; color:var(--ink);
  }
  .owork-arrow:hover{border-color:var(--blue-500); color:var(--blue-600);}
  .owork-arrow.prev{left:10px;}
  .owork-arrow.next{right:10px;}
  .owork-dots{display:flex; justify-content:center; gap:8px; margin-top:16px;}
  .owork-dot{width:8px; height:8px; border-radius:50%; background:var(--line); border:none; padding:0;}
  .owork-dot.active{background:var(--blue-500); width:20px; border-radius:4px;}
  @media (max-width:700px){
    .owork-compare{grid-template-columns:1fr;}
    .owork-panel{min-height:220px;}
    .owork-panel img{max-height:340px;}
    .owork-arrow{width:34px; height:34px;}
  }

  .featured-cta{text-align:center; margin-top:38px;}

  .main-photo-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:8px;}
  .main-photo-card{border:1px solid var(--line); border-radius:var(--radius-m); overflow:hidden; background:var(--paper);}
  .main-photo-card .main-photo-frame{display:flex; align-items:center; justify-content:center; min-height:220px; background:var(--paper);}
  .main-photo-card img{max-width:100%; max-height:320px; width:auto; height:auto; object-fit:contain; display:block;}
  .main-photo-card p{padding:12px 14px; font-size:13.5px; color:var(--ink-soft);}
  @media (max-width:820px){.main-photo-grid{grid-template-columns:repeat(2,1fr);}}
  @media (max-width:560px){.main-photo-grid{grid-template-columns:1fr;}}

  /* ---------- GALLERY PAGE ---------- */

  .gallery-filters{display:flex; flex-wrap:wrap; gap:10px; margin-bottom:34px;}
  .gfilter{
    padding:9px 16px;
    border-radius:20px;
    border:1px solid var(--line);
    background:var(--white);
    font-size:13.5px;
    font-weight:600;
    color:var(--ink-soft);
  }
  .gfilter.active{background:var(--navy-900); color:var(--white); border-color:var(--navy-900);}
  .gallery-empty{
    text-align:center;
    border:1px dashed var(--line);
    border-radius:var(--radius-m);
    padding:64px 24px;
    color:var(--ink-soft);
    background:var(--white);
  }
  .gallery-empty svg{width:44px;height:44px; color:var(--chrome-500); margin-bottom:16px;}
  .gallery-empty h3{font-size:19px; color:var(--ink); margin-bottom:10px;}
  .gallery-empty p{max-width:46ch; margin:0 auto; line-height:1.6; font-size:15px;}

  /* ---------- SERVICE DETAIL CARDS (services page) ---------- */
  .svc-detail{
    background:var(--white);
    border:1px solid var(--line);
    border-radius:var(--radius-m);
    padding:32px;
    margin-bottom:22px;
  }
  .svc-detail-head{display:flex; justify-content:space-between; align-items:flex-start; gap:18px; flex-wrap:wrap; margin-bottom:20px;}
  .svc-detail-head h3{font-size:23px;}
  .svc-order{font-size:13px; color:var(--blue-600); font-weight:600; letter-spacing:0.4px; margin-bottom:6px; display:block;}
  .svc-note{display:inline-block; margin-top:8px; font-size:12.5px; font-weight:600; color:var(--blue-600); background:var(--blue-100); padding:4px 10px; border-radius:14px;}
  .svc-blurb{font-size:14.5px; color:var(--ink-soft); margin-top:6px; max-width:52ch; line-height:1.5;}
  .svc-price-tag{text-align:right;}
  .svc-price-tag .starting{font-size:12px; text-transform:none; color:var(--ink-soft); display:block;}
  .svc-price-tag .amount{font-size:22px; font-weight:700; color:var(--blue-600); font-family:'Oswald',sans-serif;}
  .price-table{width:100%; border-collapse:collapse; margin:18px 0;}
  .price-table th, .price-table td{
    text-align:left;
    padding:10px 14px;
    font-size:14.5px;
    border-bottom:1px solid var(--line);
  }
  .price-table th{color:var(--ink-soft); font-weight:600; font-size:13px;}
  .price-table td.amt{font-weight:700; color:var(--blue-600); text-align:right; font-family:'Oswald',sans-serif;}
  .price-table tr:last-child td{border-bottom:none;}
  .price-flat-list{display:flex; gap:26px; flex-wrap:wrap; margin:16px 0;}
  .price-flat-list div{
    background:var(--paper);
    border-radius:var(--radius-s);
    padding:14px 20px;
    font-family:'Oswald',sans-serif;
    font-size:18px;
    color:var(--blue-600);
    font-weight:600;
  }
  .svc-groups{display:grid; grid-template-columns:1fr 1fr; gap:26px; margin-top:8px;}
  .svc-group h4{font-size:14px; text-transform:none; color:var(--ink); margin-bottom:10px; border-bottom:2px solid var(--blue-500); display:inline-block; padding-bottom:4px;}
  .svc-group ul li{
    font-size:14.5px; color:var(--ink-soft); padding:6px 0 6px 20px; position:relative; line-height:1.5;
  }
  .svc-group ul li::before{content:'\2022'; color:var(--blue-500); position:absolute; left:2px; font-weight:700;}
  @media (max-width:700px){.svc-groups{grid-template-columns:1fr;}}
  .svc-detail-foot{display:flex; justify-content:flex-end; margin-top:22px;}

  .headlight-steps{display:grid; grid-template-columns:repeat(4,1fr); gap:18px; margin:20px 0 6px;}
  .hstep{background:var(--paper); border-radius:var(--radius-m); padding:20px 18px; border:1px solid var(--line);}
  .hstep .hnum{font-family:'Oswald',sans-serif; font-size:26px; color:var(--blue-500); font-weight:600; margin-bottom:10px;}
  .hstep h5{font-size:15px; margin-bottom:6px;}
  .hstep p{font-size:13.5px; color:var(--ink-soft); line-height:1.5;}
  @media (max-width:920px){.headlight-steps{grid-template-columns:1fr 1fr;}}
  @media (max-width:560px){.headlight-steps{grid-template-columns:1fr;}}

  .addon-card{
    background:linear-gradient(135deg, var(--navy-900), var(--navy-700));
    color:var(--white);
    border-radius:var(--radius-m);
    padding:30px 32px;
    margin-top:32px;
    display:flex;
    justify-content:space-between;
    gap:24px;
    flex-wrap:wrap;
    align-items:center;
  }
  .addon-card h3{font-size:20px; margin-bottom:8px;}
  .addon-card p{color:var(--chrome-300); font-size:14.5px; max-width:50ch; line-height:1.55;}
  .addon-card .opts{display:flex; gap:10px; margin-top:12px; flex-wrap:wrap;}
  .addon-card .opts span{border:1px solid var(--line-dark); border-radius:16px; padding:5px 12px; font-size:12.5px; color:var(--blue-300);}

  .powerwash-card{
    background:var(--white); border:1px solid var(--line); border-radius:var(--radius-m);
    padding:28px 30px; margin-top:22px; display:flex; justify-content:space-between; align-items:center; gap:20px; flex-wrap:wrap;
  }
  .powerwash-card h3{font-size:19px; margin-bottom:6px;}
  .powerwash-card p{color:var(--ink-soft); font-size:14.5px;}

  /* ---------- FORMS ---------- */
  .form-shell{
    background:var(--white);
    border:1px solid var(--line);
    border-radius:var(--radius-m);
    padding:36px;
    box-shadow:var(--shadow-1);
  }
  .form-note{
    background:var(--blue-100);
    color:var(--blue-600);
    border-radius:var(--radius-s);
    padding:14px 16px;
    font-size:13.5px;
    line-height:1.55;
    margin-bottom:26px;
  }
  .field-row{display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-bottom:18px;}
  .field{margin-bottom:18px;}
  .field label{display:block; font-size:13.5px; font-weight:600; margin-bottom:7px; color:var(--ink);}
  .field .hint{display:block; font-size:12px; color:var(--ink-soft); font-weight:400; margin-top:5px;}
  .field input[type=text], .field input[type=tel], .field input[type=email], .field input[type=date],
  .field input[type=time], .field select, .field textarea, .field input[type=file]{
    width:100%;
    padding:12px 14px;
    font-size:14.5px;
    border:1px solid var(--line);
    border-radius:var(--radius-s);
    font-family:inherit;
    background:var(--white);
    color:var(--ink);
  }
  .field textarea{min-height:96px; resize:vertical;}
  .radio-group{display:flex; flex-direction:column; gap:10px;}
  .radio-opt{
    display:flex; align-items:flex-start; gap:10px;
    border:1px solid var(--line); border-radius:var(--radius-s);
    padding:13px 14px; cursor:pointer;
  }
  .radio-opt input{margin-top:3px;}
  .radio-opt.checked{border-color:var(--blue-500); background:var(--blue-100);}
  .radio-opt span{font-size:14.5px; line-height:1.4;}
  fieldset{border:none; padding:0; margin:0 0 20px;}
  legend{font-size:13.5px; font-weight:600; margin-bottom:10px; padding:0;}
  .checkbox-row{display:flex; align-items:flex-start; gap:10px; margin-bottom:22px;}
  .checkbox-row input{margin-top:4px;}
  .checkbox-row span{font-size:13.5px; color:var(--ink-soft); line-height:1.5;}
  #quote-address-block, #appt-address-block{display:none;}
  #quote-address-block.show, #appt-address-block.show{display:block;}
  .form-submit-msg{
    margin-top:18px; padding:14px 16px; border-radius:var(--radius-s);
    background:#e7f6ec; color:#1c6b3a; font-size:14px; display:none;
  }
  .form-submit-msg.show{display:block;}

  /* ---------- CONTACT ---------- */
  .contact-grid{display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:start;}
  .contact-info h3{font-size:22px; margin-bottom:6px;}
  .contact-info .owner{color:var(--blue-300); font-size:15px; margin-bottom:26px; display:block;}
  .contact-line{display:flex; align-items:center; gap:14px; margin-bottom:18px; font-size:16px;}
  .contact-line svg{width:22px;height:22px; color:var(--blue-400); flex-shrink:0;}
  .contact-actions{display:flex; flex-wrap:wrap; gap:12px; margin-top:28px;}
  @media (max-width:820px){.contact-grid{grid-template-columns:1fr;}}

  .qr-block{display:flex; align-items:center; gap:18px; margin-top:30px; padding-top:26px; border-top:1px solid var(--line-dark);}
  .qr-block img{width:96px;height:96px; border-radius:var(--radius-s); background:var(--white); padding:6px;}
  .qr-block p{font-size:13.5px; color:var(--chrome-300); max-width:34ch; line-height:1.5;}

  /* ---------- FOOTER ---------- */
  footer{background:var(--navy-950); color:var(--chrome-300); padding:56px 0 30px;}
  .footer-grid{display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:40px; margin-bottom:40px;}
  .footer-brand{display:flex; align-items:center; gap:12px; color:var(--white); margin-bottom:14px;}
  .footer-brand img{height:40px;width:40px;border-radius:var(--radius-s);background:var(--white);object-fit:contain;padding:2px;}
  .footer-brand span{font-family:'Oswald',sans-serif; font-weight:600; font-size:16px;}
  footer h5{color:var(--white); font-size:13.5px; letter-spacing:0.4px; margin-bottom:14px;}
  footer ul li{margin-bottom:9px; font-size:14px;}
  footer ul li a:hover{color:var(--white);}
  .footer-disclaimer{font-size:12.5px; line-height:1.6; color:var(--chrome-500); max-width:60ch;}
  .footer-bottom{border-top:1px solid var(--line-dark); padding-top:24px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; font-size:12.5px; color:var(--chrome-500);}
  @media (max-width:820px){.footer-grid{grid-template-columns:1fr; gap:28px;}}

  /* ---------- PAGE VISIBILITY ---------- */
  .page{display:none;}
  .page.active{display:block;}

  /* mobile CTA bar */
  #mobile-cta-bar{
    position:fixed; bottom:0; left:0; right:0; z-index:90;
    display:none;
    background:var(--navy-950);
    border-top:1px solid var(--line-dark);
    padding:10px 14px;
    gap:10px;
  }
  #mobile-cta-bar a{flex:1;}
  @media (max-width:640px){
    #mobile-cta-bar{display:flex;}
    body{padding-bottom:68px;}
  }

  .final-cta{
    background:linear-gradient(135deg, var(--blue-600), var(--navy-900));
    color:var(--white);
    text-align:center;
    padding:64px 24px;
    border-radius:var(--radius-m);
  }
  .final-cta h2{font-size:clamp(1.7rem,3.6vw,2.3rem); margin-bottom:14px;}
  .final-cta p{color:var(--blue-100); font-size:16.5px; max-width:52ch; margin:0 auto 30px;}
  .final-cta-actions{display:flex; gap:14px; justify-content:center; flex-wrap:wrap;}

  .page-hero{
    background:var(--navy-950);
    color:var(--white);
    padding:56px 0 44px;
  }
  .page-hero h1{font-size:clamp(1.9rem,4vw,2.7rem); margin-bottom:10px;}
  .page-hero p{color:var(--chrome-300); font-size:16px; max-width:56ch;}

  .fade-in{animation:fadeIn .4s ease both;}
  @keyframes fadeIn{from{opacity:0; transform:translateY(6px);} to{opacity:1; transform:none;}}
