/* Condor Live Transitional Care — Landing Styles */

:root {
  --navy: #1a2744;
  --teal: #2d9b8a;
  --teal-light: #e6f5f2;
  --amber: #d4851a;
  --amber-light: #fdf3e3;
  --off-white: #f8f9fb;
  --text: #2a2a2a;
  --text-muted: #6a7080;
  --white: #ffffff;
  --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.05);
  --shadow-lg: 0 4px 20px rgba(0,0,0,0.10);
  --radius: 10px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--off-white);
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }

/* Nav */
.navbar {
  background: var(--white);
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  text-decoration: none;
}
.navbar-brand .brand-icon {
  width: 32px;
  height: 32px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}
.navbar-brand .brand-name { line-height: 1.2; }
.navbar-brand .brand-tagline {
  font-size: 0.65rem;
  color: var(--teal);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 80px 40px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(45,155,138,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(45,155,138,0.2);
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.hero h1 em {
  font-style: normal;
  color: var(--teal);
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
  display: inline-block;
}
.btn-primary:hover { background: #248579; transform: translateY(-1px); }
.btn-secondary {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.25);
  transition: background 0.2s, transform 0.1s;
  display: inline-block;
}
.btn-secondary:hover { background: rgba(255,255,255,0.18); transform: translateY(-1px); }

/* Stats bar */
.stats-bar {
  background: var(--white);
  padding: 32px 40px;
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  box-shadow: var(--shadow);
  margin-top: -40px;
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  border-radius: var(--radius);
}
.stat-item { text-align: center; }
.stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Sections */
.section { padding: 80px 40px; }
.section--alt { background: var(--white); }
.section-header { text-align: center; max-width: 620px; margin: 0 auto 56px; }
.section-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Service cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.service-card {
  background: var(--off-white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.service-icon {
  width: 48px;
  height: 48px;
  background: var(--teal-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.3rem;
}
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* How it works */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.step { text-align: center; }
.step-number {
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 auto 16px;
}
.step h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* Testimonial band */
.testimonial {
  background: var(--navy);
  color: var(--white);
  padding: 60px 40px;
  text-align: center;
}
.testimonial blockquote {
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 24px;
  color: rgba(255,255,255,0.9);
}
.testimonial cite {
  font-size: 0.85rem;
  color: var(--teal);
  font-style: normal;
  font-weight: 600;
}

/* CTA band */
.cta-band {
  background: var(--teal-light);
  border: 1px solid rgba(45,155,138,0.15);
  padding: 64px 40px;
  text-align: center;
}
.cta-band h2 { font-size: 1.8rem; font-weight: 800; color: var(--navy); margin-bottom: 14px; }
.cta-band p { color: var(--text-muted); margin-bottom: 32px; font-size: 1.05rem; }
.cta-band .btn-primary { background: var(--navy); }
.cta-band .btn-primary:hover { background: #243665; }

/* Footer */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.5);
  padding: 32px 40px;
  text-align: center;
  font-size: 0.82rem;
}
footer a { color: rgba(255,255,255,0.6); text-decoration: none; }
footer a:hover { color: var(--white); }

/* Responsive */
/* ===== INTAKE FORM ===== */
.intake-page {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 20px 80px;
}

.intake-header {
  padding: 48px 0 40px;
  border-bottom: 1px solid rgba(26,39,68,0.1);
  margin-bottom: 40px;
}

.intake-header-eyebrow {
  display: inline-block;
  background: rgba(45,155,138,0.12);
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.intake-header h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.2;
}

.intake-header p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* Step indicators */
.intake-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 48px;
}

.intake-step-item {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

.intake-step-item.active { color: var(--navy); font-weight: 700; }
.intake-step-item.done { color: var(--teal); }

.step-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(26,39,68,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--white);
  flex-shrink: 0;
}

.intake-step-item.active .step-circle {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.intake-step-item.done .step-circle {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.step-divider {
  flex: 1;
  height: 1px;
  background: rgba(26,39,68,0.1);
  margin: 0 8px;
}

/* Question block */
.intake-question {
  margin-bottom: 36px;
}

.intake-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.4;
}

.intake-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 6px;
  margin-bottom: 12px;
  font-weight: 400;
}

/* Radio/checkbox cards */
.intake-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.intake-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1.5px solid rgba(26,39,68,0.12);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
  background: var(--white);
  font-size: 0.92rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.4;
}

.intake-option:hover {
  border-color: var(--teal);
  background: rgba(45,155,138,0.04);
}

.intake-option.selected {
  border-color: var(--teal);
  background: rgba(45,155,138,0.06);
  box-shadow: 0 0 0 3px rgba(45,155,138,0.12);
}

.intake-option input[type="radio"],
.intake-option input[type="checkbox"] {
  accent-color: var(--teal);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Text / textarea */
.intake-input,
.intake-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(26,39,68,0.15);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.18s, box-shadow 0.18s;
  outline: none;
}

.intake-textarea { resize: vertical; min-height: 100px; line-height: 1.6; }

.intake-input:focus,
.intake-textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(45,155,138,0.12);
}

/* Navigation */
.intake-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(26,39,68,0.1);
  gap: 16px;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 8px;
  border: 1.5px solid rgba(26,39,68,0.15);
  transition: border-color 0.18s, color 0.18s;
  background: var(--white);
}

.btn-back:hover { border-color: var(--navy); color: var(--navy); }

.btn-next {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
  border: none;
  cursor: pointer;
}

.btn-next:hover { background: #243665; transform: translateY(-1px); }

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: var(--white);
  padding: 14px 36px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
  border: none;
  cursor: pointer;
}

.btn-submit:hover { background: #248579; transform: translateY(-1px); }

/* Suggested bundle */
.bundle-suggestion {
  background: var(--amber-light);
  border: 1.5px solid rgba(212,133,26,0.2);
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 40px;
}

.bundle-suggestion-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 8px;
}

.bundle-suggestion h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.bundle-suggestion p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Consultation step */
.consultation-card {
  background: var(--navy);
  color: var(--white);
  border-radius: 14px;
  padding: 40px;
  margin-top: 32px;
}

.consultation-card h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.consultation-card > p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin-bottom: 28px;
  line-height: 1.6;
}

.consultation-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.consult-option {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 18px 22px;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s;
  text-decoration: none;
  color: var(--white);
}

.consult-option:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.3);
}

.consult-option-icon {
  width: 44px;
  height: 44px;
  background: rgba(45,155,138,0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.consult-option-text { flex: 1; }
.consult-option-title { font-weight: 700; font-size: 0.95rem; margin-bottom: 3px; }
.consult-option-sub { font-size: 0.8rem; color: rgba(255,255,255,0.6); }

.consult-option-arrow {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.4);
}

/* Trust signals */
.trust-bar {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

.trust-item .check { color: var(--teal); }

/* Success state */
.intake-success {
  text-align: center;
  padding: 64px 20px;
}

.intake-success-icon {
  width: 72px;
  height: 72px;
  background: rgba(45,155,138,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 2rem;
}

.intake-success h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
}

.intake-success p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 36px;
}

.intake-success-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Error message */
.field-error {
  color: #c0392b;
  font-size: 0.8rem;
  margin-top: 6px;
  font-weight: 500;
}

/* Progress bar in step header */
.step-progress {
  height: 3px;
  background: rgba(26,39,68,0.08);
  border-radius: 2px;
  margin-bottom: 32px;
  overflow: hidden;
}

.step-progress-fill {
  height: 100%;
  background: var(--teal);
  border-radius: 2px;
  transition: width 0.4s ease;
}

/* Responsive */
@media (max-width: 640px) {
  .navbar { padding: 0 20px; }
  .hero { padding: 60px 20px 80px; }
  .section { padding: 60px 20px; }
  .stats-bar { gap: 30px; padding: 24px 20px; }
  .section-header h2 { font-size: 1.65rem; }
  .intake-page { padding: 0 16px 60px; }
  .consultation-card { padding: 28px 24px; }
  .intake-steps { gap: 0; }
  .intake-step-item span { display: none; }
}