body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #0f172a;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

.header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 15px 0;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn-primary {
  background: #1E40AF;
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}

.btn-primary:hover {
  background: #1e3a8a;
}

.hero {
  background: #EFF6FF;
  padding: 60px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}

.badge {
  display: inline-block;
  background: #DBEAFE;
  color: #1E40AF;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 14px;
}

h1 {
  font-size: 40px;
  margin: 15px 0;
}

.subtitle {
  font-size: 18px;
  color: #475569;
}

.checklist {
  list-style: none;
  padding: 0;
}

.checklist li {
  margin-bottom: 8px;
}

.form-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-card h2 {
  margin-top: 0;
}

form input, form select {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
}

.consent {
  font-size: 13px;
  color: #475569;
  margin-bottom: 15px;
}

.full {
  width: 100%;
}

.section {
  padding: 60px 0;
}

.bg-soft {
  background: #F8FAFC;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.step {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 30px 0;
}

.footer .small {
  font-size: 12px;
  color: #94a3b8;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }
}.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.brand-sub {
  font-size: 12px;
  color: #475569;
}.hero-image {
  background:
    linear-gradient(rgba(239,246,255,0.92), rgba(239,246,255,0.92)),
    url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?q=80&w=1600&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
}