*,*::before,*::after{box-sizing:border-box}
body{
  margin:0;
  font-family:var(--ff-body);
  color:var(--ink);
  background:var(--paper);
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3{margin:0;font-family:var(--ff-head);font-weight:900;letter-spacing:-.4px}
p{margin:0}
a{color:inherit}
button{font-family:inherit}

/* ── HERO ── */
.hero{
  position:relative;
  overflow:hidden;
  padding:56px 20px 96px;
  text-align:center;
  color:#fff;
  background:linear-gradient(135deg,#1E8F7C 0%,#2EB8A0 45%,#3A9BD5 100%);
}
.hero-blob{
  position:absolute;border-radius:50%;filter:blur(60px);opacity:.35;pointer-events:none;
}
.blob-a{width:340px;height:340px;background:#7FE3CE;top:-140px;left:-90px}
.blob-b{width:300px;height:300px;background:#8FD0F5;bottom:-150px;right:-80px}
.hero-inner{position:relative;max-width:var(--wrap);margin:0 auto}
.hero-eyebrow{
  display:inline-block;padding:6px 16px;margin-bottom:18px;
  font-size:11px;font-weight:600;letter-spacing:1.6px;
  border:1px solid rgba(255,255,255,.45);border-radius:999px;
  background:rgba(255,255,255,.12);backdrop-filter:blur(4px);
}
.hero-title{font-size:clamp(28px,6.2vw,44px);line-height:1.15;margin-bottom:14px}
.hero-sub{font-size:15px;opacity:.92;line-height:1.6;max-width:440px;margin:0 auto}
.hero-proof{margin-top:14px;font-size:13px;font-weight:500;opacity:.8}

/* ── LAYOUT ── */
.wrap{max-width:var(--wrap);margin:-58px auto 0;padding:0 18px 60px;position:relative;z-index:2}
.card{
  background:var(--white);
  border-radius:var(--r-lg);
  box-shadow:var(--sh-lg);
  padding:28px 24px;
}
.site-foot{
  padding:26px 20px 34px;text-align:center;
  font-size:12.5px;color:var(--ink-3);
  border-top:1px solid var(--line);
}

@media print{
  .hero,.form-card,.site-foot,.popup-overlay{display:none!important}
  .wrap{margin:0;max-width:100%}
  body{background:#fff}
}
