:root{
  --ink:#121212;
  --muted:#667085;
  --muted-2:#475467;
  --border:rgba(18,18,18,.12);
  --panel:#f4f5f7;
  --max:1100px;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  background:#fff;
  color:var(--ink);
  line-height:1.6;
}
body.modal-open{overflow:hidden}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
button,input,select,textarea{font:inherit}

h1,h2,h3{color:#111}
h2{margin:0 0 10px;font-size:34px;letter-spacing:-.02em}

.section-intro{
  max-width:980px;
}

.section-kicker{
  display:inline-block;
  padding:7px 12px;
  border:1px solid rgba(18,18,18,.12);
  border-radius:999px;
  background:rgba(255,255,255,.78);
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:rgba(18,18,18,.65);
  margin-bottom:12px;
}

.lead{
  font-size:18px;
  color:rgba(18,18,18,.78)
}

.nav{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(18,18,18,.08);
}

.nav-inner{
  max-width:var(--max);
  margin:0 auto;
  padding:14px 18px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
}

.brand{
  display:flex;
  align-items:center;
  text-decoration:none;
  padding:4px 0
}

.brand-logo{
  height:58px;
  width:auto;
  transition:transform .18s ease, filter .18s ease, opacity .18s ease;
}

.brand:hover .brand-logo{
  transform:translateY(-1px);
  filter:drop-shadow(0 10px 18px rgba(0,0,0,.12));
  opacity:.98;
}

.links{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap
}

.navlink{
  font-weight:650;
  font-size:15px;
  letter-spacing:.1px;
  color:#0f2a44;
  padding:10px 8px;
  border-radius:10px;
  transition:background .15s ease, transform .15s ease, opacity .15s ease;
}

.navlink:hover{
  background:rgba(15,42,68,.06);
  transform:translateY(-1px)
}

.nav-contact{
  background:#F15A29;
  color:#fff !important;
  padding:10px 18px;
  border-radius:999px;
  font-weight:700;
  letter-spacing:.02em;
}
.nav-contact:hover{background:#d94f23;box-shadow:0 8px 18px rgba(0,0,0,.15)}

.btn{
  background:#121212;
  color:#fff !important;
  padding:12px 16px;
  border-radius:14px;
  font-weight:700;
  letter-spacing:.1px;
  box-shadow:0 10px 24px rgba(0,0,0,.10);
  transition:transform .15s ease, box-shadow .15s ease, opacity .15s ease;
  display:inline-block;
  border:none;
  cursor:pointer;
}

.btn:hover{
  transform:translateY(-1px);
  box-shadow:
    0 12px 28px rgba(0,0,0,.14);
  opacity:.98
}

.btn--ghost{
  background:rgba(255,255,255,.94);
  color:#111 !important;
  border:1px solid rgba(0,0,0,.10);
  box-shadow:0 10px 24px rgba(0,0,0,.08);
}

.btn-orange{
  background:#F15A29;
  color:#fff !important;
}

.btn-orange:hover{
  background:#d94f23;
}

.section-header{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:20px;
  margin-bottom:28px;
}

.section-header .section-intro{
  max-width:980px;
}

.view-services-btn{
  margin-top:6px;
  flex-shrink:0;
}

.view-services-btn:hover{
  transform:translateY(-1px);
  box-shadow:0 8px 20px rgba(241,90,41,.35);
}

.home-stage{
  position:relative;
  min-height:100vh;
  padding:0;
  overflow:hidden;
}
.home-stage-bg{
  display:none;
}
.home-stage-overlay{
  position:fixed;
  inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.15)),
    radial-gradient(900px 520px at 18% 24%, rgba(0,0,0,.25), transparent 70%);
  z-index:-2;
}
.home-popup{
  max-width:var(--max);
  margin:18px auto;
  padding:26px;
  background:rgba(255,255,255,.72);
  backdrop-filter:blur(22px);
  border:1px solid rgba(255,255,255,.45);
  border-radius:28px;
  box-shadow:0 22px 60px rgba(0,0,0,.18);
  transition:transform .25s ease, box-shadow .25s ease;
}
.home-popup:hover{
  transform:translateY(-4px);
  box-shadow:0 28px 80px rgba(0,0,0,.22);
}
.home-popup--hero{
  padding:290px 50px;
  margin-top:0px;
  margin-bottom:2px;
  max-width:1400px;
  background:rgba(15,23,42,.35);
  backdrop-filter:blur(20px);
}
.home-popup--hero h1{
  margin:0 0 14px;
  font-size:68px;
  line-height:1.02;
  letter-spacing:-.02em;
  color:#ffffff;
  max-width:760px;
  text-shadow:0 4px 20px rgba(0,0,0,.35);
}
.home-popup--hero .lead{
  max-width:740px;
  margin:0 0 20px;
  color:rgba(11,18,32,.80);
}
.eyebrow{
  display:inline-block;
  padding:7px 12px;
  border:1px solid rgba(18,18,18,.12);
  border-radius:999px;
  background:rgba(255,255,255,.72);
  font-size:13px;
  color:rgba(18,18,18,.72);
  margin-bottom:14px;
}

.hero-banner{
  position:relative;
  min-height:calc(100vh - 88px);
  display:flex;
  align-items:center;
  overflow:hidden;
  margin:0;
  padding:0;
}

.hero-cta{
  position:relative;
  overflow:hidden;
  background:#0f2a44; /* brand dark blue */
  color:#fff !important;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 22px;
  border-radius:14px;
  white-space:nowrap; /* keeps text on one line */
  width:auto; /* prevents button shrinking */
  box-shadow:
    0 14px 30px rgba(0,0,0,.25),
    0 0 0 2px rgba(241,90,41,.15);
  animation:ctaPulse 2.9s ease-in-out infinite;
}

.hero-cta:hover{
  background:#13385c;
}

.cursor-icon{
  width:34px;
  height:34px;
  position:relative;
  top:-2px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-left:10px;
  will-change:transform, opacity;
  animation:cursorDropClick 2.2s ease-in-out infinite;
}

.cursor-icon svg{
  width:100%;
  height:100%;
  display:block;
}

@keyframes ctaPress{

  0%{
    transform:translateY(0);
  }

  40%{
    transform:translateY(0);
  }

  /* button press */
  48%{
    transform:translateY(2px) scale(.98);
  }

  /* release */
  58%{
    transform:translateY(0);
  }

  100%{
    transform:translateY(0);
  }

}

@keyframes cursorDropClick{

  0%{
    transform:translateY(-26px) scale(.85) rotate(-8deg);
    opacity:0;
  }

  20%{
    transform:translateY(-12px) scale(.92) rotate(-4deg);
    opacity:1;
  }

  36%{
    transform:translateY(0) scale(1) rotate(0);
  }

  /* click press */
  48%{
    transform:translateY(6px) scale(.9) rotate(0);
  }

  /* release */
  58%{
    transform:translateY(0) scale(1);
  }

  85%{
    transform:translateY(0);
    opacity:1;
  }

  100%{
    transform:translateY(-26px) scale(.85) rotate(-8deg);
    opacity:0;
  }

}

.mouse-icon{
  width:18px;
  height:18px;
  display:flex;
  align-items:center;
  opacity:.9;
  transition:transform .25s ease;
}

.mouse-icon svg{
  width:100%;
  height:100%;
}

.hero-video{
  position:fixed;
  top:0;
  left:0;
  width:100vw;
  height:100vh;
  object-fit:cover;
  z-index:-3;
  pointer-events:none;
}

.hero-banner-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(15,23,42,.65), rgba(15,23,42,.35)),
    linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.30));
  z-index:1;
}

.hero-banner-content{
  position:relative;
  z-index:2;
  width:100%;
  max-width:var(--max);
  margin:0 auto;
  padding:80px 18px;
}

.hero-headline{
  margin:0;
  font-size:76px;
  line-height:1.08;
  letter-spacing:-0.035em;
  font-weight:800;
  color:#ffffff;
  max-width:1000px;
  text-shadow:
    0 4px 20px rgba(0,0,0,.65),
    0 2px 8px rgba(0,0,0,.55);
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
}

.home-popup--metrics{
  padding: 10px 0;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
}

.metrics-grid-home{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:28px;
}

.mini-metric{
  padding:46px 36px 40px;
  background:rgba(255,255,255,.90);
  border:2px solid #F15A29; /* brand orange border */
  border-radius:26px;
  box-shadow:0 20px 44px rgba(0,0,0,.14);
  text-align:center;
  transition:transform .22s ease, box-shadow .22s ease, background .22s ease;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}

.mini-metric:hover{
  transform:translateY(-8px);
  border-color: #d94f23;
  box-shadow:
    0 30px 70px rgba(0,0,0,.20),
    0 0 0 3px rgba(241,90,41,.15);
}

.metric-icon{
  width:56px;
  height:56px;
  margin:0 auto 16px;
  color:rgba(17,17,17,.82);
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.metric-icon svg{
  width:100%;
  height:100%;
  display:block;
  margin:auto;
}

.mini-metric-number{
  font-size:52px;
  font-weight:950;
  line-height:1;
  letter-spacing:-.03em;
  color:#111;
  transition:transform .25s ease;
}

.mini-metric-number.counting{
  transform:scale(1.06);
}

.mini-metric-label{
  margin-top:10px;
  font-size:16px;
  color:rgba(17,17,17,.72);
  line-height:1.45;
}

.mini-metric .impact-link{
  margin-top:14px;
  display:inline-block;
}

.container{
  max-width:var(--max);
  margin:0 auto;padding:0
}

.grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px
}

.case-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px
}

.card,.case-card{
  border:1px solid rgba(18,18,18,.12);
  border-radius:18px;
  padding:18px;
  box-shadow:0 10px 30px rgba(0,0,0,.04);
  background:#fff;
}

.card h3,.case-card h3{
  margin:0 0 8px
}


.case-tag{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  margin-bottom:12px;
  border-radius:999px;
  background:#eef4fb;
  border:1px solid rgba(17,24,39,.06);
  font-size:.74rem;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.home-popup--compact{
  padding:18px 20px;
  background:rgba(255,255,255,.68);
}

.cta-block{
  display:grid;
  grid-template-columns:1.35fr .85fr;
  gap:20px;
  align-items:center;
  background:linear-gradient(135deg,#111827,#1f2937);
  color:#fff;
  border-radius:24px;
  padding:26px;
  box-shadow:0 18px 44px rgba(17,24,39,.18);
}

.cta-block h2{
  color:#fff
}

.cta-block p{
  color:rgba(255,255,255,.78);
  margin-bottom:0
}

.cta-actions{
  display:flex;
  flex-direction:column;
  gap:12px;
  justify-self:end;
  width:auto;
  max-width:none;
}

.cta-actions .btn{
  width:auto;
}

.trust-mini-bar{
  border:1px solid rgba(17,24,39,.08);
  background:#f8fafc;
  border-radius:18px;
  padding:16px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.trust-mini-copy{
  font-size:1rem;
  color:#344054;
  margin:0
}

.trust-mini-label{
  font-size:.74rem;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(17,24,39,.58);
  margin-bottom:4px;
}

.services-slider-section{
  padding:10px 0 56px;
}

.services-slider-head{
  max-width:760px;
  margin:0 0 26px;
}

.services-slider{
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:18px;
  align-items:center;
}

.services-track-wrap{
  position:relative;
  min-height:620px;
}

.service-slide{
  position:absolute;
  inset:0;
  opacity:0;
  visibility:hidden;
  transform:translateX(24px) scale(.985);
  transition:
    opacity .45s ease,
    transform .45s ease,
    visibility .45s ease;
  background:rgba(255,255,255,.90);
  border:1px solid rgba(255,255,255,.55);
  border-radius:30px;
  padding:40px;
  box-shadow:0 24px 60px rgba(0,0,0,.14);
  backdrop-filter:blur(18px);
}

.service-slide.is-active{
  opacity:1;
  visibility:visible;
  transform:translateX(0) scale(1);
  position:absolute;
  inset:0;
}

.service-slide-number{
  display:inline-block;
  margin-bottom:12px;
  font-size:12px;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(15,42,68,.55);
}

.service-slide h3{
  margin:0 0 14px;
  font-size:46px;
  line-height:1.02;
  letter-spacing:-.04em;
  color:#0f172a;
}

.service-slide-lead{
  max-width:760px;
  margin:0 0 22px;
  font-size:20px;
  line-height:1.65;
  color:rgba(15,42,68,.76);
}

.service-slide-list{
  margin:0 0 28px;
  padding-left:20px;
}

.service-slide-list li{
  margin:10px 0;
  color:#0f2a44;
  line-height:1.6;
}

.slider-arrow{
  width:60px;
  height:60px;
  border:none;
  border-radius:999px;
  background:#0f2a44;
  color:#fff;
  font-size:30px;
  line-height:1;
  cursor:pointer;
  box-shadow:0 14px 28px rgba(0,0,0,.18);
  transition:transform .2s ease, background .2s ease, box-shadow .2s ease;
  display:flex;
  align-items:center;
  justify-content:center;
}

.slider-arrow:hover{
  transform:translateY(-2px) scale(1.02);
  background:#13385c;
  box-shadow:0 18px 34px rgba(0,0,0,.22);
}

.slider-dots{
  display:flex;
  justify-content:center;
  gap:12px;
  margin-top:22px;
}

.slider-dots button{
  width:12px;
  height:12px;
  border:none;
  border-radius:999px;
  background:rgba(15,42,68,.20);
  cursor:pointer;
  transition:transform .2s ease, background .2s ease;
}

.slider-dots button:hover{
  transform:scale(1.12);
}

.slider-dots button.is-active{
  background:#F15A29;
  transform:scale(1.15);
}

.services-page-shell{
  padding:34px 18px 60px;
}

.services-slider-section{
  position:relative;
  padding:8px 0 40px;
}

.services-slider-section::before{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:220px;
  background:radial-gradient(circle at 50% 0%, rgba(15,42,68,.07), transparent 70%);
  pointer-events:none;
}

.services-slider-head{
  max-width:760px;
  margin:0 0 26px;
}

.services-page-title{
  margin:0 0 12px;
  font-size:58px;
  line-height:1.02;
  letter-spacing:-.04em;
  color:#0f172a;
}

.services-page-lead{
  max-width:720px;
  color:rgba(15,42,68,.74);
}

.services-slider{
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:18px;
  align-items:center;
}

.services-track-wrap{
  position:relative;
  min-height:640px;
}

.slider-progress{
  position:absolute;
  left:40px;
  right:40px;
  top:26px;
  height:4px;
  border-radius:999px;
  background:rgba(15,42,68,.08);
  overflow:hidden;
  z-index:5;
}

.slider-progress-bar{
  display:block;
  width:0%;
  height:100%;
  background:linear-gradient(90deg,#F15A29,#ff8b57);
  border-radius:999px;
  transition:width .2s linear;
}

.service-slide{
  position:absolute;
  inset:0;
  opacity:0;
  visibility:hidden;
  transform:translateX(28px) scale(.985);
  transition:
    opacity .5s ease,
    transform .5s ease,
    visibility .5s ease;
  background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(249,250,252,.92));
  border:1px solid rgba(255,255,255,.65);
  border-radius:34px;
  padding:52px 40px 40px;
  box-shadow:0 30px 70px rgba(0,0,0,.12);
  backdrop-filter:blur(18px);
}

.service-slide.is-active{
  opacity:1;
  visibility:visible;
  transform:translateX(0) scale(1);
}

.service-slide-grid{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:40px;
  align-items:center;
  min-height:100%;
}

.service-slide-text{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}

.service-slide-number{
  display:inline-block;
  margin-bottom:12px;
  font-size:12px;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:rgba(15,42,68,.48);
}

.service-slide h2{
  margin:0 0 14px;
  font-size:56px;
  line-height:1.02;
  letter-spacing:-.045em;
  color:#0f172a;
}

.service-slide-lead{
  max-width:740px;
  margin:0 0 22px;
  font-size:21px;
  line-height:1.65;
  color:rgba(15,42,68,.76);
}

.service-slide-list{
  margin:0 0 28px;
  padding-left:20px;
}

.service-slide-list li{
  margin:10px 0;
  color:#0f2a44;
  line-height:1.65;
}

.service-slide-image{
  position:relative;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 22px 50px rgba(0,0,0,.16);
  min-height:420px;
}

.service-slide-image::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(8,28,45,.32), rgba(8,28,45,0) 55%);
  pointer-events:none;
}

.service-slide-image img{
  width:100%;
  height:100%;
  min-height:420px;
  object-fit:cover;
  display:block;
  transition:transform 1.1s ease;
}

.service-slide.is-active .service-slide-image img{
  transform:scale(1.03);
}

.slider-arrow{
  width:62px;
  height:62px;
  border:none;
  border-radius:999px;
  background:#0f2a44;
  color:#fff;
  font-size:30px;
  line-height:1;
  cursor:pointer;
  box-shadow:0 16px 30px rgba(0,0,0,.18);
  transition:transform .2s ease, background .2s ease, box-shadow .2s ease;
  display:flex;
  align-items:center;
  justify-content:center;
}

.slider-arrow:hover{
  transform:translateY(-2px) scale(1.02);
  background:#13385c;
  box-shadow:0 20px 36px rgba(0,0,0,.22);
}

.slider-dots{
  display:flex;
  justify-content:center;
  gap:12px;
  margin-top:22px;
}

.slider-dots button{
  width:12px;
  height:12px;
  border:none;
  border-radius:999px;
  background:rgba(15,42,68,.20);
  cursor:pointer;
  transition:transform .2s ease, background .2s ease;
}

.slider-dots button:hover{
  transform:scale(1.12);
}

.slider-dots button.is-active{
  background:#F15A29;
  transform:scale(1.15);
}

@media (max-width:900px){
  .services-page-shell{
    padding:24px 14px 42px;
  }

  .services-page-title{
    font-size:40px;
  }

  .services-slider{
    grid-template-columns:1fr;
  }

  .slider-arrow{
    display:none;
  }

  .services-track-wrap{
    min-height:860px;
  }

  .service-slide{
    padding:42px 24px 24px;
    border-radius:24px;
  }

  .service-slide-grid{
    grid-template-columns:1fr;
    gap:22px;
  }

  .service-slide h2{
    font-size:36px;
  }

  .service-slide-lead{
    font-size:18px;
  }

  .service-slide-image,
  .service-slide-image img{
    min-height:260px;
  }

  .slider-progress{
    left:24px;
    right:24px;
    top:18px;
  }
}

@media (max-width:900px){
  .services-slider{
    grid-template-columns:1fr;
  }

  .slider-arrow{
    display:none;
  }

  .service-slide{
    padding:28px 24px;
    border-radius:24px;
  }

  .service-slide h3{
    font-size:34px;
  }

  .service-slide-lead{
    font-size:18px;
  }
}

.site-footer{
  margin-top:30px;
  background:#e9edf2;
  color:#0f2a44;
  position:relative;
  overflow:hidden;
  border-top:1px solid rgba(15,42,68,.12);
  border-radius:0;
  box-shadow:0 -6px 24px rgba(0,0,0,.06);
  width:100%;
}

.site-footer::before{
  content:"";
  position:absolute;
  inset:-40%;
  background:
    linear-gradient(to right, rgba(0,0,0,.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,.05) 1px, transparent 1px);
  transform:rotate(-8deg);
  opacity:.10;
  pointer-events:none;
}

.site-footer::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:120px;
  background:
    linear-gradient(to top, rgba(0,0,0,.22), rgba(0,0,0,.08) 60%, transparent),
    repeating-linear-gradient(
      to right,
      rgba(255,255,255,.08) 0px,
      rgba(255,255,255,.08) 4px,
      transparent 4px,
      transparent 22px
    );
  opacity:.22;
  pointer-events:none;
}

.footer-inner{
  position:relative;
  max-width:1100px;
  margin:0 auto;
  padding:42px 18px 24px;
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:26px;
  z-index:2;
}

.footer-col{
  display:flex;
  flex-direction:column;
  gap:12px
}

.footer-brand{
  gap:14px;
  align-items:flex-start
}

.footer-logo{
  display:flex;
  align-items:center;
  justify-content:flex-start
}

.footer-logo-img{
  max-height:78px;
  width:auto;
  display:block;
}

.footer-heading{
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:13px;
  color:#0f2a44;
  margin-bottom:6px;
}

.footer-item{
  display:flex;
  align-items:flex-start;
  gap:10px;
  color:#0f2a44;
  line-height:1.4;
}

.footer-item a{
  color:#0f2a44;
  border-bottom:1px solid rgba(15,42,68,.2)
}

.footer-copy{
  margin:0;
  color:rgba(15,42,68,.75);
  max-width:380px
}

.footer-btn{
  display:inline-block;
  width:fit-content;
  padding:12px 16px;
  border-radius:999px;
  background:#F15A29;
  color:#fff;
  font-weight:900;
  letter-spacing:.02em;
  box-shadow:0 14px 34px rgba(0,0,0,.18);
  border:none;
  cursor:pointer;
}

.footer-btn:hover{
  background:#d94f23
}

.footer-bottom{
  position:relative;
  max-width:1100px;
  margin:0 auto;
  padding:18px 18px 22px;
  border-top:1px solid rgba(15,42,68,.15);
  color:#0f2a44;
  font-size:13px;
  z-index:2;
}

.modal-overlay{
  position:fixed;
  inset:0;
  background:rgba(17,17,17,.55);
  backdrop-filter:blur(6px);
  display:none;
  align-items:center;
  justify-content:center;
  padding:18px;
  z-index:200;
}

.modal-overlay.is-open{
  display:flex
}

.modal{
  width:100%;
  max-width:520px;
  background:#fff;
  border-radius:22px;
  border:1px solid rgba(0,0,0,.10);
  box-shadow:0 24px 70px rgba(0,0,0,.22);
  padding:18px 18px 16px;
}

.modal-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.modal-header h3{
  margin:0;
  font-size:22px;
  letter-spacing:-.01em
}

.modal-close{
  width:42px;
  height:42px;
  border-radius:12px;
  border:1px solid rgba(0,0,0,.10);
  background:rgba(0,0,0,.03);
  font-size:26px;
  line-height:1;
  cursor:pointer;
}

.modal-subtitle{
  margin:10px 0 14px;
  color:rgba(17,17,17,.68)
}

.consent{
  display:flex;align-items:flex-start;gap:10px;margin:10px 0 14px;padding:12px;
  border-radius:14px;border:1px solid rgba(0,0,0,.08);background:rgba(0,0,0,.02);color:rgba(17,17,17,.78);
}

.field{
  display:flex;
  flex-direction:column;
  gap:6px;
  margin-bottom:14px;
}

.field label{
  font-size:.74rem;
  font-weight:800;
  letter-spacing:.10em;
  text-transform:uppercase;
  color:rgba(17,24,39,.70);
}

.field input,.field select,.field textarea{
  width:100%;
  padding:13px 14px;
  border-radius:14px;
  border:1px solid rgba(17,24,39,.10);
  background:#fff;
  color:#111827;
  outline:none;
}

.form-fineprint{
  margin:12px 0 0;
  color:rgba(17,24,39,.58);
  font-size:.82rem;
}

.hp-field{
  position:absolute;
  left:-9999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}

.contact-layout{
  align-items:stretch;
}

.contact-card{
  height:100%;
}

.contact-card--form{
  background:rgba(255,255,255,.96);
  border:1px solid rgba(255,255,255,.7);
  box-shadow:0 22px 48px rgba(0,0,0,.2);
}

.contact-form-header{
  margin-bottom:18px;
}

.contact-form-header .section-kicker{
  display:inline-block;
  margin-bottom:12px;
}

.contact-card--form .contact-title{
  margin:0 0 10px;
  font-size:42px;
  line-height:1.05;
  letter-spacing:-.03em;
}

.contact-card--form .contact-subtitle{
  margin:0;
  max-width:700px;
  font-size:18px;
  color:rgba(15,42,68,.72);
}

.contact-card--form .form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-bottom:6px;
}

.contact-card--form .field{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-bottom:14px;
}

.contact-card--form .field label{
  font-size:12px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(15,42,68,.72);
}

.contact-card--form .field input,
.contact-card--form .field select,
.contact-card--form .field textarea{
  width:100%;
  padding:16px 18px;
  border-radius:18px;
  border:1px solid rgba(15,42,68,.12);
  background:rgba(255,255,255,.92);
  color:#0f2a44;
  outline:none;
  transition:border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact-card--form .field textarea{
  min-height:130px;
  resize:vertical;
}

.contact-card--form .field input::placeholder,
.contact-card--form .field textarea::placeholder{
  color:rgba(15,42,68,.45);
}

.contact-card--form .field input:focus,
.contact-card--form .field select:focus,
.contact-card--form .field textarea:focus{
  border-color:rgba(241,90,41,.75);
  box-shadow:0 0 0 4px rgba(241,90,41,.12);
  background:#fff;
}

.form-submit-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  margin-top:8px;
  flex-wrap:wrap;
}

.contact-card--form .form-btn{
  padding:14px 24px;
  border-radius:16px;
  box-shadow:0 14px 28px rgba(241,90,41,.22);
}

.contact-card--form .form-fineprint{
  margin:0;
  font-size:14px;
  color:rgba(15,42,68,.58);
  max-width:520px;
}

.page-contact{
  background:#0b1f33;
}

/* =========================
   CONTACT PAGE TOP HALF
========================= */

.page-contact .hero{
  position:relative;
}

.page-contact .hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 20% 30%, rgba(255,255,255,.08), transparent 45%);
  pointer-events:none;
}

.page-contact .hero-inner{
  max-width:1100px;
  margin:0 auto;
  padding:56px 20px 34px;
}

.page-contact .hero h1{
  margin:0 0 14px;
  font-size:56px;
  line-height:1.02;
  letter-spacing:-.04em;
  color:#ffffff;
  text-shadow:
    0 4px 24px rgba(0,0,0,.35),
    0 2px 8px rgba(0,0,0,.22);
}

.page-contact .hero .lead{
  max-width:760px;
  font-size:19px;
  line-height:1.65;
  color:rgba(255,255,255,.88);
}

.next-steps{
  background:transparent;
  border:none;
  padding:0 0 8px;
}

.next-steps .container{
  max-width:1100px;
  margin:0 auto;
  padding:0 20px 12px;
}

.next-steps h2{
  margin:0 0 20px;
  font-size:38px;
  line-height:1.05;
  letter-spacing:-.03em;
  color:#ffffff;
  text-shadow:0 4px 24px rgba(0,0,0,.35);
}

.steps-mini{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}

.step-mini{
  background:rgba(255,255,255,.84);
  border:1px solid rgba(255,255,255,.45);
  border-radius:24px;
  padding:24px;
  box-shadow:0 22px 50px rgba(0,0,0,.14);
  backdrop-filter:blur(16px);
}

.step-mini h3{
  margin:0 0 10px;
  font-size:20px;
  line-height:1.3;
  color:#0f172a;
}

.step-mini p{
  margin:0;
  color:rgba(15,42,68,.72);
  line-height:1.65;
}

.contact-layout{
  max-width:1100px;
  margin:0 auto;
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  align-items:start;
  gap:22px;
}

.contact-card{
  background:rgba(255,255,255,.92);
  border:1px solid rgba(255,255,255,.55);
  border-radius:28px;
  padding:30px;
  box-shadow:0 18px 40px rgba(0,0,0,.18);
  backdrop-filter:blur(14px);
}

.contact-title{
  margin:0 0 10px;
  font-size:42px;
  line-height:1.05;
  letter-spacing:-.03em;
  color:#0f172a;
}

.contact-subtitle{
  margin:0 0 22px;
  color:rgba(15,42,68,.72);
  font-size:18px;
  line-height:1.65;
}

.contact-item{
  display:flex;
  align-items:flex-start;
  gap:14px;
  padding:14px 0;
  border-top:1px solid rgba(15,42,68,.08);
}

.contact-item:first-of-type{
  border-top:none;
  padding-top:8px;
}

.contact-icon{
  width:40px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  background:rgba(15,42,68,.05);
  font-size:18px;
  flex-shrink:0;
}

.contact-label{
  font-size:12px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(15,42,68,.58);
  margin-bottom:4px;
}

.contact-value{
  font-size:18px;
  line-height:1.5;
  color:#0f2a44;
}

.contact-value a{
  color:#0f2a44;
  border-bottom:1px solid rgba(15,42,68,.18);
}

.contact-note{
  margin-top:16px;
  padding:14px 16px;
  border-radius:16px;
  background:rgba(15,42,68,.04);
  border:1px solid rgba(15,42,68,.08);
  color:rgba(15,42,68,.74);
}

.reassurance-list{
  list-style:none;
  margin:18px 0 0;
  padding:0;
}

.reassurance-list li{
  padding:12px 0;
  border-top:1px solid rgba(15,42,68,.08);
  font-size:16px;
  color:#0f172a;
}

.reassurance-list li:first-child{
  border-top:none;
}

.contact-image{
margin-top:22px;
border-radius:14px;
overflow:hidden;
}

.contact-image img{
width:100%;
height:280px;
object-fit:cover;
display:block;
border-radius:12px;
}
.contact-image{
position:relative;
}

.contact-image::after{
content:"";
position:absolute;
inset:0;
background:linear-gradient(
to top,
rgba(8,28,45,.45),
rgba(8,28,45,0)
);
}

@media (max-width:1100px){
  .metrics-grid-home{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width:900px){
  .section-header{
    flex-direction:column;
    align-items:flex-start;
  }
  .nav-inner{
    padding:10px 14px
  }
  .brand-logo{
    height:46px
  }
  .links{
    gap:10px
  }
  .navlink{
    padding:8px
  }
  .home-stage{
    padding:0
  }
  .home-popup{
    padding:20px
  }
  .home-popup--hero h1{
    font-size:42px
  }
  .services-track-wrap{
  min-height:700px;
  }
  .grid,.case-grid,.footer-inner{
    grid-template-columns:1fr
  }
  .cta-block{
    grid-template-columns:1fr;
    padding:22px
  }
  .cta-actions{
    justify-self:start;
    max-width:none
  }
  .trust-mini-bar{
    flex-direction:column;
    align-items:flex-start
  }
  .contact-card--form{
  padding:24px;
  }
  .contact-card--form .contact-title{
  font-size:34px;
  }
  .contact-card--form .form-grid{
  grid-template-columns:1fr;
  }
  .form-submit-row{
  flex-direction:column;
  align-items:flex-start;
  }
  .page-contact .hero-inner{
  padding:42px 14px 24px;
  }
  .page-contact .hero h1{
  font-size:40px;
  }
  .page-contact .hero .lead{
  font-size:17px;
  }
  .next-steps .container{
  padding:0 14px 10px;
  }
  .next-steps h2{
  font-size:32px;
  }
  .steps-mini{
  grid-template-columns:1fr;
  }
  .contact-layout{
  grid-template-columns:1fr;
  gap:18px;
  }
  .contact-card{
  padding:22px;
  border-radius:22px;
  }
  .contact-title{
  font-size:34px;
  }
}
@media (max-width:640px){
  .metrics-grid-home{
    grid-template-columns:1fr
  }
  .home-popup--hero h1{
    font-size:34px
  }
  .hero-actions{
    flex-direction:column;
    align-items:stretch
  }
}
