
:root{
  --ink:#0f172a; --muted:#475569; --bg:#ffffff;
  --brand:#0F766E; --brand2:#16A34A; --accent:#0EA5E9;
  --card:#ffffff; --surface:#f8fafc;
  --ring: rgba(14,165,233,.25);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;color:var(--ink);background:var(--bg)}
a{color:var(--brand);text-decoration:none}
a:hover{text-decoration:underline}
.wrap{max-width:1120px;margin:0 auto;padding:0 20px}
.skip{position:absolute;left:-999px;top:auto}
.skip:focus{left:10px;top:10px;background:#fff;border:1px solid #e5e7eb;padding:8px;border-radius:8px;z-index:50}

/* Header */
.site-header{position:sticky;top:0;z-index:30;background:rgba(255,255,255,.9);backdrop-filter: blur(8px);border-bottom:1px solid #e5e7eb}
.nav{display:flex;align-items:center;justify-content:space-between;height:60px}
.brand{display:flex;align-items:center;gap:10px;font-weight:800;color:var(--ink)}
.links{display:flex;gap:16px;align-items:center}
.btn{display:inline-block;background:var(--brand);color:#fff;padding:10px 14px;border-radius:10px;font-weight:700;border:1px solid transparent}
.btn-ghost{display:inline-block;border:2px solid var(--brand);color:var(--brand);padding:8px 12px;border-radius:10px;font-weight:700;background:#fff}

/* Hero */
.hero{position:relative;min-height:68vh;display:grid;place-items:center}
.hero-bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.overlay{position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,.35),rgba(0,0,0,.25))}
.hero-content{position:relative;color:#fff;text-align:center;max-width:820px;padding:32px 0}
.hero-content h1{font-size:clamp(28px,3.5vw,44px);line-height:1.1;margin:0 0 10px}
.lead{font-size:18px;color:#e2e8f0}
.ctas{display:flex;gap:12px;justify-content:center;margin-top:10px}
.pills{display:flex;gap:10px;flex-wrap:wrap;justify-content:center;margin-top:12px}
.pill{display:inline-block;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.3);padding:6px 10px;border-radius:999px;color:#e2e8f0;font-weight:600}

/* Sections */
.section{padding:52px 0;border-top:1px solid #f1f5f9}
.section.alt{background:var(--surface)}
.center{text-align:center}

/* Cards */
.cards{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;margin-top:12px}
.card{background:var(--card);border:1px solid #e5e7eb;border-radius:14px;padding:18px;box-shadow:0 8px 20px rgba(2,6,23,.05)}
.icon{width:40px;height:40px}

/* Steps */
.steps{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:14px}
.step{background:#fff;border:1px solid #e5e7eb;border-radius:14px;overflow:hidden;box-shadow:0 8px 20px rgba(2,6,23,.05)}
.step-img{display:block;width:100%;height:220px;object-fit:cover}
.step h3{margin:12px 14px 6px}
.step p{margin:0 14px 16px;color:var(--muted)}

/* CTA form */
.cta .cta-inner{background:linear-gradient(90deg,var(--brand),var(--accent));border-radius:16px;padding:20px;color:#fff;box-shadow:0 15px 30px rgba(2,6,23,.25)}
.lead-form .grid{display:grid;grid-template-columns:repeat(3,1fr);gap:10px}
.lead-form label{display:block;font-weight:600}
.lead-form input,.lead-form textarea{width:100%;padding:10px;margin-top:6px;border:1px solid #cbd5e1;border-radius:10px;outline:none}
.lead-form input:focus,.lead-form textarea:focus{box-shadow:0 0 0 4px var(--ring);border-color:var(--accent)}
.lead-form button{margin-top:10px}
.consent{display:flex;gap:8px;align-items:center;margin-top:8px}
.tiny{font-size:.9rem;opacity:.9}
.form-msg{min-height:1.2em;margin-top:6px}

/* FAQ */
.faq details{background:#fff;border:1px solid #e5e7eb;border-radius:12px;padding:12px 16px;margin-top:10px}
.faq summary{font-weight:700;cursor:pointer}

/* Footer */
.site-footer{background:#0b1220;color:#cbd5e1;margin-top:40px}
.footer-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px;padding:20px}
.legal{text-align:center;border-top:1px solid #1f2937;padding:12px;font-size:.9rem;color:#94a3b8}

/* Responsive */
@media (max-width: 980px){
  .cards{grid-template-columns:1fr 1fr}
  .steps{grid-template-columns:1fr}
  .lead-form .grid{grid-template-columns:1fr}
}

/* Keep the checkbox tight to the "I agree" text */
.lead-form .consent {
  display: grid;
  grid-template-columns: auto 1fr; /* checkbox | text */
  column-gap: 8px;                 /* space between box and text */
  align-items: start;
}

/* Kill any inherited spacing on the label */
.lead-form .consent label {
  margin: 0 !important;
  padding: 0 !important;
  display: block; /* or inline; either is fine here */
  line-height: 1.35;
}

/* Keep checkbox from adding extra space */
.lead-form .consent input[type="checkbox"] {
  margin: 0 !important;
  justify-self: start;
}

/* LEFT-align the consent row (div version) */
.lead-form .consent {
  display: grid;
  grid-template-columns: auto 1fr;  /* checkbox | text */
  column-gap: 8px;
  align-items: start;
  width: 100%;
  text-align: left;

  /* make sure it hugs the LEFT in any parent layout */
  margin-left: 0 !important;
  margin-right: auto !important;
  justify-content: start !important;   /* flex fallback */
  justify-items: start !important;     /* grid parent */
  align-self: start !important;        /* flex parent */
  justify-self: start !important;      /* grid parent */
}

.lead-form .consent input[type="checkbox"] {
  margin: 0 !important;
}

.lead-form .consent label {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.35;
}

input, textarea, select, button {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}
