/* =========================================================
   DEPENDABLE SLIDING DOORS
   Corporate-clean · navy + white · bold condensed display
   ========================================================= */

:root{
  --navy-900:#0d2240;
  --navy-800:#143057;
  --navy-700:#1d3f6d;
  --navy-600:#2a5290;
  --ink:#0a1628;
  --ink-soft:#3c4a60;
  --ink-mute:#6a7689;
  --line:#e3e7ee;
  --line-soft:#eef1f6;
  --cream:#f7f7f9;
  --accent:#d9b375;
  --accent-deep:#b9925e;
  --white:#ffffff;
  --shadow-sm: 0 2px 8px rgba(11,31,58,.06);
  --shadow-md: 0 12px 32px -8px rgba(11,31,58,.18);
  --shadow-lg: 0 30px 70px -20px rgba(11,31,58,.35);
  --r-sm: 6px;
  --r: 14px;
  --r-lg: 22px;
  --container: 1280px;
}

*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Inter', system-ui, sans-serif;
  font-size:16px;
  line-height:1.6;
  color:var(--ink);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img{max-width:100%; display:block}
a{color:inherit; text-decoration:none}
button{font:inherit; cursor:pointer; border:none; background:none}

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

/* =========================================================
   BUTTONS
   ========================================================= */
.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding:14px 24px;
  border-radius:4px;
  font-weight:600;
  font-size:14px;
  letter-spacing:.04em;
  text-transform:uppercase;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space:nowrap;
}
.btn--lg{padding:17px 30px; font-size:14px}
.btn--block{width:100%; justify-content:center; padding:16px 24px}
.btn--primary{
  background:var(--navy-800);
  color:var(--white);
  box-shadow:0 8px 20px -6px rgba(11,31,58,.45);
}
.btn--primary:hover{background:var(--navy-900); transform:translateY(-1px)}
.btn--accent{
  background:var(--accent);
  color:var(--navy-900);
  box-shadow:0 8px 20px -6px rgba(217,179,117,.5);
}
.btn--accent:hover{background:var(--accent-deep); color:var(--white); transform:translateY(-1px)}
.btn--ghost{
  background:transparent;
  color:var(--ink);
  border:1.5px solid var(--ink);
}
.btn--ghost:hover{background:var(--ink); color:var(--white)}
.btn--outline-light{
  background:transparent;
  color:var(--white);
  border:1.5px solid rgba(255,255,255,.5);
}
.btn--outline-light:hover{background:var(--white); color:var(--navy-900); border-color:var(--white)}

/* =========================================================
   TOPBAR
   ========================================================= */
.topbar{
  background:var(--navy-900);
  color:rgba(255,255,255,.78);
  font-size:13px;
  letter-spacing:.01em;
}
.topbar__inner{
  display:flex; justify-content:space-between; align-items:center;
  height:40px;
}
.topbar__left, .topbar__right{display:flex; align-items:center; gap:22px}
.topbar__item{display:inline-flex; align-items:center; gap:8px}
.topbar__item svg{opacity:.75}
.topbar__divider{opacity:.4}

/* =========================================================
   NAV
   ========================================================= */
.nav{
  background:var(--white);
  border-bottom:1px solid var(--line-soft);
  position:sticky; top:0; z-index:50;
}
.nav__inner{
  display:flex; align-items:center; justify-content:space-between;
  height:96px; gap:24px;
}
.nav__logo{display:flex; align-items:center}
.nav__logo img{height:72px; width:auto; display:block}
.nav__links{display:flex; gap:34px; align-items:center}
.nav__links a{
  font-size:13px; font-weight:600; color:var(--ink-soft);
  letter-spacing:.06em; transition:color .2s;
  text-transform:uppercase;
  position:relative;
}
.nav__links a:hover{color:var(--navy-800)}
.nav__links a::after{
  content:''; position:absolute; left:0; right:0; bottom:-6px;
  height:2px; background:var(--accent); transform:scaleX(0); transform-origin:left;
  transition:transform .25s ease;
}
.nav__links a:hover::after{transform:scaleX(1)}

/* Phone call-out in nav */
.nav__phone{
  display:flex; align-items:center; gap:14px;
  padding:10px 18px;
  border-left:3px solid var(--accent);
  transition:transform .2s ease;
}
.nav__phone:hover{transform:translateY(-1px)}
.nav__phone-icon{
  width:42px; height:42px;
  border-radius:50%;
  background:var(--navy-900);
  color:var(--white);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.nav__phone-text{display:flex; flex-direction:column; line-height:1.1}
.nav__phone-lbl{
  font-size:11px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--ink-mute);
  font-weight:600;
  margin-bottom:3px;
}
.nav__phone-num{
  font-family:'Barlow Condensed', sans-serif;
  font-size:22px;
  font-weight:700;
  color:var(--navy-900);
  letter-spacing:.01em;
}

.nav__menu{display:none; flex-direction:column; gap:5px; padding:8px}
.nav__menu span{width:22px; height:2px; background:var(--ink); border-radius:2px}

/* =========================================================
   HERO — clean split layout
   ========================================================= */
.hero{
  position:relative;
  background:var(--navy-900);
  color:var(--white);
  overflow:hidden;
}

/* Mobile-only quick-call bar (hidden on desktop) */
.hero__mobile-call{display:none}

.hero__inner{
  display:grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  align-items:stretch;
}

/* LEFT — navy column with headline & features */
.hero__left{
  display:flex;
  align-items:center;
  padding:88px 64px 88px max(28px, calc((100vw - var(--container))/2 + 32px));
  background:
    radial-gradient(ellipse 600px 400px at 0% 30%, rgba(42,82,144,.4), transparent 70%),
    linear-gradient(180deg, var(--navy-800) 0%, var(--navy-900) 100%);
  position:relative;
  min-width:0;
}
.hero__left-content{max-width:540px; width:100%}

/* Eyebrow above headline */
.hero__eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--accent);
  font-weight:600;
  margin-bottom:24px;
}
.hero__eyebrow::before{
  content:'';
  width:32px;
  height:1px;
  background:var(--accent);
  display:inline-block;
}

.hero__title{
  font-family:'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-weight:700;
  font-size: clamp(40px, 4.6vw, 64px);
  line-height:.98;
  letter-spacing:-.01em;
  text-transform:uppercase;
  color:var(--white);
  margin:0 0 22px;
}

.hero__lede{
  font-size:16.5px;
  line-height:1.65;
  color:rgba(255,255,255,.78);
  margin:0 0 40px;
  max-width:440px;
}

.hero__features{
  list-style:none;
  padding:0;
  margin:0 0 40px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:24px 28px;
}
.hero__features li{
  display:flex;
  align-items:flex-start;
  gap:14px;
}
.hero__feature-icon{
  flex-shrink:0;
  width:40px; height:40px;
  border-radius:8px;
  background:rgba(217,179,117,.12);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:var(--accent);
  border:1px solid rgba(217,179,117,.25);
}
.hero__feature-icon svg{width:18px; height:18px}
.hero__features h3{
  font-family:'Barlow Condensed', sans-serif;
  font-weight:700;
  font-size:15px;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin:6px 0 4px;
  color:var(--white);
}
.hero__features p{
  margin:0;
  font-size:13.5px;
  line-height:1.5;
  color:rgba(255,255,255,.65);
}

.hero__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
}

/* RIGHT — photograph */
.hero__right{
  position:relative;
  overflow:hidden;
  background:var(--navy-900);
  min-height:640px;
}
.hero__image{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}
/* Subtle gradient on left edge of photo for smooth transition from navy */
.hero__right::before{
  content:'';
  position:absolute;
  top:0; bottom:0; left:0; width:140px;
  background:linear-gradient(90deg, var(--navy-900) 0%, transparent 100%);
  z-index:2;
  pointer-events:none;
}

/* =========================================================
   TRUST STRIP — full-width navy band under hero
   ========================================================= */
.trust-strip{
  background:var(--navy-900);
  border-top:1px solid rgba(255,255,255,.08);
  color:var(--white);
}
.trust-strip__inner{
  display:grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items:center;
  padding:28px 0;
  gap:28px;
}
.trust-strip__item{
  display:flex;
  align-items:center;
  gap:16px;
  padding:0 8px;
}
.trust-strip__icon{
  flex-shrink:0;
  width:42px; height:42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:var(--white);
}
.trust-strip__icon svg{width:30px; height:30px}
.trust-strip__item h4{
  font-family:'Barlow Condensed', sans-serif;
  font-weight:700;
  font-size:16px;
  letter-spacing:.06em;
  text-transform:uppercase;
  margin:0 0 3px;
  color:var(--white);
}
.trust-strip__item p{
  margin:0;
  font-size:13px;
  line-height:1.45;
  color:rgba(255,255,255,.62);
}
.trust-strip__divider{
  width:1px;
  height:40px;
  background:rgba(255,255,255,.15);
}

/* =========================================================
   SECTION HEAD
   ========================================================= */
.section-head{
  max-width:760px;
  margin:0 0 64px;
}
.section-head--center{margin-left:auto; margin-right:auto; text-align:center}
.section-head--inline{margin-bottom:32px}
.section-head__eyebrow{
  font-size:12px; letter-spacing:.18em; text-transform:uppercase;
  color:var(--accent-deep); font-weight:600;
  margin-bottom:18px;
}
.section-head__eyebrow--light{color:var(--accent)}
.section-head__title{
  font-family:'Barlow Condensed', sans-serif;
  font-weight:700;
  font-size:clamp(34px, 4.4vw, 56px);
  line-height:1.05;
  letter-spacing:-.005em;
  text-transform:uppercase;
  color:var(--navy-900);
  margin:0 0 20px;
}
.section-head__title em{font-style:normal; color:var(--accent-deep)}
.section-head__lede{
  font-size:17px;
  color:var(--ink-soft);
  line-height:1.65;
  margin:0;
}

/* =========================================================
   SERVICES
   ========================================================= */
.services{padding:120px 0; background:var(--white)}
.services__grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:0;
  border-top:1px solid var(--line);
  border-left:1px solid var(--line);
}
.service{
  padding:48px 36px 44px;
  border-right:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:var(--white);
  position:relative;
  transition:background .3s ease;
}
.service:hover{background:var(--cream)}
.service__num{
  position:absolute;
  top:24px; right:24px;
  font-family:'Barlow Condensed', sans-serif;
  font-size:14px;
  font-weight:600;
  color:var(--accent-deep);
  letter-spacing:.08em;
}
.service__icon{
  width:56px; height:56px;
  border-radius:8px;
  background:var(--cream);
  display:flex; align-items:center; justify-content:center;
  color:var(--navy-800);
  margin-bottom:28px;
  transition:background .3s, color .3s;
}
.service:hover .service__icon{background:var(--navy-800); color:var(--accent)}
.service__icon svg{width:28px; height:28px}
.service h3{
  font-family:'Barlow Condensed', sans-serif;
  font-weight:700;
  font-size:22px;
  letter-spacing:.04em;
  text-transform:uppercase;
  color:var(--navy-900);
  margin:0 0 12px;
}
.service p{
  color:var(--ink-soft);
  font-size:15px;
  line-height:1.6;
  margin:0;
}

/* =========================================================
   PROCESS
   ========================================================= */
.process{
  padding:120px 0;
  background:var(--navy-900);
  color:var(--white);
  position:relative;
  overflow:hidden;
}
.process::before{
  content:'';
  position:absolute;
  top:0; left:0; right:0;
  height:1px;
  background:linear-gradient(90deg, transparent, var(--accent), transparent);
}
.section-head--light .section-head__title{color:var(--white)}
.section-head--light .section-head__lede{color:rgba(255,255,255,.7)}
.section-head--light .section-head__title em{color:var(--accent)}

.process__grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:0;
  position:relative;
}
.process__grid::before{
  content:'';
  position:absolute;
  top:32px;
  left:5%; right:5%;
  height:1px;
  background:repeating-linear-gradient(90deg, rgba(255,255,255,.2) 0, rgba(255,255,255,.2) 6px, transparent 6px, transparent 12px);
}
.process__step{
  padding:0 24px;
  position:relative;
  z-index:2;
}
.process__step-num{
  width:64px; height:64px;
  border-radius:50%;
  background:var(--navy-700);
  border:2px solid var(--accent);
  display:flex; align-items:center; justify-content:center;
  font-family:'Barlow Condensed', sans-serif;
  font-size:22px;
  font-weight:700;
  color:var(--accent);
  margin:0 auto 28px;
}
.process__step h3{
  font-family:'Barlow Condensed', sans-serif;
  font-weight:700;
  font-size:20px;
  letter-spacing:.05em;
  text-transform:uppercase;
  text-align:center;
  margin:0 0 12px;
}
.process__step p{
  color:rgba(255,255,255,.7);
  font-size:14.5px;
  line-height:1.6;
  text-align:center;
  margin:0;
}

/* =========================================================
   ABOUT
   ========================================================= */
.about{padding:120px 0; background:var(--cream)}
.about__inner{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:80px;
  align-items:center;
}
.about__media{position:relative}
.about__media-wrap{
  border-radius:var(--r);
  overflow:hidden;
  box-shadow:var(--shadow-lg);
  aspect-ratio: 4/3.4;
  background:var(--cream);
}
.about__media-wrap img{width:100%; height:100%; object-fit:cover}
.about__stat{
  position:absolute;
  bottom:-30px; right:-30px;
  background:var(--navy-900);
  color:var(--white);
  padding:28px 32px;
  border-radius:var(--r);
  box-shadow:var(--shadow-lg);
  max-width:240px;
  border-left:3px solid var(--accent);
}
.about__stat-num{
  font-family:'Barlow Condensed', sans-serif;
  font-size:54px;
  font-weight:700;
  line-height:1;
  color:var(--accent);
  letter-spacing:-.01em;
}
.about__stat-lbl{
  font-size:13px;
  color:rgba(255,255,255,.8);
  line-height:1.5;
  margin-top:10px;
}
.about__content p{
  font-size:16px;
  color:var(--ink-soft);
  line-height:1.7;
  margin:0 0 18px;
}
.about__list{
  list-style:none;
  padding:0;
  margin:28px 0 0;
}
.about__list li{
  display:flex; align-items:center; gap:14px;
  padding:14px 0;
  border-bottom:1px solid rgba(11,31,58,.1);
  font-size:15px;
  color:var(--ink);
  font-weight:500;
}
.about__list li:last-child{border-bottom:none}
.about__list svg{color:var(--accent-deep); flex-shrink:0}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials{padding:120px 0; background:var(--white)}
.testimonials__grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}
.testimonial{
  background:var(--cream);
  padding:36px 32px;
  border-radius:var(--r);
  margin:0;
  border:1px solid rgba(11,31,58,.06);
  display:flex; flex-direction:column;
}
.testimonial--featured{
  background:var(--navy-900);
  color:var(--white);
  border-color:var(--navy-900);
  transform:translateY(-12px);
  box-shadow:var(--shadow-lg);
}
.testimonial__stars{
  color:var(--accent-deep);
  font-size:18px;
  letter-spacing:3px;
  margin-bottom:20px;
}
.testimonial--featured .testimonial__stars{color:var(--accent)}
.testimonial blockquote{
  font-size:17px;
  line-height:1.6;
  margin:0 0 24px;
  color:var(--navy-900);
  flex:1;
  font-weight:400;
}
.testimonial--featured blockquote{color:var(--white)}
.testimonial figcaption{
  display:flex; flex-direction:column;
  padding-top:20px;
  border-top:1px solid rgba(11,31,58,.12);
}
.testimonial--featured figcaption{border-top-color:rgba(255,255,255,.15)}
.testimonial figcaption strong{
  font-weight:700;
  font-size:14px;
  color:var(--navy-900);
  letter-spacing:.02em;
}
.testimonial--featured figcaption strong{color:var(--white)}
.testimonial figcaption span{
  font-size:13px;
  color:var(--ink-mute);
  margin-top:2px;
}
.testimonial--featured figcaption span{color:rgba(255,255,255,.6)}

/* =========================================================
   CTA / CONTACT
   ========================================================= */
.cta{
  padding:120px 0;
  background:linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 50%, var(--navy-900) 100%);
  color:var(--white);
  position:relative;
  overflow:hidden;
}
.cta::before{
  content:'';
  position:absolute;
  inset:0;
  background-image:
    radial-gradient(circle at 20% 100%, rgba(217,179,117,.15), transparent 50%),
    radial-gradient(circle at 80% 0%, rgba(217,179,117,.1), transparent 50%);
}
.cta__inner{
  position:relative; z-index:2;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:80px;
  align-items:start;
}
.cta__left h2{
  font-family:'Barlow Condensed', sans-serif;
  font-weight:700;
  font-size:clamp(34px, 4.2vw, 52px);
  line-height:1.05;
  letter-spacing:-.005em;
  text-transform:uppercase;
  margin:0 0 20px;
}
.cta__left > p{
  font-size:17px;
  color:rgba(255,255,255,.75);
  line-height:1.65;
  margin:0 0 40px;
  max-width:480px;
}
.cta__info{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
}
.cta__info-lbl{
  font-size:12px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--accent);
  font-weight:600;
  margin-bottom:6px;
}
.cta__info-val{
  font-family:'Barlow Condensed', sans-serif;
  font-size:22px;
  font-weight:600;
  color:var(--white);
  letter-spacing:.01em;
}
a.cta__info-val{transition:color .2s}
a.cta__info-val:hover{color:var(--accent)}

/* Form */
.cta__form{
  background:var(--white);
  color:var(--ink);
  padding:40px;
  border-radius:var(--r);
  box-shadow:var(--shadow-lg);
}
.cta__form h3{
  font-family:'Barlow Condensed', sans-serif;
  font-weight:700;
  font-size:26px;
  letter-spacing:.03em;
  text-transform:uppercase;
  margin:0 0 24px;
  color:var(--navy-900);
}
.field{margin-bottom:18px}
.field-row{display:grid; grid-template-columns:1fr 1fr; gap:14px}
.field label{
  display:block;
  font-size:12px;
  font-weight:600;
  color:var(--ink-soft);
  margin-bottom:6px;
  letter-spacing:.06em;
  text-transform:uppercase;
}
.field input,
.field select,
.field textarea{
  width:100%;
  padding:13px 14px;
  border:1.5px solid var(--line);
  border-radius:6px;
  font:inherit;
  font-size:15px;
  color:var(--ink);
  background:var(--white);
  transition:border .2s, box-shadow .2s;
  font-family:inherit;
}
.field input:focus,
.field select:focus,
.field textarea:focus{
  outline:none;
  border-color:var(--navy-800);
  box-shadow:0 0 0 3px rgba(11,31,58,.08);
}
.field textarea{resize:vertical; min-height:80px}
.cta__form-success{
  display:none;
  margin-top:16px;
  padding:14px 16px;
  background:#e8f4ec;
  color:#1d5b3a;
  border-radius:8px;
  font-size:14px;
  font-weight:500;
}
.cta__form-success.is-visible{display:block}

/* =========================================================
   FOOTER
   ========================================================= */
.footer{
  background:var(--ink);
  color:rgba(255,255,255,.65);
  padding:72px 0 24px;
}
.footer__inner{
  display:grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap:48px;
  padding-bottom:48px;
  border-bottom:1px solid rgba(255,255,255,.1);
}
.footer__brand p{
  font-size:14px;
  line-height:1.6;
  max-width:340px;
  margin:0;
}
.footer__logo{
  height:42px;
  width:auto;
  margin-bottom:20px;
  filter:brightness(0) invert(1);
  opacity:.92;
}
.footer__col h4{
  font-family:'Barlow Condensed', sans-serif;
  font-weight:700;
  font-size:16px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--white);
  margin:0 0 18px;
}
.footer__col a{
  display:block;
  font-size:14px;
  color:rgba(255,255,255,.6);
  padding:5px 0;
  transition:color .2s;
}
.footer__col a:hover{color:var(--accent)}
.footer__small{
  font-size:12px;
  margin-top:18px;
  line-height:1.5;
  color:rgba(255,255,255,.45);
}
.footer__bottom{
  display:flex; justify-content:space-between;
  padding-top:24px;
  font-size:13px;
  color:rgba(255,255,255,.45);
}

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
.reveal{
  opacity:0;
  transform:translateY(20px);
  transition:opacity .8s ease, transform .8s ease;
}
.reveal.is-visible{opacity:1; transform:translateY(0)}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px){
  .nav__links{
    display:none;
    position:absolute; top:96px; left:0; right:0;
    flex-direction:column; gap:0;
    background:var(--white);
    border-bottom:1px solid var(--line);
    padding:12px 0;
    z-index:60;
    box-shadow:0 10px 30px -10px rgba(0,0,0,.15);
  }
  .nav__links.is-open{display:flex}
  .nav__links a{padding:14px 28px; width:100%}
  .nav__menu{display:flex}

  /* HERO — stack vertically (mobile call bar=1, photo=2, text=3) */
  .hero__inner{grid-template-columns:1fr}
  .hero__left{
    padding:60px 28px;
    order:3;
  }
  .hero__right{
    order:2;
    min-height:0;
    height:50vw;
    max-height:480px;
    min-height:280px;
  }
  .hero__right::before{display:none}

  /* Trust strip — 2 columns */
  .trust-strip__inner{
    grid-template-columns:1fr 1fr;
    gap:24px 32px;
    padding:32px 0;
  }
  .trust-strip__divider{display:none}

  .services__grid{grid-template-columns:repeat(2, 1fr)}
  .process__grid{grid-template-columns:repeat(2, 1fr); gap:48px 0}
  .process__grid::before{display:none}
  .about__inner{grid-template-columns:1fr; gap:60px}
  .about__stat{right:20px; bottom:-20px}
  .testimonials__grid{grid-template-columns:1fr; max-width:560px; margin:0 auto}
  .testimonial--featured{transform:none}
  .cta__inner{grid-template-columns:1fr; gap:48px}
  .footer__inner{grid-template-columns:1fr 1fr; gap:40px}
}

@media (max-width: 768px){
  .container{padding:0 20px}

  /* MOBILE QUICK-CALL BAR — visible immediately on load, sits at top of hero */
  .hero{display:flex; flex-direction:column}
  .hero__inner{order:2}
  .trust-strip{order:3}
  .hero__mobile-call{
    display:flex;
    align-items:center;
    gap:14px;
    padding:14px 18px;
    background:linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
    color:var(--navy-900);
    text-decoration:none;
    position:relative;
    z-index:5;
    order:1;
    box-shadow:0 4px 14px -4px rgba(0,0,0,.3);
  }
  .hero__mobile-call-icon{
    flex-shrink:0;
    width:46px; height:46px;
    border-radius:50%;
    background:var(--navy-900);
    color:var(--accent);
    display:inline-flex;
    align-items:center;
    justify-content:center;
  }
  .hero__mobile-call-text{
    flex:1;
    display:flex;
    flex-direction:column;
    line-height:1.15;
    min-width:0;
  }
  .hero__mobile-call-lbl{
    font-size:11px;
    letter-spacing:.1em;
    text-transform:uppercase;
    font-weight:700;
    opacity:.85;
    margin-bottom:2px;
  }
  .hero__mobile-call-num{
    font-family:'Barlow Condensed', sans-serif;
    font-size:26px;
    font-weight:700;
    letter-spacing:.01em;
  }
  .hero__mobile-call-arrow{
    font-size:24px;
    font-weight:600;
    opacity:.7;
    flex-shrink:0;
  }

  /* Topbar — compress */
  .topbar{font-size:12px}
  .topbar__inner{height:36px}
  .topbar__left, .topbar__right{gap:14px}
  .topbar__item--hide-sm{display:none}
  .topbar__divider{display:none}

  /* Nav */
  .nav__inner{height:76px}
  .nav__logo img{height:54px}
  .nav__links{top:76px}
  .nav__phone{display:none}

  /* Hero text section on mobile */
  .hero__left{padding:44px 22px 52px}
  .hero__right{height:60vw; min-height:240px; max-height:360px}
  .hero__eyebrow{font-size:11px; margin-bottom:16px}
  .hero__title{font-size:clamp(34px, 8.5vw, 44px); margin-bottom:18px}
  .hero__title br{display:none}
  .hero__lede{font-size:15.5px; margin-bottom:30px}
  .hero__features{
    grid-template-columns:1fr;
    gap:18px;
    margin-bottom:30px;
  }
  .hero__features li{gap:14px}
  .hero__features p{font-size:13.5px}
  .hero__actions{flex-direction:column; align-items:stretch; gap:10px}
  .hero__actions .btn{justify-content:center; padding:15px 22px}

  /* Trust strip — single column on mobile */
  .trust-strip__inner{grid-template-columns:1fr; gap:20px; padding:28px 0}
  .trust-strip__item{padding:0 4px}
  .trust-strip__icon{width:38px; height:38px}
  .trust-strip__icon svg{width:26px; height:26px}

  /* Sections */
  .services, .process, .about, .testimonials, .cta{padding:72px 0}
  .services__grid{grid-template-columns:1fr}
  .process__grid{grid-template-columns:1fr; gap:40px}
  .section-head{margin-bottom:44px}
  .section-head__title{font-size:clamp(28px, 7vw, 38px)}

  /* About */
  .about__media-wrap{aspect-ratio: 4/3}
  .about__stat{
    position:static;
    margin-top:20px;
    max-width:100%;
    display:flex; align-items:center; gap:20px;
  }
  .about__stat-num{font-size:42px}
  .about__stat-lbl{margin-top:0}

  /* Form */
  .cta__form{padding:28px 22px}
  .cta__info{grid-template-columns:1fr; gap:20px}
  .field-row{grid-template-columns:1fr}

  /* Footer */
  .footer{padding:56px 0 24px}
  .footer__inner{grid-template-columns:1fr; gap:32px; padding-bottom:32px}
  .footer__bottom{flex-direction:column; gap:8px; text-align:center}
}

@media (max-width: 400px){
  .hero__title{font-size:32px}
  .hero__mobile-call-num{font-size:22px}
}
