
/* ===================== TOKENS ===================== */
:root{
  --navy: #0A1B4A;
  --navy-soft: #16296B;
  --blue: #1E56E8;
  --blue-bright: #3B8EFF;
  --blue-light: #7EC1FF;
  --sky: #EAF3FF;
  --sky-deep: #DCEBFF;
  --green: #2FBF6E;
  --ink: #4A5670;
  --ink-light: #8593AC;
  --white: #FFFFFF;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow-soft: 0 20px 45px -20px rgba(10,27,74,0.25);
  --shadow-card: 0 10px 30px -14px rgba(10,27,74,0.18);
  --ease: cubic-bezier(.22,1,.36,1);
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth; -webkit-text-size-adjust:100%; scroll-padding-top:90px;}
body{
  font-family:'Inter', sans-serif;
  color:var(--navy);
  background:var(--white);
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
  -webkit-tap-highlight-color:rgba(30,86,232,0.15);
}
:focus-visible{outline:2px solid var(--blue); outline-offset:3px; border-radius:4px;}
.skip-link{
  position:absolute; left:-9999px; top:12px; z-index:300;
  background:var(--navy); color:#fff; padding:12px 20px; border-radius:100px; font-size:14px; font-weight:600;
}
.skip-link:focus{left:24px;}
h1,h2,h3,h4{font-family:'Sora', sans-serif; color:var(--navy); line-height:1.15; letter-spacing:-0.01em;}
a{text-decoration:none; color:inherit;}
img{max-width:100%; display:block;}
.mono{font-family:'IBM Plex Mono', monospace; letter-spacing:0.04em;}
.container{max-width:1180px; margin:0 auto; padding:0 24px;}
.grad-text{
  background:linear-gradient(100deg, var(--blue) 10%, var(--blue-light) 90%);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family:'IBM Plex Mono', monospace; font-size:12.5px; font-weight:500;
  letter-spacing:0.12em; text-transform:uppercase; color:var(--blue);
  background:var(--sky); border:1px solid var(--sky-deep);
  padding:7px 16px 7px 12px; border-radius:100px; margin-bottom:20px;
}
.eyebrow .dot{width:6px; height:6px; border-radius:50%; background:var(--green); flex:none;}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  font-family:'Inter', sans-serif; font-weight:600; font-size:15px;
  padding:15px 28px; border-radius:100px; border:none; cursor:pointer;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), background .3s;
  white-space:nowrap;
}
.btn-primary{
  background:linear-gradient(100deg, var(--blue) 0%, var(--blue-bright) 100%);
  color:#fff; box-shadow:0 14px 30px -10px rgba(30,86,232,0.55);
}
.btn-primary:hover{transform:translateY(-2px); box-shadow:0 18px 36px -8px rgba(30,86,232,0.65);}
.btn-ghost{background:#fff; color:var(--navy); border:1.5px solid #DCE4F5;}
.btn-ghost:hover{border-color:var(--blue); color:var(--blue); transform:translateY(-2px);}
.btn-white{background:#fff; color:var(--blue);}
.btn-white:hover{transform:translateY(-2px); box-shadow:0 14px 28px -10px rgba(0,0,0,0.25);}
section{position:relative;}
.section-pad{padding:110px 0;}
.section-head{max-width:640px; margin-bottom:60px;}
.section-head.center{margin-left:auto; margin-right:auto; text-align:center;}
.section-head h2{font-size:clamp(24px,5.4vw,42px); margin-bottom:16px;}
.section-head p{font-size:17px; color:var(--ink); line-height:1.7;}
[data-reveal]{opacity:0; transform:translateY(28px); transition:opacity .8s var(--ease), transform .8s var(--ease);}
[data-reveal].in{opacity:1; transform:translateY(0);}
@media (prefers-reduced-motion:reduce){
  [data-reveal]{opacity:1; transform:none; transition:none;}
  html{scroll-behavior:auto;}
  *{animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important;}
}

/* ===================== NAV ===================== */
header{
  position:fixed; top:0; left:0; right:0; z-index:100;
  padding:18px 0; transition:background .35s, box-shadow .35s, padding .35s;
}
header.scrolled{background:rgba(255,255,255,0.85); backdrop-filter:blur(14px); box-shadow:0 1px 0 rgba(10,27,74,0.06); padding:12px 0;}
.nav-inner{display:flex; align-items:center; justify-content:space-between;}
.logo{display:flex; align-items:center; gap:10px; font-family:'Sora',sans-serif; font-weight:800; font-size:19px; color:var(--navy);}
.logo .badge-mark{width:34px; height:34px; flex:none;}
.nav-links{display:flex; align-items:center; gap:36px;}
.nav-links a{font-size:14.5px; font-weight:600; color:var(--navy); position:relative; padding:4px 0;}
.nav-links a::after{content:''; position:absolute; left:0; bottom:-2px; width:0; height:2px; background:var(--blue); transition:width .3s var(--ease);}
.nav-links a:hover::after{width:100%;}
.nav-cta{display:flex; align-items:center; gap:14px;}
.nav-cta .btn{padding:12px 22px; font-size:14px;}
.burger{display:none; flex-direction:column; justify-content:center; align-items:center; gap:5px; background:none; border:none; cursor:pointer; width:44px; height:44px; margin-right:-8px;}
.burger span{width:24px; height:2px; background:var(--navy); border-radius:2px; transition:.3s;}
@media (max-width:900px){
  .nav-links{position:fixed; top:0; right:-100%; width:78%; max-width:320px; height:100vh;
    background:var(--navy); flex-direction:column; justify-content:center; align-items:flex-start;
    padding:40px; gap:26px; transition:right .4s var(--ease); box-shadow:-10px 0 40px rgba(0,0,0,0.2);}
  .nav-links.open{right:0;}
  .nav-links a{color:#fff; font-size:16.5px;}
  .nav-links a::after{background:var(--blue-bright);}
  .burger{display:flex;}
}
.nav-mobile-cta{display:none;}
@media (max-width:900px){
  /* must out-specify `.nav-links a{padding:4px 0}`, which would otherwise flatten the pill */
  .nav-links a.nav-mobile-cta{
    display:flex; width:100%; justify-content:center;
    padding:14px 24px; margin-top:14px; color:#fff; font-size:15px;
  }
  .nav-links a.nav-mobile-cta::after{display:none;}
}
@media (max-width:480px){
  .logo{font-size:16px; gap:8px;}
  .logo .badge-mark{width:30px; height:30px;}
  .nav-cta{gap:6px;}
  .nav-cta .btn{padding:10px 16px; font-size:13px; min-height:42px;}
}
@media (max-width:360px){
  .nav-cta .btn-primary{display:none;}
}

/* ===================== HERO ===================== */
.hero{
  padding:170px 0 0;
  background:
    radial-gradient(900px 500px at 85% -10%, #EAF3FF 0%, rgba(234,243,255,0) 60%),
    linear-gradient(180deg, #FFFFFF 0%, #F7FAFF 100%);
  overflow:hidden;
}
.hero-grid{display:grid; grid-template-columns:1.05fr 0.95fr; gap:50px; align-items:center; padding-bottom:70px;}
.hero h1{font-size:clamp(30px,7.2vw,60px); margin-bottom:22px;}
.hero p.lead{font-size:18px; color:var(--ink); line-height:1.7; max-width:520px; margin-bottom:34px;}
.hero-actions{display:flex; gap:14px; flex-wrap:wrap; margin-bottom:44px;}
.hero-trust{display:flex; align-items:center; gap:16px;}
.hero-trust .avatars{display:flex;}
.hero-trust .avatars span{width:34px; height:34px; border-radius:50%; border:2.5px solid #fff; margin-left:-10px; background:linear-gradient(135deg,var(--blue),var(--blue-light)); display:flex; align-items:center; justify-content:center; color:#fff; font-size:12px; font-weight:700;}
.hero-trust .avatars span:first-child{margin-left:0;}
.hero-trust .avatars-photo img{width:34px; height:34px; border-radius:50%; border:2.5px solid #fff; margin-left:-10px; object-fit:cover; box-shadow:var(--shadow-card);}
.hero-trust .avatars-photo img:first-child{margin-left:0;}
.hero-trust p{font-size:13.5px; color:var(--ink); font-weight:500;}
.hero-trust strong{color:var(--navy);}

.hero-visual{position:relative; aspect-ratio:1/1;}
.seal-ring{
  position:absolute; inset:0; border-radius:50%;
  background:conic-gradient(from 90deg, var(--blue), var(--blue-light), var(--green), var(--blue));
  padding:3px; animation:spin 18s linear infinite;
}
@media (prefers-reduced-motion:reduce){.seal-ring{animation:none;}}
.seal-ring-inner{width:100%; height:100%; border-radius:50%; background:#fff;}
@keyframes spin{to{transform:rotate(360deg);}}
.hero-badge-core{
  position:absolute; inset:9%; border-radius:50%;
  background:linear-gradient(145deg, var(--navy) 0%, var(--navy-soft) 55%, var(--blue) 100%);
  display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center;
  box-shadow: inset 0 0 0 10px rgba(255,255,255,0.06), var(--shadow-soft);
}
.hero-badge-core svg{width:64px; height:64px; margin-bottom:14px;}
.hero-badge-core .cap{font-family:'IBM Plex Mono',monospace; font-size:11px; letter-spacing:0.16em; color:var(--blue-light); text-transform:uppercase; margin-bottom:6px;}
.hero-badge-core .title{color:#fff; font-family:'Sora',sans-serif; font-weight:800; font-size:22px;}
.float-chip{
  position:absolute; background:#fff; border-radius:16px; padding:12px 16px;
  box-shadow:var(--shadow-card); display:flex; align-items:center; gap:10px;
  font-size:13px; font-weight:600; color:var(--navy); animation:float 5s ease-in-out infinite;
}
@media (prefers-reduced-motion:reduce){.float-chip{animation:none;}}
.float-chip svg{width:20px;height:20px;flex:none;}
.chip-1{top:6%; left:-4%; animation-delay:0s;}
.chip-2{bottom:12%; right:-6%; animation-delay:1.2s;}
@keyframes float{0%,100%{transform:translateY(0);}50%{transform:translateY(-12px);}}
@media (max-width:900px){
  .hero-grid{grid-template-columns:1fr; text-align:center;}
  .hero p.lead{margin-left:auto; margin-right:auto;}
  .hero-actions{justify-content:center;}
  .hero-trust{justify-content:center;}
  /* every child is absolutely positioned, so this box has no in-flow content —
     max-width + auto margins + aspect-ratio collapse it to width:0. Size it explicitly. */
  .hero-visual{width:min(300px, 74vw); height:min(300px, 74vw); aspect-ratio:auto; margin:40px auto 0;}
  .hero-badge-core svg{width:52px; height:52px; margin-bottom:10px;}
  .hero-badge-core .title{font-size:18px; padding:0 18px;}
  /* chips are absolute against .hero-visual — scale them down and tuck them into the
     corners so they hug the ring instead of covering the badge label */
  .float-chip{padding:8px 12px; font-size:11.5px; border-radius:12px; gap:7px; white-space:nowrap;}
  .float-chip svg{width:16px; height:16px;}
  /* The navy disc is `inset:9%`, so its radius is 0.41 × box. A ~32px chip cannot fit
     inside the 0.09 × box white ring, so park chips outside the box entirely.
     chip-2 also needs headroom for the 12px `float` animation, which travels toward
     the disc; chip-1 floats away from it and needs none. */
  .chip-1{top:-14px; left:-4%;}
  .chip-2{bottom:-26px; right:-4%;}
}

.wave-divider{display:block; width:100%; line-height:0;}
.wave-divider svg{width:100%; height:auto; display:block;}

/* ===================== STATS ===================== */
.stats-band{
  background:linear-gradient(100deg, var(--navy) 0%, var(--navy-soft) 55%, var(--blue) 130%);
  padding:56px 0; margin-top:-2px;
}
.stats-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:20px;}
.stat{text-align:center; color:#fff;}
.stat .num{font-family:'Sora',sans-serif; font-weight:800; font-size:clamp(26px,6vw,44px); background:linear-gradient(100deg,#fff,var(--blue-light)); -webkit-background-clip:text; background-clip:text; color:transparent;}
.stat .label{font-size:13.5px; color:#B9C9F2; font-weight:500; margin-top:4px;}
@media (max-width:760px){.stats-grid{grid-template-columns:repeat(2,1fr); row-gap:32px;}}

/* ===================== ABOUT ===================== */
.about{background:#fff;}
.about-grid{display:grid; grid-template-columns:0.85fr 1.15fr; gap:64px; align-items:center;}
.about-visual{position:relative;}
.about-card{
  background:linear-gradient(160deg,var(--sky) 0%, #fff 70%);
  border:1px solid var(--sky-deep); border-radius:var(--radius);
  padding:34px; box-shadow:var(--shadow-card); position:relative; overflow:hidden;
}
.about-photo{
  border-radius:var(--radius); overflow:hidden; position:relative;
  box-shadow:var(--shadow-soft); border:1px solid var(--sky-deep); background:var(--sky);
}
.about-photo img{width:100%; height:auto; aspect-ratio:4/5; object-fit:cover; object-position:center 45%;}
.about-photo figcaption{
  position:absolute; left:0; right:0; bottom:0; padding:34px 20px 16px; color:#fff;
  font-size:13.5px; font-weight:600; letter-spacing:0.01em;
  background:linear-gradient(to top, rgba(10,27,74,0.82), transparent);
}
.about-photo-stamp{
  position:absolute; right:-14px; top:-14px; width:74px; height:74px; border-radius:50%;
  background:linear-gradient(135deg,var(--green),#1c9c58); display:flex; align-items:center; justify-content:center;
  box-shadow:0 10px 24px -8px rgba(47,191,110,0.55); border:4px solid #fff;
}
.about-photo-stamp svg{width:32px; height:32px;}
.about-card::before{content:''; position:absolute; top:-40px; right:-40px; width:140px; height:140px; border-radius:50%; background:radial-gradient(circle, rgba(30,86,232,0.12), transparent 70%);}
.about-card .doc-line{height:9px; border-radius:6px; background:#DCE7FA; margin-bottom:10px;}
.about-card .doc-line.short{width:55%;}
.about-card .doc-stamp{width:74px; height:74px; margin:18px 0 6px; border-radius:50%; background:linear-gradient(135deg,var(--green),#1c9c58); display:flex; align-items:center; justify-content:center; box-shadow:0 10px 24px -8px rgba(47,191,110,0.55);}
.about-card .doc-stamp svg{width:34px; height:34px; color:#fff;}
.about h2{font-size:clamp(23px,5vw,36px); margin-bottom:18px;}
.about p{color:var(--ink); font-size:16px; line-height:1.8; margin-bottom:16px;}
.about-signature{display:flex; align-items:center; gap:14px; margin-top:26px; padding-top:26px; border-top:1px solid #ECF1FB;}
.about-signature .sig-badge{width:44px; height:44px; border-radius:50%; background:var(--sky); display:flex; align-items:center; justify-content:center; flex:none;}
.about-signature .sig-badge svg{width:22px;height:22px;color:var(--blue);}
.about-signature span{font-size:14px; color:var(--ink); font-weight:500;}
@media (max-width:900px){.about-grid{grid-template-columns:1fr;} .about-visual{order:2; max-width:380px; margin:0 auto;}}

/* pillars */
.pillars{background:var(--sky);}
.pillar-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:24px;}
.pillar{background:#fff; border-radius:var(--radius); padding:34px 30px; box-shadow:var(--shadow-card); transition:transform .4s var(--ease), box-shadow .4s var(--ease);}
.pillar:hover{transform:translateY(-6px); box-shadow:0 24px 50px -18px rgba(10,27,74,0.28);}
.pillar .icon{width:52px; height:52px; border-radius:14px; background:linear-gradient(135deg,var(--blue),var(--blue-bright)); display:flex; align-items:center; justify-content:center; margin-bottom:20px;}
.pillar .icon svg{width:26px; height:26px; color:#fff;}
.pillar h3{font-size:19px; margin-bottom:10px;}
.pillar p{color:var(--ink); font-size:14.5px; line-height:1.7;}
@media (max-width:820px){.pillar-grid{grid-template-columns:1fr;}}

/* ===================== SERVICES / CERTIFICATE CARDS ===================== */
.services{background:#fff;}
.service-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:26px;}
.cert-card{
  position:relative; border-radius:var(--radius); padding:32px 28px 28px;
  background:#fff; border:1.5px solid #E7EDFA; overflow:hidden; cursor:pointer;
  transition:border-color .4s var(--ease), box-shadow .4s var(--ease), transform .4s var(--ease);
}
.cert-card:hover, .cert-card:focus-within{border-color:transparent; box-shadow:var(--shadow-soft); transform:translateY(-5px);}
.cert-card .corner-dots{position:absolute; top:14px; right:14px; width:34px; height:34px; opacity:0.5;
  background-image:radial-gradient(var(--blue-light) 1.4px, transparent 1.4px); background-size:8px 8px;}
.cert-card .ref{font-size:10.5px; color:var(--ink-light); margin-bottom:18px;}
.cert-icon-wrap{position:relative; width:64px; height:64px; margin-bottom:20px;}
.cert-icon-ring{width:100%; height:100%; border-radius:50%; background:var(--sky); display:flex; align-items:center; justify-content:center; transition:transform .5s var(--ease);}
.cert-icon-ring svg{width:28px; height:28px; color:var(--blue); transition:color .4s;}
.cert-card:hover .cert-icon-ring{background:linear-gradient(135deg,var(--blue),var(--blue-bright)); transform:rotate(-8deg) scale(1.06);}
.cert-card:hover .cert-icon-ring svg{color:#fff;}
.stamp-seal{
  position:absolute; top:20px; right:20px; width:54px; height:54px; border-radius:50%;
  background:linear-gradient(135deg,var(--green),#1c9c58); display:flex; align-items:center; justify-content:center;
  box-shadow:0 10px 22px -6px rgba(47,191,110,0.6);
  opacity:0; transform:scale(0.4) rotate(-25deg);
  transition:opacity .45s var(--ease), transform .5s var(--ease);
  pointer-events:none;
}
.cert-card:hover .stamp-seal, .cert-card:focus-within .stamp-seal{opacity:1; transform:scale(1) rotate(-12deg);}
.stamp-seal svg{width:24px; height:24px; color:#fff;}
.cert-card h3{font-size:19px; margin-bottom:10px; padding-right:50px;}
.cert-card p{font-size:14.5px; color:var(--ink); line-height:1.7; margin-bottom:20px;}
.cert-card .cert-link{font-size:13.5px; font-weight:700; color:var(--blue); display:inline-flex; align-items:center; gap:6px;}
.cert-card .cert-link svg{width:15px; height:15px; transition:transform .3s;}
.cert-card:hover .cert-link svg{transform:translateX(4px);}
@media (max-width:980px){.service-grid{grid-template-columns:1fr 1fr;}}
@media (max-width:620px){.service-grid{grid-template-columns:1fr;}}

/* ===================== PROCESS ===================== */
.process{background:linear-gradient(180deg,#F7FAFF 0%, #fff 100%);}
.process-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:0; position:relative;}
.process-track{position:absolute; top:26px; left:0; right:0; height:2px; background:repeating-linear-gradient(90deg, var(--sky-deep) 0 10px, transparent 10px 18px); z-index:0;}
.process-step{position:relative; z-index:1; padding:0 22px; text-align:center;}
.process-step .step-num{
  width:52px; height:52px; border-radius:50%; margin:0 auto 22px; background:#fff;
  border:2px solid var(--blue); color:var(--blue); font-family:'Sora',sans-serif; font-weight:800;
  display:flex; align-items:center; justify-content:center; font-size:18px;
  transition:background .4s, color .4s, transform .4s;
}
.process-step:hover .step-num{background:linear-gradient(135deg,var(--blue),var(--blue-bright)); color:#fff; transform:scale(1.08);}
.process-step h3{font-size:18px; margin-bottom:10px;}
.process-step p{font-size:14px; color:var(--ink); line-height:1.7; max-width:280px; margin:0 auto;}
@media (max-width:820px){.process-grid{grid-template-columns:1fr; gap:44px;} .process-track{display:none;}}

/* ===================== GALLERY ===================== */
.gallery{background:var(--sky);}
.gal-filter{display:flex; justify-content:center; flex-wrap:wrap; gap:10px; margin-bottom:38px;}
.gal-tab{
  font-family:'Inter',sans-serif; font-size:13.5px; font-weight:600; cursor:pointer;
  padding:10px 20px; border-radius:999px; border:1.5px solid var(--sky-deep);
  background:#fff; color:var(--ink); transition:all .3s var(--ease);
}
.gal-tab:hover{border-color:var(--blue); color:var(--blue);}
.gal-tab.active{background:linear-gradient(100deg,var(--blue),var(--blue-bright)); border-color:transparent; color:#fff;}

.gal-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:18px;}
.gal-item{
  position:relative; cursor:zoom-in;
  border-radius:var(--radius-sm); overflow:hidden; background:#fff;
  box-shadow:var(--shadow-card); transition:transform .4s var(--ease), box-shadow .4s var(--ease);
}
.gal-item:hover{transform:translateY(-4px); box-shadow:var(--shadow-soft);}
.gal-item:focus-visible{outline:none; box-shadow:0 0 0 3px var(--blue-bright), var(--shadow-soft);}
.gal-item img{width:100%; height:100%; aspect-ratio:4/5; object-fit:cover; transition:transform .6s var(--ease);}
.gal-item:hover img{transform:scale(1.04);}
.gal-item figcaption{
  position:absolute; left:0; right:0; bottom:0; padding:46px 16px 14px; color:#fff;
  font-size:13.5px; font-weight:600; line-height:1.45;
  background:linear-gradient(to top, rgba(10,27,74,0.88) 20%, transparent);
}
.gal-item figcaption .tag{
  display:block; font-family:'IBM Plex Mono',monospace; font-size:10.5px; font-weight:500;
  letter-spacing:0.14em; text-transform:uppercase; color:var(--blue-light); margin-bottom:5px;
}
.gal-item.hidden{display:none;}
@media (max-width:900px){.gal-grid{grid-template-columns:repeat(2,1fr); gap:14px;}}
@media (max-width:620px){
  .gal-grid{grid-template-columns:1fr;}
  .gal-tab{min-height:44px; padding:11px 18px;}
  .gal-item img{aspect-ratio:1/1;}
  .gal-item:hover{transform:none;}
  .gal-item:hover img{transform:none;}
}

/* lightbox */
.lightbox{
  position:fixed; inset:0; z-index:200; background:rgba(10,27,74,0.92);
  display:flex; align-items:center; justify-content:center; cursor:zoom-out;
  padding:max(32px, env(safe-area-inset-top)) max(20px, env(safe-area-inset-right))
          max(32px, env(safe-area-inset-bottom)) max(20px, env(safe-area-inset-left));
  overscroll-behavior:contain;
}
.lightbox[hidden]{display:none;}
.lightbox figure{max-width:940px; width:100%; cursor:default;}
.lightbox img{width:100%; max-height:74vh; object-fit:contain; border-radius:var(--radius-sm);}
.lightbox figcaption{color:#DCEBFF; font-size:14px; font-weight:500; text-align:center; margin-top:16px;}
.lb-close{
  position:absolute; top:20px; right:24px; width:44px; height:44px; border-radius:50%;
  border:1px solid rgba(255,255,255,0.28); background:rgba(255,255,255,0.08); color:#fff;
  font-size:26px; line-height:1; cursor:pointer; transition:background .3s;
}
.lb-close:hover{background:rgba(255,255,255,0.2);}

/* ===================== TRUSTED BY ===================== */
.trusted{padding:84px 0; background:var(--navy); position:relative; overflow:hidden;}
.trusted::before{content:''; position:absolute; inset:0; background:radial-gradient(700px 400px at 90% 10%, rgba(59,142,255,0.25), transparent 60%);}
.trusted .container{position:relative; z-index:1;}
.trusted p.label{text-align:center; font-size:12.5px; letter-spacing:0.14em; text-transform:uppercase; color:#B9C9F2; font-weight:600; margin-bottom:34px;}
.trusted-row{display:flex; align-items:center; justify-content:center; gap:14px; flex-wrap:wrap;}
.trusted-row .logo-ph{
  font-family:'Sora',sans-serif; font-weight:700; font-size:14px; color:#fff;
  letter-spacing:0.02em; padding:12px 20px; border-radius:999px;
  border:1px solid rgba(255,255,255,0.14); background:rgba(255,255,255,0.06);
  backdrop-filter:blur(6px);
}
.trusted-note{text-align:center; font-size:12.5px; color:#8DA3D6; margin-top:30px; max-width:620px; margin-left:auto; margin-right:auto; line-height:1.7;}

/* ===================== FAQ ===================== */
.faq{background:var(--sky);}
.faq-list{max-width:800px; margin:0 auto;}
.faq-item{background:#fff; border-radius:var(--radius-sm); margin-bottom:14px; overflow:hidden; box-shadow:0 2px 12px -6px rgba(10,27,74,0.08);}
.faq-q{display:flex; align-items:center; justify-content:space-between; gap:20px; width:100%; background:none; border:none; text-align:left; padding:22px 26px; cursor:pointer; font-family:'Sora',sans-serif; font-weight:700; font-size:16px; color:var(--navy);}
.faq-q .plus{width:26px; height:26px; border-radius:50%; background:var(--sky); display:flex; align-items:center; justify-content:center; flex:none; position:relative; transition:transform .35s var(--ease), background .3s;}
.faq-q .plus::before, .faq-q .plus::after{content:''; position:absolute; background:var(--blue); transition:transform .3s;}
.faq-q .plus::before{width:11px; height:2px;}
.faq-q .plus::after{width:2px; height:11px;}
.faq-item.open .faq-q .plus{background:var(--blue); transform:rotate(180deg);}
.faq-item.open .faq-q .plus::before, .faq-item.open .faq-q .plus::after{background:#fff;}
.faq-item.open .faq-q .plus::after{transform:scaleY(0);}
.faq-a{max-height:0; overflow:hidden; transition:max-height .4s var(--ease);}
.faq-a-inner{padding:0 26px 24px; font-size:14.5px; color:var(--ink); line-height:1.75;}

/* ===================== CONTACT ===================== */
.contact{background:#fff;}
.contact-grid{display:grid; grid-template-columns:0.85fr 1.15fr; gap:50px;}
.contact-info h2{font-size:clamp(23px,5vw,34px); margin-bottom:16px;}
.contact-info p.lead{color:var(--ink); font-size:15.5px; line-height:1.75; margin-bottom:30px;}
.info-row{display:flex; gap:14px; align-items:flex-start; margin-bottom:22px;}
.info-row .ic{width:42px; height:42px; border-radius:12px; background:var(--sky); display:flex; align-items:center; justify-content:center; flex:none;}
.info-row .ic svg{width:20px; height:20px; color:var(--blue);}
.info-row strong{display:block; font-size:14.5px; margin-bottom:2px;}
.info-row span, .info-row a{font-size:14px; color:var(--ink);}
.info-row span a{color:var(--blue); font-weight:600;}
.info-row span a:hover{text-decoration:underline;}
.contact-form{background:linear-gradient(160deg,var(--sky) 0%, #fff 60%); border:1px solid var(--sky-deep); border-radius:var(--radius); padding:38px; box-shadow:var(--shadow-card);}
.form-row{display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:16px;}
.field{display:flex; flex-direction:column; gap:7px;}
.field label{font-size:13px; font-weight:600; color:var(--navy);}
.field input, .field textarea, .field select{
  border:1.5px solid #DCE4F5; border-radius:10px; padding:13px 15px; font-family:'Inter',sans-serif;
  font-size:14.5px; color:var(--navy); background:#fff; transition:border-color .25s, box-shadow .25s; resize:vertical;
}
.field input:focus, .field textarea:focus, .field select:focus{outline:none; border-color:var(--blue); box-shadow:0 0 0 4px rgba(30,86,232,0.12);}
.contact-form .btn{width:100%; margin-top:6px; padding:16px;}
.form-note{font-size:12.5px; color:var(--ink-light); line-height:1.6; margin-top:14px; text-align:center;}
@media (max-width:900px){.contact-grid{grid-template-columns:1fr;} .form-row{grid-template-columns:1fr;}}
/* 16px prevents iOS Safari from zooming in on focus */
@media (max-width:820px){
  .field input, .field textarea, .field select{font-size:16px;}
  .contact-form{padding:26px 20px;}
}

/* ===================== CTA BAND ===================== */
.cta-band{
  background:linear-gradient(110deg, var(--navy) 0%, var(--blue) 130%);
  border-radius:28px; padding:56px 44px; text-align:center; position:relative; overflow:hidden;
  margin:0 24px;
}
.cta-band::before{content:''; position:absolute; width:320px; height:320px; border-radius:50%; background:rgba(255,255,255,0.06); top:-140px; right:-80px;}
.cta-band h2{color:#fff; font-size:clamp(22px,4.8vw,34px); margin-bottom:14px; position:relative;}
.cta-band p{color:#C7D6F7; font-size:15.5px; margin-bottom:28px; position:relative;}
.cta-band .actions{display:flex; gap:14px; justify-content:center; flex-wrap:wrap; position:relative;}

/* ===================== FOOTER ===================== */
footer{background:var(--navy); color:#C7D6F7; padding:70px 0 30px;}
.foot-grid{display:grid; grid-template-columns:1.4fr 1fr 1fr 1.1fr; gap:40px; margin-bottom:50px;}
.foot-logo{display:flex; align-items:center; gap:10px; color:#fff; font-family:'Sora',sans-serif; font-weight:800; font-size:19px; margin-bottom:16px;}
.foot-logo svg, .foot-logo img{width:30px; height:30px;}
.foot-col p{font-size:14px; line-height:1.8; color:#93A5D1; margin-bottom:18px;}
.foot-col h4{color:#fff; font-size:14.5px; margin-bottom:18px; font-family:'Sora',sans-serif;}
.foot-col ul{list-style:none;}
.foot-col ul li{margin-bottom:12px;}
.foot-col ul a{font-size:14px; color:#93A5D1; transition:color .25s;}
.foot-col ul a:hover{color:#fff;}
.foot-social{display:flex; gap:10px; margin-top:6px;}
.foot-social a{width:38px; height:38px; border-radius:50%; background:rgba(255,255,255,0.08); display:flex; align-items:center; justify-content:center; transition:background .25s, transform .25s;}
.foot-social a:hover{background:var(--blue); transform:translateY(-3px);}
.foot-social svg{width:17px; height:17px; color:#fff;}
@media (max-width:820px){.foot-social a{width:44px; height:44px;}}
.foot-bottom{border-top:1px solid rgba(255,255,255,0.1); padding-top:24px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; font-size:13px; color:#7C8FC0;}
.foot-bottom a{color:#7C8FC0;}
.foot-bottom a:hover{color:#fff;}
@media (max-width:900px){.foot-grid{grid-template-columns:1fr 1fr; row-gap:36px;}}
@media (max-width:560px){.foot-grid{grid-template-columns:1fr;}}

::selection{background:var(--blue); color:#fff;}

/* ===================== LEGAL / POLICY PAGES ===================== */
.page-hero{
  padding:150px 0 70px;
  background:linear-gradient(120deg, var(--navy) 0%, var(--navy-soft) 60%, var(--blue) 140%);
  position:relative; overflow:hidden;
}
.page-hero::before{content:''; position:absolute; width:420px; height:420px; border-radius:50%; background:rgba(255,255,255,0.05); top:-220px; right:-100px;}
.page-hero::after{content:''; position:absolute; width:260px; height:260px; border-radius:50%; background:rgba(59,142,255,0.18); bottom:-160px; left:-60px;}
.page-hero .container{position:relative;}
.page-hero .eyebrow{background:rgba(255,255,255,0.1); border-color:rgba(255,255,255,0.18); color:var(--blue-light);}
.page-hero .eyebrow .dot{background:var(--green);}
.page-hero h1{color:#fff; font-size:clamp(27px,6.2vw,48px); margin-bottom:14px; max-width:640px;}
.page-hero p{color:#C7D6F7; font-size:16px; max-width:560px; line-height:1.7;}
.page-hero .updated{display:inline-flex; align-items:center; gap:8px; margin-top:22px; font-size:12.5px; color:#8DA3D6;}
.page-hero .updated svg{width:15px; height:15px;}

.legal-wrap{padding:70px 0 110px; background:#fff;}
.legal-layout{display:grid; grid-template-columns:260px 1fr; gap:56px; align-items:flex-start;}
.legal-toc{position:sticky; top:110px; background:var(--sky); border:1px solid var(--sky-deep); border-radius:var(--radius-sm); padding:26px 22px;}
.legal-toc .toc-label{font-family:'IBM Plex Mono',monospace; font-size:11px; letter-spacing:0.12em; text-transform:uppercase; color:var(--ink-light); margin-bottom:14px; display:block;}
.legal-toc ul{list-style:none;}
.legal-toc li{margin-bottom:4px;}
.legal-toc a{display:block; font-size:13.5px; font-weight:600; color:var(--ink); padding:8px 10px; border-radius:8px; transition:background .25s, color .25s;}
.legal-toc a:hover, .legal-toc a.active{background:#fff; color:var(--blue); box-shadow:0 2px 10px -4px rgba(10,27,74,0.15);}

.legal-content section{margin-bottom:46px; scroll-margin-top:100px;}
.legal-content .sec-head{display:flex; align-items:center; gap:14px; margin-bottom:16px;}
.legal-content .sec-head .num{
  width:36px; height:36px; border-radius:10px; flex:none; background:var(--sky); color:var(--blue);
  display:flex; align-items:center; justify-content:center; font-family:'IBM Plex Mono',monospace; font-size:13px; font-weight:600;
}
.legal-content h2{font-size:21px;}
.legal-content p{color:var(--ink); font-size:15px; line-height:1.85; margin-bottom:14px;}
.legal-content ul, .legal-content ol{color:var(--ink); font-size:15px; line-height:1.85; margin:0 0 14px 22px;}
.legal-content li{margin-bottom:8px;}
.legal-content strong{color:var(--navy);}
.legal-note{
  background:var(--sky); border:1px solid var(--sky-deep); border-left:3px solid var(--blue);
  border-radius:10px; padding:16px 20px; font-size:14px; color:var(--ink); margin:18px 0;
}
.legal-content table{width:100%; border-collapse:collapse; margin:10px 0 20px; font-size:14px;}
.legal-content th, .legal-content td{text-align:left; padding:12px 14px; border-bottom:1px solid #EEF2FA; color:var(--ink);}
.legal-content th{color:var(--navy); font-family:'Sora',sans-serif; font-size:13px;}

@media (max-width:960px){
  .legal-layout{grid-template-columns:1fr;}
  .legal-toc{position:static; margin-bottom:10px;}
}

/* ===================== MOBILE TYPE SCALE (must stay last) ===================== */
@media (max-width:820px){
  .hero{padding:120px 0 0;}
  .section-pad{padding:72px 0;}
  .section-head{margin-bottom:40px;}
  .btn{min-height:46px; font-size:14.5px; padding:14px 24px;}
  h1,h2,h3,h4{line-height:1.22;}
  .section-head p{font-size:15px;}
  .hero p.lead{font-size:16px;}
  .about p{font-size:15px; line-height:1.75;}
  .pillar h3, .cert-card h3{font-size:17px;}
  .process-step h3{font-size:17px;}
  .pillar p, .cert-card p, .process-step p{font-size:14px;}
  .faq-q{font-size:15px; padding:18px 20px;}
  .faq-a-inner{font-size:14px; padding:0 20px 20px;}
  .contact-info p.lead{font-size:15px;}
  .eyebrow{font-size:11.5px; padding:6px 14px 6px 11px;}
}
@media (max-width:400px){
  .container{padding:0 18px;}
  .btn{font-size:14px; padding:14px 20px;}
}
