*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1a1a2e;
  line-height: 1.6;
}

/* ── Hero ──────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  overflow: hidden;
  background-color: #0f1b2d;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/examples/example1/bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.45;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  max-width: 1100px;
  width: 100%;
}

/* ── Headline ───────────────────────────────────────────── */
.headline {
  text-align: center;
  color: #fff;
}

.headline .eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #60a5fa;
  background: rgba(96, 165, 250, 0.15);
  border: 1px solid rgba(96, 165, 250, 0.3);
  border-radius: 999px;
  padding: 0.25rem 0.875rem;
  margin-bottom: 1.25rem;
}

.headline h1 {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.headline h1 span {
  background: linear-gradient(90deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.headline p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0 auto;
}

/* ── Trust badges ───────────────────────────────────────── */
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  justify-content: center;
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 0.375rem 0.875rem;
  backdrop-filter: blur(8px);
}

.badge::before {
  content: "✓";
  color: #4ade80;
  font-weight: 700;
}

/* ── Form card ──────────────────────────────────────────── */
.form-card {
  width: 100%;
  max-width: 440px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  border-radius: 1.25rem;
  padding: 2rem 1.75rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.form-card h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
  color: #0f172a;
}

.form-card .subtitle {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 1.5rem;
}

/* ── Features strip ─────────────────────────────────────── */
.features {
  background: #fff;
  padding: 4rem 1.5rem;
}

.features-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.features-inner h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.features-inner .lead {
  color: #64748b;
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.feature {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: left;
}

.feature-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.feature h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
}

.feature p {
  font-size: 0.875rem;
  color: #64748b;
}

/* ── Footer ─────────────────────────────────────────────── */
footer {
  background: #0f172a;
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 1.5rem;
  font-size: 0.8125rem;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (min-width: 900px) {
  .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
  }

  .headline {
    text-align: left;
    flex: 1;
  }

  .headline p {
    margin: 0;
  }

  .badges {
    justify-content: flex-start;
  }
}
