:root{
  --navy:#100050;
  --navy-2:#1b0a78;
  --red:#e01020;
  --bg:#fafaf7;
  --muted:#f2f4f7;
  --text:#101010;
  --sub:#3a3a3a;
  --radius:18px;
  --shadow:0 10px 30px rgba(16,0,80,.10);
  --shadow2:0 8px 20px rgba(16,0,80,.08);
  --max:1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:var(--bg);
}

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

/* Top bar */
.topbar{
  background:var(--navy);
  color:white;
  font-size:14px;
}
.topbar .wrap{
  max-width:var(--max);
  margin:0 auto;
  padding:10px 18px;
  display:flex;
  gap:14px;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
}
.topbar .pill{
  display:inline-flex;
  gap:10px;
  align-items:center;
  opacity:.95;
}
.topbar .pill strong{font-weight:700}

/* Header */
header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(250,250,247,.86);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(16,0,80,.08);
}
header .wrap{
  max-width:var(--max);
  margin:0 auto;
  padding:14px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 220px;
}
.brand img{
  width:48px;
  height:48px;
  border-radius:14px;
  box-shadow:var(--shadow2);
  object-fit:cover;
  background:white;
}
.brand .name{
  font-weight:800;
  letter-spacing:-.2px;
  line-height:1.1;
}
.brand .tag{font-size:12px; color:rgba(16,0,80,.65)}

nav{
  display:flex;
  align-items:center;
  gap:18px;
  flex:1;
  justify-content:center;
}
nav a{
  font-size:14px;
  font-weight:650;
  color:rgba(16,0,80,.85);
  padding:10px 8px;
  border-radius:12px;
}
nav a:hover{background:rgba(16,0,80,.06)}

.cta{
  display:flex;
  align-items:center;
  gap:10px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:11px 14px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:750;
  font-size:14px;
  line-height:1;
  transition:transform .06s ease, background .12s ease, border .12s ease, opacity .12s ease;
  white-space:nowrap;
}
.btn:active{transform:translateY(1px)}
.btn-primary{background:var(--navy); color:white; box-shadow:var(--shadow2)}
.btn-primary:hover{background:var(--navy-2)}
.btn-outline{background:transparent; border-color:rgba(16,0,80,.25); color:var(--navy)}
.btn-outline:hover{border-color:rgba(16,0,80,.45); background:rgba(16,0,80,.04)}
.btn-red{background:var(--red); color:white; box-shadow:var(--shadow2)}
.btn-red:hover{opacity:.92}

.hamburger{
  display:none;
  border:1px solid rgba(16,0,80,.18);
  background:white;
  border-radius:12px;
  padding:10px 12px;
}

/* Sections */
.section{
  max-width:var(--max);
  margin:0 auto;
  padding:64px 18px;
}
.section.tight{padding:42px 18px}

.hero{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:28px;
  align-items:center;
}

.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(16,0,80,.06);
  color:rgba(16,0,80,.9);
  font-weight:700;
  font-size:13px;
}

h1{
  font-size:52px;
  line-height:1.02;
  letter-spacing:-1.2px;
  margin:14px 0 12px;
  color:var(--navy);
}
.lede{font-size:18px; line-height:1.6; color:var(--sub); max-width:52ch}

.hero-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}
.trust{margin-top:10px; color:rgba(16,0,80,.65); font-size:13px; font-weight:650}

.hero-card{
  background:white;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:22px;
  border:1px solid rgba(16,0,80,.08);
}

.hero-card .mini{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-top:14px;
}

.mini .stat{
  background:var(--muted);
  border-radius:16px;
  padding:14px;
}
.mini .stat .label{font-size:12px; color:rgba(16,0,80,.65); font-weight:700}
.mini .stat .value{margin-top:6px; font-weight:850; color:var(--navy)}

/* Feature cards */
.grid{
  display:grid;
  grid-template-columns:repeat(12,1fr);
  gap:16px;
}

.card{
  background:white;
  border:1px solid rgba(16,0,80,.08);
  border-radius:var(--radius);
  box-shadow:var(--shadow2);
  padding:18px;
}

.card h3{margin:10px 0 6px; color:var(--navy); letter-spacing:-.2px}
.card p{margin:0; color:rgba(0,0,0,.68); line-height:1.55; font-size:14px}

/* Form helpers */
.fieldset{
  border:1px solid rgba(16,0,80,.18);
  border-radius:14px;
  padding:12px 14px;
  background:#fff;
}
.fieldset-title{
  font-size:12px;
  color:rgba(16,0,80,.65);
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom:10px;
}
.radio{display:flex; align-items:center; gap:10px; margin:6px 0; font-weight:750; color:rgba(0,0,0,.75)}
.radio input{accent-color: var(--navy)}

.icon{
  width:44px; height:44px;
  border-radius:14px;
  display:grid; place-items:center;
  background:rgba(16,0,80,.06);
  color:var(--navy);
}

.title-row{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:20px;
  flex-wrap:wrap;
  margin-bottom:18px;
}
.title-row h2{margin:0; font-size:34px; letter-spacing:-.6px; color:var(--navy)}
.title-row .sub{margin:6px 0 0; color:rgba(0,0,0,.65); max-width:72ch; line-height:1.55}

/* Layout helpers */
.col-6{grid-column:span 6}
.col-4{grid-column:span 4}
.col-3{grid-column:span 3}
.col-8{grid-column:span 8}
.col-5{grid-column:span 5}
.col-7{grid-column:span 7}

.band{
  background:linear-gradient(180deg, rgba(16,0,80,.06), rgba(16,0,80,0));
}

.feature{
  display:grid;
  grid-template-columns: .95fr 1.05fr;
  gap:22px;
  align-items:center;
}
.feature .media{
  background:linear-gradient(135deg, rgba(16,0,80,.10), rgba(224,16,32,.10));
  border:1px solid rgba(16,0,80,.10);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  min-height:280px;
  position:relative;
  overflow:hidden;
}
.feature .media .badge{
  position:absolute;
  left:18px; bottom:18px;
  background:white;
  border-radius:999px;
  padding:10px 12px;
  display:flex; gap:10px; align-items:center;
  border:1px solid rgba(16,0,80,.10);
}
.feature .media img{width:36px; height:36px; border-radius:12px; object-fit:cover}

.feature h2{margin:0 0 10px; font-size:40px; letter-spacing:-.8px; color:var(--navy); line-height:1.05}
.feature p{margin:0; color:rgba(0,0,0,.68); line-height:1.65; max-width:60ch}
.feature .actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:16px}

/* Community photos */
.photo-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
}
.photo-card{
  background:white;
  border:1px solid rgba(16,0,80,.08);
  border-radius:var(--radius);
  box-shadow:var(--shadow2);
  overflow:hidden;
}
.photo-card img{
  width:100%;
  height:260px;
  object-fit:cover;
  display:block;
}
.photo-card .cap{
  padding:14px 16px;
  font-weight:850;
  color:var(--navy);
  letter-spacing:-.2px;
}

/* Reviews */
.review{
  padding:18px;
  border-radius:var(--radius);
  border:1px solid rgba(16,0,80,.08);
  background:white;
  box-shadow:var(--shadow2);
}
.review .quote{font-size:14px; color:rgba(0,0,0,.72); line-height:1.6}
.review .name{margin-top:14px; font-weight:850; color:var(--navy)}
.review .meta{margin-top:6px; font-size:12px; color:rgba(0,0,0,.55)}

/* Contact */
.contact{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
}
.map{
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid rgba(16,0,80,.10);
  box-shadow:var(--shadow);
  background:white;
  min-height:360px;
}
.map iframe{width:100%; height:100%; border:0; display:block}

.list{
  display:grid;
  gap:12px;
}
.kv{
  background:white;
  border:1px solid rgba(16,0,80,.08);
  border-radius:var(--radius);
  padding:16px;
  box-shadow:var(--shadow2);
}
.kv .k{font-size:12px; color:rgba(16,0,80,.65); font-weight:800; text-transform:uppercase; letter-spacing:.08em}
.kv .v{margin-top:6px; font-weight:800; color:var(--navy)}
.kv .small{margin-top:6px; color:rgba(0,0,0,.66); line-height:1.55; font-size:14px}

footer{
  background:var(--navy);
  color:white;
  padding:40px 18px;
}
footer .wrap{max-width:var(--max); margin:0 auto}
footer .cols{display:grid; grid-template-columns: 1.2fr .8fr .8fr; gap:16px}
footer a{color:white; opacity:.92}
footer a:hover{opacity:1}
footer .muted{opacity:.75; font-size:13px; line-height:1.6}
footer h4{margin:0 0 10px; letter-spacing:-.2px}

/* Mobile */
@media (max-width: 980px){
  h1{font-size:44px}
  .hero{grid-template-columns:1fr}
  .feature{grid-template-columns:1fr}
  .contact{grid-template-columns:1fr}
  nav{display:none}
  .hamburger{display:inline-flex}
  header .wrap{justify-content:space-between}
  .brand{min-width:auto}
  .cta{display:none}
  .grid{gap:12px}
  .col-6,.col-4,.col-3,.col-8,.col-5,.col-7{grid-column:span 12}
  footer .cols{grid-template-columns:1fr}
  .photo-grid{grid-template-columns:1fr}
}

/* Simple form group (radio pills) */
.fieldset{
  background:var(--muted);
  border:1px solid rgba(16,0,80,.10);
  border-radius:16px;
  padding:12px;
  display:grid;
  gap:10px;
}
.fieldset-title{
  font-size:12px;
  font-weight:900;
  color:rgba(16,0,80,.75);
  text-transform:uppercase;
  letter-spacing:.08em;
}
.radio{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:750;
  color:rgba(0,0,0,.72);
}
.radio input{accent-color: var(--navy);}

/* Mobile menu */
.mobile-nav{
  display:none;
  border-top:1px solid rgba(16,0,80,.08);
  background:rgba(250,250,247,.96);
}
.mobile-nav.open{display:block}
.mobile-nav .wrap{max-width:var(--max); margin:0 auto; padding:8px 18px 16px}
.mobile-nav a{display:block; padding:12px 10px; border-radius:12px; font-weight:750; color:rgba(16,0,80,.9)}
.mobile-nav a:hover{background:rgba(16,0,80,.06)}
.mobile-nav .cta-row{display:flex; gap:10px; flex-wrap:wrap; padding:12px 0 0}

/* Sticky mobile actions */
.sticky-actions{
  display:none;
}
@media (max-width:980px){
  .sticky-actions{
    display:flex;
    position:fixed;
    left:0; right:0; bottom:0;
    background:rgba(250,250,247,.92);
    backdrop-filter:blur(10px);
    border-top:1px solid rgba(16,0,80,.10);
    padding:10px 12px;
    gap:10px;
    justify-content:space-between;
    z-index:60;
  }
  .sticky-actions .btn{flex:1; padding:12px 10px}
  body{padding-bottom:72px}
}
