:root{
  --navy:#1E2C42;
  --navy-2:#243754;
  --orange:#F88121;
  --cream:#F6F3EB;
  --white:#FFFFFF;
  --text:#1f2937;
  --muted:#667085;
  --line:rgba(30,44,66,0.10);
  --shadow:0 20px 60px rgba(17,24,39,0.10);
  --radius:24px;
  --max:1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Inter",sans-serif;
  color:var(--text);
  background:#fff;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}

.container{
  width:min(var(--max), calc(100% - 40px));
  margin:0 auto;
}

.section{
  padding:96px 0;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:12px;
  letter-spacing:.16em;
  text-transform:uppercase;
  font-weight:700;
  color:rgba(255,255,255,0.88);
}

.eyebrow .dot,
.section-eyebrow .dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--orange);
  display:inline-block;
}

.section-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:12px;
  letter-spacing:.16em;
  text-transform:uppercase;
  font-weight:700;
  color:var(--navy);
  margin-bottom:14px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 22px;
  border-radius:999px;
  font-weight:700;
  transition:.25s ease;
  border:1px solid transparent;
  white-space:nowrap;
  cursor:pointer;
}

.btn-primary{
  background:var(--orange);
  color:#fff;
  box-shadow:0 12px 28px rgba(248,129,33,0.28);
}

.btn-primary:hover{
  transform:translateY(-1px);
  box-shadow:0 18px 36px rgba(248,129,33,0.32);
}

.btn-secondary{
  background:rgba(255,255,255,0.08);
  color:#fff;
  border-color:rgba(255,255,255,0.22);
  backdrop-filter:blur(8px);
}

.btn-secondary:hover{
  background:rgba(255,255,255,0.14);
}

.btn-light{
  background:#fff;
  color:var(--navy);
  border:1px solid rgba(255,255,255,0.4);
}

.btn-light:hover,
.btn-outline:hover{
  transform:translateY(-1px);
}

.btn-outline{
  background:#fff;
  color:var(--navy);
  border:1px solid rgba(30,44,66,0.14);
}

.btn-outline:hover{
  box-shadow:0 14px 30px rgba(17,24,39,0.08);
}

.site-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:1000;
  transition:all .25s ease;
  background:transparent;
}

.site-header.scrolled{
  background:rgba(17,24,39,0.78);
  backdrop-filter:blur(14px);
  box-shadow:0 8px 30px rgba(0,0,0,0.14);
}

.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  min-height:118px;
}

.brand{
  display:inline-flex;
  align-items:center;
  flex:0 0 auto;
}

.brand img{
  height:86px;
  width:auto;
  max-width:none;
  object-fit:contain;
  display:block;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:32px;
}

.nav-links a{
  color:#fff;
  font-weight:700;
  font-size:17px;
  line-height:1;
  opacity:.94;
}

.nav-links a:hover,
.nav-links a.active{
  opacity:1;
  color:#fff;
}

.menu-btn{
  display:none;
  border:1px solid rgba(255,255,255,0.24);
  background:rgba(255,255,255,0.08);
  color:#fff;
  padding:11px 15px;
  border-radius:999px;
  font-weight:700;
  font-size:15px;
  cursor:pointer;
}

.icon{
  width:18px;
  height:18px;
  stroke-width:2.2;
  color:var(--orange);
  flex:0 0 auto;
}

.page-hero{
  position:relative;
  min-height:78vh;
  display:flex;
  align-items:flex-end;
  overflow:hidden;
  background:
    linear-gradient(180deg, rgba(16,24,40,0.18) 0%, rgba(16,24,40,0.52) 42%, rgba(16,24,40,0.78) 100%),
    linear-gradient(90deg, rgba(30,44,66,0.82) 0%, rgba(30,44,66,0.58) 45%, rgba(30,44,66,0.30) 100%),
    var(--hero-image) center center/cover no-repeat;
  color:#fff;
}

.page-hero::after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:120px;
  background:linear-gradient(to bottom, rgba(255,255,255,0), #fff);
  pointer-events:none;
}

.page-hero-content{
  position:relative;
  z-index:1;
  width:100%;
  padding:190px 0 96px;
}

.page-hero-grid{
  width:min(1220px, calc(100% - 80px));
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(0, 720px) minmax(320px, 380px);
  justify-content:space-between;
  align-items:end;
  gap:44px;
}

.page-hero-copy{
  max-width:720px;
}

.page-hero-copy h1{
  margin:18px 0 18px;
  font-size:clamp(40px, 6vw, 68px);
  line-height:1.02;
  letter-spacing:-0.04em;
  font-weight:800;
  max-width:10ch;
}

.page-hero-copy .lede{
  margin:0;
  font-size:clamp(17px, 2vw, 20px);
  color:rgba(255,255,255,0.88);
  max-width:640px;
}

.page-hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:32px;
}

.page-hero-meta{
  display:flex;
  flex-wrap:wrap;
  gap:20px;
  margin-top:26px;
  color:rgba(255,255,255,0.82);
  font-size:14px;
}

.hero-panel{
  width:100%;
  max-width:380px;
  justify-self:end;
  background:rgba(255,255,255,0.10);
  border:1px solid rgba(255,255,255,0.18);
  border-radius:28px;
  padding:30px;
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  box-shadow:0 20px 60px rgba(0,0,0,0.20);
}

.hero-panel h2{
  margin:0 0 16px;
  font-size:15px;
  letter-spacing:.10em;
  text-transform:uppercase;
  color:rgba(255,255,255,0.80);
}

.hero-panel-list{
  display:grid;
  gap:16px;
}

.hero-panel-item{
  padding:16px 0;
  border-top:1px solid rgba(255,255,255,0.14);
}

.hero-panel-item:first-child{
  border-top:none;
  padding-top:0;
}

.hero-panel-item strong{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:16px;
  font-weight:700;
  margin-bottom:6px;
}

.hero-panel-item span{
  display:block;
  color:rgba(255,255,255,0.78);
  font-size:14px;
  line-height:1.55;
}

.section-head{
  margin-bottom:40px;
}

.section-head h2{
  margin:0 0 14px;
  font-size:clamp(30px, 4vw, 48px);
  line-height:1.06;
  letter-spacing:-0.03em;
  color:var(--navy);
}

.section-head p{
  margin:0;
  color:var(--muted);
  font-size:17px;
  max-width:760px;
}

.grid-2{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:24px;
}

.grid-3{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:24px;
}

.grid-4{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:22px;
}

.card{
  border:1px solid var(--line);
  border-radius:26px;
  padding:28px;
  background:#fff;
  box-shadow:0 12px 40px rgba(17,24,39,0.05);
}

.card h3{
  margin:0 0 10px;
  font-size:22px;
  line-height:1.15;
  color:var(--navy);
  letter-spacing:-0.02em;
}

.card p{
  margin:0;
  color:var(--muted);
  font-size:15px;
}

.tile-icon{
  width:52px;
  height:52px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background:rgba(248,129,33,0.10);
  margin-bottom:18px;
}

.tile-icon .icon{
  width:22px;
  height:22px;
}

.list{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}

.list li{
  position:relative;
  padding-left:18px;
  color:var(--text);
  font-size:14px;
}

.list li::before{
  content:"";
  position:absolute;
  left:0;
  top:.75em;
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--orange);
  transform:translateY(-50%);
}

.band{
  background:var(--cream);
}

.split-feature{
  display:grid;
  grid-template-columns:minmax(0, 1.05fr) minmax(0, .95fr);
  gap:34px;
  align-items:stretch;
}

.feature-panel{
  border-radius:30px;
  overflow:hidden;
  min-height:500px;
  box-shadow:var(--shadow);
}

.feature-image{
  background:
    linear-gradient(180deg, rgba(30,44,66,0.10), rgba(30,44,66,0.30)),
    var(--feature-image) center center/cover no-repeat;
  min-height:100%;
}

.feature-copy{
  background:var(--navy);
  color:#fff;
  padding:44px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.feature-copy .eyebrow{
  color:rgba(255,255,255,0.72);
}

.feature-copy h2{
  margin:18px 0 16px;
  font-size:clamp(30px,4vw,46px);
  line-height:1.05;
  letter-spacing:-0.03em;
}

.feature-copy p{
  margin:0 0 24px;
  color:rgba(255,255,255,0.82);
  font-size:17px;
}

.feature-list{
  display:grid;
  gap:16px;
}

.feature-item{
  display:grid;
  grid-template-columns:42px 1fr;
  gap:14px;
  align-items:start;
}

.feature-item .badge{
  width:42px;
  height:42px;
  border-radius:14px;
  background:rgba(255,255,255,0.10);
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,0.12);
}

.feature-item strong{
  display:block;
  margin-bottom:4px;
  font-size:16px;
}

.feature-item span{
  display:block;
  color:rgba(255,255,255,0.74);
  font-size:14px;
  line-height:1.55;
}

.cta-section{
  padding:96px 0;
}

.cta-card{
  position:relative;
  overflow:hidden;
  border-radius:32px;
  background:
    linear-gradient(135deg, rgba(30,44,66,0.78), rgba(36,55,84,0.72)),
    var(--cta-image) center center/cover no-repeat;
  color:#fff;
  padding:56px;
  box-shadow:0 24px 70px rgba(17,24,39,0.16);
}

.cta-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    rgba(30,44,66,0.60) 0%,
    rgba(30,44,66,0.40) 55%,
    rgba(30,44,66,0.20) 100%
  );
  pointer-events:none;
}

.cta-inner{
  position:relative;
  z-index:1;
  max-width:720px;
}

.cta-inner h2{
  margin:0 0 14px;
  font-size:clamp(32px,4vw,50px);
  line-height:1.03;
  letter-spacing:-0.03em;
}

.cta-inner p{
  margin:0 0 28px;
  font-size:18px;
  color:rgba(255,255,255,0.84);
}

.cta-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

.form-card{
  border:1px solid var(--line);
  border-radius:28px;
  padding:30px;
  background:#fff;
  box-shadow:0 14px 40px rgba(17,24,39,0.06);
}

.form{
  display:grid;
  gap:18px;
}

.form-row{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:16px;
}

label{
  display:block;
  font-size:14px;
  font-weight:700;
  color:var(--navy);
  margin-bottom:8px;
}

input,
textarea{
  width:100%;
  border:1px solid rgba(30,44,66,0.12);
  border-radius:16px;
  padding:14px 16px;
  font:inherit;
  color:var(--text);
  background:#fff;
  transition:border-color .2s ease, box-shadow .2s ease;
}

input:focus,
textarea:focus{
  outline:none;
  border-color:rgba(248,129,33,0.9);
  box-shadow:0 0 0 4px rgba(248,129,33,0.10);
}

textarea{
  min-height:170px;
  resize:vertical;
}

.info-card{
  border:1px solid var(--line);
  border-radius:28px;
  padding:30px;
  background:linear-gradient(180deg, #fff, #fbfbfc);
  box-shadow:0 14px 40px rgba(17,24,39,0.05);
}

.info-card h3{
  margin:0 0 12px;
  font-size:24px;
  color:var(--navy);
  letter-spacing:-0.02em;
}

.info-card p{
  margin:0 0 18px;
  color:var(--muted);
  font-size:15px;
}

.info-stack{
  display:grid;
  gap:16px;
}

.info-row{
  padding-top:16px;
  border-top:1px solid rgba(30,44,66,0.10);
}

.info-row:first-child{
  border-top:none;
  padding-top:0;
}

.info-row strong{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--navy);
  margin-bottom:6px;
  font-size:15px;
}

.info-row span,
.info-row a{
  color:var(--muted);
  font-size:15px;
}

.footer{
  padding:28px 0 36px;
  border-top:1px solid rgba(30,44,66,0.08);
  background:#fff;
}

.footer-inner{
  display:flex;
  gap:20px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
}

.footer-brand{
  color:var(--navy);
  font-weight:700;
}

.footer-meta{
  color:var(--muted);
  font-size:14px;
}

.footer-links{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.footer-links a{
  color:var(--muted);
  font-weight:600;
  font-size:14px;
}

/* Homepage-specific shared sections */
.home-intro{
  margin-top:-56px;
  position:relative;
  z-index:2;
}

.home-intro-card{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:30px;
  align-items:center;
  border-radius:28px;
  padding:34px;
}

.home-intro-title{
  margin:0 0 14px;
  font-size:clamp(30px,4vw,48px);
  line-height:1.06;
  letter-spacing:-0.03em;
  color:var(--navy);
}

.home-intro-text{
  margin:0;
  color:var(--muted);
  font-size:17px;
  max-width:760px;
}

.home-mini-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:14px;
}

.home-mini-card{
  padding:18px;
  border-radius:20px;
  box-shadow:none;
  background:linear-gradient(180deg, #fff, #fbfbfc);
}

.home-mini-card strong{
  display:block;
  color:var(--navy);
  font-size:15px;
  margin-bottom:4px;
}

.home-mini-card span{
  color:var(--muted);
  font-size:14px;
  line-height:1.5;
}

.process-card{
  border-radius:24px;
}

.process-no{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border-radius:999px;
  background:var(--navy);
  color:#fff;
  font-size:14px;
  font-weight:800;
  margin-bottom:16px;
}

.process-card h3{
  font-size:20px;
}

@media (max-width: 1080px){
  .page-hero-grid,
  .split-feature,
  .grid-3,
  .grid-4,
  .home-intro-card{
    grid-template-columns:1fr;
  }

  .grid-2{
    grid-template-columns:1fr;
  }

  .page-hero-grid{
    width:min(100%, 760px);
    gap:28px;
  }

  .hero-panel{
    max-width:none;
    justify-self:start;
  }

  .feature-panel{
    min-height:340px;
  }

  .page-hero-copy h1{
    max-width:10ch;
  }

  .nav-links{
    gap:24px;
  }

  .nav-links a{
    font-size:16px;
  }
}

@media (max-width: 760px){
  .container{
    width:min(var(--max), calc(100% - 24px));
  }

  .nav-inner{
    min-height:96px;
  }

  .brand img{
    height:64px;
  }

  .menu-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
  }

  .nav-links{
    position:absolute;
    top:96px;
    left:12px;
    right:12px;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    background:rgba(17,24,39,0.96);
    border:1px solid rgba(255,255,255,0.10);
    border-radius:20px;
    padding:10px;
    box-shadow:0 18px 40px rgba(0,0,0,0.22);
  }

  .nav-links.open{
    display:flex;
  }

  .nav-links a{
    width:100%;
    padding:14px 10px;
    font-size:16px;
  }

  .page-hero{
    min-height:82vh;
    align-items:flex-end;
  }

  .page-hero-content{
    padding:166px 0 88px;
  }

  .page-hero-grid{
    width:min(100%, calc(100% - 24px));
    grid-template-columns:1fr;
    gap:24px;
  }

  .page-hero-copy h1{
    font-size:44px;
    max-width:none;
  }

  .hero-panel,
  .card,
  .form-card,
  .info-card,
  .home-intro-card{
    padding:24px;
  }

  .form-row,
  .grid-3,
  .grid-2,
  .grid-4,
  .home-mini-grid{
    grid-template-columns:1fr;
  }

  .section{
    padding:72px 0;
  }

  .feature-copy,
  .cta-card{
    padding:28px;
  }

  .cta-inner p{
    font-size:16px;
  }

  .home-intro{
    margin-top:-34px;
  }
}