:root{
  --navy:#0b1b3a;
  --teal:#2563eb;
  --teal2:#06b6d4;

  /* Backgrounds */
  --cream:#f7fbff;
  --bg:#f3f7ff;

  /* Surfaces */
  --card:#ffffff;

  /* Lines + text */
  --line:rgba(15,23,42,.12);
  --muted:rgba(15,23,42,.72);

  /* Shadows */
  --shadow-sm: 0 10px 22px rgba(11,27,58,.08);
  --shadow-md: 0 18px 44px rgba(11,27,58,.12);
  --shadow-lg: 0 28px 70px rgba(11,27,58,.14);

  /* Accent gradient */
  --grad: linear-gradient(90deg, #f97316, #fb7185);
}

*{box-sizing:border-box}
html,body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial;
  color:var(--navy);
  background:var(--bg);
}
a{color:inherit;text-decoration:none}
.container{width:min(1120px, 92vw); margin:0 auto}

/* =========================
   Header / Nav
========================= */
.top{
  position:sticky;
  top:0;
  z-index:10;

  background: rgba(255,255,255,.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-bottom:1px solid var(--line);
  box-shadow: 0 10px 28px rgba(11,27,58,.08);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
}
.brand{display:flex; align-items:center; gap:12px}
.logo{
  width:52px;
  height:52px;
  border-radius:16px;
  display:grid;
  place-items:center;

  background:#fff;
  border:1px solid var(--line);
  box-shadow: var(--shadow-sm);
  overflow:hidden;
}
.brand__name{font-weight:900; letter-spacing:-.2px}
.brand__sub{font-size:13px; color:var(--muted); margin-top:2px}

.nav__actions{display:flex;gap:10px;align-items:center}

/* =========================
   Buttons
========================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;

  padding:12px 16px;
  border-radius:14px;
  border:1px solid var(--line);
  font-weight:800;

  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  box-shadow: var(--shadow-sm);
  background:#fff;
}
.btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(11,27,58,.12);
  border-color: rgba(15,23,42,.18);
}
.btn:active{transform: translateY(0px)}

.btn--primary{
  border:none;
  color:#fff;
  background: var(--grad);
}
.btn--primary:hover{
  box-shadow: 0 18px 46px rgba(249,115,22,.22);
}

.btn--ghost{background:#fff}
.btn--full{width:100%}

/* =========================
   Hero
========================= */
.hero{
  padding:46px 0 28px;
  background:
    radial-gradient(900px 500px at 20% 10%, rgba(37,99,235,.10), transparent 60%),
    radial-gradient(900px 500px at 80% 0%, rgba(6,182,212,.12), transparent 60%),
    var(--bg);
}
.hero__grid{
  display:grid;
  gap:22px;
  grid-template-columns: 1.2fr .9fr;
  align-items:start;
}
.pill{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(11,27,58,.06);
  border:1px solid var(--line);
  font-weight:800;
  margin-bottom:14px;
}
h1{
  font-size:54px;
  line-height:1.02;
  margin:0 0 12px;
  letter-spacing:-.6px;
}
.lead{
  margin:0 0 18px;
  color:var(--muted);
  font-size:16px;
  max-width:62ch;
  line-height:1.55;
}
.hero__buttons{display:flex; gap:12px; flex-wrap:wrap}

/* Trust chips */
.trust{margin-top:14px; display:flex; gap:10px; flex-wrap:wrap}
.trust__item{
  padding:10px 12px;
  border-radius:999px;
  background:rgba(11,27,58,.06);
  border:1px solid var(--line);
  font-weight:800;
  font-size:14px;
}

/* =========================
   Card + form
========================= */
.card{
  background:var(--card);
  border:1px solid rgba(15,23,42,.14);
  border-radius:24px;
  padding:18px;
  box-shadow: var(--shadow-md);
}
.card__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:12px;
  gap:10px;
}
.badge{
  padding:8px 10px;
  border-radius:999px;
  background:rgba(255,122,24,.12);
  border:1px solid rgba(255,122,24,.25);
  font-weight:900;
}
.mini{color:var(--muted); font-weight:800; font-size:13px}

.form{display:grid; gap:10px}
label{display:grid; gap:6px; font-weight:800; font-size:13px}
input,select{
  padding:12px 12px;
  border-radius:12px;
  border:1px solid var(--line);
  outline:none;
  font-size:14px;
  background:#fff;
}
input:focus,select:focus{
  border-color: rgba(255,122,24,.7);
  box-shadow: 0 0 0 4px rgba(255,122,24,.15);
}
.small{font-size:13px}
.muted{color:var(--muted)}
.success{
  display:none;
  margin:0;
  padding:10px 12px;
  border-radius:12px;
  background:rgba(10,160,90,.10);
  border:1px solid rgba(10,160,90,.25);
  font-weight:900;
}

/* =========================
   Sections
========================= */
.section{padding:40px 0}
.section.alt{
  background:rgba(11,27,58,.028);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
h2{
  margin:0 0 12px;
  font-size:28px;
  letter-spacing:-.3px;
}
.grid{
  display:grid;
  gap:14px;
  grid-template-columns: repeat(3, 1fr);
}
.box{
  background:#fff;
  border:1px solid rgba(15,23,42,.14);
  border-radius:20px;
  padding:16px;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.box:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(15,23,42,.18);
}
.box__title{font-weight:900; margin-bottom:6px}
.ctaRow{display:flex; gap:12px; flex-wrap:wrap; margin-top:12px}

/* =========================
   Footer
========================= */
.footer{padding:28px 0}
.footer__grid{
  display:grid;
  gap:12px;
  grid-template-columns: 1.2fr .8fr 1fr;
  align-items:start;
}
.footer__brand{font-weight:900}
.footer__links{display:grid; gap:8px}
.footer__contact{display:grid; gap:8px; justify-items:start}
.footer a{color:var(--navy)}

/* =========================
   Responsive
========================= */
@media (max-width: 920px){
  .hero__grid{grid-template-columns:1fr}
  h1{font-size:40px}
  .grid{grid-template-columns:1fr}
  .footer__grid{grid-template-columns:1fr}
  .logo{width:48px;height:48px;border-radius:16px}
}
