:root{
  --navy:#1B3A5C;
  --navy-deep:#132B45;
  --orange:#FF6B35;
  --green:#2E9E5B;
  --ink:#1A1A1A;
  --muted:#5A6672;
  --surface:#F5F6F8;
  --line:#E2E6EB;
  --wrap:1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Archivo',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Helvetica,Arial,sans-serif;
  color:var(--ink);
  background:#fff;
  font-size:17px;
  line-height:1.62;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block}
a{color:var(--navy)}

.wrap{width:100%;max-width:var(--wrap);margin:0 auto;padding:0 24px}

h1,h2,h3{font-weight:900;line-height:1.1;letter-spacing:-0.02em;margin:0 0 .5em}
h1{font-size:clamp(2.4rem,6vw,4rem)}
h2{font-size:clamp(1.7rem,3.4vw,2.5rem)}
h3{font-size:1.15rem;letter-spacing:-0.01em}
p{margin:0 0 1em}
.center{text-align:center}
.sub{color:var(--muted);max-width:56ch;margin-left:auto;margin-right:auto}
.small{font-size:.9rem}

.eyebrow{
  text-transform:uppercase;letter-spacing:.14em;font-size:.76rem;font-weight:700;
  color:var(--orange);margin:0 0 1rem;
}
.eyebrow-center{text-align:center}

/* buttons */
.btn{
  display:inline-block;background:var(--navy);color:#fff;text-decoration:none;
  font-weight:700;padding:14px 26px;border-radius:8px;font-size:1rem;
  transition:transform .12s ease, background .12s ease;
}
.btn:hover{background:var(--navy-deep);transform:translateY(-1px)}
.btn-sm{padding:9px 18px;font-size:.92rem}
.btn-lg{padding:17px 34px;font-size:1.05rem}
.btn-accent{background:var(--orange);color:#10202f}
.btn-accent:hover{background:#ef5c26}
.btn-ghost{background:transparent;color:var(--navy);box-shadow:inset 0 0 0 2px var(--line)}
.btn-ghost:hover{background:var(--surface);color:var(--navy)}
.btn-block{display:block;text-align:center;width:100%}

/* header */
.site-header{
  position:sticky;top:0;z-index:50;background:rgba(255,255,255,.94);
  backdrop-filter:blur(8px);border-bottom:1px solid var(--line);
}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:24px;min-height:74px}
.brand img{height:34px;width:auto}
.nav{display:flex;align-items:center;gap:28px}
.nav a{text-decoration:none;color:var(--ink);font-weight:600;font-size:.95rem}
.nav a:hover{color:var(--navy)}
.nav a.btn{color:#fff}

/* hero */
.hero{
  background:
    radial-gradient(900px 420px at 18% -10%, rgba(255,107,53,.16), transparent 62%),
    linear-gradient(170deg,var(--navy) 0%, var(--navy-deep) 100%);
  color:#fff;padding:92px 0 84px;
}
.hero h1{margin-bottom:.35em}
.hero .lede{font-size:1.2rem;color:#D3DCE6;max-width:62ch}
.hero-cta{display:flex;flex-wrap:wrap;gap:14px;margin:34px 0 18px}
.hero .btn{background:var(--orange);color:#10202f}
.hero .btn:hover{background:#ef5c26}
.hero .btn-ghost{background:transparent;color:#fff;box-shadow:inset 0 0 0 2px rgba(255,255,255,.35)}
.hero .btn-ghost:hover{background:rgba(255,255,255,.08);color:#fff}
.hero-note{color:#9FB2C4;font-size:.95rem;font-weight:600;margin:0}

/* sections */
section{padding:84px 0}
.problem{background:#fff}
.problem h2{max-width:22ch;margin-bottom:1.2em}

.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.card{
  background:var(--surface);border:1px solid var(--line);border-radius:12px;padding:28px;
}
.card h3{margin-bottom:.5em}
.card p{margin:0;color:var(--muted);font-size:.98rem}

.pillars{background:var(--surface);border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.pillars h2{margin-bottom:2rem}
.pillar{background:#fff;border:1px solid var(--line);border-radius:12px;padding:30px}
.pillar-num{
  display:inline-block;font-weight:900;font-size:.85rem;letter-spacing:.1em;
  color:var(--orange);margin-bottom:12px;
}
.pillar p{margin:0;color:var(--muted);font-size:.98rem}

.included h2{margin-bottom:.4em}
.checklist{list-style:none;padding:0;margin:44px auto 0;max-width:820px;display:grid;gap:14px}
.checklist li{
  position:relative;padding:16px 18px 16px 52px;background:var(--surface);
  border:1px solid var(--line);border-radius:10px;font-size:1rem;
}
.checklist li::before{
  content:"";position:absolute;left:18px;top:22px;width:18px;height:10px;
  border-left:3px solid var(--green);border-bottom:3px solid var(--green);
  transform:rotate(-45deg);
}

/* pricing */
.pricing{background:var(--surface);border-top:1px solid var(--line)}
.price-card{
  max-width:460px;margin:44px auto 28px;background:#fff;border:1px solid var(--line);
  border-top:5px solid var(--orange);border-radius:14px;padding:38px 34px;
  box-shadow:0 18px 48px rgba(27,58,92,.10);
}
.price-name{font-weight:700;text-transform:uppercase;letter-spacing:.1em;font-size:.8rem;color:var(--muted);margin-bottom:.6em}
.price{margin:0 0 .2em;display:flex;align-items:baseline;gap:8px}
.price-amt{font-size:3.4rem;font-weight:900;letter-spacing:-.03em;line-height:1}
.price-per{color:var(--muted);font-weight:600}
.price-terms{color:var(--muted);font-size:.95rem;margin-bottom:1.6em}
.price-list{list-style:none;padding:0;margin:0 0 28px}
.price-list li{padding:9px 0 9px 28px;position:relative;border-bottom:1px solid var(--line);font-size:.98rem}
.price-list li:last-child{border-bottom:0}
.price-list li::before{
  content:"";position:absolute;left:2px;top:17px;width:13px;height:7px;
  border-left:2.5px solid var(--green);border-bottom:2.5px solid var(--green);transform:rotate(-45deg);
}
.price-alt{margin:16px 0 0;text-align:center;color:var(--muted);font-size:.9rem}

/* faq */
.faq-list{max-width:820px;margin:40px auto 0;display:grid;gap:8px}
.faq-item{padding:24px 0;border-bottom:1px solid var(--line)}
.faq-item h3{margin-bottom:.45em}
.faq-item p{margin:0;color:var(--muted)}

/* contact */
.contact{background:var(--navy);color:#fff;text-align:center}
.contact-inner{max-width:640px}
.contact p{color:#C7D3DF}
.contact-methods{margin:26px 0 10px;font-size:.95rem}
.contact-methods a{color:#fff;font-weight:600}
.contact-hours{font-size:.92rem;color:#9FB2C4;margin:0}

/* lead form */
.lead-form{
  margin:34px 0 8px;text-align:left;background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.14);border-radius:14px;padding:28px;
}
.field-row{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.field{display:block;margin-bottom:16px}
.field > span{
  display:block;font-size:.83rem;font-weight:700;letter-spacing:.03em;
  text-transform:uppercase;color:#AFC0D0;margin-bottom:7px;
}
.field > span em{color:var(--orange);font-style:normal}
.field input,.field select,.field textarea{
  width:100%;padding:12px 14px;border-radius:8px;background:#fff;color:var(--ink);
  border:2px solid transparent;font-family:inherit;font-size:1rem;line-height:1.4;
}
.field textarea{resize:vertical;min-height:84px}
.field input:focus,.field select:focus,.field textarea:focus{
  outline:none;border-color:var(--orange);
}
.field.has-error input,.field.has-error select{border-color:#E04B3B}
.hp{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden}
.lead-form .btn{margin-top:8px}
.form-note{font-size:.85rem;color:#9FB2C4;margin:14px 0 0;text-align:center}
.form-status{margin:12px 0 0;text-align:center;font-weight:600;min-height:1.4em}
.form-status.is-success{color:#7BD79F}
.form-status.is-error{color:#FF9C84}
.lead-form.is-sent .field-row,
.lead-form.is-sent .field,
.lead-form.is-sent .btn,
.lead-form.is-sent .form-note{display:none}

/* footer */
.site-footer{background:var(--navy-deep);color:#AFC0D0;padding:56px 0 0;font-size:.93rem}
.footer-inner{display:flex;flex-wrap:wrap;gap:48px;justify-content:space-between;padding-bottom:40px}
.footer-brand{max-width:420px}
.footer-brand img{height:32px;margin-bottom:20px}
.footer-legal{color:#C7D3DF}
.footer-legal strong{color:#fff}
.site-footer address{font-style:normal;line-height:1.8}
.site-footer a{color:#fff;text-decoration:none}
.site-footer a:hover{text-decoration:underline}
.footer-nav{display:flex;flex-direction:column;gap:11px}
.footer-bottom{border-top:1px solid rgba(255,255,255,.12);padding-top:22px;padding-bottom:26px}
.footer-bottom p{margin:0;font-size:.86rem;color:#8EA2B5}

/* legal pages */
.legal{padding:64px 0 84px;max-width:780px}
.legal h1{font-size:clamp(2rem,4vw,2.8rem);margin-bottom:.3em}
.legal .updated{color:var(--muted);font-size:.92rem;margin-bottom:2.4em}
.legal h2{font-size:1.35rem;margin-top:2.2em}
.legal ul{padding-left:22px}
.legal li{margin-bottom:.5em}
.legal .back{display:inline-block;margin-bottom:28px;font-weight:600;text-decoration:none}

@media (max-width:860px){
  .grid-3{grid-template-columns:1fr}
  .field-row{grid-template-columns:1fr;gap:0}
  .lead-form{padding:22px 18px}
  .nav a:not(.btn){display:none}
  section{padding:62px 0}
  .hero{padding:66px 0 60px}
}
