    :root{
      --primary: 28, 105, 178;
      --primary-dark: 21, 78, 133;
      --primary-soft: 234, 244, 255;

      --green: 34, 197, 94;
      --green-dark: 22, 163, 74;

      --ink:#0f172a;
      --muted:#5b6677;
      --muted-2:#7b8796;
      --line:rgba(15,23,42,.10);

      --bg:#f4f7fb;
      --panel:#ffffff;

      --radius-lg:20px;
      --radius-md:16px;
      --radius-sm:12px;

      --shadow-soft:0 10px 28px rgba(15,23,42,.08);
      --shadow-card:0 8px 24px rgba(15,23,42,.07);
      --shadow-hover:0 16px 36px rgba(15,23,42,.11);

      --container-max:1480px;
      --content-max:1100px;

      --hero-height:690px;
      --hero-height-mobile:660px;

      --section:84px;
      --section-sm:56px;

      --footer-top-bg:#111827;
      --footer-bottom-bg:#0b1220;
      --footer-fade-h:110px;
    }

    html,
body{
  width:100%;
  max-width:100%;
  overflow-x:hidden;
}

body{
  zoom:1;
  transform:none;
}

    @media (max-width:768px){
      :root{
        --hero-height:var(--hero-height-mobile);
        --section:62px;
        --section-sm:42px;
      }
    }

    *{ box-sizing:border-box; }

    html,
    body{
      margin:0;
      padding:0;
      overflow-x:hidden;
    }

    html{ scrollbar-gutter:stable; }

    body{
      background:linear-gradient(180deg,#eef4ff 0%,#f7faff 55%,#ffffff 100%);
      font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",system-ui,sans-serif;
      color:var(--ink);
    }

    img{ max-width:100%; }

    .container{
      max-width:var(--container-max);
      margin:0 auto;
      padding:0 18px;
    }

/* ==========================================================
   HEADER
   ========================================================== */

.header{
  position:sticky;
  top:0;
  z-index:1000;
  background:
    radial-gradient(circle at 10% 20%, rgba(var(--primary),.12), transparent 34%),
    radial-gradient(circle at 72% 0%, rgba(245,158,11,.08), transparent 28%),
    linear-gradient(
      180deg,
      rgba(255,255,255,.98) 0%,
      rgba(245,249,255,.94) 72%,
      rgba(245,249,255,0) 100%
    );
  backdrop-filter:blur(16px);
  border-bottom:none;
  box-shadow:none;
  overflow:visible;
}

.header::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(90deg, transparent 0%, rgba(var(--primary),.035) 45%, transparent 100%),
    repeating-linear-gradient(
      135deg,
      rgba(15,23,42,.018) 0px,
      rgba(15,23,42,.018) 1px,
      transparent 1px,
      transparent 12px
    );
  opacity:.45;
}

.header::after{
  content:"";
  display:block;
  position:absolute;
  left:0;
  right:0;
  bottom:-46px;
  height:46px;
  pointer-events:none;
  background:linear-gradient(
    180deg,
    rgba(245,249,255,.78) 0%,
    rgba(245,249,255,.38) 42%,
    rgba(245,249,255,0) 100%
  );
}

.navbar{
  position:relative;
  z-index:1;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:8px 0;
}

.logo{
  display:flex;
  align-items:center;
  line-height:0;
  flex:0 0 auto;
  position:relative;
  padding:4px 14px 4px 0;
}

.logo::after{
  display:none;
  content:none;
}

.logo img{
  height:128px;
  width:auto;
  display:block;
  mix-blend-mode:multiply;
  filter:drop-shadow(0 10px 16px rgba(15,23,42,.13));
}

.nav-links{
  list-style:none;
  display:flex;
  align-items:center;
  gap:12px;
  padding:0;
  margin:0 auto;
  flex:0 1 auto;
}

.nav-links li{ display:flex; }

.nav-links a{
  position:relative;
  text-decoration:none;
  color:rgba(15,23,42,.76);
  font-size:13px;
  font-weight:800;
  letter-spacing:.02em;
  padding:11px 19px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:118px;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(var(--primary),.14);
  box-shadow:
    0 10px 24px rgba(15,23,42,.06),
    inset 0 1px 0 rgba(255,255,255,.85);
  transition:background .16s ease,color .16s ease,transform .16s ease,border-color .16s ease,box-shadow .16s ease;
  -webkit-tap-highlight-color:transparent;
}

.nav-links a:hover{
  color:#0f172a;
  background:rgba(var(--primary),.08);
  border-color:rgba(var(--primary),.30);
  transform:translateY(-1px);
  box-shadow:
    0 14px 28px rgba(15,23,42,.08),
    0 0 0 4px rgba(var(--primary),.05),
    inset 0 1px 0 rgba(255,255,255,.9);
}

.nav-links a.active{
  color:#0f172a;
  background:linear-gradient(180deg, rgba(var(--primary),.12), rgba(var(--primary),.06));
  border-color:rgba(var(--primary),.32);
  box-shadow:
    0 14px 28px rgba(var(--primary),.12),
    inset 0 1px 0 rgba(255,255,255,.9);
}

.nav-links a.active::after{
  display:none;
  content:none;
}

.nav-actions{
  display:flex;
  align-items:center;
  gap:10px;
  flex-shrink:0;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:11px 19px;
  border-radius:999px;
  font-weight:900;
  font-size:13px;
  text-decoration:none;
  border:1px solid transparent;
  white-space:nowrap;
  cursor:pointer;
  transition:transform .16s ease,filter .16s ease,background .16s ease,border-color .16s ease,box-shadow .16s ease;
  -webkit-tap-highlight-color:transparent;
}

.btn:active{ transform:translateY(1px); }

.btn-primary{
  background:
    linear-gradient(180deg, rgba(255,255,255,.16), transparent 34%),
    linear-gradient(135deg, rgba(var(--primary),1) 0%, rgba(var(--primary-dark),1) 100%);
  color:#fff;
  border-color:rgba(255,255,255,.18);
  box-shadow:
    0 16px 30px rgba(var(--primary),.28),
    0 0 0 6px rgba(var(--primary),.065);
}

.btn-primary:hover{
  filter:brightness(1.06);
  transform:translateY(-1px);
  box-shadow:
    0 20px 38px rgba(var(--primary),.33),
    0 0 0 7px rgba(var(--primary),.08);
}

.btn-secondary{
  background:rgba(255,255,255,.18);
  color:#fff;
  border-color:rgba(255,255,255,.34);
  backdrop-filter:blur(8px);
}

.btn-secondary:hover{
  background:rgba(255,255,255,.23);
  transform:translateY(-1px);
}

.hamburger{
  display:none;
  width:52px;
  height:52px;
  border-radius:999px;
  border:1px solid rgba(var(--primary),.18);
  background:rgba(255,255,255,.86);
  box-shadow:0 12px 28px rgba(15,23,42,.12);
  cursor:pointer;
  align-items:center;
  justify-content:center;
  padding:0;
  -webkit-tap-highlight-color:transparent;
}

.hamburger i{
  font-size:21px;
  color:#0f172a;
}

@media (max-width:980px){
  #primary-nav{ display:none; }
  .hamburger{ display:inline-flex; }
  .nav-actions .btn-primary{ display:none; }
}

@media (max-width:768px){
  .navbar{ padding:10px 0; }

  .logo img{
    height:96px;
  }

  .hamburger{
    width:56px;
    height:56px;
  }
}

@media (max-width:420px){
  .container{ padding:0 14px; }

  .logo img{
    height:86px;
  }

  .hamburger{
    width:52px;
    height:52px;
  }
}
    /* ==========================================================
       MOBILE DRAWER
       ========================================================== */

    .nav-scrim{
      position:fixed;
      inset:0;
      background:rgba(2,6,23,.62);
      opacity:0;
      pointer-events:none;
      transition:opacity .2s ease;
      z-index:9998;
    }

    .mobile-drawer{
      position:fixed;
      inset:0;
      width:100vw;
      height:100vh;
      background:rgba(255,255,255,.96);
      backdrop-filter:blur(10px);
      transform:translateX(102%);
      transition:transform .22s ease;
      z-index:9999;
      display:flex;
      flex-direction:column;
      overflow:hidden;
    }

    .drawer-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:16px;
      border-bottom:1px solid rgba(15,23,42,.08);
      background:rgba(255,255,255,.92);
      flex:0 0 auto;
    }

    .drawer-brand{
      display:flex;
      align-items:center;
      gap:10px;
      min-width:0;
    }

    .drawer-brand img{
      height:92px;
      width:auto;
      max-width:min(78vw,520px);
      display:block;
      mix-blend-mode:multiply;
    }

    .drawer-close{
      width:50px;
      height:50px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.12);
      background:#fff;
      box-shadow:0 8px 18px rgba(15,23,42,.08);
      cursor:pointer;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      color:rgba(15,23,42,.86);
      flex:0 0 auto;
      -webkit-tap-highlight-color:transparent;
    }

    .drawer-body{
      flex:1 1 auto;
      overflow:auto;
      -webkit-overflow-scrolling:touch;
      padding:14px 14px 18px;
      background:linear-gradient(180deg,#f1f6ff 0%,#f8fbff 100%);
    }

    .drawer-nav{
      display:flex;
      flex-direction:column;
      gap:10px;
      max-width:560px;
      margin:0 auto;
    }

    .drawer-link{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:14px;
      border-radius:999px;
      text-decoration:none;
      border:1px solid rgba(15,23,42,.10);
      background:#fff;
      box-shadow:0 8px 20px rgba(15,23,42,.07);
      color:rgba(15,23,42,.88);
      font-weight:800;
      font-size:15px;
      -webkit-tap-highlight-color:transparent;
    }

    .drawer-link .left{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:0;
    }

    .drawer-link i.icon{
      width:18px;
      text-align:center;
      color:rgba(15,23,42,.70);
    }

    .drawer-link .label{
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }

    .drawer-link.active{
      border-color:rgba(var(--primary),.22);
      background:rgba(var(--primary),.10);
    }

    .drawer-link.active i.icon{ color:rgb(var(--primary)); }

    .drawer-cta{
      position:sticky;
      bottom:0;
      margin-top:16px;
      padding:14px;
      max-width:560px;
      margin-left:auto;
      margin-right:auto;
      border-top:1px solid rgba(15,23,42,.08);
      background:linear-gradient(180deg,rgba(248,250,252,0) 0%,rgba(248,250,252,.88) 55%,#f8fafc 100%);
      border-radius:20px;
    }

    .drawer-btn{
      width:100%;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding:15px 14px;
      border-radius:999px;
      background:linear-gradient(180deg,rgba(var(--primary),1) 0%,rgba(var(--primary-dark),1) 100%);
      color:#fff;
      text-decoration:none;
      font-weight:800;
      border:1px solid rgba(255,255,255,.12);
      box-shadow:0 14px 30px rgba(var(--primary),.22);
      font-size:15px;
    }

    body.nav-open .nav-scrim{
      opacity:1;
      pointer-events:auto;
    }

    body.nav-open .mobile-drawer{
      transform:translateX(0);
    }

    /* ==========================================================
   HERO
   ========================================================== */

.hero{
  position:relative;
  overflow:hidden;
  height:var(--hero-height);
  background:#061425;
}

.hero-slider{
  position:absolute;
  inset:0;
}

.hero-slide{
  position:absolute;
  inset:0;
  opacity:0;
  transition:opacity .6s ease;
}

.hero-slide.active{ opacity:1; }

.hero-slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.015);
  display:block;
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(2,6,23,.70) 0%,rgba(2,6,23,.42) 42%,rgba(2,6,23,.08) 100%),
    linear-gradient(180deg,rgba(2,6,23,.08) 0%,rgba(2,6,23,.12) 58%,rgba(255,255,255,.86) 100%);
  z-index:2;
  pointer-events:none;
}

.hero-line{
  position:absolute;
  left:5%;
  right:5%;
  bottom:0;
  height:2px;
  border-radius:999px;
  background:linear-gradient(90deg,rgba(var(--primary),0) 0%,rgba(var(--primary),.95) 50%,rgba(var(--primary),0) 100%);
  box-shadow:0 0 16px rgba(var(--primary),.42);
  pointer-events:none;
  z-index:8;
}

/* Desktop: left aligned like screenshot 2 */
.hero-overlay-content{
  position:relative;
  z-index:5;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  padding:0 clamp(92px,6.2vw,130px);
  text-align:left;
}

.hero-copy{
  max-width:980px;
  width:100%;
  margin:0;
  color:#fff;
  display:flex;
  justify-content:flex-start;
}

.hero-copy-inner{
  max-width:860px;
  margin:0;
  padding-top:0;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}

.hero-kicker{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin-bottom:18px;
  padding:9px 18px;
  border-radius:999px;
  background:rgba(255,255,255,.18);
  border:1px solid rgba(255,255,255,.34);
  backdrop-filter:blur(8px);
  font-size:12px;
  line-height:1;
  font-weight:850;
  letter-spacing:.14em;
  text-transform:uppercase;
  box-shadow:0 14px 34px rgba(0,0,0,.18);
}

.hero-kicker::before{
  content:"";
  width:9px;
  height:9px;
  border-radius:999px;
  background:#fff;
  box-shadow:0 0 0 5px rgba(255,255,255,.18);
  flex:0 0 auto;
}

.hero-title{
  margin:0;
  max-width:900px;
  font-size:clamp(52px,5vw,86px);
  line-height:1.02;
  letter-spacing:-.05em;
  font-weight:850;
  text-align:left;
  text-wrap:balance;
}

.hero-sub{
  margin:22px 0 0;
  max-width:780px;
  font-size:clamp(18px,1.35vw,24px);
  line-height:1.65;
  color:rgba(255,255,255,.90);
  font-weight:400;
  text-align:left;
  text-wrap:balance;
}

.hero-actions{
  width:auto;
  display:flex;
  flex-direction:row;
  align-items:center;
  gap:14px;
  margin:32px 0 0;
}

.hero-actions .btn{
  min-height:48px;
  min-width:180px;
  padding:12px 20px;
  font-size:14px;
  justify-content:center;
}

.hero-arrows{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 clamp(18px,3vw,42px);
  z-index:7;
  pointer-events:none;
}

.hero-arrow{
  pointer-events:auto;
  width:56px;
  height:56px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.36);
  background:rgba(15,23,42,.34);
  backdrop-filter:blur(8px);
  color:#fff;
  font-size:30px;
  font-weight:850;
  display:grid;
  place-items:center;
  cursor:pointer;
  user-select:none;
  transition:transform .12s ease,background .16s ease;
  box-shadow:0 14px 34px rgba(0,0,0,.24);
}

.hero-arrow:hover{ background:rgba(15,23,42,.46); }

.hero-arrow:active{ transform:translateY(1px); }

.hero-dots{
  position:absolute;
  left:0;
  right:0;
  bottom:32px;
  display:flex;
  justify-content:center;
  gap:13px;
  z-index:7;
}

.hero-dot{
  width:13px;
  height:13px;
  border-radius:999px;
  background:rgba(255,255,255,.45);
  border:1px solid rgba(255,255,255,.68);
  cursor:pointer;
  transition:transform .16s ease,background .16s ease;
  padding:0;
}

.hero-dot.active{
  background:#fff;
  transform:scale(1.18);
}

/* Mobile/tablet: centered like screenshot 1 */
@media (max-width:860px){
  .hero{
    height:660px;
  }

  .hero::after{
    background:
      linear-gradient(180deg,rgba(2,6,23,.34) 0%,rgba(2,6,23,.58) 44%,rgba(2,6,23,.78) 100%),
      linear-gradient(180deg,rgba(255,255,255,0) 0%,rgba(255,255,255,.05) 78%,rgba(255,255,255,.88) 100%);
  }

  .hero-overlay-content{
    justify-content:center;
    padding:0 82px;
    text-align:center;
  }

  .hero-copy{
    margin:0 auto;
    justify-content:center;
  }

  .hero-copy-inner{
    max-width:760px;
    margin:0 auto;
    align-items:center;
  }

  .hero-kicker{
    justify-content:center;
  }

  .hero-title{
    text-align:center;
    font-size:clamp(42px,8.5vw,64px);
    line-height:1.04;
  }

  .hero-sub{
    margin:18px auto 0;
    max-width:680px;
    text-align:center;
    font-size:18px;
    line-height:1.62;
  }

  .hero-actions{
    width:min(100%,720px);
    flex-direction:column;
    margin:26px auto 0;
    max-width:100%;
  }

  .hero-actions .btn{
    width:100%;
    min-height:58px;
    font-size:16px;
  }

  .hero-arrows{
    padding:0 22px;
  }

  .hero-arrow{
    width:56px;
    height:56px;
    font-size:30px;
  }
}

@media (max-width:620px){
  .hero{
    height:650px;
  }

  .hero-overlay-content{
    padding:0 70px;
  }

  .hero-kicker{
    max-width:100%;
    font-size:11px;
    letter-spacing:.1em;
    padding:9px 14px;
    margin-bottom:16px;
  }

  .hero-title{
    font-size:43px;
  }

  .hero-sub{
    font-size:16px;
    line-height:1.55;
  }

  .hero-actions{
    gap:12px;
  }

  .hero-actions .btn{
    width:100%;
    min-height:56px;
    box-shadow:none;
  }

  .hero-arrow{
    width:48px;
    height:48px;
    font-size:26px;
  }
}

@media (max-width:420px){
  .hero{
    height:625px;
  }

  .hero-overlay-content{
    padding:0 62px;
  }

  .hero-title{
    font-size:37px;
  }

  .hero-sub{
    font-size:15px;
  }

  .hero-actions .btn{
    font-size:15px;
    min-height:52px;
  }

  .hero-arrow{
    width:44px;
    height:44px;
  }

  .hero-dots{
    bottom:24px;
  }
}
    /* ==========================================================
       SHARED
       ========================================================== */

    .pill-wrap{
      padding:var(--section-sm) 16px 12px;
      text-align:center;
    }

    .pill{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:8px 18px;
      border-radius:999px;
      background:#fff;
      border:1px solid rgba(148,163,184,.55);
      box-shadow:0 8px 18px rgba(15,23,42,.08);
      font-size:.82rem;
      font-weight:800;
      color:#111827;
    }

    .pill .dot{
      width:8px;
      height:8px;
      border-radius:999px;
      background:rgb(var(--primary));
      box-shadow:0 0 0 4px rgba(var(--primary),.16);
    }

    .section-label{
      font-size:11px;
      text-transform:uppercase;
      letter-spacing:.18em;
      color:#64748b;
      font-weight:800;
      margin-bottom:12px;
    }

    .section-title{
      font-size:clamp(30px,3.4vw,50px);
      line-height:1.05;
      margin:0 0 14px;
      color:#0b1220;
      font-weight:800;
      letter-spacing:-.035em;
    }

    /* ==========================================================
       INTRO
       ========================================================== */

    .intro{
      padding:26px 16px var(--section);
    }

    .text-shell{
      max-width:1100px;
      margin:0 auto;
      border-radius:var(--radius-lg);
      background:#fff;
      box-shadow:var(--shadow-soft);
      border:1px solid rgba(15,23,42,.07);
      overflow:hidden;
      position:relative;
    }

    .text-shell-inner{
      position:relative;
      padding:44px 44px 38px;
      background:#fff;
    }

    .about-text{
      margin:0 0 24px;
      color:#445066;
      font-size:15px;
      line-height:1.9;
      max-width:76ch;
    }

    .about-text p{ margin:0 0 14px; }

    .about-text p:last-child{ margin-bottom:0; }

    .metrics{
      margin-top:28px;
      padding-top:24px;
      border-top:1px solid rgba(15,23,42,.08);
    }

    .metrics-title{
      font-size:16px;
      font-weight:800;
      color:#0b1220;
      margin:0 0 14px;
    }

    .metrics-grid{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:14px;
    }

    .metric{
      border-radius:var(--radius-md);
      background:#fff;
      border:1px solid rgba(148,163,184,.28);
      box-shadow:var(--shadow-card);
      padding:18px;
      display:flex;
      flex-direction:column;
      gap:4px;
      transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease;
    }

    .metric:hover{
      transform:translateY(-2px);
      box-shadow:var(--shadow-hover);
      border-color:rgba(var(--primary),.22);
    }

    .metric-ico{
      width:28px;
      height:28px;
      border-radius:999px;
      display:flex;
      align-items:center;
      justify-content:center;
      background:rgba(var(--primary),.10);
      color:rgb(var(--primary));
      font-size:12px;
      margin-bottom:6px;
      border:1px solid rgba(var(--primary),.14);
    }

    .metric-val{
      font-size:16px;
      font-weight:800;
      color:#0b1220;
    }

    .metric-lab{
      font-size:11px;
      text-transform:uppercase;
      letter-spacing:.12em;
      color:#6b7280;
      font-weight:700;
    }

    .metric-desc{
      margin:7px 0 0;
      font-size:13px;
      color:#6b7280;
      line-height:1.55;
    }

    .badges{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:18px;
    }

    .badge{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 14px;
      border-radius:999px;
      border:1px solid rgba(var(--primary),.16);
      background:rgba(219,234,254,.78);
      font-size:12px;
      font-weight:800;
      color:#1e3a8a;
      white-space:nowrap;
    }

    .badge i{ color:rgb(var(--primary)); }

    @media (max-width:900px){
      .text-shell-inner{
        padding:30px 22px 28px;
      }
    }

    @media (max-width:720px){
      .metrics-grid{
        grid-template-columns:1fr;
      }
    }

    /* ==========================================================
       CERTIFICATION / QUALITY
       ========================================================== */

    .assurance-pill{
      padding:var(--section) 16px 14px;
      text-align:center;
    }

    .assurance{
      padding:12px 16px var(--section);
    }

    .assurance-box{
      max-width:980px;
      margin:0 auto;
      border-radius:var(--radius-lg);
      border:1px solid rgba(148,163,184,.32);
      background:rgba(255,255,255,.94);
      box-shadow:var(--shadow-soft);
      padding:16px;
      position:relative;
      overflow:hidden;
    }

    .assurance-grid{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:14px;
      align-items:stretch;
    }

    .a-card{
      border-radius:var(--radius-md);
      background:#fff;
      border:1px solid rgba(148,163,184,.30);
      box-shadow:var(--shadow-card);
      padding:18px;
      overflow:hidden;
      transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease;
    }

    .a-card:hover{
      transform:translateY(-2px);
      box-shadow:var(--shadow-hover);
      border-color:rgba(var(--primary),.22);
    }

    .a-top{
      display:flex;
      align-items:center;
      gap:12px;
      padding-bottom:14px;
      border-bottom:1px solid rgba(15,23,42,.08);
    }

    .a-icon{
      width:42px;
      height:42px;
      border-radius:var(--radius-sm);
      display:grid;
      place-items:center;
      background:rgba(var(--primary),.10);
      border:1px solid rgba(var(--primary),.18);
      color:rgb(var(--primary));
      flex:0 0 auto;
    }

    .a-icon i{ font-size:17px; }

    .a-title{
      margin:0;
      font-size:17px;
      font-weight:800;
      letter-spacing:.06em;
      text-transform:uppercase;
      color:#0b1220;
      line-height:1.15;
    }

    .a-subtitle{
      margin:4px 0 0;
      font-size:12px;
      color:#64748b;
      font-weight:700;
    }

    .a-body{
      padding:16px 0 0;
      display:flex;
      flex-direction:column;
      gap:12px;
    }

    .a-text{
      margin:0;
      color:#445066;
      font-size:14px;
      line-height:1.75;
      max-width:60ch;
    }

    .a-list{
      list-style:none;
      padding:0;
      margin:6px 0 0;
      display:flex;
      flex-direction:column;
      gap:10px;
    }

    .a-list li{
      display:flex;
      align-items:flex-start;
      gap:10px;
      padding:11px 12px;
      border-radius:var(--radius-sm);
      border:1px solid rgba(148,163,184,.24);
      background:#fff;
      color:#334155;
      font-weight:650;
      font-size:13px;
      line-height:1.55;
    }

    .a-list .check{
      width:22px;
      height:22px;
      border-radius:999px;
      display:grid;
      place-items:center;
      background:rgba(var(--green),.12);
      border:1px solid rgba(var(--green),.18);
      color:rgb(var(--green-dark));
      flex:0 0 auto;
      margin-top:1px;
      font-size:11px;
    }

    .a-foot{
      margin-top:4px;
      display:flex;
      flex-wrap:wrap;
      gap:8px;
    }

    .a-pill{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 11px;
      border-radius:999px;
      border:1px solid rgba(148,163,184,.24);
      background:#fff;
      color:#0b1220;
      font-weight:750;
      font-size:12px;
      white-space:nowrap;
    }

    .a-pill i{
      width:16px;
      text-align:center;
      color:rgb(var(--primary));
    }

    @media (max-width:900px){
      .assurance-box{ max-width:720px; }
      .assurance-grid{ grid-template-columns:1fr; }
    }

    @media (max-width:520px){
      .a-card{ padding:15px; }
      .a-title{ font-size:16px; }
    }

    /* ==========================================================
       FAQ
       ========================================================== */

    .faq{
      padding:var(--section) 16px var(--section);
    }

    .faq-shell{
      max-width:980px;
      margin:0 auto;
    }

    .faq-head{
      text-align:center;
      margin-bottom:30px;
    }

    .faq-head h2{
      margin:0;
      font-size:clamp(26px,3vw,36px);
      color:#0f172a;
      font-weight:800;
      letter-spacing:-.025em;
    }

    .underline{
      width:70px;
      height:3px;
      border-radius:999px;
      background:rgb(var(--primary));
      margin:12px auto 0;
    }

    .faq-card{
      border-radius:var(--radius-lg);
      background:#fff;
      box-shadow:var(--shadow-soft);
      border:1px solid rgba(148,163,184,.30);
      overflow:hidden;
    }

    .faq-item{
      border-bottom:1px solid rgba(148,163,184,.24);
    }

    .faq-item:last-child{ border-bottom:none; }

    .faq-item-header{
      padding:20px 24px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      cursor:pointer;
      font-size:15px;
      font-weight:800;
      color:#0f172a;
    }

    .faq-toggle{
      width:28px;
      height:28px;
      border-radius:999px;
      border:1px solid rgba(148,163,184,.52);
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:14px;
      color:#6b7280;
      flex-shrink:0;
      background:#fff;
    }

    .faq-item-body{
      padding:0 24px;
      max-height:0;
      overflow:hidden;
      transition:max-height .25s ease;
      background:#f7faff;
    }

    .faq-item-body p{
      margin:0;
      padding:0 0 18px;
      font-size:14px;
      color:#4b5563;
      line-height:1.7;
    }

    .faq-item.open .faq-item-body{
      max-height:240px;
    }

    @media (max-width:560px){
      .faq-item-header{ padding:18px 18px; }
      .faq-item-body{ padding:0 18px; }
    }

    /* ==========================================================
       OPERATIONAL SUPPORT
       ========================================================== */

    .keep-flying{
      position:relative;
      overflow:hidden;
      padding:var(--section-sm) 0 260px;
      margin-top:10px;
      background:transparent;
    }

    .keep-flying-pill{
      position:relative;
      z-index:1;
      text-align:center;
      padding:0 16px;
      margin-bottom:46px;
    }

    .keep-flying-grid{
      position:relative;
      z-index:1;
      max-width:1160px;
      margin:0 auto;
      padding:0 16px;
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:24px;
      align-items:start;
    }

    .kf-item{
      text-align:center;
      padding:4px 10px 0;
    }

    .kf-icon{
      width:148px;
      height:148px;
      margin:0 auto 18px;
      border-radius:999px;
      display:grid;
      place-items:center;
      background:linear-gradient(180deg,#fff 0%,#f8fafc 100%);
      border:1px solid rgba(15,23,42,.10);
      box-shadow:0 14px 32px rgba(15,23,42,.10);
      position:relative;
      overflow:hidden;
    }

    .kf-icon i{
      position:relative;
      z-index:1;
      font-size:58px;
      color:rgb(var(--primary));
    }

    .kf-247{
      position:absolute;
      z-index:2;
      bottom:17px;
      left:0;
      right:0;
      font-weight:800;
      letter-spacing:.04em;
      color:rgba(15,23,42,.85);
      font-size:17px;
    }

    .kf-title{
      margin:0 0 12px;
      font-size:20px;
      font-weight:800;
      color:#111827;
      line-height:1.3;
    }

    .kf-sub{
      margin:0;
      font-size:15px;
      line-height:1.7;
      color:#6b7280;
      max-width:44ch;
      margin-left:auto;
      margin-right:auto;
    }

    .kf-mini{
      margin-top:18px;
      display:flex;
      flex-direction:column;
      gap:6px;
      color:#6b7280;
      font-size:14px;
      font-weight:700;
      letter-spacing:.04em;
    }

    .kf-mini .label{
      text-transform:uppercase;
      font-size:12px;
      letter-spacing:.14em;
      color:#9aa4b2;
    }

    .kf-mini .value{
      font-size:16px;
      color:#4b5563;
      font-weight:800;
    }

    @media (max-width:980px){
      .keep-flying{
        padding-bottom:230px;
      }

      .keep-flying-grid{
        grid-template-columns:1fr;
        gap:38px;
      }
    }

    @media (max-width:520px){
      .kf-icon{
        width:120px;
        height:120px;
      }

      .kf-icon i{
        font-size:46px;
      }

      .kf-247{
        bottom:13px;
        font-size:15px;
      }
    }

    /* ==========================================================
   FOOTER
   ========================================================== */

.footer{
  position:relative;
  margin-top:0;
}

.footer-top{
  background:var(--footer-top-bg);
  position:relative;
  padding-top:calc(var(--footer-fade-h) + 42px);
  padding-bottom:38px;
  box-shadow:0 -18px 48px rgba(15,23,42,.08);
}

.footer-top::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:calc(-1 * var(--footer-fade-h));
  height:var(--footer-fade-h);
  pointer-events:none;
  background:linear-gradient(
    to bottom,
    rgba(17,24,39,0) 0%,
    rgba(17,24,39,.15) 26%,
    rgba(17,24,39,.56) 67%,
    rgba(17,24,39,1) 100%
  );
}

.footer-grid{
  display:grid;
  grid-template-columns:1fr 1fr 1.2fr;
  gap:26px;
}

.footer-info h3{
  margin:0 0 12px;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.14em;
  color:rgba(255,255,255,.92);
  font-weight:800;
}

.footer-links{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-links li{ margin:10px 0; }

.footer-links a{
  color:rgba(255,255,255,.76);
  text-decoration:none;
  font-weight:650;
  font-size:14px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  transition:color .16s ease;
}

.footer-links a i{
  width:16px;
  text-align:center;
  color:rgba(255,255,255,.62);
}

.footer-links a:hover,
.footer-links a:hover i{
  color:#fff;
}

.footer-info address{
  font-style:normal;
  color:rgba(255,255,255,.76);
  font-size:14px;
  line-height:1.8;
}

.footer-info address p{
  margin:0 0 9px;
}

/* Footer bottom-right ASA image */
.footer-cert-bottom{
  position:absolute;
  right:88px;
  bottom:92px;
  z-index:3;
  pointer-events:none;
}

.footer-cert-bottom img{
  width:120px;
  height:auto;
  display:block;
  object-fit:contain;
  opacity:.96;
  filter:drop-shadow(0 10px 22px rgba(0,0,0,.30));
}

.footer-bottom{
  background:linear-gradient(180deg,var(--footer-top-bg) 0%,var(--footer-bottom-bg) 100%);
  border-top:1px solid rgba(255,255,255,.06);
  padding:18px 0;
}

.footer-bottom-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  color:rgba(255,255,255,.72);
  font-size:12px;
}

.footer-social{
  display:flex;
  gap:10px;
  align-items:center;
}

.footer-social a{
  width:36px;
  height:36px;
  display:grid;
  place-items:center;
  border-radius:12px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  color:rgba(255,255,255,.86);
  text-decoration:none;
  transition:background .16s ease,color .16s ease;
}

.footer-social a:hover{
  background:rgba(255,255,255,.10);
  color:#fff;
}

@media (max-width:1100px){
  .footer-cert-bottom{
    right:38px;
    bottom:96px;
  }
}

@media (max-width:980px){
  .footer-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width:900px){
  .footer-cert-bottom{
    position:static;
    display:flex;
    justify-content:center;
    margin:32px auto 0;
    pointer-events:auto;
  }

  .footer-cert-bottom img{
    width:105px;
  }
}

@media (max-width:520px){
  .footer-top{
    padding-top:calc(var(--footer-fade-h) + 30px);
  }

  .footer-bottom-row{
    justify-content:center;
    text-align:center;
  }
}


    .about-text{
  width:100%;
  max-width:none;
  margin-top:24px;
}

.about-copy-card{
  width:100%;
  max-width:none;
  display:block;
  padding:0;
  border:0;
  box-shadow:none;
  background:transparent;
}

.about-copy-card p{
  width:100%;
  max-width:none;
  margin:0 0 22px;
  font-size:16px;
  line-height:1.85;
  color:#334155;
}

.about-copy-card p:last-child{
  margin-bottom:0;
}

.about-copy-card strong{
  color:#0f172a;
  font-weight:800;
}




.assurance{
  padding:12px 16px var(--section);
}

.assurance-box{
  display:contents;
}

.assurance-grid{
  max-width:980px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
  align-items:stretch;
}

.a-card{
  border-radius:var(--radius-md);
  background:#fff;
  border:1px solid rgba(148,163,184,.30);
  box-shadow:var(--shadow-card);
  padding:18px;
  overflow:hidden;
}



@media (max-width:900px){
  .assurance-grid{
    grid-template-columns:1fr;
    max-width:520px;
    gap:28px;
  }
}

.keep-flying{
  padding-bottom:320px;
}