:root{
  --navy:#08263b;
  --navy2:#0d334c;
  --green:#2d8a3e;
  --green2:#3ca54d;
  --ink:#14263a;
  --muted:#5c6b78;
  --light:#f4f7f8;
  --line:#dbe2e6;
  --white:#fff;
  --shadow:0 12px 35px rgba(8,38,59,.12);
  --radius:4px;
  --max:1180px;
}

*{box-sizing:border-box}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--ink);
  background:#fff;
  line-height:1.55;
}

a{
  text-decoration:none;
  color:inherit;
}

img{
  max-width:100%;
  display:block;
}

.container{
  width:min(var(--max),calc(100% - 40px));
  margin:auto;
}

/* =========================
   HEADER
========================= */

header{
  height:150px;
  background:#fff;
  border-bottom:1px solid #e8edef;
  position:sticky;
  top:0;
  z-index:50;
}

.nav{
  height:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

/* LOGO - 200px ON PC */
.site-logo{
  width:200px !important;
  max-width:200px !important;
  height:auto !important;
  display:block !important;
}

.logo{
  display:flex;
  align-items:center;
  gap:9px;
  font-weight:900;
  letter-spacing:.2px;
  color:var(--navy);
  font-size:18px;
}

.logo-mark{
  width:39px;
  height:39px;
  position:relative;
  display:grid;
  place-items:center;
}

.logo-mark:before{
  content:"";
  position:absolute;
  inset:7px 2px 3px;
  border:3px solid var(--navy);
  transform:rotate(45deg);
  border-radius:2px;
}

.logo-mark:after{
  content:"✓";
  position:absolute;
  color:var(--green);
  font-size:25px;
  font-weight:900;
  transform:rotate(-2deg);
}

.logo small{
  display:block;
  font-size:7px;
  letter-spacing:2px;
  color:#5d6871;
  margin-top:-2px;
}

nav{
  display:flex;
  align-items:center;
  gap:26px;
  font-size:12px;
  font-weight:650;
}

nav a{
  color:#243746;
}

nav a.active,
nav a:hover{
  color:var(--green);
}

header a{
  font-size:20px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:11px 17px;
  border-radius:4px;
  border:1px solid transparent;
  font-weight:750;
  font-size:12px;
  cursor:pointer;
}

.btn-green{
  background:var(--green);
  color:#fff;
}

.btn-green:hover{
  background:#267435;
}

.btn-outline{
  border-color:#fff;
  color:#fff;
  background:transparent;
}

.btn-dark{
  background:var(--navy);
  color:#fff;
}

.mobile{
  display:none;
  background:none;
  border:0;
  font-size:25px;
}


/* =========================
   HERO
========================= */

.hero{
  min-height:500px;
  display:grid;
  align-items:center;
  background:
    linear-gradient(
      90deg,
      rgba(5,27,43,.92) 0%,
      rgba(5,27,43,.72) 39%,
      rgba(5,27,43,.1) 72%
    ),
    url("https://images.unsplash.com/photo-1631149784601-8e6c266b046a?q=80&w=1074&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3Dauto=format&fit=crop&w=1800&q=85")
    center 70%/cover;
}

.hero-content{
  color:#fff;
  padding:85px 0;
  max-width:580px;
}

.eyebrow{
  font-size:11px;
  font-weight:800;
  letter-spacing:2px;
  text-transform:uppercase;
  margin-bottom:8px;
}

h1{
  font-size:clamp(40px,5vw,65px);
  line-height:1.02;
  margin:0 0 16px;
  letter-spacing:-1.8px;
}

.hero p{
  font-size:17px;
  max-width:510px;
  color:#eef5f7;
}

.hero-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:24px;
}

.location{
  font-size:12px;
  margin-top:15px;
}


/* =========================
   TRUST
========================= */

.trust{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border-bottom:1px solid var(--line);
}

.trust-item{
  padding:27px 22px;
  text-align:center;
  border-right:1px solid var(--line);
}

.trust-item:last-child{
  border-right:0;
}

.icon{
  font-size:28px;
  color:var(--navy);
  margin-bottom:5px;
}

.trust-item strong{
  display:block;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.5px;
}

.trust-item span{
  font-size:11px;
  color:var(--muted);
}


/* =========================
   CONTENT
========================= */

.split{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:55px;
  align-items:center;
  padding:75px 0;
}

.kicker{
  font-size:12px;
  font-weight:800;
  color:var(--green);
  text-transform:uppercase;
  letter-spacing:1.5px;
}

h2{
  font-size:36px;
  line-height:1.1;
  margin:8px 0 16px;
  letter-spacing:-1px;
}

h3{
  font-size:20px;
  margin:0 0 8px;
}

.muted{
  color:var(--muted);
}

.photo{
  min-height:340px;
  border-radius:3px;
  background:
    url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=1000&q=85")
    center/cover;
  box-shadow:var(--shadow);
}


/* =========================
   DARK SECTION
========================= */

.dark-section{
  background:var(--navy);
  color:#fff;
  padding:58px 0;
}

.dark-section h2{
  color:#fff;
}

.dark-section .muted{
  color:#c9d6dc;
}

.cards{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  margin-top:28px;
}

.card{
  background:rgba(255,255,255,.075);
  padding:28px 20px;
  border:1px solid rgba(255,255,255,.08);
  min-height:190px;
}

.card .icon{
  color:#fff;
}

.card p{
  font-size:12px;
  color:#c5d2d8;
}

.center{
  text-align:center;
}

.cta{
  text-align:center;
  margin-top:28px;
}


/* =========================
   BANNER
========================= */

.banner{
  padding:42px 0;
  color:#fff;
  background:
    linear-gradient(
      90deg,
      rgba(8,38,59,.88),
      rgba(8,38,59,.35)
    ),
    url("https://images.unsplash.com/photo-1605146769289-440113cc3d00?auto=format&fit=crop&w=1800&q=85")
    center/cover;
}

.banner h2{
  font-size:29px;
  margin:0 0 8px;
}

.banner p{
  margin:0 0 18px;
}


/* =========================
   PAGE HERO
========================= */

.page-hero{
  min-height:310px;
  background:
    linear-gradient(
      90deg,
      rgba(5,27,43,.9),
      rgba(5,27,43,.45)
    ),
    url("https://images.unsplash.com/photo-1600566753086-00f18fb6b3ea?auto=format&fit=crop&w=1800&q=85")
    center/cover;
  color:#fff;
  display:flex;
  align-items:center;
}

.page-hero h1{
  font-size:50px;
  margin:5px 0;
}

.page-hero p{
  max-width:650px;
  margin:0;
}


/* =========================
   SERVICES
========================= */

.service-list{
  padding:55px 0;
}

.service-row{
  display:grid;
  grid-template-columns:60px 1fr 280px;
  gap:24px;
  align-items:center;
  padding:28px 0;
  border-bottom:1px solid var(--line);
}

.service-icon{
  font-size:34px;
}

.service-row h3{
  font-size:17px;
}

.service-row p{
  font-size:13px;
  color:var(--muted);
  margin:0;
}

.service-img{
  height:130px;
  border-radius:3px;
  background-position:center;
  background-size:cover;
}

.s1{
  background-image:url("https://images.unsplash.com/photo-1600585154526-990dced4db0d?auto=format&fit=crop&w=700&q=80");
}

.s2{
  background-image:url("https://images.unsplash.com/photo-1600607688969-a5bfcd646154?auto=format&fit=crop&w=700&q=80");
}

.s3{
  background-image:url("https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=700&q=80");
}

.s4{
  background-image:url("https://images.unsplash.com/photo-1581094794329-c8112a89af12?auto=format&fit=crop&w=700&q=80");
}

.note{
  margin-top:26px;
  background:#eaf6e9;
  padding:18px 20px;
  border-radius:3px;
  color:#245d2e;
  font-size:13px;
}


/* =========================
   STEPS
========================= */

.steps{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  padding:55px 0;
}

.step{
  border-top:3px solid var(--green);
  padding-top:17px;
}

.num{
  font-size:12px;
  font-weight:900;
  color:var(--green);
}

.step h3{
  font-size:16px;
  margin:6px 0;
}

.step p{
  font-size:12px;
  color:var(--muted);
}


/* =========================
   FAQ
========================= */

.faq{
  max-width:900px;
  margin:0 auto;
  padding:0 0 65px;
}

.faq details{
  border-bottom:1px solid var(--line);
  padding:17px 0;
}

.faq summary{
  font-weight:700;
  cursor:pointer;
  font-size:14px;
}

.faq p{
  color:var(--muted);
  font-size:13px;
}


/* =========================
   ABOUT
========================= */

.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:45px;
  align-items:center;
  padding:65px 0;
}

.about-photo{
  height:420px;
  background:
    url("https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=1000&q=85")
    center/cover;
}

.credentials{
  background:var(--light);
  padding:48px 0;
}

.credential-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:1px;
  background:var(--line);
  margin-top:25px;
}

.credential{
  background:#fff;
  padding:25px 14px;
  text-align:center;
  font-size:11px;
  font-weight:750;
}


/* =========================
   CONTACT
========================= */

.contact{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:35px;
  padding:55px 0 75px;
}

.contact-box{
  background:var(--navy);
  color:#fff;
  padding:32px;
}

.contact-line{
  display:flex;
  gap:14px;
  margin:22px 0;
}

.contact-line b{
  display:block;
}

.contact-line span{
  font-size:12px;
  color:#c9d6dc;
}

form{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:13px;
}

label{
  font-size:11px;
  font-weight:750;
}

input,
select,
textarea{
  width:100%;
  padding:12px;
  border:1px solid #d5dee3;
  border-radius:3px;
  margin-top:5px;
  font:inherit;
  font-size:12px;
}

textarea{
  min-height:130px;
  resize:vertical;
}

.full{
  grid-column:1/-1;
}


/* =========================
   FOOTER
========================= */

footer{
  background:var(--navy);
  color:#d5e0e5;
  padding:28px 0;
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:center;
  font-size:11px;
}

.footer-logo{
  color:#fff;
}


/* =========================
   TABLET / MOBILE
========================= */

@media(max-width:800px){

  header{
    height:68px;
  }

  .container{
    width:min(var(--max),calc(100% - 28px));
  }

  /* LOGO = 100px ON MOBILE */
  .site-logo{
    width:100px !important;
    max-width:100px !important;
    height:auto !important;
  }

  nav{
    display:none;
  }

  .mobile{
    display:block;
  }

  .hero{
    min-height:600px;
  }

  .hero-content{
    padding:70px 0;
  }

  .hero h1{
    font-size:46px;
  }

  .trust,
  .cards,
  .steps,
  .credential-grid{
    grid-template-columns:1fr 1fr;
  }

  .split,
  .about-grid,
  .contact{
    grid-template-columns:1fr;
    gap:25px;
  }

  .photo{
    min-height:280px;
  }

  .service-row{
    grid-template-columns:45px 1fr;
  }

  .service-img{
    grid-column:2;
    height:170px;
  }

  .page-hero h1{
    font-size:42px;
  }

  form{
    grid-template-columns:1fr;
  }

  .full{
    grid-column:auto;
  }

  .footer-inner{
    flex-direction:column;
    align-items:flex-start;
  }
}


/* =========================
   SMALL PHONES
========================= */

@media(max-width:480px){

  .site-logo{
    width:90px !important;
    max-width:90px !important;
  }

  .trust,
  .cards,
  .steps,
  .credential-grid{
    grid-template-columns:1fr;
  }

  .trust-item{
    border-right:0;
    border-bottom:1px solid var(--line);
  }

  h2{
    font-size:30px;
  }
}