:root{
  --navy:#24385B;
  --navy-dark:#1B2A45;
  --orange:#CE4420;
  --white:#ffffff;
  --light:#f5f7fa;
  --light-2:#eef2f6;
  --text:#24385B;
  --muted:#5d6d84;
  --border:#d9e0e8;
  --shadow:0 14px 34px rgba(36,56,91,.12);
  --radius:22px;
  --max:1200px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--text);
  background:linear-gradient(135deg, rgba(245,247,250,.92) 0%, rgba(237,242,247,.95) 100%);
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.16;
  background-image:linear-gradient(
    135deg,
    transparent 0%,
    transparent 44%,
    #dfe5ec 44%,
    #dfe5ec 50%,
    transparent 50%,
    transparent 100%
  );
  background-size:460px 460px;
}

a{
  text-decoration:none;
  color:inherit;
}

img{
  max-width:100%;
  display:block;
}

.container{
  width:min(var(--max),92%);
  margin:0 auto;
  position:relative;
  z-index:1;
}

.nowrap{
  white-space:nowrap;
}

/* HEADER / NAV */

.header{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(255,255,255,.95);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(0,0,0,.05);
  transition:all .25s ease;
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:16px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
}

.brand-mark{
  width:150px;
  height:70px;
  border-radius:0;
  overflow:hidden;
  background:transparent;
  box-shadow:none;
  flex-shrink:0;
}

.brand-mark img{
  width:100%;
  height:auto;
  object-fit:contain;
}

.brand-text{
  display:flex;
  flex-direction:column;
  gap:2px;
}

.brand-text strong{
  font-size:1.4rem;
  letter-spacing:.2px;
}

.brand-text span{
  color:var(--orange);
  font-size:.90rem;
  font-weight:600;
}

nav{
  display:flex;
  align-items:center;
  gap:24px;
}

nav a{
  position:relative;
  color:var(--navy);
  font-weight:700;
  font-size:.95rem;
  padding:6px 2px;
  transition:.2s ease;
}

nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-4px;
  width:0;
  height:2px;
  background:var(--orange);
  transition:width .25s ease;
}

nav a:hover{
  color:var(--orange);
}

nav a:hover::after{
  width:100%;
}

.menu-toggle{
  display:none;
  width:48px;
  height:48px;
  border:none;
  background:#fff;
  border-radius:12px;
  box-shadow:var(--shadow);
  padding:0;
  cursor:pointer;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
}

.menu-toggle span{
  display:block;
  width:22px;
  height:2px;
  background:var(--navy);
  border-radius:999px;
  transition:.25s ease;
}

.menu-toggle.active span:nth-child(1){
  transform:translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2){
  opacity:0;
}

.menu-toggle.active span:nth-child(3){
  transform:translateY(-7px) rotate(-45deg);
}

/* BUTTONS */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:none;
  cursor:pointer;
  font-weight:800;
  padding:14px 24px;
  border-radius:14px;
  transition:.2s ease;
}

.btn:hover{
  transform:translateY(-1px);
  opacity:.96;
}

.btn.orange{
  background:linear-gradient(135deg, #CE4420 0%, #b93b1c 100%);
  color:#fff;
  box-shadow:0 12px 28px rgba(206,68,32,.28);
  border:1px solid rgba(255,255,255,.18);
}

.btn.orange:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 34px rgba(206,68,32,.34);
}

.btn.navy{
  background:linear-gradient(135deg, #24385B 0%, #1B2A45 100%);
  color:#fff;
  box-shadow:0 12px 28px rgba(36,56,91,.28);
  border:1px solid rgba(255,255,255,.12);
}

.btn.navy:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 34px rgba(36,56,91,.35);
}

.btn.outline{
  background:#fff;
  border:2px solid var(--navy);
  color:var(--navy);
}

.nav-cta{
  padding:12px 22px;
  font-size:.95rem;
  border-radius:999px;
  letter-spacing:.2px;
}

/* MAIN / HERO */

main{
  overflow:hidden;
}

.hero{
  padding:68px 0 34px;
}

.hero-wrap{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:28px;
  align-items:stretch;
  background:linear-gradient(
    90deg,
    rgba(255,255,255,.98) 0%,
    rgba(255,255,255,.94) 56%,
    rgba(255,255,255,.36) 100%
  );
  border-radius:28px;
  overflow:hidden;
  box-shadow:var(--shadow);
}

.hero-copy{
  padding:56px 48px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.kicker{
  color:var(--orange);
  text-transform:uppercase;
  letter-spacing:1.2px;
  font-size:.82rem;
  font-weight:900;
  margin-bottom:14px;
}

.hero h1{
  font-size:3.35rem;
  line-height:1.05;
  margin:0 0 18px;
  color:var(--navy);
}

.hero p{
  font-size:1.12rem;
  color:var(--muted);
  margin:0 0 28px;
  max-width:620px;
}

.hero-actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  align-items:center;
}

.hero-note{
  margin-top:18px;
  color:var(--muted);
  font-size:.94rem;
  font-weight:600;
}

/* HERO VISUAL + SLIDER */

.hero-visual{
  position:relative;
  min-height:460px;
  overflow:hidden;
  background:
    linear-gradient(to left, rgba(255,255,255,.06), rgba(255,255,255,.30)),
    linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 48%, #3b5682 100%);
}

.hero-visual::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:2;
  background:
    radial-gradient(circle at 74% 22%, rgba(255,255,255,.25), transparent 24%),
    linear-gradient(135deg, transparent 0 34%, rgba(255,255,255,.08) 34% 40%, transparent 40% 100%),
    linear-gradient(315deg, transparent 0 50%, rgba(255,255,255,.07) 50% 58%, transparent 58% 100%);
}

.hero-slider{
  position:absolute;
  inset:0;
  z-index:1;
  width:100%;
  height:100%;
  overflow:hidden;
}

.hero-slider .slide{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0;
  transition:opacity 1s ease-in-out;
}

.hero-slider .slide.active{
  opacity:1;
}

.hero-panel{
  position:absolute;
  right:30px;
  bottom:30px;
  left:30px;
  z-index:3;
  display:grid;
  gap:12px;
}

.hero-stat{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.16);
  color:#fff;
  border-radius:18px;
  padding:18px 18px;
  backdrop-filter:blur(8px);
}

.hero-stat strong{
  display:block;
  font-size:1rem;
  margin-bottom:4px;
}

/* SERVICE STRIP */

.service-strip{
  margin-top:-28px;
  position:relative;
  z-index:2;
  clear:both;
}

.tiles{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  box-shadow:var(--shadow);
}

.tiles a{
  text-decoration:none;
  color:inherit;
}

.tile{
  display:block;
  padding:28px 16px 22px;
  text-align:center;
  border-right:1px solid var(--border);
  border-bottom:5px solid transparent;
  transition:all .2s ease;
  cursor:pointer;
}

.tile:last-child{
  border-right:none;
}

.tile:hover{
  border-bottom-color:var(--orange);
  background:#fafbfd;
  transform:translateY(-2px);
}

.icon{
  width:54px;
  height:54px;
  margin:0 auto 12px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background:rgba(36,56,91,.08);
  color:var(--navy);
  font-size:1.55rem;
  font-weight:900;
}

.tile h3{
  margin:0;
  font-size:1rem;
  color:var(--navy);
}

/* GENERAL SECTIONS */

section{
  padding:58px 0;
}

.section-title{
  text-align:center;
  font-size:2.35rem;
  color:var(--navy);
  margin:0 0 30px;
  font-weight:900;
  position:relative;
}

.section-title::before,
.section-title::after{
  content:"";
  position:absolute;
  top:50%;
  width:25%;
  height:1px;
  background:#d7dee6;
}

.section-title::before{
  left:0;
}

.section-title::after{
  right:0;
}

.grid-4,
.grid-3,
.grid-2{
  display:grid;
  gap:20px;
}

.grid-4{
  grid-template-columns:repeat(4,1fr);
}

.grid-3{
  grid-template-columns:repeat(3,1fr);
}

.grid-2{
  grid-template-columns:repeat(2,1fr);
}

.card{
  background:#fff;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:28px 24px;
}

.card h3{
  margin:0 0 12px;
  color:var(--navy);
  font-size:1.18rem;
}

.card p{
  margin:0;
  color:var(--muted);
}

.badge{
  display:inline-block;
  background:rgba(206,68,32,.12);
  color:var(--orange);
  padding:8px 12px;
  border-radius:999px;
  font-size:.78rem;
  font-weight:900;
  margin-bottom:14px;
}

.service-card{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.service-card p{
  line-height:1.7;
}

.service-card ul{
  margin:0;
  padding-left:18px;
  color:var(--muted);
}

.service-card li{
  margin:8px 0;
  line-height:1.6;
}

/* SIMPLE ROWS */

.simple-row{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  box-shadow:var(--shadow);
}

.simple-row div{
  padding:22px 16px;
  text-align:center;
  font-weight:800;
  border-right:1px solid var(--border);
}

.simple-row div:last-child{
  border-right:none;
}

/* TESTIMONIAL */

.testimonial{
  max-width:920px;
  margin:0 auto;
  text-align:center;
  background:linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
  color:#fff;
  border-radius:22px;
  padding:38px 42px;
  box-shadow:var(--shadow);
}

.testimonial .stars{
  color:#f4b400;
  letter-spacing:4px;
  font-size:1.45rem;
  margin-bottom:12px;
}

.testimonial p{
  margin:0;
  font-size:1.25rem;
  line-height:1.5;
}

/* PROCESS */

.process{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.step{
  background:#fff;
  border-radius:20px;
  box-shadow:var(--shadow);
  padding:28px 24px;
  text-align:center;
}

.step-number{
  width:52px;
  height:52px;
  border-radius:50%;
  background:var(--navy);
  color:#fff;
  display:grid;
  place-items:center;
  font-weight:900;
  font-size:1.28rem;
  margin:0 auto 14px;
}

.step h3{
  margin:0 0 10px;
  font-size:1.12rem;
}

.step p{
  margin:0;
  color:var(--muted);
}

/* CTA BAND */

.cta-band{
  text-align:center;
  margin-top:34px;
}

.footer-cta{
  display:inline-block;
  background:var(--orange);
  color:#fff;
  font-weight:900;
  text-decoration:none;
  padding:18px 36px;
  border-radius:16px;
  box-shadow:0 14px 30px rgba(206,68,32,.25);
  font-size:1.12rem;
}

/* PRE-FOOTER CTA */

.pre-footer-cta{
  padding:30px 0 10px;
}

.pre-footer-box{
  background:linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color:#fff;
  border-radius:24px;
  padding:34px 36px;
  box-shadow:var(--shadow);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}

.pre-footer-copy h3{
  margin:0 0 8px;
  font-size:2rem;
  color:#fff;
}

.pre-footer-copy p{
  margin:0;
  color:rgba(255,255,255,.82);
  font-size:1rem;
  line-height:1.6;
}

/* FORMS */

.form{
  display:grid;
  gap:16px;
}

.form input,
.form textarea,
.form select{
  width:100%;
  padding:14px 14px;
  border-radius:14px;
  border:1px solid var(--border);
  font:inherit;
  background:#fff;
}

.form textarea{
  min-height:150px;
  resize:vertical;
}

.form input:focus,
.form textarea:focus,
.form select:focus{
  outline:none;
  border-color:rgba(36,56,91,.35);
  box-shadow:0 0 0 4px rgba(36,56,91,.08);
}

.form input[type="file"]{
  padding:12px 14px;
  background:#f8fafc;
  border:1px dashed var(--border);
}

.consent-box{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:.85rem;
  color:var(--muted);
  line-height:1.5;
  padding:14px 16px;
  border:1px solid var(--border);
  border-radius:14px;
  background:#f8fafc;
}

.consent-box input[type="checkbox"]{
  width:auto;
  margin:3px 0 0;
  padding:0;
  flex-shrink:0;
  accent-color:var(--navy);
}

.consent-box a{
  color:var(--navy);
  text-decoration:underline;
  font-weight:700;
}

.consent-box a:hover{
  color:var(--orange);
}

.checklist{
  margin:14px 0 0;
  padding-left:18px;
  color:var(--muted);
}

.checklist li{
  margin:8px 0;
  line-height:1.6;
}

.callout{
  background:linear-gradient(180deg,#fff 0%, #f8fafc 100%);
  border:1px solid var(--border);
  width:100%;
}

.callout h1{
  max-width:1200px;
  line-height:1.12;
}

.callout p{
  max-width:1200px;
  line-height:1.7;
  font-size:1.06rem;
}

.hero .callout p{
  margin-bottom:0;
}

.resource-card h3{
  margin-bottom:10px;
}

/* TRUST BAR */

.trust-bar{
  background:#ffffff;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  padding:20px 0;
}

.trust-content{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:28px;
  flex-wrap:wrap;
  font-weight:700;
  color:var(--navy);
}

.trust-content span{
  color:var(--muted);
  font-weight:600;
}

.trust-items{
  display:flex;
  gap:30px;
  flex-wrap:wrap;
}

.trust-items div{
  opacity:.85;
  font-weight:700;
}

/* FOOTER */

.footer{
  margin-top:40px;
  background:linear-gradient(180deg, var(--navy-dark) 0%, #162338 100%);
  color:#fff;
  padding:50px 0 20px;
}

.footer a{
  color:#fff;
  text-decoration:none;
}

.footer a:hover{
  text-decoration:underline;
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:40px;
}

.footer-col h3{
  margin-top:0;
  font-size:1.4rem;
  color:#fff;
}

.footer-col h4{
  margin:0 0 12px;
  font-size:1rem;
  color:#fff;
}

.footer-col p{
  color:rgba(255,255,255,.8);
  line-height:1.6;
}

.footer-col a{
  display:block;
  margin-bottom:8px;
  color:rgba(255,255,255,.9);
  font-size:.95rem;
}

.footer-col a:hover{
  color:#fff;
}

.footer-email{
  margin-top:10px;
  font-weight:700;
  color:#fff;
}

.footer-bottom{
  margin-top:40px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,.15);
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:10px;
  font-size:.9rem;
  opacity:.85;
}

.small{
  font-size:.95rem;
}

.muted{
  color:var(--muted);
}

/* RESPONSIVE */

@media (max-width:1024px){
  .hero-wrap,
  .grid-4,
  .grid-3,
  .grid-2,
  .tiles,
  .simple-row,
  .process{
    grid-template-columns:repeat(2,1fr);
  }

  .hero-visual{
    min-height:340px;
  }

  .section-title::before,
  .section-title::after{
    display:none;
  }

  .footer-grid{
    grid-template-columns:1fr 1fr;
    gap:30px;
  }

  .callout{
    max-width:100%;
  }

  .callout h1,
  .callout p{
    max-width:100%;
  }
}

@media (max-width:700px){
  .nav{
    align-items:center;
    flex-wrap:wrap;
    gap:14px;
  }

  .menu-toggle{
    display:flex;
    margin-left:auto;
    order:2;
  }

  nav{
    display:none;
    flex-direction:column;
    width:100%;
    gap:12px;
    order:4;
    padding-top:10px;
  }

  nav.open{
    display:flex;
  }

  nav a{
    display:block;
    width:100%;
    padding:10px 0;
  }

  .nav-cta{
    display:none;
  }

  .hero{
    padding:68px 0 20px;
  }

  .hero-copy{
    padding:38px 24px;
  }

  .hero h1{
    font-size:2.35rem;
  }

  .hero-wrap,
  .grid-4,
  .grid-3,
  .grid-2,
  .tiles,
  .simple-row,
  .process{
    grid-template-columns:1fr;
  }

  .hero-wrap{
    overflow:visible;
    gap:18px;
  }

  .hero-visual{
    min-height:220px;
    position:relative;
  }

  .hero-slider{
    position:absolute;
    inset:0;
  }

  .service-strip{
    margin-top:24px !important;
    position:relative;
    top:auto;
    bottom:auto;
    left:auto;
    right:auto;
    z-index:1;
  }

  .tiles{
    margin-top:0;
    position:relative;
  }

  .tile,
  .simple-row div{
    border-right:none;
    border-bottom:1px solid var(--border);
  }

  .tile:last-child,
  .simple-row div:last-child{
    border-bottom:none;
  }

  .footer-grid{
    grid-template-columns:1fr;
  }

  .footer-bottom{
    flex-direction:column;
    gap:6px;
  }

  .pre-footer-box{
    padding:26px 22px;
  }

  .pre-footer-copy h3{
    font-size:1.6rem;
  }

  .callout{
    max-width:100%;
  }

  .callout h1{
    max-width:100%;
    font-size:2.2rem !important;
  }

  .callout p{
    max-width:100%;
    font-size:1rem;
    line-height:1.6;
  }

  .consent-box{
    font-size:.82rem;
    padding:12px 14px;
  }
}