:root{
  --navy:#0b2a4a;
  --yellow:#f2b705;
  --grey:#6b7280;
  --bg:#f7f8fa;
  --line:#e6eaf0;
  --white:#ffffff;
  --shadow:0 4px 12px rgba(0,0,0,0.05);
}

*{ box-sizing:border-box; margin:0; padding:0; }

html{ scroll-behavior:smooth; }

body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:var(--bg);
  color:var(--navy);
  line-height:1.5;
}

img{ max-width:100%; display:block; }

a{
  color:inherit;
  text-decoration:none;
}

ul{ list-style:none; }

.wrap{
  width:min(1760px, calc(100% - 80px));
  margin:0 auto;
}

/* HEADER */

.hdr{
  background:var(--navy);
  border-bottom:1px solid rgba(255,255,255,0.08);
  position:sticky;
  top:0;
  z-index:100;
}

.hdr-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:72px;
  gap:24px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  color:#fff;
  min-width:0;
}

.logo{
  width:26px;
  height:26px;
  object-fit:contain;
  background:#fff;
  border-radius:2px;
  padding:2px;
}

.brand-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--yellow);
  flex:0 0 auto;
}

.brand-text{
  font-size:14px;
  font-weight:800;
  letter-spacing:0.02em;
  text-transform:uppercase;
  white-space:nowrap;
}

.nav{
  display:flex;
  align-items:center;
  gap:24px;
}

.nav-list{
  display:flex;
  align-items:center;
  gap:22px;
}

.nav-list > li{
  position:relative;
}

.nav-link{
  color:#fff;
  font-size:13px;
  font-weight:600;
  padding:10px 0;
  opacity:0.95;
}

.nav-link:hover,
.nav-link.is-active{
  opacity:1;
}

.nav-link.is-active{
  background:rgba(255,255,255,0.08);
  padding:9px 12px;
  border-radius:10px;
}

.chev{
  font-size:10px;
  margin-left:4px;
}

.menu{
  position:absolute;
  top:100%;
  left:0;
  min-width:220px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:12px;
  box-shadow:0 14px 30px rgba(0,0,0,0.1);
  padding:8px;
  opacity:0;
  visibility:hidden;
  transform:translateY(8px);
  transition:0.2s ease;
}

.dd:hover .menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.menu li a{
  display:block;
  padding:10px 12px;
  border-radius:8px;
  color:var(--navy);
  font-size:14px;
}

.menu li a:hover{
  background:#f4f6f9;
}

.cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--yellow);
  color:var(--navy);
  font-weight:700;
  font-size:13px;
  padding:11px 16px;
  border-radius:12px;
  transition:0.2s ease;
}

.cta:hover{
  transform:translateY(-1px);
  filter:brightness(0.98);
}

/* HERO */

.hero{
  background:linear-gradient(to bottom, #ffffff 0%, #fafbfd 100%);
  border-bottom:1px solid var(--line);
}

.hero-grid{
  display:grid;
  grid-template-columns: 18px minmax(0,1fr) minmax(320px, 430px);
  gap:34px;
  align-items:start;
  padding:52px 0 38px;
}

.hero-rail{
  width:6px;
  min-height:320px;
  border-radius:999px;
  background:linear-gradient(180deg, var(--yellow) 0%, #d1ab10 28%, #30506d 72%, var(--navy) 100%);
  margin-top:12px;
}

.hero-copy{
  padding-top:4px;
}

.eyebrow{
  font-size:12px;
  letter-spacing:0.03em;
  text-transform:uppercase;
  color:#6a7789;
  font-weight:800;
  margin-bottom:8px;
}

.hero h1{
  font-size:56px;
  line-height:1.05;
  letter-spacing:-0.03em;
  font-weight:800;
  margin-bottom:12px;
  max-width:13ch;
}

.lead{
  font-size:18px;
  color:var(--grey);
  margin-bottom:18px;
  max-width:56ch;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
  margin-bottom:18px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  font-weight:700;
  font-size:14px;
  padding:12px 18px;
  transition:0.2s ease;
  border:none;
  cursor:pointer;
}

.btn:hover{
  transform:translateY(-1px);
}

.btn-primary{
  background:var(--yellow);
  color:var(--navy);
}

.btn-link{
  background:#fff;
  border:1px solid var(--line);
  color:var(--navy);
  font-weight:600;
}

.btn-full{
  width:100%;
}

.bullets{
  display:grid;
  gap:9px;
  margin-top:8px;
}

.bullet{
  display:flex;
  align-items:center;
  gap:10px;
  color:#42556f;
  font-size:15px;
}

.tick{
  color:var(--yellow);
  font-size:12px;
  line-height:1;
}

/* HERO CONTACT SIDE */

.hero-side{
  display:flex;
  justify-content:flex-end;
  align-self:stretch;
  padding-left:18px;
  border-left:3px solid var(--navy);
}

.side-strip{
  width:100%;
  max-width:420px;
  margin-left:14px;
  background:var(--white);
  padding:28px;
  border-radius:14px;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.side-title{
  font-size:18px;
  font-weight:800;
  color:var(--navy);
}

.side-line{
  width:38px;
  height:3px;
  background:var(--yellow);
  margin:8px 0 16px;
  border-radius:999px;
}

.side-intro{
  margin:0 0 16px;
  font-size:14px;
  line-height:1.55;
  color:var(--grey);
}

/* FORM */

.contact-mini-form{
  display:grid;
  gap:14px;
}

.form-row{
  width:100%;
}

.form-input,
.form-textarea{
  width:100%;
  display:block;
  font:inherit;
  font-size:15px;
  color:var(--navy);
  background:#fff;
  border:1px solid #d7dde6;
  border-radius:12px;
  padding:15px 16px;
  transition:border-color .2s ease, box-shadow .2s ease;
  box-sizing:border-box;
}

.form-input::placeholder,
.form-textarea::placeholder{
  color:#8a93a3;
}

.form-input:focus,
.form-textarea:focus{
  outline:none;
  border-color:var(--yellow);
  box-shadow:0 0 0 3px rgba(242,183,5,.18);
}

.form-textarea{
  min-height:120px;
  resize:vertical;
  line-height:1.5;
}

.hp-field{
  display:none;
}

/* SECTIONS */

.section{
  padding:44px 0;
}

.sec-head h2{
  font-size:38px;
  line-height:1.1;
  margin-bottom:14px;
  letter-spacing:-0.02em;
}

.sec-head p{
  max-width:100ch;
  color:#566578;
  font-size:16px;
}

.sec-head strong{
  color:var(--navy);
  font-weight:700;
}

.svc-list{
  margin-top:22px;
  border-top:1px solid var(--line);
}

.svc{
  padding:18px 0;
  border-bottom:1px solid var(--line);
}

.svc-title{
  font-size:18px;
  font-weight:800;
  color:var(--navy);
  margin-bottom:6px;
}

.svc-desc{
  color:#566578;
  font-size:16px;
  max-width:110ch;
}

.svc-desc strong{
  color:var(--navy);
  font-weight:700;
}

/* ECO BADGE */

.eco-badge-section{
  padding:0 0 34px;
}

.eco-badge-row{
  display:flex;
  justify-content:flex-start;
}

.eco-badge{
  display:flex;
  align-items:center;
  gap:16px;
  background:#fff;
  border:1px solid var(--line);
  border-left:4px solid var(--yellow);
  border-radius:14px;
  padding:18px 20px;
  box-shadow:var(--shadow);
  max-width:560px;
}

.eco-icon{
  width:42px;
  height:42px;
  border-radius:12px;
  background:var(--navy);
  color:#fff;
  display:grid;
  place-items:center;
  font-size:20px;
  flex:0 0 auto;
}

.eco-title{
  font-size:16px;
  font-weight:800;
  color:var(--navy);
  margin-bottom:4px;
}

.eco-sub{
  color:var(--grey);
  font-size:14px;
  line-height:1.5;
}

/* FOOTER */

.footer{
  background:var(--navy);
  color:#fff;
  margin-top:10px;
}

.footer-accent{
  height:4px;
  background:var(--yellow);
}

.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap:34px;
  padding:34px 0;
  align-items:start;
}

.footer-logo{
  width:140px;
  background:#fff;
  padding:8px;
  border-radius:6px;
  margin-bottom:14px;
}

.footer-sub{
  color:rgba(255,255,255,0.82);
  font-size:14px;
  line-height:1.6;
}

.footer-links{
  display:grid;
  gap:10px;
}

.footer-links a{
  color:rgba(255,255,255,0.9);
  font-size:14px;
}

.footer-links a:hover,
.footer-contact a:hover{
  color:#fff;
}

.footer-contact{
  display:grid;
  gap:10px;
  justify-self:end;
  text-align:right;
}

.footer-contact a{
  color:#fff;
  font-weight:600;
}

.footer-contact div{
  color:rgba(255,255,255,0.78);
  font-size:14px;
}

/* RESPONSIVE */

@media (max-width: 1100px){
  .hero-grid{
    grid-template-columns: 18px minmax(0,1fr);
  }

  .hero-side{
    grid-column:2;
    border-left:none;
    padding-left:0;
    margin-top:6px;
    justify-content:flex-start;
  }

  .side-strip{
    margin-left:0;
    max-width:520px;
  }
}

@media (max-width: 900px){
  .hdr-row{
    flex-wrap:wrap;
    padding:14px 0;
  }

  .nav{
    width:100%;
    justify-content:space-between;
    gap:14px;
  }

  .nav-list{
    gap:14px;
    flex-wrap:wrap;
  }

  .hero h1{
    font-size:44px;
  }

  .footer-grid{
    grid-template-columns:1fr;
  }

  .footer-contact{
    justify-self:start;
    text-align:left;
  }
}

@media (max-width: 680px){
  .wrap{
    width:min(100% - 28px, 1200px);
  }

  .brand-text{
    font-size:12px;
  }

  .hero-grid{
    grid-template-columns:1fr;
    gap:22px;
    padding:34px 0 28px;
  }

  .hero-rail{
    display:none;
  }

  .hero h1{
    font-size:36px;
    max-width:none;
  }

  .lead{
    font-size:16px;
  }

  .hero-side{
    grid-column:auto;
    border-left:none;
    padding-left:0;
  }

  .side-strip{
    max-width:none;
    margin-left:0;
    padding:22px;
  }

  .sec-head h2{
    font-size:30px;
  }

  .svc-title{
    font-size:17px;
  }

  .eco-badge{
    padding:16px;
  }
}

.contact-cta{
  text-align:center;
  margin-top:40px;
}

.contact-cta p{
  margin-bottom:16px;
  color:var(--grey);
}

/* CONTACT PAGE */

.contact-wrap{
  max-width:1100px;
}

.contact-intro{
  max-width:720px;
  margin-bottom:28px;
}

.contact-intro h1{
  font-size:42px;
  margin-bottom:10px;
  letter-spacing:-0.02em;
}

.contact-intro p{
  color:var(--grey);
  font-size:16px;
}

/* CONTACT FORM CARD */

.contact-form{
  background:#ffffff;
  border:1px solid var(--line);
  border-radius:14px;
  padding:36px;
  box-shadow:var(--shadow);
}

/* FORM GRID */

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.form-group{
  display:flex;
  flex-direction:column;
}

.form-group.full{
  grid-column:1 / -1;
}

/* LABELS */

.form-group label{
  font-size:14px;
  font-weight:600;
  margin-bottom:6px;
  color:var(--navy);
}

/* INPUTS */

.form-group input,
.form-group textarea,
.form-group select{
  font:inherit;
  font-size:15px;
  padding:15px 16px;
  border-radius:12px;
  border:1px solid #d7dde6;
  background:#fff;
  transition:border-color .2s ease, box-shadow .2s ease;
}

/* INPUT FOCUS */

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus{
  outline:none;
  border-color:var(--yellow);
  box-shadow:0 0 0 3px rgba(242,183,5,.18);
}

/* TEXTAREA */

.form-group textarea{
  resize:vertical;
  min-height:140px;
}

/* SUBMIT BUTTON */

.contact-submit{
  margin-top:20px;
}

/* MOBILE */

@media (max-width:700px){

  .contact-grid{
    grid-template-columns:1fr;
  }

}


/* THANK YOU PAGE */

.thank-wrap{
  display:flex;
  justify-content:center;
}

.thank-card{
  max-width:640px;
  text-align:center;
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
  padding:50px 40px;
  box-shadow:var(--shadow);
}

.thank-icon{
  width:70px;
  height:70px;
  border-radius:50%;
  background:var(--yellow);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:36px;
  margin:0 auto 20px auto;
}

.thank-card h1{
  margin-bottom:10px;
}

.thank-lead{
  font-weight:500;
  margin-bottom:12px;
}

.thank-text{
  color:var(--grey);
  margin-bottom:24px;
}

.thank-actions{
  display:flex;
  gap:14px;
  justify-content:center;
  flex-wrap:wrap;
}

/* =========================================
   LOCATION PAGES / INNER CONTENT SECTIONS
   ========================================= */

.content-section{
  padding:72px 0 88px;
  background:#f7f9fc;
}

.content-section .wrap{
  max-width:1140px;
}

.content-section h2{
  font-size:clamp(34px, 4vw, 56px);
  line-height:1.02;
  letter-spacing:-0.04em;
  color:#0d2f57;
  margin:0 0 22px;
  font-weight:800;
}

.content-section h3{
  font-size:28px;
  line-height:1.15;
  letter-spacing:-0.03em;
  color:#0d2f57;
  margin:0 0 14px;
  font-weight:800;
}

.content-section p{
  font-size:18px;
  line-height:1.7;
  color:#58657a;
  margin:0 0 22px;
  max-width:980px;
}

.content-section strong{
  color:#0d2f57;
  font-weight:800;
}

.content-section hr{
  border:0;
  height:1px;
  background:#dbe3ec;
  margin:30px 0 26px;
}

/* =========================================
   FORM CARD POLISH
   ========================================= */

.form-card{
  background:#ffffff;
  border:1px solid #dbe3ec;
  border-radius:22px;
  box-shadow:0 16px 34px rgba(7, 28, 54, 0.08);
  padding:30px 26px 22px;
}

.form-card h3{
  margin:0 0 8px;
  color:#0d2f57;
  font-size:20px;
  font-weight:800;
  letter-spacing:-0.02em;
}

.form-card p{
  margin:0 0 18px;
  color:#66758a;
  font-size:15px;
  line-height:1.6;
}

.form-card form{
  display:grid;
  gap:12px;
}

.form-card input,
.form-card textarea{
  width:100%;
  border:1px solid #d7e0ea;
  border-radius:14px;
  background:#fff;
  color:#18324f;
  padding:15px 16px;
  font:inherit;
  transition:border-color .2s ease, box-shadow .2s ease;
  outline:none;
}

.form-card textarea{
  resize:vertical;
  min-height:128px;
}

.form-card input:focus,
.form-card textarea:focus{
  border-color:#f2b705;
  box-shadow:0 0 0 4px rgba(242,183,5,.14);
}

.form-card button{
  border:0;
  border-radius:14px;
  padding:15px 18px;
  background:#f2b705;
  color:#0d2f57;
  font-weight:800;
  font-size:15px;
  cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease, filter .18s ease;
  box-shadow:0 10px 22px rgba(242,183,5,.22);
}

.form-card button:hover{
  transform:translateY(-1px);
  filter:brightness(1.02);
}

.form-card button:active{
  transform:translateY(0);
}

/* =========================================
   SUBTLE SEO / COVERAGE LINKS
   ========================================= */

.seo-links-wrap{
  padding:0 0 34px;
  background:#f7f9fc;
}

.seo-links{
  max-width:1140px;
  margin:0 auto;
  padding:18px 0 0;
  border-top:1px solid #dbe3ec;
  display:flex;
  flex-wrap:wrap;
  gap:10px 14px;
  align-items:center;
}

.seo-links-label{
  font-size:12px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#7a8798;
  margin-right:8px;
}

.seo-links a{
  color:#5d6c80;
  text-decoration:none;
  font-size:14px;
  line-height:1.4;
  transition:color .18s ease, opacity .18s ease;
  opacity:.88;
}

.seo-links a:hover{
  color:#0d2f57;
  opacity:1;
}

.seo-links a::after{
  content:"•";
  margin-left:14px;
  color:#c2ccd8;
}

.seo-links a:last-child::after{
  content:"";
  margin:0;
}

/* =========================================
   RESPONSIVE TIDY-UP
   ========================================= */

@media (max-width: 980px){
  .content-section{
    padding:56px 0 68px;
  }

  .content-section h3{
    font-size:24px;
  }

  .content-section p{
    font-size:17px;
  }

  .seo-links{
    gap:8px 12px;
  }
}

@media (max-width: 640px){
  .content-section h2{
    font-size:40px;
  }

  .content-section h3{
    font-size:22px;
  }

  .content-section p{
    font-size:16px;
    line-height:1.65;
  }

  .form-card{
    padding:24px 18px 18px;
    border-radius:18px;
  }

  .seo-links{
    display:block;
  }

  .seo-links-label{
    display:block;
    margin:0 0 10px;
  }

  .seo-links a{
    display:inline-block;
    margin:0 10px 8px 0;
  }

  .seo-links a::after{
    content:"";
    margin:0;
  }
}