@import url('https://fonts.googleapis.com/css2?family=Inter:wght@500;600;700;800;900&display=swap');

:root{
  --ink:#07112e;
  --navy:#08146f;
  --muted:#667085;
  --line:#e4e8f0;
  --soft:#f5f7fb;
  --white:#fff;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
  color:var(--ink);
  background:var(--soft);
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{color:inherit}
h1,h2,h3,p{margin-top:0}
p{color:var(--muted);line-height:1.55}

.site-header{
  position:sticky;
  top:0;
  z-index:20;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 18px;
  background:rgba(255,255,255,.96);
  border-bottom:1px solid var(--line);
}
.brand img{width:104px}
.nav{display:none}
.nav-cta{
  text-decoration:none;
  background:var(--navy);
  color:white;
  font-weight:900;
  padding:12px 16px;
  border-radius:999px;
  white-space:nowrap;
}

.hero{
  display:grid;
  gap:28px;
  padding:44px 20px 30px;
  background:linear-gradient(180deg,#fff 0%,#f4f7fc 100%);
}
.hero-copy{max-width:780px}
.eyebrow{
  font-size:12px;
  letter-spacing:.22em;
  text-transform:uppercase;
  font-weight:900;
  color:#6b7285;
  margin-bottom:14px;
}
h1{
  font-size:clamp(42px,11vw,82px);
  line-height:.96;
  letter-spacing:-.06em;
  margin-bottom:18px;
}
h2{
  font-size:clamp(34px,8vw,58px);
  line-height:1;
  letter-spacing:-.05em;
  margin-bottom:18px;
}
h3{
  font-size:25px;
  line-height:1.05;
  letter-spacing:-.035em;
  margin-bottom:10px;
}
.lead{font-size:20px;max-width:700px}
.button, button{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  min-height:56px;
  border:0;
  border-radius:16px;
  background:var(--navy);
  color:white;
  text-decoration:none;
  font-weight:900;
  font-size:17px;
  padding:15px 22px;
}
.hero-image{
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 18px 45px rgba(7,17,46,.12);
}
.hero-image img{
  width:100%;
  height:260px;
  object-fit:cover;
}

.section{padding:56px 20px}
.section-head{max-width:900px;margin:0 auto 26px}
.section-head p{font-size:18px}

.result img{
  width:100%;
  max-width:980px;
  margin:0 auto;
  border-radius:24px;
  box-shadow:0 18px 45px rgba(7,17,46,.12);
}

.cards{
  max-width:1080px;
  margin:0 auto;
  display:grid;
  gap:20px;
}
.card{
  background:white;
  border:1px solid var(--line);
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 14px 34px rgba(7,17,46,.08);
}
.card img{
  width:100%;
  height:220px;
  object-fit:cover;
}
.card div{padding:24px}
.card p{font-size:18px;margin-bottom:0}

.why{
  background:#07112e;
  color:white;
}
.why p,.why .eyebrow{color:#c8d0df}
.why h2{color:white}
.benefits{
  max-width:1080px;
  margin:0 auto;
  display:grid;
  gap:14px;
}
.benefits div{
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.14);
  border-radius:20px;
  padding:22px;
}
.benefits strong{
  display:block;
  font-size:22px;
  margin-bottom:8px;
}
.benefits span{
  display:block;
  color:#d7deec;
  line-height:1.45;
}

.logos{
  max-width:900px;
  margin:0 auto;
  display:grid;
  gap:18px;
}
.logos div{
  background:white;
  border:1px solid var(--line);
  border-radius:22px;
  min-height:180px;
  padding:24px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.logos img{
  max-width:100%;
  max-height:130px;
  width:auto;
  height:auto;
  object-fit:contain;
}

.faq{max-width:920px;margin:0 auto}
details{
  background:white;
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px;
  margin-bottom:12px;
}
summary{
  cursor:pointer;
  font-weight:900;
  font-size:20px;
  line-height:1.3;
}
details p{font-size:18px;margin:14px 0 0}

.enquiry{background:white}
.enquiry-card{
  max-width:780px;
  margin:0 auto;
  background:var(--soft);
  border:1px solid var(--line);
  border-radius:26px;
  padding:24px;
}
.contact-links{
  display:grid;
  gap:8px;
  margin:22px 0;
}
.contact-links a{
  color:var(--navy);
  font-weight:900;
  word-break:break-word;
}
form{display:grid;gap:14px}
label{font-weight:900}
input,textarea{
  width:100%;
  display:block;
  margin-top:7px;
  border:1px solid #cbd3e3;
  border-radius:14px;
  padding:15px;
  font:inherit;
  background:white;
}
textarea{resize:vertical}
button{width:100%;cursor:pointer}

.footer{
  background:white;
  text-align:center;
  padding:42px 20px;
  border-top:1px solid var(--line);
}
.footer img{width:140px;margin:0 auto 12px}
.footer p{margin:0}

@media (min-width:760px){
  .site-header{padding:16px 40px}
  .brand img{width:140px}
  .nav{display:flex;gap:24px;font-weight:800;color:#39445c}
  .nav a{text-decoration:none}
  .hero{
    grid-template-columns:1fr 1fr;
    align-items:center;
    padding:70px 40px;
  }
  .hero-image img{height:470px}
  .section{padding:82px 40px}
  .cards{grid-template-columns:repeat(3,1fr)}
  .benefits{grid-template-columns:repeat(4,1fr)}
  .logos{grid-template-columns:repeat(2,1fr)}
  .logos div{min-height:220px}
  .logos img{max-height:165px}
  .enquiry-card{padding:42px}
}


.section-head.compact{
  margin-bottom:18px;
}
.section-head.compact .eyebrow{
  margin-bottom:0;
}
