/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #224375;
  --light-blue: #62A1BD;
  --pale-blue: #D7E7EB;
  --gold: #D1A56A;
  --beige: #EAE6E3;
  --white: #ffffff;
  --error: #D94040;
  --shadow: 0 4px 24px rgba(34, 67, 117, 0.1);
  --radius: 12px;
  --transition: 0.3s ease;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--white);
  color: var(--navy);
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
}

h1, h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

/* ================================================
   TOP SECTION
   ================================================ */

.top-logo {
  text-align: center;
  padding: 24px 24px 16px;
  background: var(--white);
}

.top-logo img {
  width: 200px;
  height: auto;
}

.top-split {
  display: flex;
  gap: 32px;
  padding: 0 32px 40px;
  background: var(--white);
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

/* ----- Hero (Left) ----- */
.top-hero {
  flex: 1;
  min-width: 0;
}

.hero-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
}

.hero-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(34, 67, 117, 0.95) 0%, rgba(34, 67, 117, 0.85) 50%, rgba(34, 67, 117, 0.5) 75%, transparent 100%);
  padding: 30px 24px 20px;
  top: auto;
  text-align: center;
}

.hero-overlay-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to bottom, rgba(34, 67, 117, 0.7) 0%, rgba(34, 67, 117, 0.3) 50%, transparent 100%);
  z-index: 1;
}

.hero-brand {
  color: var(--white);
  text-shadow: 0 2px 4px rgba(209, 165, 106, 0.7);
  position: absolute;
  top: 32px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 2;
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(209, 165, 106, 0.7);
  letter-spacing: 4px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6), 0 4px 12px rgba(0,0,0,0.4), 0 0 20px rgba(0,0,0,0.3);
}

.hero-sub-top {
  font-size: 1.1rem;
  color: var(--gold);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 4px;
}

.hero-overlay h1,
.hero-overlay h1.hero-gold {
  font-size: 2.4rem;
  line-height: 1.1;
  margin-bottom: 10px;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(209, 165, 106, 0.7);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--gold);
  line-height: 1.4;
  margin-bottom: 10px;
}

.hero-detail {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin-bottom: 10px;
}

.hero-deadline {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
}

.hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  gap: 8px;
  flex-wrap: wrap;
}

.stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
}

.rating-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
}

/* ----- Form (Right) ----- */
.top-form {
  flex: 1;
  min-width: 0;
  display: flex;
}

/* ----- Form (Right) ----- */
.top-form {
  display: flex;
}

/* ----- Mobile CTA (under hero) ----- */
.mobile-cta {
  display: none;
}

/* ----- Mid CTA ----- */
.mid-cta {
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
}

/* ----- Trust Bar ----- */
.trust-bar {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 32px 24px;
  background: var(--beige);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.trust-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 700;
}

.trust-item span {
  font-size: 0.8rem;
  color: #718096;
}

/* ----- Services ----- */
.services {
  padding: 56px 24px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.services h2 {
  font-size: 1.8rem;
  margin-bottom: 8px;
  color: var(--navy);
}

.services-sub {
  font-size: 0.95rem;
  color: #718096;
  margin-bottom: 36px;
}

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

.service-card {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
}

.service-card:hover {
  border-color: var(--light-blue);
  box-shadow: 0 4px 16px rgba(98, 161, 189, 0.12);
  transform: translateY(-2px);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--pale-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.service-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.85rem;
  color: #718096;
  line-height: 1.5;
}

/* ----- Bottom CTA ----- */
.bottom-cta {
  padding: 56px 24px;
  text-align: center;
  background: var(--beige);
}

.bottom-cta h2 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: var(--navy);
}

.bottom-cta p {
  font-size: 0.95rem;
  color: #4a5568;
  margin-bottom: 28px;
}

/* ----- Why Bodify ----- */
.why-bodify {
  background: #f7f9fb;
  padding: 56px 24px;
  text-align: center;
}

.why-bodify h2 {
  font-size: 1.6rem;
  margin-bottom: 32px;
  color: var(--navy);
}

.why-layout {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.why-photo {
  width: 50%;
  max-width: 400px;
  border-radius: var(--radius);
  object-fit: cover;
  flex-shrink: 0;
}

.why-grid {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.5;
}

.why-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* ================================================
   BOOKING FORM (matches v1 exactly)
   ================================================ */

.form-container {
  width: 100%;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* ----- Full-page Booking Overlay ----- */
.fullpage-booking {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--beige);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.fullpage-booking .form-container {
  max-width: 560px;
}

/* Progress Bar */
.progress-bar {
  height: 4px;
  background: #e0e0e0;
  position: relative;
  flex-shrink: 0;
  border-radius: var(--radius) var(--radius) 0 0;
}

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

/* Back Button */
.back-btn {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 10;
  background: none;
  border: none;
  color: var(--navy);
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: background var(--transition);
  opacity: 0;
  pointer-events: none;
}

.back-btn.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-btn:hover {
  background: var(--beige);
}

/* Steps */
.steps-wrapper {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.step {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  opacity: 0;
  transform: translateX(60px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
  overflow-y: auto;
}

.step.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
}

.step.exit-left {
  opacity: 0;
  transform: translateX(-60px);
}

.step.enter-right {
  transform: translateX(60px);
}

.step.enter-left {
  transform: translateX(-60px);
}

.step.exit-right {
  opacity: 0;
  transform: translateX(60px);
}

/* Step Content */
.step-content {
  width: 100%;
  padding: 28px 32px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-header {
  margin-bottom: 48px;
}

.step-icon {
  margin-bottom: 12px;
}

.step-header h2 {
  font-size: 1.5rem;
  color: var(--navy);
}

/* Welcome Step */
.welcome-step .logo {
  margin-bottom: 24px;
}

.welcome-step h1 {
  font-size: 1.75rem;
  margin-bottom: 28px;
  color: var(--navy);
  line-height: 1.3;
}

.value-props {
  width: 100%;
  margin-bottom: 32px;
}

.value-prop {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  text-align: left;
  font-size: 0.95rem;
  color: #4a5568;
}

.value-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--pale-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tagline {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--light-blue);
  font-style: italic;
  letter-spacing: 0.5px;
}

/* Buttons */
.btn {
  border: none;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  outline: none;
}

.btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(98, 161, 189, 0.4);
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  padding: 14px 48px;
  width: 100%;
  max-width: 100%;
  margin-top: 8px;
}

.btn-primary:hover {
  background: #c4944e;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(209, 165, 106, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-lg {
  padding: 16px 48px;
  font-size: 1.1rem;
}

/* Input Fields */
.input-group {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.field {
  text-align: left;
}

.field input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: var(--navy);
  transition: border-color var(--transition);
  outline: none;
}

.field input::placeholder {
  color: #a0aec0;
}

.field input:focus {
  border-color: var(--gold);
}

.field input.invalid {
  border-color: var(--error);
}

.field-error {
  display: block;
  font-size: 0.8rem;
  color: var(--error);
  margin-top: 4px;
  min-height: 1.2em;
}

.consent-text {
  margin-top: 16px;
  font-size: 0.6rem;
  color: #718096;
  line-height: 1.5;
  max-width: 320px;
  text-align: left;
}

.consent-text-tight {
  margin-top: 6px;
}

/* Visit Type Cards */
.visit-type-cards {
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.visit-type-card {
  background: var(--white);
  border: 2px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 16px 18px;
  cursor: pointer;
  text-align: left;
  transition: all var(--transition);
  font-family: 'Montserrat', sans-serif;
  display: flex;
  align-items: center;
  gap: 14px;
}

.visit-type-card:hover {
  border-color: var(--light-blue);
  background: #f7fbfc;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(98, 161, 189, 0.15);
}

.visit-type-card.selected {
  border-color: var(--gold);
  background: #faf6f0;
}

/* Location Cards */
.location-cards {
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.location-card {
  background: var(--white);
  border: 2px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 18px 20px;
  cursor: pointer;
  text-align: left;
  transition: all var(--transition);
  font-family: 'Montserrat', sans-serif;
}

.location-card:hover {
  border-color: var(--light-blue);
  background: #f7fbfc;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(98, 161, 189, 0.15);
}

.location-card.selected {
  border-color: var(--gold);
  background: #faf6f0;
}

.location-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.location-address {
  font-size: 0.6rem;
  color: #718096;
  white-space: nowrap;
}

/* Goal Cards */
.goal-cards {
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.goal-card {
  background: var(--white);
  border: 2px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 16px 18px;
  cursor: pointer;
  text-align: left;
  transition: all var(--transition);
  font-family: 'Montserrat', sans-serif;
  display: flex;
  align-items: center;
  gap: 14px;
}

.goal-card:hover {
  border-color: var(--light-blue);
  background: #f7fbfc;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(98, 161, 189, 0.15);
}

.goal-card.selected {
  border-color: var(--gold);
  background: #faf6f0;
}

.goal-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--pale-blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.goal-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.goal-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
}

.goal-desc {
  font-size: 0.8rem;
  color: #718096;
}

.goal-other {
  border-style: dashed;
}

/* Target Area Grid */
.step-subtitle {
  font-size: 0.85rem;
  color: #718096;
  margin-top: 8px;
}

.area-grid {
  width: 100%;
  max-width: 360px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.area-card {
  background: var(--white);
  border: 2px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 14px 16px;
  cursor: pointer;
  text-align: left;
  transition: all var(--transition);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 12px;
}

.area-card:hover {
  border-color: var(--light-blue);
  background: #f7fbfc;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(98, 161, 189, 0.15);
}

.area-card.selected {
  border-color: var(--gold);
  background: #faf6f0;
}


/* Get Started Cards */
.getstarted-cards {
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.getstarted-card {
  background: var(--white);
  border: 2px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 18px 20px;
  cursor: pointer;
  text-align: left;
  transition: all var(--transition);
  font-family: 'Montserrat', sans-serif;
  display: flex;
  align-items: center;
  gap: 14px;
}

.getstarted-card:hover {
  border-color: var(--light-blue);
  background: #f7fbfc;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(98, 161, 189, 0.15);
}

.getstarted-card.selected {
  border-color: var(--gold);
  background: #faf6f0;
}

.getstarted-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.getstarted-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
}

.getstarted-sub {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
}

/* Exploring Resource Links */
.exploring-links {
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.exploring-link {
  display: block;
  background: #f7f9fb;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 18px 20px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: all var(--transition);
}

.exploring-link:hover {
  border-color: var(--light-blue);
  background: #f7fbfc;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(98, 161, 189, 0.15);
}

/* Claim Code Button */
.btn-claim {
  display: block;
  text-align: center;
  text-decoration: none;
  margin-bottom: 12px;
  max-width: 360px;
  padding: 18px 20px;
}

.exploring-links .btn-claim {
  max-width: 100%;
}

.getstarted-footer {
  margin-top: 24px;
  font-size: 0.8rem;
  color: #718096;
  line-height: 1.6;
  font-style: italic;
  max-width: 320px;
  text-align: center;
}

.goal-book-treatment {
  margin-top: 24px;
}

.goal-book-treatment .goal-name {
  font-size: 0.95rem;
  font-weight: 700;
}

/* Same-Day Service */
.same-day-question {
  width: 100%;
  max-width: 320px;
  margin-top: 20px;
  margin-bottom: 8px;
}

.same-day-question h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  text-align: center;
}

.same-day-options {
  display: flex;
  gap: 10px;
}

.same-day-btn {
  flex: 1;
  background: var(--white);
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  padding: 10px 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: all var(--transition);
}

.same-day-btn:hover {
  border-color: var(--light-blue);
  background: #f7fbfc;
}

.same-day-btn.selected {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

/* Treatment Cards */
.treatment-cards {
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.treatment-card {
  background: var(--white);
  border: 2px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 18px 20px;
  cursor: pointer;
  text-align: left;
  transition: all var(--transition);
  font-family: 'Montserrat', sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.treatment-card:hover {
  border-color: var(--light-blue);
  background: #f7fbfc;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(98, 161, 189, 0.15);
}

.treatment-card.selected {
  border-color: var(--gold);
  background: #faf6f0;
}

.treatment-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
}

.treatment-meta {
  font-size: 0.85rem;
  color: #718096;
}

/* Calendar */
.datetime-picker {
  width: 100%;
  max-width: 360px;
}

.calendar {
  margin-bottom: 20px;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.cal-month {
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
}

.cal-nav {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 50%;
  color: var(--navy);
  transition: background var(--transition);
}

.cal-nav:hover {
  background: var(--beige);
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 4px;
}

.calendar-weekdays span {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: #a0aec0;
  padding: 4px 0;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.cal-day {
  background: none;
  border: none;
  padding: 10px 4px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: var(--navy);
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition);
}

.cal-day:hover:not(.disabled):not(.selected) {
  background: var(--beige);
}

.cal-day.selected {
  background: var(--gold);
  color: var(--white);
}

.cal-day.today:not(.selected) {
  font-weight: 700;
  color: var(--light-blue);
}

.cal-day.disabled {
  color: #cbd5e0;
  cursor: default;
}

.cal-day.empty {
  cursor: default;
}

/* Time Slots */
.time-slots {
  display: none;
}

.time-slots.visible {
  display: block;
}

.time-slots h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  text-align: left;
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.time-slot {
  background: var(--white);
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  padding: 10px 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  color: var(--navy);
  cursor: pointer;
  transition: all var(--transition);
}

.time-slot:hover {
  border-color: var(--light-blue);
  background: #f7fbfc;
}

.time-slot.selected {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.time-slot.unavailable {
  background: #f0f0f0;
  color: #b0b0b0;
  border-color: #e0e0e0;
  cursor: not-allowed;
  text-decoration: line-through;
  opacity: 0.6;
}

.time-slot.unavailable:hover {
  border-color: #e0e0e0;
  background: #f0f0f0;
}

/* Availability Loading */
.availability-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  color: #718096;
  font-size: 0.9rem;
}

.spinner {
  width: 20px;
  height: 20px;
  border: 3px solid #e2e8f0;
  border-top-color: var(--gold, #d4a843);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.no-availability {
  text-align: center;
  padding: 20px;
  color: #718096;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Confirmation */
.confirmation-step h2 {
  font-size: 1.75rem;
  margin-bottom: 24px;
}

.checkmark-circle {
  width: 96px;
  height: 96px;
  background: var(--beige);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  animation: scaleIn 0.5s ease forwards;
}

@keyframes scaleIn {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}

.checkmark-path {
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  animation: drawCheck 0.4s 0.3s ease forwards;
}

@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}

.summary {
  width: 100%;
  max-width: 320px;
  background: var(--beige);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 20px;
  text-align: left;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.9rem;
}

.summary-item:not(:last-child) {
  border-bottom: 1px solid #ddd8d4;
}

.summary-label {
  color: #718096;
  font-weight: 500;
}

.summary-value {
  font-weight: 600;
  color: var(--navy);
  text-align: right;
  display: flex;
  align-items: center;
  gap: 6px;
}

.summary-editable {
  cursor: pointer;
  border-radius: 6px;
  transition: background var(--transition);
}

.summary-editable:hover {
  background: rgba(209, 165, 106, 0.1);
}

.edit-icon {
  color: #a0aec0;
  flex-shrink: 0;
}

.summary-editable:hover .edit-icon {
  color: var(--gold);
}

.summary-edit-input {
  width: 100%;
  max-width: 160px;
  padding: 4px 8px;
  border: 2px solid var(--gold);
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  text-align: right;
  outline: none;
}

.confirm-message {
  font-size: 0.95rem;
  color: #718096;
  margin-bottom: 24px;
  line-height: 1.5;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 900px) {
  .top-split {
    flex-direction: column;
    padding: 0 20px 32px;
    align-items: center;
  }

  .top-hero {
    max-width: 100%;
  }

  .hero-image {
    height: auto;
    min-height: 350px;
    position: relative;
  }

  .hero-image img {
    position: relative;
    height: auto;
    min-height: 350px;
  }

  .top-form {
    max-width: 100%;
  }

  .trust-bar {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
  }

  .trust-item {
    flex-direction: column;
    text-align: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-layout {
    flex-direction: column;
    gap: 24px;
  }

  .why-photo {
    width: 100%;
    max-width: 400px;
  }
}

@media (max-width: 520px) {
  .top-logo {
    padding: 16px 16px 12px;
  }

  .top-logo img {
    width: 130px;
  }

  .top-split {
    padding: 0 12px 24px;
  }

  .hero-image,
  .hero-image img {
    min-height: 550px;
  }

  .mobile-cta {
    display: block;
    text-align: center;
    padding: 20px 12px;
  }

  .mid-cta {
    display: none;
  }

  .hero-brand {
    font-size: 1.2rem;
  }

  .hero-overlay h1 {
    font-size: 1.6rem;
  }

  .hero-sub-top {
    font-size: 0.95rem;
  }

  .hero-overlay {
    padding: 30px 16px 16px;
  }

  .form-container {
    border-radius: 8px;
    box-shadow: none;
  }

  .step-content {
    padding: 40px 20px 24px;
  }

  .step-header h2 {
    font-size: 1.3rem;
  }

  .time-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .area-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .area-card {
    font-size: 0.7rem;
    padding: 10px 8px;
    grid-column: span 2;
  }

  .area-card[data-area="All"],
  .area-card[data-area="Not Sure"] {
    grid-column: span 3;
  }

  .services {
    padding: 40px 20px;
  }

  .why-bodify {
    padding: 40px 20px;
  }

  .bottom-cta {
    padding: 40px 20px;
  }
}

/* ===== Policy Links ===== */
.policy-links {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 4px 6px;
  margin-top: 12px;
  font-size: 0.55rem;
  white-space: nowrap;
}

.policy-links a {
  color: var(--navy);
  text-decoration: none;
}

.policy-links a:hover {
  text-decoration: underline;
}

.policy-links span {
  color: var(--navy);
}

/* ===== Cherry Consent & Banner ===== */
.cherry-consent-box {
  margin-top: 10px;
}

.cherry-consent-box .consent-text {
  margin: 0;
  font-size: 0.6rem;
}

.cherry-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 10px 12px;
  margin-top: 14px;
  max-width: 320px;
}

.cherry-banner-icon {
  width: 40px;
  height: auto;
  flex-shrink: 0;
}

.cherry-banner p {
  font-size: 0.6rem;
  color: #4a5568;
  line-height: 1.4;
  margin: 0;
  text-align: left;
}

.cherry-inline-form {
  text-align: left;
  margin-top: 16px;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.cherry-inline-form .cherry-prompt-logo {
  display: block;
  margin: 0 auto 12px;
}

.cherry-inline-form .cherry-form-heading {
  text-align: center;
}

.cherry-inline-form .cherryCheckBtnField {
  display: block;
  margin: 8px auto 0;
}

.cherry-inline-form .policy-links {
  text-align: center;
}

.cherry-inline-form .cherry-legal {
  text-align: center;
}

/* ===== Cherry Financing ===== */
.cherry-section {
  width: 100%;
  max-width: 400px;
  margin: 24px auto 16px;
}

.cherry-prompt {
  text-align: center;
}

.cherry-prompt-logo {
  width: 120px;
  height: auto;
  margin-bottom: 16px;
}

.cherry-disclaimer {
  font-size: 0.6rem;
  color: #718096;
  line-height: 1.4;
  margin-top: 16px;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.cherry-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.cherry-subtitle {
  font-size: 0.85rem;
  color: #718096;
  margin-bottom: 16px;
}

.cherry-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.btn-cherry-start {
  padding: 14px 32px;
  font-size: 0.9rem;
  width: 100%;
  max-width: 320px;
  background: #00C37D;
  color: white;
  border: none;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-cherry-start:hover {
  background: #00a86b;
}

.cherry-fullpage {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  background: var(--beige);
  padding: 20px;
}

.cherry-fullpage .step-content {
  max-width: 480px;
  width: 100%;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
  text-align: left;
}

.cherry-fullpage .cherry-prompt-logo {
  display: block;
  margin: 0 auto 12px;
}

.cherry-form-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 16px;
}

.cherry-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.cherry-benefits li {
  font-size: 0.85rem;
  color: var(--navy);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cherry-benefits li::before {
  content: '\2713';
  color: #2e9e5a;
  font-weight: 700;
  font-size: 1rem;
}

.cherry-benefits li a {
  color: var(--navy);
  text-decoration: underline;
}

.cherry-form-desc {
  font-size: 0.78rem;
  color: #718096;
  line-height: 1.5;
  margin-bottom: 20px;
  text-align: left;
}

.cherry-form-fields {
  margin-bottom: 16px;
}

.cherry-label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: #4a5568;
  margin-bottom: 6px;
  margin-top: 14px;
  text-align: left;
}

.cherry-label:first-child {
  margin-top: 0;
}

.cherry-readonly-field {
  position: relative;
}

.cherry-edit-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #c0c5cc;
  font-size: 1.1rem;
  pointer-events: none;
}

.cherry-form-fields .field input[readonly] {
  background: #f7f8fa;
  color: #4a5568;
  cursor: default;
}

.cherry-form-fields .field input {
  font-size: 0.9rem;
  padding: 12px 14px;
}

.cherry-row-3 {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.cherry-field-city {
  flex: 2;
}

.cherry-field-state {
  flex: 1;
}

.cherry-field-zip {
  flex: 1;
}

.cherry-divider {
  border: none;
  border-top: 1px solid #e2e8f0;
  margin: 16px 0;
}

.cherry-legal {
  font-size: 0.55rem;
  color: #718096;
  line-height: 1.4;
  text-align: left;
}

.cherry-legal a {
  color: var(--navy);
  text-decoration: underline;
}

.cherry-fullpage .back-btn {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  margin-bottom: 8px;
  background: none;
  border: none;
  color: var(--navy);
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  font-size: 1.2rem;
  transition: background var(--transition);
}

.cherry-fullpage .back-btn:hover {
  background: var(--beige);
}

.cherry-result {
  margin-top: 16px;
}

.cherry-result-card {
  padding: 20px;
  border-radius: 12px;
  text-align: center;
}

.cherry-result-card.approved {
  border: 2px solid #2e9e5a;
  background: #eef8f2;
}

.cherry-result-card.not-approved {
  border: 2px solid #e2e8f0;
  background: #f7f8fa;
}

.cherry-result-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.cherry-result-amount {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #2e9e5a;
  margin-bottom: 8px;
}

.cherry-result-subtitle {
  display: block;
  font-size: 0.75rem;
  color: #718096;
  margin-top: 8px;
  line-height: 1.4;
}

.cherry-download-link {
  color: var(--navy);
  text-decoration: underline;
  font-weight: 600;
}

.cherry-apply-btn {
  display: block;
  text-align: center;
  text-decoration: none;
  margin-top: 16px;
}

.cherry-apr-note {
  font-size: 0.65rem;
  color: #718096;
  text-align: center;
  margin-top: 8px;
}
