:root{
  --bg:#ffffff;
  --bg-alt:#f7f8fa;
  --text:#111111;
  --muted:#5b616e;
  --navy:#0b1f3a;
  --border: rgba(17,17,17,.10);
  --shadow: 0 10px 30px rgba(11,31,58,.12);
  --radius: 16px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.55;
}

a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; }

.container{
  width:min(1120px, calc(100% - 48px));
  margin:0 auto;
}

.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

/* Header */
.header{
  position:sticky;
  top:0;
  z-index:10;
  background:rgba(255,255,255,.85);
  backdrop-filter:saturate(180%) blur(14px);
  border-bottom:1px solid var(--border);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand__mark{
  font-weight:700;
  letter-spacing:.3px;
  font-size:20px;
}
.nav__toggle{
  display:none;
  background:none;
  border:1px solid var(--border);
  border-radius:12px;
  padding:10px;
  cursor:pointer;
}
.nav__toggle span{
  display:block; width:18px; height:2px; background:var(--text);
  margin:4px 0; border-radius:2px;
}
.nav__list{
  list-style:none;
  display:flex;
  align-items:center;
  gap:18px;
  margin:0; padding:0;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 18px;
  border-radius:12px;
  border:1px solid transparent;
  font-weight:600;
  cursor:pointer;
  text-decoration:none !important;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.btn:active{ transform: translateY(1px); }
.btn--primary{
  background:var(--navy);
  color:#fff;
  box-shadow: 0 10px 20px rgba(11,31,58,.18);
}
.btn--primary:hover{ box-shadow: 0 14px 26px rgba(11,31,58,.22); }
.btn--ghost{
  background:transparent;
  border-color: var(--border);
}
.btn--ghost:hover{ box-shadow: 0 10px 20px rgba(17,17,17,.06); }
.w100{ width:100%; }

/* Hero */
.hero{
  background: linear-gradient(180deg, rgba(11,31,58,.08), rgba(11,31,58,0));
  padding:56px 0 28px;
}
.hero__inner{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:34px;
  align-items:start;
}
.hero h1{
  font-size: clamp(36px, 4vw, 52px);
  line-height:1.05;
  margin:0 0 14px;
  letter-spacing:-.8px;
}
.lead{
  font-size:18px;
  color:var(--muted);
  margin:0 0 18px;
}
.hero__actions{ display:flex; gap:12px; flex-wrap:wrap; }
.trust{
  margin:16px 0 10px;
  color:var(--muted);
  font-size:14px;
}
.logos{
  display:flex; gap:10px; flex-wrap:wrap;
}
.logo-pill{
  padding:8px 10px;
  border:1px solid var(--border);
  border-radius:999px;
  font-size:13px;
  color:var(--muted);
  background:#fff;
}

/* Hero media */
.hero__media{ position:relative; }
.hero-card{
  background: var(--navy);
  color:#fff;
  border-radius: var(--radius);
  padding:22px;
  box-shadow: var(--shadow);
}
.hero-card__badge{
  display:inline-block;
  font-size:12px;
  opacity:.9;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.22);
  margin-bottom:12px;
}
.hero-card h2{
  margin:0 0 8px;
  font-size:20px;
  letter-spacing:-.2px;
}
.hero-card p{ margin:0 0 14px; opacity:.92; }
.hero-card ul{
  margin:0; padding-left:18px; opacity:.95;
}
.hero-card li{ margin:6px 0; }

/* Sections */
.section{ padding:72px 0; }
.section--alt{ background:var(--bg-alt); }
.section__head{
  max-width: 720px;
  margin-bottom: 26px;
}
.section__head h2{
  margin:0 0 10px;
  font-size:32px;
  letter-spacing:-.4px;
}
.section__head p{ margin:0; color:var(--muted); }

/* Cards grid */
.grid{
  display:grid;
  gap:16px;
}
.grid--3{ grid-template-columns: repeat(3, 1fr); }
.card{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: 0 6px 18px rgba(17,17,17,.04);
}
.icon{ font-size:22px; }
.card h3{ margin:10px 0 6px; }
.card p{ margin:0; color:var(--muted); }

/* Pricing */
.pricing{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.price-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:20px;
  box-shadow: 0 6px 18px rgba(17,17,17,.04);
  position:relative;
}
.price-card--featured{
  border-color: rgba(11,31,58,.35);
  box-shadow: 0 16px 40px rgba(11,31,58,.14);
}
.tag{
  position:absolute;
  top:14px; right:14px;
  background: rgba(11,31,58,.08);
  color: var(--navy);
  border:1px solid rgba(11,31,58,.18);
  border-radius:999px;
  padding:6px 10px;
  font-size:12px;
  font-weight:600;
}
.price{
  font-size:28px;
  font-weight:700;
  margin:10px 0 12px;
}
.price-card ul{
  margin:0 0 16px;
  padding-left:18px;
  color:var(--muted);
}
.price-card li{ margin:7px 0; }

/* Steps */
.steps{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.step{
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:18px;
  background:#fff;
}
.step__num{
  width:36px; height:36px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background: rgba(11,31,58,.08);
  color: var(--navy);
  font-weight:700;
}
.step h3{ margin:10px 0 6px; }
.step p{ margin:0; color:var(--muted); }

/* About */
.about{
  display:grid;
  grid-template-columns: .9fr 1.1fr;
  gap:22px;
  align-items:center;
}
.about__photo{
  width:100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  border:1px solid var(--border);
  background:
    radial-gradient(circle at 30% 20%, rgba(11,31,58,.22), transparent 40%),
    radial-gradient(circle at 70% 80%, rgba(11,31,58,.18), transparent 45%),
    linear-gradient(180deg, rgba(11,31,58,.12), rgba(11,31,58,.04));
}
.about__copy p{ color:var(--muted); }

/* Quotes */
.quote{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:18px;
  margin:0;
}
.quote p{ margin:0 0 10px; }
.quote footer{ color:var(--muted); font-size:14px; }

/* CTA */
.section--cta{
  background: var(--navy);
  color:#fff;
  padding:56px 0 34px;
}
.cta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
}
.cta p{ opacity:.92; margin:6px 0 0; }
.cta__form{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.cta__form input{
  width:min(360px, 70vw);
  padding:12px 14px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.10);
  color:#fff;
  outline:none;
}
.cta__form input::placeholder{ color: rgba(255,255,255,.7); }
.tiny-note{ margin-top:10px; }
#formNote{ margin:0; font-size:14px; opacity:.9; }

/* Contact */
.contact{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:22px;
  align-items:start;
}
.contact__copy p{ color:var(--muted); }
.contact__details{
  margin-top:14px;
  display:grid;
  gap:8px;
  color:var(--muted);
}
.contact__form{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: 0 6px 18px rgba(17,17,17,.04);
}
.form-row{ display:grid; gap:6px; margin-bottom:12px; }
label{ font-weight:600; font-size:14px; }
input, textarea{
  padding:12px 14px;
  border-radius:12px;
  border:1px solid var(--border);
  outline:none;
  font:inherit;
}
textarea{ resize:vertical; }
.form-help{ color:var(--muted); margin:10px 0 0; font-size:14px; }

/* Footer */
.footer{
  border-top:1px solid var(--border);
  padding:26px 0;
  background:#fff;
}
.footer__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; flex-wrap:wrap;
}
.footer__links{ display:flex; gap:14px; }
.brand__mark--footer{ font-size:18px; }
.muted{ color:var(--muted); }

/* Responsive */
@media (max-width: 920px){
  .hero__inner{ grid-template-columns: 1fr; }
  .pricing{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .grid--3{ grid-template-columns: 1fr; }
  .about{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }
  .cta{ flex-direction:column; align-items:flex-start; }
  .cta__form{ justify-content:flex-start; width:100%; }
}

@media (max-width: 760px){
  .nav__toggle{ display:inline-block; }
  .nav__list{
    position: absolute;
    right: 24px;
    top: 58px;
    background:#fff;
    border:1px solid var(--border);
    border-radius: 14px;
    padding:10px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    min-width: 240px;
    box-shadow: 0 16px 40px rgba(17,17,17,.10);
  }
  .nav__list.is-open{ display:flex; }
}