/* ===== GET STARTED — PAGE SPECIFIC ===== */

.get-started-hero {
  margin-top: 72px;
  background: linear-gradient(135deg, rgba(196,88,36,0.82) 0%, rgba(160,72,28,0.85) 100%),
    url('assets/images/hero-how-it-works.jpg') center/cover no-repeat;
  position: relative; overflow: hidden;
  padding: 80px 0 72px;
  text-align: center;
}
.get-started-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.08) 0%, transparent 50%);
}
.get-started-hero .container { position: relative; z-index: 1; }
.get-started-hero h1 {
  font-size: clamp(32px, 4.5vw, 50px);
  color: var(--white); margin-bottom: 16px;
}
.get-started-hero p {
  font-size: 18px; color: rgba(255,255,255,0.85);
  max-width: 520px; margin: 0 auto;
  line-height: 1.7;
}

/* Interest Section */
.interest-section { background: var(--bg-secondary); }
.interest-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: start;
}
@media (max-width: 768px) { .interest-grid { grid-template-columns: 1fr; } }

/* Form Card */
.interest-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
}
.interest-form-card h2 {
  font-size: 28px; margin-bottom: 8px;
}
.interest-form-card .form-subtitle {
  font-size: 16px; color: var(--text-light);
  margin-bottom: 28px;
}
@media (max-width: 480px) {
  .interest-form-card { padding: 28px 20px; }
}

/* What Happens Next Sidebar */
.next-steps h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px; font-weight: 700;
  margin-bottom: 28px;
}
.next-step {
  display: flex; gap: 16px; margin-bottom: 28px;
}
.next-step-number {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px; flex-shrink: 0;
}
.next-step h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px; font-weight: 700;
  margin-bottom: 4px;
}
.next-step p {
  font-size: 15px; line-height: 1.7;
}
.next-steps-note {
  background: var(--bg-accent-light);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin-top: 32px;
}
.next-steps-note p {
  font-size: 14px; line-height: 1.7;
  color: var(--text-body);
}
.next-steps-note strong {
  color: var(--text-heading);
}

/* Reassurance */
.reassurance {
  background: var(--bg-primary);
  text-align: center;
}
.reassurance h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 24px;
}
.reassure-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; max-width: 800px; margin: 0 auto;
}
@media (max-width: 600px) { .reassure-grid { grid-template-columns: 1fr; } }
.reassure-item {
  font-size: 16px; color: var(--text-body);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.reassure-icon {
  font-size: 32px;
}
.reassure-item strong {
  color: var(--text-heading);
}

@media (max-width: 768px) {
  .get-started-hero { padding: 48px 0 40px; }
}
