:root{
  --bg:#ffffff;
  --text:#0f172a;
  --muted:#475569;
  --line:rgba(15,23,42,0.10);
  --card:rgba(255,255,255,0.92);
  --shadow:0 18px 50px rgba(2,6,23,0.10);
  --shadow2:0 10px 26px rgba(2,6,23,0.08);
  --btn:#0f172a;
  --btnText:#ffffff;
  --radius:18px;
  --radius2:14px;
  --max:1120px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

*{ box-sizing:border-box; }

html, body{ height:100%; }

body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

.wrap{
  max-width:var(--max);
  margin:0 auto;
  padding:0 20px;
}

/* HERO */
.hero{
  position:relative;
  overflow:hidden;
  padding:24px 0 56px;
  background:
    radial-gradient(900px 420px at 75% 40%, rgba(14,165,233,.08), transparent 60%),
    radial-gradient(800px 420px at 85% 55%, rgba(16,185,129,.06), transparent 60%),
    linear-gradient(#fff, #fff);
  border-bottom:1px solid rgba(15,23,42,.06);
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;

  /* Put your new HERO house image here */
  background-image:url("Hero.png");
  background-repeat:no-repeat;
  background-size:cover;

  /* House on the RIGHT */
  background-position: 90% 50%;

  /* Keep subtle so text stays readable */
  opacity:.22;

  pointer-events:none;

  /* Fade left side to preserve text legibility */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 35%, black 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 35%, black 100%);
}

.hero > .wrap{
  position:relative;
  z-index:1;
}

/* NAV */
.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  padding:10px 0 24px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:220px;
}

.avatar{
  width:42px;
  height:42px;
  border-radius:999px;
  background:linear-gradient(135deg, rgba(14,165,233,0.22), rgba(16,185,129,0.16));
  border:1px solid rgba(15,23,42,0.10);
}

.brandName{
  font-weight:700;
  font-size:14px;
  margin:0;
}

.brandTag{
  font-size:12px;
  margin-top:2px;
  color:var(--muted);
}

.actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.pill{
  text-decoration:none;
  color:var(--text);
  font-size:13px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(15,23,42,0.12);
  background:rgba(255,255,255,0.78);
  backdrop-filter: blur(10px);
}

.pill:hover{ border-color: rgba(15,23,42,0.20); }

/* MAIN GRID */
.grid{
  display:grid;
  grid-template-columns: 1.1fr 0.95fr;
  gap:22px;
  align-items:start;
  padding-top:6px;
}

.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:13px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(15,23,42,0.10);
  background:rgba(255,255,255,0.72);
  backdrop-filter: blur(10px);
  margin-bottom:14px;
}

.dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background:rgba(14,165,233,.55);
  box-shadow:0 0 0 4px rgba(14,165,233,.12);
}

/* HEADLINE */
.headline{
  margin:0 0 12px;
  font-size:clamp(34px, 4.2vw, 54px);
  line-height:1.05;
  letter-spacing:-0.6px;
}

/* This is the centered second line */
.headlineSub{
  display:block;
  text-align:center;
  width:100%;
  font-size:0.92em;
  font-weight:700;
}

/* Keep the rest left-aligned */
.subhead,
.bullets,
.note,
.kicker{
  text-align:left;
}

.subhead{
  margin:0 0 18px;
  color:var(--muted);
  font-size:16px;
  line-height:1.6;
  max-width:56ch;
}

.bullets{
  list-style:none;
  padding:0;
  margin:18px 0 0;
  display:grid;
  gap:10px;
  max-width:56ch;
}

.bullets li{
  display:flex;
  gap:10px;
  font-size:15px;
  line-height:1.5;
}

.check{
  width:20px;
  height:20px;
  border-radius:999px;
  background:rgba(16,185,129,.14);
  border:1px solid rgba(16,185,129,.28);
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 20px;
  margin-top:2px;
}

.check svg{
  width:12px;
  height:12px;
  fill:rgba(16,185,129,.9);
}

.note{
  margin-top:14px;
  font-size:12px;
  color:rgba(71,85,105,.95);
  max-width:68ch;
}

/* FORM CARD */
.card{
  border-radius:var(--radius);
  background:rgba(255,255,255,0.94);
  border:1px solid rgba(15,23,42,.10);
  box-shadow:var(--shadow);
   padding:18px 18px 12px;
  backdrop-filter: blur(18px);
}

.card h2{
  margin:2px 0 6px;
  font-size:18px;
}

.card p{
  margin:0 0 14px;
  font-size:13px;
  color:var(--muted);
  line-height:1.5;
}

form{ display:grid; gap:8px; }

.row2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

label{
  display:block;
  font-size:12px;
  color:rgba(15,23,42,.75);
  margin:2px 0 6px;
}

input, select{
  width:100%;
  padding:12px 12px;
  border-radius:var(--radius2);
  border:1px solid rgba(15,23,42,.14);
  background:rgba(255,255,255,.98);
  color:var(--text);
  font-size:14px;
  outline:none;
}

input:focus, select:focus{
  border-color:rgba(14,165,233,.55);
  box-shadow:0 0 0 4px rgba(14,165,233,.14);
}

.cta{
  margin-top:0px;
  width:100%;
  padding:13px 14px;
  border-radius:999px;
  border:1px solid rgba(15,23,42,.10);
  background:linear-gradient(180deg, rgba(15,23,42,1), rgba(15,23,42,.92));
  color:#fff;
  font-size:14px;
  font-weight:650;
  cursor:pointer;
  box-shadow:var(--shadow2);
}

.cta:hover{ opacity:.94; }

.cta[disabled]{
  opacity:0.65;
  cursor:not-allowed;
}

.formStatus{
  margin-top:8px;
  text-align:center;
  font-size:13px;
  line-height:1.45;
  color:rgba(71,85,105,.95);
  min-height:0;
}

.formStatus.success{
  color:rgba(16,185,129,0.95);
}

.formStatus.error{
  color:rgba(239,68,68,0.95);
}

.trust{
  margin-top:4px;
  padding-top: 0px;
  text-align:center;
  font-size:12px;
  color:rgba(71,85,105,.95);
  line-height:1.45;
}

.licenses{
  margin-top:8px;
  font-size:11px;
  color:rgba(71,85,105,.90);
}

/* FAQ STRIP */
.below{
  padding:26px 0 36px;
  background:#fff;
}

.strip{
  border:1px solid rgba(15,23,42,.08);
  border-radius:20px;
  padding:18px;
  background:#fff;
  box-shadow:0 10px 30px rgba(2,6,23,.06);
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:14px;
}

.strip2{
  margin-top:14px;
}

.strip h3{
  margin:0 0 6px;
  font-size:14px;
}

.strip p{
  margin:0;
  font-size:13px;
  color:var(--muted);
  line-height:1.5;
}

/* FOOTER */
footer{
  padding:16px 0 34px;
  color:rgba(71,85,105,.92);
  font-size:12px;
  border-top:1px solid rgba(15,23,42,.08);
  background:#fff;
}

.footerInner{
  display:flex;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
}

.footerRight{
  white-space:nowrap;
}

/* Responsive */
@media (max-width:980px){
  .grid{ grid-template-columns:1fr; }
  .strip{ grid-template-columns:1fr; }

  .hero::after{
    opacity:.16;
    background-position: 60% 50%;
    -webkit-mask-image:none;
    mask-image:none;
  }

  .headlineSub{
    text-align:left;
    font-size:0.95em;
  }
}

@media (max-width:520px){
  .row2{ grid-template-columns:1fr; }
}
