:root{
  --navy: #0B2447;
  --navy-deep: #071A34;
  --blue: #1E6FE0;
  --blue-light: #4FA3F7;
  --ink: #17233B;
  --grey: #5B6577;
  --line: #E5E9F0;
  --bg-soft: #F5F7FA;
  --white: #FFFFFF;
  --radius: 14px;
  --shadow: 0 20px 50px rgba(11,36,71,0.12);
  --shadow-sm: 0 8px 24px rgba(11,36,71,0.08);
}

*{box-sizing:border-box; margin:0; padding:0;}

html{scroll-behavior:smooth;}

body{
  font-family:'Inter', sans-serif;
  color:var(--ink);
  background:var(--white);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}

h1,h2,h3,h4{
  font-family:'Poppins', sans-serif;
  color:var(--navy);
  line-height:1.15;
}

a{text-decoration:none; color:inherit;}
ul{list-style:none;}
img{max-width:100%; display:block;}

.container{
  max-width:1240px;
  margin:0 auto;
  padding:0 32px;
}

:focus-visible{
  outline:3px solid var(--blue-light);
  outline-offset:2px;
}

/* ===== HEADER ===== */
header{
  position:sticky;
  top:0;
  z-index:100;
  background:var(--white);
  border-bottom:1px solid var(--line);
}
.header-inner{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 32px;
  max-width:1240px;
  margin:0 auto;
}
.logo{
  display:flex;
  align-items:center;
  gap:12px;
  flex-shrink:0;
  min-width:0;
}
.logo-mark{
  width:46px;
  height:46px;
  flex-shrink:0;
  object-fit:contain;
}
.logo-text{
  display:flex;
  flex-direction:column;
  line-height:1.1;
  min-width:0;
}
.logo-text .name{
  font-family:'Poppins', sans-serif;
  font-weight:700;
  font-size:19px;
  letter-spacing:0.2px;
  white-space:nowrap;
}
.logo-text .name span{color:var(--blue);}
.logo-text .tagline{
  font-size:9.5px;
  letter-spacing:2px;
  color:var(--grey);
  font-weight:600;
  margin-top:3px;
  white-space:nowrap;
}

/* Mobile menu toggle (hidden on desktop) */
.nav-toggle{
  display:none;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:5px;
  width:40px;
  height:40px;
  flex-shrink:0;
  background:transparent;
  border:none;
  padding:0;
  margin-left:12px;
  cursor:pointer;
}
.nav-toggle span{
  display:block;
  width:22px;
  height:2.5px;
  border-radius:2px;
  background:var(--navy);
  transition:transform .25s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(7.5px) rotate(45deg);}
.nav-toggle[aria-expanded="true"] span:nth-child(2){opacity:0;}
.nav-toggle[aria-expanded="true"] span:nth-child(3){transform:translateY(-7.5px) rotate(-45deg);}

nav ul{
  display:flex;
  gap:38px;
}
nav a{
  font-size:14.5px;
  font-weight:600;
  color:var(--ink);
  letter-spacing:0.3px;
  position:relative;
  padding-bottom:6px;
}
nav a.active{color:var(--blue);}
nav a.active::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height:2.5px;
  background:var(--blue);
  border-radius:2px;
}
nav a:hover{color:var(--blue);}

.header-right{display:flex; align-items:center; gap:36px;}

.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:600;
  font-size:14px;
  padding:13px 24px;
  border-radius:8px;
  transition:all .2s ease;
  white-space:nowrap;
  border:2px solid transparent;
}
.btn svg{width:14px; height:14px; transition:transform .2s ease;}
.btn:hover svg{transform:translateX(3px);}

.btn-navy{background:var(--navy); color:var(--white);}
.btn-navy:hover{background:var(--navy-deep);}

.btn-blue{background:var(--blue); color:var(--white);}
.btn-blue:hover{background:#1859B3;}

.btn-outline-light{background:transparent; color:var(--white); border-color:rgba(255,255,255,0.6);}
.btn-outline-light:hover{background:rgba(255,255,255,0.12); border-color:var(--white);}

.btn-outline-navy{background:transparent; color:var(--navy); border-color:var(--navy);}
.btn-outline-navy:hover{background:var(--navy); color:var(--white);}

/* ===== HERO (home) ===== */
.hero{
  position:relative;
  min-height:560px;
  overflow:hidden;
  background:#f4f8fc;
}
.hero-bg-image{
  position:absolute;
  inset:0;
  z-index:0;
  background-image:url('hero-background.png');
  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
}
.hero-inner{
  position:relative;
  z-index:1;
  max-width:1240px;
  min-height:560px;
  margin:0 auto;
  padding:62px 48px 126px;
  display:flex;
  align-items:center;
}
.hero-copy{
  width:min(43%, 525px);
  transform:translateX(-10px);
}
.hero h1{
  font-size:52px;
  font-weight:700;
  color:var(--navy);
  margin-bottom:28px;
  letter-spacing:-1.2px;
}
.hero h1 .accent{
  display:block;
  color:#155CC2;
}
.hero p{
  color:var(--navy);
  font-size:17px;
  line-height:1.75;
  max-width:515px;
  margin-bottom:34px;
}
.hero-ctas{display:flex; gap:16px; flex-wrap:wrap;}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero{
  position:relative;
  background:linear-gradient(115deg, var(--navy-deep) 0%, var(--navy) 55%, #123465 100%);
  overflow:hidden;
  padding:70px 0 100px;
}
.page-hero-inner{
  position:relative;
  z-index:2;
  text-align:left;
}
.page-hero .eyebrow{color:var(--blue-light);}
.page-hero h1{
  font-size:42px;
  color:var(--white);
  font-weight:700;
  margin-bottom:16px;
}
.page-hero p{
  color:rgba(255,255,255,0.78);
  font-size:16px;
  max-width:600px;
}
.page-hero-decor{
  position:absolute;
  inset:0;
  z-index:1;
  opacity:0.5;
  background:
    radial-gradient(480px 320px at 88% 20%, rgba(79,163,247,0.28), transparent 70%),
    radial-gradient(420px 300px at 100% 100%, rgba(30,111,224,0.24), transparent 70%);
}
.breadcrumb{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  font-weight:600;
  color:rgba(255,255,255,0.55);
  letter-spacing:0.3px;
  margin-bottom:18px;
}
.breadcrumb a{color:rgba(255,255,255,0.85);}
.breadcrumb a:hover{color:var(--blue-light);}

/* ===== FEATURE STRIP (overlapping) ===== */
.feature-strip-wrap{
  max-width:1240px;
  margin:0 auto;
  padding:0 32px;
  position:relative;
  margin-top:-76px;
  z-index:10;
}
.feature-strip{
  background:linear-gradient(105deg, #0a376e 0%, #0759a9 100%);
  border-radius:12px;
  box-shadow:0 14px 32px rgba(11,36,71,.18);
  padding:30px 18px;
  display:grid;
  grid-template-columns:repeat(5,1fr);
}
.feature-item{
  text-align:left;
  padding:0 24px;
  border-right:1px solid rgba(255,255,255,.28);
  display:grid;
  grid-template-columns:52px minmax(0,1fr);
  column-gap:14px;
  align-content:center;
}
.feature-item:last-child{border-right:none;}
.feature-icon{
  width:52px; height:52px;
  margin:0;
  grid-column:1;
  grid-row:1 / span 2;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
}
.feature-icon svg{width:34px; height:34px;}
.feature-item h3{
  grid-column:2;
  font-size:14px;
  font-weight:600;
  color:#fff;
  margin-bottom:5px;
}
.feature-item p{
  grid-column:2;
  font-size:12px;
  color:rgba(255,255,255,.84);
  line-height:1.55;
}

/* ===== WHO WE ARE ===== */
.who-we-are{
  padding:130px 0 90px;
}
.who-we-are.no-overlap{padding-top:110px;}
.who-grid{
  display:grid;
  grid-template-columns:0.95fr 1.05fr;
  gap:70px;
  align-items:center;
}
.section-eyebrow{
  color:var(--blue);
  font-size:13px;
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;
  margin-bottom:10px;
  position:relative;
  padding-left:22px;
}
.section-eyebrow::before{
  content:"";
  position:absolute;
  left:0; top:50%;
  transform:translateY(-50%);
  width:14px; height:2px;
  background:var(--blue);
}
.who-grid h2{
  font-size:36px;
  font-weight:700;
  margin-bottom:22px;
}
.who-grid h2 .accent{color:var(--blue);}
.who-grid p{
  color:var(--grey);
  font-size:15.5px;
  margin-bottom:16px;
  max-width:480px;
}
.who-grid .btn{margin-top:14px;}

.who-image-wrap{
  position:relative;
}
.who-image{
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow-sm);
  aspect-ratio:4/3.3;
}
.who-image img{width:100%; height:100%; object-fit:cover;}

.quote-card{
  position:absolute;
  right:-24px;
  bottom:-46px;
  width:300px;
  background:var(--white);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:30px 30px 26px;
}
.quote-mark{
  font-family:'Poppins', sans-serif;
  font-size:42px;
  font-weight:800;
  color:var(--blue);
  line-height:1;
  margin-bottom:10px;
}
.quote-card p{
  font-size:16px;
  font-weight:600;
  color:var(--navy);
  line-height:1.5;
  margin-bottom:14px;
}
.quote-line{
  width:34px; height:3px;
  background:var(--blue);
  border-radius:2px;
}

/* ===== VISION / MISSION ===== */
.vm-section{padding:20px 0 90px;}
.vm-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
}
.vm-card{
  background:var(--bg-soft);
  border-radius:var(--radius);
  padding:38px 36px;
  border-top:4px solid var(--blue);
}
.vm-card .vm-icon{
  width:48px; height:48px;
  border-radius:50%;
  background:var(--blue);
  color:var(--white);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:20px;
}
.vm-card .vm-icon svg{width:24px; height:24px;}
.vm-card h3{font-size:20px; margin-bottom:12px;}
.vm-card p{color:var(--grey); font-size:15px;}

/* ===== SERVICES ===== */
.services{
  padding:150px 0 90px;
  background:var(--white);
}
.services.no-overlap{padding-top:90px;}
.services-header{
  text-align:center;
  margin-bottom:54px;
}
.services-header h2{
  font-size:30px;
  font-weight:700;
  display:inline-flex;
  align-items:center;
  gap:14px;
}
.services-header h2::before{
  content:"";
  width:28px; height:3px;
  background:var(--blue);
  display:inline-block;
  border-radius:2px;
}
.services-header p{
  color:var(--grey);
  max-width:560px;
  margin:14px auto 0;
  font-size:15.5px;
}
.services-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:20px;
}
.service-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:32px 22px;
  transition:box-shadow .25s ease, transform .25s ease;
}
.service-card:hover{
  box-shadow:var(--shadow-sm);
  transform:translateY(-4px);
}
.service-icon{
  width:56px; height:56px;
  border-radius:50%;
  background:var(--blue);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:20px;
  color:var(--white);
}
.service-icon svg{width:26px; height:26px;}
.service-card h3{
  font-size:16.5px;
  font-weight:600;
  margin-bottom:10px;
}
.service-card p{
  font-size:13.5px;
  color:var(--grey);
  margin-bottom:20px;
  min-height:78px;
}
.learn-more{
  font-size:13px;
  font-weight:700;
  color:var(--blue);
  display:inline-flex;
  align-items:center;
  gap:6px;
  letter-spacing:0.3px;
}
.learn-more svg{width:12px; height:12px; transition:transform .2s ease;}
.service-card:hover .learn-more svg{transform:translateX(3px);}

/* ===== SERVICES DETAIL (services.html) ===== */
.service-detail{
  padding:70px 0;
  border-bottom:1px solid var(--line);
}
.service-detail:last-of-type{border-bottom:none;}
.service-detail-grid{
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:60px;
  align-items:flex-start;
}
.service-detail-icon{
  width:64px; height:64px;
  border-radius:16px;
  background:var(--blue);
  color:var(--white);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:22px;
}
.service-detail-icon svg{width:30px; height:30px;}
.service-detail-copy h2{font-size:26px; margin-bottom:14px;}
.service-detail-copy p{color:var(--grey); font-size:15.5px; max-width:420px;}
.service-detail-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px 24px;
}
.service-detail-list li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:14.5px;
  color:var(--ink);
  background:var(--bg-soft);
  padding:14px 16px;
  border-radius:10px;
}
.service-detail-list li svg{width:17px; height:17px; color:var(--blue); flex-shrink:0; margin-top:2px;}
.service-detail.alt{background:var(--bg-soft);}

/* ===== COMMITMENT / CTA (borrowed closing section) ===== */
.commitment{
  background:var(--bg-soft);
  padding:90px 0;
  margin-top:100px;
}
.commitment.no-margin{margin-top:0;}
.commitment-inner{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}
.commitment-image{
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow-sm);
  aspect-ratio:16/10.5;
}
.commitment-image img{width:100%; height:100%; object-fit:cover;}
.commitment-text h2{
  font-size:30px;
  margin-bottom:18px;
}
.commitment-text p{
  color:var(--grey);
  font-size:15.5px;
  margin-bottom:26px;
  max-width:440px;
}

/* ===== INDUSTRIES ===== */
.industries{
  background:var(--navy);
  padding:32px 0;
}
.industries-inner{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:56px;
  flex-wrap:wrap;
}
.industries-label{
  color:var(--white);
  font-weight:700;
  font-size:13.5px;
  letter-spacing:1.5px;
  text-transform:uppercase;
  margin-right:24px;
}
.industry-item{
  display:flex;
  align-items:center;
  gap:10px;
  color:rgba(255,255,255,0.9);
  font-size:14.5px;
  font-weight:500;
}
.industry-item svg{width:20px; height:20px; color:var(--blue-light); flex-shrink:0;}

/* ===== CONTACT PAGE ===== */
.contact-section{padding:90px 0;}
.contact-grid{
  display:grid;
  grid-template-columns:0.85fr 1.15fr;
  gap:56px;
  align-items:flex-start;
}
.contact-info-card{
  background:var(--navy);
  border-radius:var(--radius);
  padding:40px 34px;
  color:var(--white);
}
.contact-info-card h3{color:var(--white); font-size:20px; margin-bottom:8px;}
.contact-info-card > p{color:rgba(255,255,255,0.7); font-size:14.5px; margin-bottom:28px;}
.contact-info-item{
  display:flex;
  gap:14px;
  margin-bottom:22px;
  align-items:flex-start;
}
.contact-info-item .ci-icon{
  width:40px; height:40px;
  border-radius:10px;
  background:rgba(255,255,255,0.1);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
.contact-info-item .ci-icon svg{width:18px; height:18px; color:var(--blue-light);}
.contact-info-item h4{color:var(--white); font-size:14px; margin-bottom:4px;}
.contact-info-item p{color:rgba(255,255,255,0.75); font-size:14px; line-height:1.5;}
.contact-info-card .social-icons{margin-top:8px;}

.contact-form{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:38px;
  box-shadow:var(--shadow-sm);
}
.contact-form h3{font-size:20px; margin-bottom:22px;}
.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-bottom:18px;
}
.form-group{margin-bottom:18px;}
.form-group label{
  display:block;
  font-size:13px;
  font-weight:600;
  color:var(--ink);
  margin-bottom:7px;
}
.form-group input,
.form-group select,
.form-group textarea{
  width:100%;
  padding:13px 14px;
  border:1.5px solid var(--line);
  border-radius:8px;
  font-family:'Inter', sans-serif;
  font-size:14px;
  color:var(--ink);
  background:var(--bg-soft);
  transition:border-color .2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
  outline:none;
  border-color:var(--blue);
  background:var(--white);
}
.form-group textarea{resize:vertical; min-height:120px;}
.contact-form .btn{width:100%; justify-content:center; margin-top:6px; cursor:pointer;}

.map-wrap{
  margin-top:56px;
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow-sm);
  aspect-ratio:16/5;
}
.map-wrap iframe{width:100%; height:100%; border:0; display:block;}

/* ===== FOOTER ===== */
footer{
  background:var(--navy-deep);
  color:rgba(255,255,255,0.75);
  padding:64px 0 26px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1.2fr;
  gap:40px;
  padding-bottom:44px;
  border-bottom:1px solid rgba(255,255,255,0.1);
}
.footer-logo{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:18px;
}
.footer-logo .logo-mark{width:40px; height:40px;}
.footer-logo .name{
  font-family:'Poppins', sans-serif;
  font-weight:700;
  font-size:16.5px;
  color:var(--white);
}
.footer-logo .name span{color:var(--blue-light);}
.footer-about p{
  font-size:14px;
  line-height:1.7;
  max-width:280px;
  margin-bottom:22px;
}
.social-icons{display:flex; gap:12px;}
.social-icons a{
  width:36px; height:36px;
  border:1.5px solid rgba(255,255,255,0.35);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:all .2s ease;
}
.social-icons a:hover{background:var(--blue); border-color:var(--blue);}
.social-icons svg{width:16px; height:16px; color:var(--white);}

footer h4{
  color:var(--white);
  font-family:'Poppins', sans-serif;
  font-size:15px;
  font-weight:600;
  margin-bottom:20px;
  letter-spacing:0.3px;
}
footer ul li{margin-bottom:12px;}
footer ul a{font-size:14px; transition:color .2s ease;}
footer ul a:hover{color:var(--blue-light);}

.contact-item{
  display:flex;
  gap:12px;
  margin-bottom:16px;
  font-size:13.8px;
  line-height:1.5;
}
.contact-item svg{width:17px; height:17px; flex-shrink:0; margin-top:2px; color:var(--blue-light);}

.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding-top:24px;
  font-size:13px;
  color:rgba(255,255,255,0.5);
  flex-wrap:wrap;
  gap:12px;
}

.back-to-top{
  position:fixed;
  bottom:28px;
  right:28px;
  width:48px; height:48px;
  border-radius:50%;
  background:var(--blue);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 24px rgba(30,111,224,0.4);
  z-index:200;
  transition:background .2s ease;
}
.back-to-top:hover{background:#1859B3;}
.back-to-top svg{width:20px; height:20px; color:var(--white);}

/* ===== HOME: WHO WE ARE (centered) ===== */
.home-who{padding:130px 0 90px; text-align:center;}
.home-who.no-overlap{padding-top:110px;}
.home-who-heading h2{
  font-size:32px;
  font-weight:700;
  margin-bottom:14px;
}
.home-who-underline{
  width:52px; height:3px;
  background:var(--blue);
  margin:0 auto 26px;
  border-radius:2px;
}
.home-who-text{
  max-width:800px;
  margin:0 auto 64px;
  color:var(--grey);
  font-size:15.5px;
  line-height:1.85;
}
.home-who-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
}
.home-who-item{
  text-align:center;
  padding:0 26px;
  border-left:1px solid var(--line);
}
.home-who-item:first-child{border-left:none;}
.home-who-icon{
  width:50px; height:50px;
  margin:0 auto 18px;
  color:var(--blue);
  display:flex;
  align-items:center;
  justify-content:center;
}
.home-who-icon svg{width:36px; height:36px;}
.home-who-item h3{
  font-size:16px;
  font-weight:600;
  margin-bottom:8px;
}
.home-who-item p{
  font-size:13.5px;
  color:var(--grey);
  line-height:1.5;
}

/* ===== HOME: CORE SERVICES (navy) ===== */
.home-services{
  background:linear-gradient(115deg, var(--navy-deep) 0%, var(--navy) 60%, #123465 100%);
  padding:96px 0;
}
.home-services .services-header h2{color:var(--white);}
.home-services .services-header h2::before{background:var(--blue-light);}
.home-services .services-header p{color:rgba(255,255,255,0.68);}
.home-service-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:20px;
}
.home-service-card{
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.14);
  border-radius:var(--radius);
  padding:32px 22px;
  transition:background .25s ease, transform .25s ease;
}
.home-service-card:hover{
  background:rgba(255,255,255,0.1);
  transform:translateY(-4px);
}
.home-service-icon{
  width:54px; height:54px;
  border-radius:50%;
  background:var(--blue);
  color:var(--white);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:20px;
}
.home-service-icon svg{width:26px; height:26px;}
.home-service-card h3{
  color:var(--white);
  font-size:16px;
  font-weight:600;
  margin-bottom:10px;
}
.home-service-card p{
  color:rgba(255,255,255,0.62);
  font-size:13.3px;
  line-height:1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1080px){
  .services-grid{grid-template-columns:repeat(3,1fr);}
  .feature-strip{grid-template-columns:repeat(3,1fr); row-gap:28px;}
  .feature-item:nth-child(3){border-right:none;}
  .service-detail-grid{grid-template-columns:1fr;}
  .service-detail-list{grid-template-columns:1fr;}
}

@media (max-width: 900px){
  .nav-toggle{display:flex;}
  .header-right{display:none;}
  nav{
    display:block;
    visibility:hidden;
    opacity:0;
    position:absolute;
    top:100%;
    left:0;
    right:0;
    background:var(--white);
    border-bottom:1px solid var(--line);
    box-shadow:var(--shadow-sm);
    max-height:0;
    overflow:hidden;
    transition:max-height .25s ease, opacity .2s ease;
  }
  nav.nav-open{
    visibility:visible;
    opacity:1;
    max-height:320px;
  }
  nav ul{
    flex-direction:column;
    gap:0;
    padding:8px 32px 20px;
  }
  nav li{width:100%;}
  nav a{
    display:block;
    padding:14px 0;
    border-bottom:1px solid var(--line);
  }
  nav li:last-child a{border-bottom:none;}
  nav a.active::after{display:none;}
  .hero{min-height:520px;}
  .hero-bg-image{
    background-position:62% center;
  }
  .hero-bg-image::after{
    content:"";
    position:absolute; inset:0;
    background:linear-gradient(90deg, rgba(246,250,253,.98) 0%, rgba(246,250,253,.94) 54%, rgba(246,250,253,.30) 100%);
  }
  .hero-inner{min-height:520px; padding:46px 32px 110px;}
  .hero-copy{width:52%; transform:none;}
  .hero h1{font-size:38px;}
  .page-hero h1{font-size:32px;}
  .who-grid{grid-template-columns:1fr;}
  .quote-card{position:static; width:100%; margin-top:24px;}
  .commitment-inner{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr 1fr; row-gap:36px;}
  .industries-inner{gap:28px; justify-content:flex-start;}
  .vm-grid{grid-template-columns:1fr;}
  .contact-grid{grid-template-columns:1fr;}
  .form-row{grid-template-columns:1fr;}
}

@media (max-width: 620px){
  .services-grid{grid-template-columns:1fr;}
  .feature-strip{grid-template-columns:1fr; row-gap:26px; padding:32px 24px;}
  .feature-item{border-right:none; border-bottom:1px solid var(--line); padding-bottom:26px;}
  .feature-item:last-child{border-bottom:none; padding-bottom:0;}
  .footer-grid{grid-template-columns:1fr;}
  .footer-bottom{flex-direction:column; align-items:flex-start;}
  .header-right{gap:16px;}
  .btn-outline-light{display:none;}
}

@media (max-width: 480px){
  .header-inner{padding:14px 16px;}
  .logo{gap:9px;}
  .logo-mark{width:36px; height:36px;}
  .logo-text .name{font-size:15px;}
  .logo-text .tagline{display:none;}
  .nav-toggle{margin-left:8px;}
}

.feature-strip.feature-strip-4{grid-template-columns:repeat(4,1fr);}
.feature-strip.feature-strip-4 .feature-item:nth-child(3){border-right:1px solid var(--line);}
.feature-strip.feature-strip-4 .feature-item:last-child{border-right:none;}

@media (max-width:1080px){
  .home-service-grid{grid-template-columns:repeat(3,1fr);}
  .feature-strip.feature-strip-4{grid-template-columns:repeat(2,1fr); row-gap:28px;}
  .feature-strip.feature-strip-4 .feature-item:nth-child(odd){border-right:1px solid var(--line);}
  .feature-strip.feature-strip-4 .feature-item:nth-child(even){border-right:none;}
}

@media (max-width:900px){
  .home-who-grid{grid-template-columns:1fr 1fr; row-gap:34px;}
  .home-who-item{border-left:none;}
}

@media (max-width:620px){
  .home-service-grid{grid-template-columns:1fr;}
  .feature-strip.feature-strip-4{grid-template-columns:1fr; row-gap:26px; padding:32px 24px;}
  .feature-strip.feature-strip-4 .feature-item{border-right:none; border-bottom:1px solid rgba(255,255,255,.22); padding-bottom:26px;}
  .feature-strip.feature-strip-4 .feature-item:last-child{border-bottom:none; padding-bottom:0;}
  .home-who-grid{grid-template-columns:1fr; row-gap:32px;}
}


@media (max-width:620px){
  .hero{min-height:520px;}
  .hero-bg-image{background-position:70% center;}
  .hero-bg-image::after{background:rgba(247,250,253,.91);}
  .hero-inner{min-height:520px; padding:44px 24px 112px; align-items:flex-start;}
  .hero-copy{width:100%; transform:none;}
  .hero h1{font-size:36px; margin-bottom:20px;}
  .hero p{font-size:15.5px; line-height:1.65; margin-bottom:28px;}
  .btn-outline-navy{display:inline-flex;}
  .feature-strip-wrap{padding:0 18px; margin-top:-74px;}
}

@media (prefers-reduced-motion: reduce){
  *{transition:none !important; scroll-behavior:auto !important;}
}

/* ===== CONTACT FORM DELIVERY + FULL-WIDTH MAP ===== */
.contact-section{padding-bottom:0;}
.contact-section > .container{padding-bottom:0;}
.map-wrap{
  width:100%;
  margin:56px 0 0;
  border-radius:0;
  box-shadow:none;
  aspect-ratio:auto;
  height:420px;
  overflow:hidden;
}
.map-wrap iframe{width:100%; height:100%; border:0; display:block;}

.form-toast{
  position:fixed;
  left:50%;
  bottom:32px;
  z-index:9999;
  transform:translate(-50%, 24px);
  display:flex;
  align-items:center;
  gap:11px;
  max-width:calc(100vw - 32px);
  padding:14px 20px;
  border-radius:10px;
  background:#0B2447;
  color:#fff;
  font-size:14px;
  font-weight:600;
  box-shadow:0 16px 40px rgba(7,26,52,.24);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .25s ease, transform .25s ease, visibility .25s ease;
}
.form-toast.show{opacity:1; visibility:visible; transform:translate(-50%, 0);}
.form-toast.error{background:#9f1d2d;}
.form-toast-icon{
  display:grid;
  place-items:center;
  width:24px;
  height:24px;
  border-radius:50%;
  flex:0 0 24px;
  background:rgba(255,255,255,.16);
  font-size:15px;
  line-height:1;
}
.contact-form .btn[disabled]{opacity:.72; cursor:not-allowed;}

@media (max-width:620px){
  .map-wrap{height:340px; margin-top:40px;}
  .form-toast{bottom:20px; width:max-content; max-width:calc(100vw - 28px);}
}

/* ===== CONTACT PAGE: MAP MUST TOUCH FOOTER ===== */
.contact-section{
  padding:90px 0 56px;
  margin:0;
}
.map-wrap{
  display:block;
  width:100%;
  height:420px;
  margin:0 !important;
  padding:0 !important;
  border:0;
  border-radius:0;
  box-shadow:none;
  overflow:hidden;
  line-height:0;
  background:#e7edf4;
}
.map-wrap iframe{
  display:block;
  width:100%;
  height:100%;
  margin:0;
  padding:0;
  border:0;
}
.map-wrap + footer,
footer{
  margin-top:0 !important;
}
@media (max-width:620px){
  .contact-section{padding:64px 0 40px;}
  .map-wrap{height:340px; margin:0 !important;}
}


/* ===== CONTACT TOAST: CENTRED SUCCESS / ERROR ===== */
.form-toast{
  position:fixed !important;
  left:50% !important;
  top:50% !important;
  right:auto !important;
  bottom:auto !important;
  z-index:100000 !important;
  transform:translate(-50%, -50%) scale(.96) !important;
  display:flex !important;
  align-items:center;
  justify-content:center;
  gap:11px;
  width:max-content;
  max-width:calc(100vw - 32px);
  padding:16px 22px;
  border-radius:10px;
  background:#16803c !important;
  color:#fff;
  font-size:14px;
  font-weight:700;
  text-align:center;
  box-shadow:0 18px 48px rgba(0,0,0,.24);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .22s ease, transform .22s ease, visibility .22s ease;
}
.form-toast.show{
  opacity:1 !important;
  visibility:visible !important;
  transform:translate(-50%, -50%) scale(1) !important;
}
.form-toast.error{background:#9f1d2d !important;}
@media (max-width:620px){
  .form-toast{
    left:50% !important;
    top:50% !important;
    right:auto !important;
    bottom:auto !important;
    width:calc(100vw - 36px);
    max-width:420px;
  }
}
