
:root {
  --brand: #ae1732;
  --brand-dark: #7a0f23;
  --brand-soft: #f8e6eb;
  --ink: #1f2430;
  --muted: #61697a;
  --line: #e6e8ee;
  --bg: #ffffff;
  --bg-soft: #f7f8fb;
  --success: #0e6b4d;
  --warning: #c67b12;
  --danger: #cc3a3a;
  --shadow: 0 18px 40px rgba(20, 24, 33, 0.08);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}
img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
.container { width: min(var(--container), calc(100% - 32px)); margin: 0 auto; }

.topbar {
  background: #141821;
  color: #fff;
  font-size: 14px;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  flex-wrap: wrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 78px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand-mark {
  width: 46px; height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff; display: grid; place-items: center; font-weight: 800;
  letter-spacing: 0.04em;
}
.brand-name { font-weight: 800; letter-spacing: 0.06em; }
.brand-sub { color: var(--muted); font-size: 13px; }
.header-actions { display: flex; align-items: center; gap: 14px; }
.text-link { color: var(--brand); font-weight: 700; }

.hero {
  padding: 56px 0 42px;
  background:
    radial-gradient(circle at top left, rgba(174,23,50,0.12), transparent 35%),
    linear-gradient(180deg, #fff 0%, #fcfbfc 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 38px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.eyebrow.light {
  background: rgba(255,255,255,0.12);
  color: #fff;
}
.hero h1 {
  margin: 16px 0 18px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.03em;
}
.hero-lead {
  margin: 0 0 24px;
  font-size: 19px;
  color: var(--muted);
  max-width: 62ch;
}
.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero-bullets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.hero-bullets li {
  position: relative;
  padding-left: 24px;
  color: #303646;
  font-weight: 600;
}
.hero-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  color: var(--success);
  font-weight: 900;
}

.hero-image-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 540px;
  background: #ddd;
}
.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-stat-card {
  position: absolute;
  left: 24px;
  bottom: 24px;
  max-width: 320px;
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: rgba(20,24,33,0.82);
  color: #fff;
  backdrop-filter: blur(8px);
}
.stat-big { font-weight: 800; font-size: 22px; margin-bottom: 6px; }
.stat-small { color: rgba(255,255,255,0.86); font-size: 15px; }

.pixel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  box-shadow: 0 10px 24px rgba(20,24,33,0.08);
  border: none;
  cursor: pointer;
}
.pixel-btn:hover { transform: translateY(-1px); }
.pixel-btn:disabled {
  cursor: not-allowed;
  opacity: .55;
  transform: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--brand), #cf284a);
  color: #fff;
}
.btn-outline {
  border: 2px solid rgba(174,23,50,0.18);
  background: #fff;
  color: var(--brand);
  box-shadow: none;
}
.btn-soft {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-white {
  background: #fff;
  color: var(--brand);
}
.btn-ghost {
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: none;
}
.btn-large { min-height: 58px; padding-inline: 26px; }
.btn-full { width: 100%; }

.proof-strip,
.image-feature-section,
.benefits-section,
.requirements-section,
.apply-section,
.faq-section {
  padding: 76px 0;
}
.proof-strip { padding-top: 24px; }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.promo-box {
  padding: 24px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.promo-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.promo-box h3 { margin: 0 0 10px; font-size: 21px; line-height: 1.2; }
.promo-box p { margin: 0; color: var(--muted); }

.image-feature-section { background: var(--bg-soft); }
.image-feature-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: center;
}
.image-feature-media img {
  border-radius: 26px;
  box-shadow: var(--shadow);
  min-height: 430px;
  object-fit: cover;
}
.image-feature-copy h2,
.section-head h2,
.requirements-card h3,
.closing-cta h2,
.form-card h3 {
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.image-feature-copy h2 { margin: 16px 0 16px; font-size: clamp(30px, 4vw, 46px); }
.image-feature-copy p { color: var(--muted); font-size: 17px; }
.feature-checks {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px;
}
.feature-checks span {
  background: #fff;
  border: 1px solid var(--line);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
}

.section-head { max-width: 760px; margin-bottom: 26px; }
.section-head.center { text-align: center; margin-inline: auto; }
.section-head h2 { margin: 16px 0 10px; font-size: clamp(28px, 4vw, 44px); }
.section-head p { margin: 0; color: var(--muted); font-size: 17px; }
.apply-head-wide { max-width: 920px; }

.benefits-section { background: #fff; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.benefit-card {
  padding: 24px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #fff, #fcfbfc);
  border: 1px solid var(--line);
}
.benefit-card h3 { margin: 0 0 8px; font-size: 21px; }
.benefit-card p { margin: 0; color: var(--muted); }

.requirements-section { background: var(--bg-soft); }
.requirements-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: start;
}
.requirements-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 28px;
}
.requirements-card h3 { margin: 0 0 16px; font-size: 28px; }
.requirements-card ul {
  padding: 0; margin: 0; list-style: none; display: grid; gap: 12px;
}
.requirements-card li {
  padding: 14px 16px 14px 44px;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 14px;
  font-weight: 600;
}
.requirements-card li::before {
  content: "✓";
  position: absolute;
  left: 16px; top: 13px;
  color: var(--success); font-weight: 900;
}
.requirements-note { margin: 16px 0 0; color: var(--muted); }

.apply-section { background: #fff; }
.form-card {
  background: #141821;
  color: #fff;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 24px 50px rgba(20, 24, 33, 0.18);
}
.form-card-wide { width: 100%; }
.form-badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.form-card h3 { margin: 16px 0 8px; font-size: clamp(30px, 4vw, 40px); }
.form-intro { margin: 0 0 18px; color: rgba(255,255,255,0.8); }
.form-intro-wide { max-width: 760px; }
.application-form { display: grid; gap: 18px; }
.application-form label {
  display: grid;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
}
.application-form select {
  width: 100%;
  min-height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.08);
  color: #fff;
  padding: 0 16px;
  outline: none;
}
.application-form option { color: #111; }
.application-form select:focus {
  border-color: rgba(255,255,255,0.42);
  background: rgba(255,255,255,0.12);
}
.application-form select:disabled {
  opacity: .55;
  cursor: not-allowed;
}
.form-grid {
  display: grid;
  gap: 16px;
}
.form-grid-location {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
}

.qualification-panel,
.location-step-panel {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  background: rgba(255,255,255,0.05);
  padding: 22px;
}
.qualification-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.qualification-head h4 {
  margin: 0;
  font-size: 22px;
}
.qualification-head p {
  margin: 0;
  color: rgba(255,255,255,0.74);
}
.qualification-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.question-card {
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  min-width: 0;
}
.question-card legend {
  padding: 0 6px;
  font-weight: 800;
  font-size: 14px;
}
.radio-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.radio-row label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  cursor: pointer;
}
.radio-row input {
  width: 18px;
  height: 18px;
  min-height: auto;
  accent-color: var(--brand);
}
.qualification-status {
  margin: 16px 0 0;
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 700;
}
.qualification-status.is-locked {
  background: rgba(198, 123, 18, 0.14);
  color: #ffd9a0;
}
.qualification-status.is-open {
  background: rgba(14, 107, 77, 0.16);
  color: #b2f3d7;
}
.qualification-status.is-blocked {
  background: rgba(204, 58, 58, 0.16);
  color: #ffc0c0;
}
.location-step-panel {
  display: grid;
  gap: 16px;
}
.location-step-copy {
  display: grid;
  gap: 4px;
}
.location-step-copy strong {
  font-size: 17px;
}
.location-step-copy span {
  color: rgba(255,255,255,0.76);
}
.submit-panel {
  display: grid;
  gap: 12px;
}
.submit-panel-location {
  align-self: stretch;
}
.submit-copy {
  display: grid;
  gap: 4px;
  color: rgba(255,255,255,0.78);
}
.submit-copy strong {
  color: #fff;
  font-size: 16px;
}
.listing-placeholder {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px dashed rgba(255,255,255,0.26);
  color: rgba(255,255,255,0.88);
}

.faq-section { background: var(--bg-soft); }
.faq-wrap { max-width: 920px; }
.faq-list { display: grid; gap: 14px; }
.faq-item {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 800;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-body {
  padding: 0 22px 20px;
  color: var(--muted);
}

.closing-cta {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  color: #fff;
  padding: 72px 0;
}
.closing-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}
.closing-cta h2 { margin: 16px 0 12px; font-size: clamp(30px, 4vw, 48px); }
.closing-cta p { margin: 0; color: rgba(255,255,255,0.86); font-size: 18px; }
.closing-actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}

.sticky-mobile-cta {
  display: none;
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 50;
  min-height: 56px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), #cf284a);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 18px 32px rgba(20,24,33,0.22);
  align-items: center;
  justify-content: center;
}

@media (max-width: 1100px) {
  .hero-grid,
  .image-feature-grid,
  .requirements-grid,
  .closing-grid,
  .form-grid-location {
    grid-template-columns: 1fr;
  }
  .proof-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .benefits-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .qualification-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .topbar { display: none; }
  .header-actions .text-link { display: none; }
  .hero { padding-top: 30px; }
  .hero-image-card { min-height: 420px; }
  .hero-bullets,
  .proof-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .section-head h2,
  .image-feature-copy h2,
  .closing-cta h2,
  .form-card h3 { line-height: 1.12; }
  .form-card { padding: 22px; }
  .sticky-mobile-cta { display: flex; }
  body { padding-bottom: 88px; }
}
