:root{
      --navy:#0f3f73;
      --navy-deep:#082b50;
      --blue:#1474b8;
      --sky:#eaf6ff;
      --gold:#f3b323;
      --green:#25D366;
      --text:#17324a;
      --muted:#607386;
      --white:#ffffff;
      --line:#d8e6f1;
      --shadow:0 18px 55px rgba(15,63,115,.14);
      --radius:24px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:Inter, Arial, Helvetica, sans-serif;
      color:var(--text);
      background:#f7fbff;
      line-height:1.6;
    }
    a{text-decoration:none;color:inherit}
    img,svg{max-width:100%;display:block}
    .container{width:min(1140px,92%);margin:auto}
    .section{padding:82px 0}
    .section-title{
      margin:0 auto 12px;
      max-width:760px;
      text-align:center;
      font-size:clamp(2rem,4vw,3rem);
      line-height:1.12;
      color:var(--navy-deep);
    }
    .section-copy{
      max-width:720px;
      margin:0 auto 38px;
      text-align:center;
      color:var(--muted);
      font-size:1.04rem;
    }

    .topbar{
      background:var(--navy-deep);
      color:#fff;
      font-size:.92rem;
    }
    .topbar-inner{
      min-height:38px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
      flex-wrap:wrap;
    }
    .topbar a{opacity:.94}
    .topbar a:hover{opacity:1}

    header{
      position:sticky;
      top:0;
      z-index:30;
      background:rgba(255,255,255,.96);
      backdrop-filter:blur(12px);
      border-bottom:1px solid rgba(216,230,241,.9);
    }
    nav{
      min-height:74px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:24px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:max-content;
    }
    .brand-mark{
      width:52px;
      height:52px;
      border-radius:16px;
      display:grid;
      place-items:center;
      background:linear-gradient(145deg,var(--navy),var(--blue));
      box-shadow:0 10px 25px rgba(15,63,115,.25);
    }
    .brand-mark svg{width:39px;height:39px}
    .brand-name{
      font-weight:900;
      letter-spacing:.02em;
      color:var(--navy);
      font-size:1.18rem;
      line-height:1.05;
    }
    .brand-name span{
      display:block;
      font-size:.66rem;
      letter-spacing:.18em;
      color:var(--muted);
      margin-top:5px;
    }
    .nav-links{
      display:flex;
      align-items:center;
      gap:22px;
      font-weight:750;
      font-size:.95rem;
    }
    .nav-links a:hover{color:var(--blue)}
    .menu-btn{
      display:none;
      width:44px;height:44px;border:1px solid var(--line);
      border-radius:12px;background:#fff;color:var(--navy);
      font-size:1.25rem;
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      min-height:50px;
      padding:13px 20px;
      border-radius:14px;
      border:0;
      cursor:pointer;
      font-weight:850;
      font-size:.98rem;
      transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
    }
    .btn:hover{transform:translateY(-2px)}
    .btn-primary{
      background:var(--green);
      color:#063c1c;
      box-shadow:0 12px 26px rgba(37,211,102,.25);
    }
    .btn-dark{
      background:var(--navy);
      color:#fff;
      box-shadow:0 12px 26px rgba(15,63,115,.2);
    }
    .btn-light{
      background:#fff;
      color:var(--navy);
      border:1px solid var(--line);
    }

    .hero{
      position:relative;
      overflow:hidden;
      padding:86px 0 72px;
      background:
        radial-gradient(circle at 86% 18%, rgba(20,116,184,.17), transparent 34%),
        radial-gradient(circle at 8% 85%, rgba(243,179,35,.16), transparent 28%),
        linear-gradient(180deg,#f7fbff 0%,#eef8ff 100%);
    }
    .hero-grid{
      display:grid;
      grid-template-columns:1.05fr .95fr;
      gap:54px;
      align-items:center;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--navy);
      background:#fff;
      border:1px solid var(--line);
      border-radius:999px;
      padding:8px 13px;
      font-weight:850;
      font-size:.86rem;
      box-shadow:0 8px 18px rgba(15,63,115,.08);
    }
    .eyebrow-dot{width:9px;height:9px;border-radius:50%;background:var(--gold)}
    h1{
      margin:20px 0 18px;
      color:var(--navy-deep);
      font-size:clamp(2.7rem,5.6vw,5.2rem);
      line-height:.98;
      letter-spacing:-.045em;
    }
    h1 span{color:var(--blue)}
    .hero-copy{
      max-width:650px;
      color:var(--muted);
      font-size:1.13rem;
      margin:0 0 27px;
    }
    .hero-actions{display:flex;gap:13px;flex-wrap:wrap}
    .hero-points{
      display:flex;
      gap:20px;
      flex-wrap:wrap;
      margin-top:26px;
      color:var(--navy);
      font-weight:750;
      font-size:.92rem;
    }
    .hero-points span{display:flex;align-items:center;gap:7px}
    .check{
      width:21px;height:21px;border-radius:50%;
      background:#dff8e8;color:#117c3c;
      display:grid;place-items:center;font-size:.78rem;font-weight:900;
    }
    .visual-card{
      position:relative;
      min-height:490px;
      border-radius:34px;
      background:linear-gradient(145deg,var(--navy-deep),var(--blue));
      box-shadow:var(--shadow);
      padding:30px;
      overflow:hidden;
    }
    .visual-card:before,
    .visual-card:after{
      content:"";
      position:absolute;border-radius:50%;
      background:rgba(255,255,255,.08);
    }
    .visual-card:before{width:270px;height:270px;right:-90px;top:-80px}
    .visual-card:after{width:180px;height:180px;left:-70px;bottom:-60px}
    .truck-wrap{
      position:absolute;
      left:28px;right:28px;bottom:34px;
      background:#fff;
      border-radius:24px;
      padding:20px;
      box-shadow:0 18px 40px rgba(0,0,0,.17);
    }
    .visual-badge{
      position:absolute;
      top:30px;left:30px;right:30px;
      display:flex;justify-content:space-between;gap:14px;align-items:flex-start;
      color:#fff;
    }
    .visual-badge strong{display:block;font-size:1.25rem}
    .visual-badge small{opacity:.8}
    .quote-chip{
      background:var(--gold);
      color:#3d2b00;
      border-radius:14px;
      padding:10px 13px;
      font-weight:900;
      white-space:nowrap;
    }

    .services-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:22px;
    }
    .service-card{
      background:#fff;
      border:1px solid var(--line);
      border-radius:var(--radius);
      padding:28px;
      box-shadow:0 10px 30px rgba(15,63,115,.07);
      transition:transform .2s ease, box-shadow .2s ease;
    }
    .service-card:hover{
      transform:translateY(-5px);
      box-shadow:var(--shadow);
    }
    .service-icon{
      width:62px;height:62px;border-radius:18px;
      display:grid;place-items:center;
      background:var(--sky);
      color:var(--navy);
      margin-bottom:20px;
    }
    .service-icon svg{width:32px;height:32px}
    .service-card h3{margin:0 0 9px;color:var(--navy-deep);font-size:1.35rem}
    .service-card p{margin:0;color:var(--muted)}

    .split{
      display:grid;
      grid-template-columns:.95fr 1.05fr;
      gap:54px;
      align-items:center;
    }
    .feature-panel{
      background:linear-gradient(145deg,#ffffff,#eef8ff);
      border:1px solid var(--line);
      border-radius:32px;
      padding:34px;
      box-shadow:var(--shadow);
    }
    .mini-grid{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:16px;
    }
    .mini-card{
      background:#fff;
      border:1px solid var(--line);
      border-radius:18px;
      padding:18px;
    }
    .mini-card strong{display:block;color:var(--navy);font-size:1.04rem;margin-bottom:4px}
    .mini-card span{color:var(--muted);font-size:.91rem}
    .content-title{
      margin:0 0 14px;
      color:var(--navy-deep);
      font-size:clamp(2rem,4vw,3.1rem);
      line-height:1.1;
    }
    .content-copy{color:var(--muted);font-size:1.05rem;margin-bottom:24px}
    .list{display:grid;gap:13px;margin:0 0 26px}
    .list-item{display:flex;gap:12px;align-items:flex-start}
    .list-item .check{flex:0 0 23px;margin-top:2px}

    .process{background:var(--navy-deep);color:#fff}
    .process .section-title{color:#fff}
    .process .section-copy{color:#cfe0ed}
    .process-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:18px;
    }
    .step{
      position:relative;
      border:1px solid rgba(255,255,255,.16);
      background:rgba(255,255,255,.07);
      border-radius:22px;
      padding:26px;
    }
    .step-num{
      width:42px;height:42px;border-radius:13px;
      display:grid;place-items:center;
      background:var(--gold);
      color:#3d2b00;font-weight:950;
      margin-bottom:18px;
    }
    .step h3{margin:0 0 8px;font-size:1.12rem}
    .step p{margin:0;color:#cfe0ed;font-size:.94rem}

    .areas{
      display:flex;
      justify-content:center;
      gap:10px;
      flex-wrap:wrap;
    }
    .area{
      padding:10px 15px;
      border-radius:999px;
      background:#fff;
      border:1px solid var(--line);
      color:var(--navy);
      font-weight:800;
      box-shadow:0 7px 18px rgba(15,63,115,.06);
    }

    .quote-section{
      background:
        radial-gradient(circle at 92% 15%, rgba(20,116,184,.16), transparent 30%),
        linear-gradient(180deg,#eff8ff,#f8fcff);
    }
    .quote-grid{
      display:grid;
      grid-template-columns:.9fr 1.1fr;
      gap:44px;
      align-items:start;
    }
    .contact-card{
      background:var(--navy-deep);
      color:#fff;
      border-radius:28px;
      padding:32px;
      box-shadow:var(--shadow);
    }
    .contact-card h2{margin:0 0 11px;font-size:2rem;line-height:1.1}
    .contact-card>p{margin:0 0 24px;color:#d4e3ee}
    .contact-row{
      display:flex;gap:14px;align-items:flex-start;
      padding:15px 0;
      border-top:1px solid rgba(255,255,255,.13);
    }
    .contact-icon{
      width:42px;height:42px;border-radius:12px;
      display:grid;place-items:center;
      background:rgba(255,255,255,.1);
      flex:0 0 42px;
    }
    .contact-row strong{display:block}
    .contact-row span,.contact-row a{color:#d4e3ee;font-size:.93rem}
    .form-card{
      background:#fff;
      border:1px solid var(--line);
      border-radius:28px;
      padding:32px;
      box-shadow:var(--shadow);
    }
    .form-card h2{margin:0 0 7px;color:var(--navy-deep);font-size:2rem}
    .form-card>p{margin:0 0 22px;color:var(--muted)}
    form{display:grid;gap:16px}
    .field-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}
    label{font-weight:800;color:var(--navy-deep);font-size:.92rem}
    input,select,textarea{
      width:100%;
      margin-top:7px;
      border:1px solid #cbdce9;
      border-radius:13px;
      padding:13px 14px;
      font:inherit;
      color:var(--text);
      background:#fbfdff;
      outline:none;
    }
    input:focus,select:focus,textarea:focus{
      border-color:var(--blue);
      box-shadow:0 0 0 4px rgba(20,116,184,.1);
    }
    textarea{min-height:105px;resize:vertical}
    .form-note{color:var(--muted);font-size:.84rem;margin:0}

    .faq-grid{display:grid;gap:12px;max-width:850px;margin:auto}
    details{
      background:#fff;border:1px solid var(--line);
      border-radius:17px;padding:18px 20px;
    }
    summary{
      cursor:pointer;font-weight:850;color:var(--navy-deep);
    }
    details p{margin:12px 0 0;color:var(--muted)}

    footer{
      background:#061f39;color:#d7e4ee;
      padding:42px 0 28px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.2fr .8fr .9fr;
      gap:32px;
      align-items:start;
    }
    .footer-brand{color:#fff}
    .footer-text{color:#aebfcd;max-width:430px}
    .footer-title{color:#fff;font-weight:900;margin-bottom:12px}
    .footer-links{display:grid;gap:8px}
    .footer-links a:hover{color:#fff}
    .copyright{
      margin-top:30px;padding-top:18px;
      border-top:1px solid rgba(255,255,255,.12);
      display:flex;justify-content:space-between;gap:15px;flex-wrap:wrap;
      color:#9fb2c2;font-size:.88rem;
    }

    .float-wa{
      position:fixed;
      right:20px;bottom:20px;z-index:40;
      width:60px;height:60px;border-radius:50%;
      display:grid;place-items:center;
      background:var(--green);
      color:#063c1c;
      box-shadow:0 12px 32px rgba(37,211,102,.35);
      font-weight:950;
      font-size:.78rem;
      border:4px solid #fff;
    }

    @media (max-width: 920px){
      .nav-links{
        position:absolute;left:4%;right:4%;top:76px;
        display:none;flex-direction:column;align-items:stretch;
        background:#fff;border:1px solid var(--line);
        border-radius:18px;padding:18px;box-shadow:var(--shadow);
      }
      .nav-links.open{display:flex}
      .menu-btn{display:block}
      .hero-grid,.split,.quote-grid{grid-template-columns:1fr}
      .visual-card{min-height:440px}
      .services-grid{grid-template-columns:1fr 1fr}
      .process-grid{grid-template-columns:1fr 1fr}
      .footer-grid{grid-template-columns:1fr 1fr}
    }
    @media (max-width: 640px){
      .topbar-inner{justify-content:center;padding:7px 0;text-align:center}
      .topbar-inner span:last-child{display:none}
      .section{padding:64px 0}
      .hero{padding:62px 0}
      h1{font-size:3rem}
      .hero-actions .btn{width:100%}
      .visual-card{min-height:390px;padding:22px}
      .visual-badge{left:22px;right:22px;top:22px}
      .quote-chip{font-size:.78rem}
      .truck-wrap{left:18px;right:18px;bottom:20px}
      .services-grid,.process-grid,.mini-grid,.field-grid,.footer-grid{grid-template-columns:1fr}
      .form-card,.contact-card,.feature-panel{padding:24px}
      .brand-name{font-size:1rem}
      .brand-mark{width:47px;height:47px}
    }

/* Additional service pages and visual cards */
.nav-links .nav-blog{color:var(--navy)}
.service-link{display:block;height:100%}
.service-card .learn-more{display:inline-flex;align-items:center;gap:7px;margin-top:16px;color:var(--blue);font-weight:900}
.service-card.visual-service{padding:0;overflow:hidden}
.service-visual{height:190px;background:linear-gradient(145deg,#eaf6ff,#f8fcff);display:flex;align-items:center;justify-content:center;padding:18px;border-bottom:1px solid var(--line)}
.service-visual img{width:100%;height:100%;object-fit:contain}
.service-card-body{padding:25px 28px 28px}
.service-card-body h3{margin:0 0 8px;color:var(--navy-deep);font-size:1.32rem}
.service-card-body p{margin:0;color:var(--muted)}
.more-services{background:#fff}
.subhero{position:relative;overflow:hidden;padding:72px 0 58px;background:radial-gradient(circle at 86% 18%,rgba(20,116,184,.16),transparent 30%),linear-gradient(180deg,#f7fbff,#eef8ff)}
.subhero-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:48px;align-items:center}
.subhero h1{font-size:clamp(2.55rem,5vw,4.7rem);margin:18px 0 18px}
.subhero-visual{min-height:365px;border-radius:30px;background:linear-gradient(145deg,var(--navy-deep),var(--blue));padding:26px;display:flex;align-items:center;justify-content:center;box-shadow:var(--shadow)}
.subhero-visual img{width:100%;max-height:315px;object-fit:contain;filter:drop-shadow(0 18px 28px rgba(0,0,0,.18))}
.breadcrumb{display:flex;gap:8px;align-items:center;flex-wrap:wrap;color:var(--muted);font-size:.9rem;font-weight:750;margin-bottom:12px}
.breadcrumb a{color:var(--blue)}
.page-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:46px;align-items:start}
.info-card{background:#fff;border:1px solid var(--line);border-radius:24px;padding:28px;box-shadow:0 10px 30px rgba(15,63,115,.07)}
.info-card h2,.info-card h3{color:var(--navy-deep);margin-top:0}
.info-card p{color:var(--muted)}
.check-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin:24px 0}
.check-card{display:flex;gap:11px;align-items:flex-start;background:#f8fcff;border:1px solid var(--line);border-radius:16px;padding:15px}
.cta-band{background:linear-gradient(135deg,var(--navy-deep),var(--blue));border-radius:30px;padding:35px;color:#fff;display:flex;align-items:center;justify-content:space-between;gap:24px;box-shadow:var(--shadow)}
.cta-band h2{margin:0 0 7px;font-size:clamp(1.8rem,3vw,2.5rem);line-height:1.12}
.cta-band p{margin:0;color:#d6e7f3}
.blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.blog-card{background:#fff;border:1px solid var(--line);border-radius:24px;overflow:hidden;box-shadow:0 10px 30px rgba(15,63,115,.07)}
.blog-card-visual{height:180px;background:linear-gradient(145deg,#eaf6ff,#fff);padding:18px;display:flex;align-items:center;justify-content:center}
.blog-card-visual img{height:100%;width:100%;object-fit:contain}
.blog-card-body{padding:24px}.blog-card h2,.blog-card h3{margin:0 0 10px;color:var(--navy-deep)}.blog-card p{margin:0;color:var(--muted)}
.article{max-width:850px;margin:0 auto 28px;background:#fff;border:1px solid var(--line);border-radius:24px;padding:30px;box-shadow:0 10px 30px rgba(15,63,115,.06)}
.article h2{color:var(--navy-deep);margin-top:0}.article h3{color:var(--navy);margin-top:24px}.article p,.article li{color:var(--muted)}
.policy{max-width:900px;margin:auto;background:#fff;border:1px solid var(--line);border-radius:28px;padding:34px;box-shadow:var(--shadow)}
.policy h2{color:var(--navy-deep);margin-top:30px}.policy h2:first-child{margin-top:0}.policy p,.policy li{color:var(--muted)}
.visual-strip{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;margin-top:30px}
.visual-tile{background:#fff;border:1px solid var(--line);border-radius:20px;padding:16px;text-align:center;box-shadow:0 8px 22px rgba(15,63,115,.06)}
.visual-tile img{height:120px;margin:auto}.visual-tile strong{display:block;margin-top:10px;color:var(--navy-deep)}
@media (max-width:920px){.subhero-grid,.page-grid{grid-template-columns:1fr}.blog-grid{grid-template-columns:1fr 1fr}.visual-strip{grid-template-columns:1fr 1fr}}
@media (max-width:640px){.blog-grid,.check-grid,.visual-strip{grid-template-columns:1fr}.subhero{padding:54px 0 42px}.subhero-visual{min-height:300px}.cta-band{align-items:flex-start;flex-direction:column}.policy{padding:24px}}



/* Premium 3D visual treatment */
.hero-3d-card{
  position:relative;
  min-height:490px;
  border-radius:34px;
  overflow:hidden;
  box-shadow:0 26px 70px rgba(8,43,80,.22);
  border:1px solid rgba(255,255,255,.75);
  background:#0f3f73;
}
.hero-3d-card>img{
  width:100%;height:100%;min-height:490px;object-fit:cover;object-position:center;display:block;
}
.hero-3d-card:after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(3,27,51,0) 48%,rgba(3,27,51,.62) 100%);
  pointer-events:none;
}
.hero-3d-badge{
  position:absolute;left:22px;right:22px;bottom:22px;z-index:2;
  display:flex;align-items:center;justify-content:space-between;gap:16px;
  padding:16px 18px;border-radius:18px;background:rgba(255,255,255,.93);
  backdrop-filter:blur(12px);box-shadow:0 12px 34px rgba(0,0,0,.16);
}
.hero-3d-badge strong{display:block;color:var(--navy-deep);font-size:1.12rem;line-height:1.1}
.hero-3d-badge span{display:block;color:var(--muted);font-size:.88rem;margin-top:4px}
.hero-3d-badge a{background:var(--gold);color:#3d2b00;font-weight:950;padding:11px 14px;border-radius:12px;white-space:nowrap}
.service-card.visual-service .service-visual{height:220px;padding:0;background:#dfeef8;overflow:hidden}
.service-card.visual-service .service-visual img{width:100%;height:100%;object-fit:cover;object-position:center;transition:transform .35s ease}
.service-card.visual-service:hover .service-visual img{transform:scale(1.035)}
.subhero-visual{padding:0;overflow:hidden;background:#0f3f73}
.subhero-visual img{width:100%;height:100%;min-height:365px;max-height:none;object-fit:cover;object-position:center;filter:none}
.blog-card-visual{padding:0;overflow:hidden;background:#dfeef8}
.blog-card-visual img{width:100%;height:100%;object-fit:cover;transition:transform .35s ease}
.blog-card:hover .blog-card-visual img{transform:scale(1.035)}
@media (max-width:920px){.hero-3d-card,.hero-3d-card>img{min-height:420px}}
@media (max-width:640px){
  .hero-3d-card,.hero-3d-card>img{min-height:340px;border-radius:24px}
  .hero-3d-badge{left:14px;right:14px;bottom:14px;padding:13px}
  .hero-3d-badge a{font-size:.78rem;padding:9px 10px}
  .service-card.visual-service .service-visual{height:210px}
  .subhero-visual img{min-height:300px}
}


/* Hero service visual carousel */
.hero-carousel{isolation:isolate}
.hero-carousel-track{
  display:flex;
  min-height:490px;
  width:100%;
  height:100%;
  transition:transform .7s cubic-bezier(.22,.61,.36,1);
  will-change:transform;
}
.hero-carousel-slide{
  position:relative;
  flex:0 0 100%;
  width:100%;
  min-height:490px;
  margin:0;
  overflow:hidden;
}
.hero-carousel-slide::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(3,27,51,.04) 35%,rgba(3,27,51,.50) 100%);
  pointer-events:none;
}
.hero-carousel-slide img{
  width:100%;
  height:100%;
  min-height:490px;
  object-fit:cover;
  object-position:center;
  display:block;
  transform:scale(1.005);
}
.hero-carousel-slide figcaption{
  position:absolute;
  top:20px;
  left:20px;
  z-index:3;
  max-width:calc(100% - 120px);
  padding:10px 14px;
  border:1px solid rgba(255,255,255,.35);
  border-radius:999px;
  background:rgba(8,43,80,.84);
  backdrop-filter:blur(10px);
  color:#fff;
  font-size:.86rem;
  font-weight:900;
  letter-spacing:.01em;
  box-shadow:0 10px 24px rgba(0,0,0,.14);
}
.hero-carousel-arrow{
  position:absolute;
  top:50%;
  z-index:5;
  width:44px;
  height:44px;
  transform:translateY(-50%);
  border:1px solid rgba(255,255,255,.65);
  border-radius:50%;
  background:rgba(255,255,255,.90);
  color:var(--navy-deep);
  display:grid;
  place-items:center;
  font-size:1.75rem;
  line-height:1;
  cursor:pointer;
  box-shadow:0 10px 24px rgba(8,43,80,.18);
  transition:transform .2s ease,background .2s ease;
}
.hero-carousel-arrow:hover{background:#fff;transform:translateY(-50%) scale(1.06)}
.hero-carousel-prev{left:14px}
.hero-carousel-next{right:14px}
.hero-carousel-dots{
  position:absolute;
  left:50%;
  bottom:107px;
  z-index:5;
  transform:translateX(-50%);
  display:flex;
  align-items:center;
  gap:7px;
  padding:7px 9px;
  border-radius:999px;
  background:rgba(8,43,80,.42);
  backdrop-filter:blur(8px);
}
.hero-carousel-dot{
  width:8px;
  height:8px;
  border:0;
  border-radius:999px;
  padding:0;
  background:rgba(255,255,255,.64);
  cursor:pointer;
  transition:width .25s ease,background .25s ease;
}
.hero-carousel-dot.active{width:25px;background:var(--gold)}
.hero-carousel .hero-3d-badge{z-index:6}

@media (max-width:920px){
  .hero-carousel-track,.hero-carousel-slide,.hero-carousel-slide img{min-height:420px}
}
@media (max-width:640px){
  .hero-carousel-track,.hero-carousel-slide,.hero-carousel-slide img{min-height:340px}
  .hero-carousel-slide figcaption{top:14px;left:14px;font-size:.76rem;padding:8px 11px;max-width:calc(100% - 90px)}
  .hero-carousel-arrow{width:38px;height:38px;font-size:1.5rem}
  .hero-carousel-prev{left:9px}.hero-carousel-next{right:9px}
  .hero-carousel-dots{bottom:86px;padding:6px 8px}
}
@media (prefers-reduced-motion: reduce){
  .hero-carousel-track{transition:none}
}


/* Hero carousel mobile improvements */
.hero-copy-wrap{min-width:0}
.hero-carousel{touch-action:pan-y;user-select:none;-webkit-user-select:none}
.hero-carousel-slide{background:#0f3f73}
.hero-carousel-slide[aria-hidden="true"]{visibility:visible}
.hero-carousel-arrow{touch-action:manipulation}
.hero-carousel-dot{touch-action:manipulation}

@media (max-width:920px){
  .hero-grid{grid-template-columns:1fr;gap:26px}
  .hero-copy-wrap{order:1}
  .hero-carousel{order:2}
  .hero-copy{text-wrap:pretty}
}

@media (max-width:640px){
  .container{width:min(100%,94%)}
  .hero{padding:40px 0 48px}
  .hero-grid{gap:20px}
  .eyebrow{font-size:.8rem;padding:7px 11px}
  h1{font-size:clamp(2.25rem,11vw,3.1rem);line-height:1.02;margin:14px 0 14px}
  .hero-copy{font-size:1rem;margin-bottom:18px}
  .hero-actions{gap:10px}
  .hero-actions .btn{width:100%}
  .hero-points{gap:10px;margin-top:18px;font-size:.84rem}
  .hero-3d-card{border-radius:22px}
  .hero-carousel-track,.hero-carousel-slide,.hero-carousel-slide img{min-height:270px}
  .hero-carousel-slide figcaption{top:12px;left:12px;max-width:calc(100% - 88px);font-size:.73rem;padding:7px 10px}
  .hero-carousel-arrow{width:36px;height:36px;font-size:1.35rem;top:auto;bottom:84px;transform:none}
  .hero-carousel-arrow:hover{transform:none}
  .hero-carousel-prev{left:12px}
  .hero-carousel-next{right:12px}
  .hero-carousel-dots{bottom:54px;padding:6px 8px;gap:6px}
  .hero-carousel-dot{width:9px;height:9px}
  .hero-carousel-dot.active{width:22px}
  .hero-3d-badge{left:12px;right:12px;bottom:10px;padding:11px 12px;gap:10px;align-items:center}
  .hero-3d-badge strong{font-size:.97rem}
  .hero-3d-badge span{font-size:.78rem}
  .hero-3d-badge a{font-size:.74rem;padding:8px 10px;border-radius:10px}
}

@media (max-width:390px){
  .hero-carousel-track,.hero-carousel-slide,.hero-carousel-slide img{min-height:246px}
  .hero-3d-badge{flex-direction:column;align-items:flex-start}
  .hero-3d-badge a{width:100%;text-align:center;justify-content:center}
}
