/* =============================================================
   /start — Discovery Call Booking Page
   Matches site-wide dark glassmorphism design system.
   Tokens from global.css — do not redefine here.
   ============================================================= */

/* ---------------------------------------------------------------
   Layout
   --------------------------------------------------------------- */
.start-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.start-container--center {
  text-align: center;
}

/* ---------------------------------------------------------------
   Shared section typography
   --------------------------------------------------------------- */
.start-section-header {
  margin-bottom: 56px;
}

.start-section-header--center {
  text-align: center;
}

.start-section-headline {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 14px;
  line-height: 1.2;
}

.start-section-sub {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.72;
  margin: 0 auto;
  max-width: 560px;
}

/* ---------------------------------------------------------------
   SECTION 1 — HERO
   Two-column layout: headline + CTA left, stats right
   Matches homepage/about hero pattern for visual consistency
   --------------------------------------------------------------- */
.start-hero {
  background: var(--bg-primary);
  padding: 160px 0 108px;
}

.start-hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: center;
}

.start-hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Badge */
.start-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: var(--text-label);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-brand);
  background: rgba(59, 151, 168, 0.1);
  border: 1px solid rgba(59, 151, 168, 0.25);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  margin-bottom: 28px;
}

.start-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.8vw, 66px);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.08;
  margin: 0 0 24px;
  letter-spacing: -0.02em;
}

.start-accent {
  color: var(--color-accent);
}

.start-hero-sub {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0 0 44px;
  max-width: 520px;
}

/* Stats cluster — matches homepage stat card pattern */
.start-hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.start-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 0;
  padding: 0;
}

.start-stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color var(--transition-base);
}

.start-stat:hover {
  border-color: var(--color-brand);
}

.start-stat-value {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  margin: 0;
  letter-spacing: -0.02em;
}

.start-stat-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* ---------------------------------------------------------------
   SECTION 2 — WHAT TO EXPECT
   bg-elevated | 3 solid dark cards with teal borders
   --------------------------------------------------------------- */
.start-expect {
  background: var(--bg-elevated);
  padding: 96px 0;
}

.start-expect .start-section-header {
  text-align: center;
}

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

.start-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color var(--transition-base), transform var(--transition-base);
  cursor: default;
}

.start-card:hover {
  border-color: var(--color-brand);
  transform: translateY(-3px);
}

.start-card-number {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-brand);
  background: rgba(59, 151, 168, 0.1);
  border: 1px solid rgba(59, 151, 168, 0.22);
  border-radius: 6px;
  padding: 4px 10px;
  width: fit-content;
}

.start-card-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
  margin: 0;
}

.start-card-text {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0;
}

/* ---------------------------------------------------------------
   SECTION 3 — QUICK QUESTIONS (OBJECTION HANDLING)
   bg-primary | 6 FAQ items in 2-column grid
   --------------------------------------------------------------- */
.start-faq {
  background: var(--bg-primary);
  padding: 96px 0;
  border-top: 1px solid var(--border-subtle);
}

.start-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 48px;
  margin: 0;
  padding: 0;
}

.start-faq-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-subtle);
}

.start-faq-q {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}

.start-faq-a {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0;
}

/* ---------------------------------------------------------------
   SECTION 4 — WHAT HAPPENS NEXT
   bg-elevated | 3-step timeline — placed BEFORE Calendly to pre-frame the booking action
   --------------------------------------------------------------- */
.start-next {
  background: var(--bg-elevated);
  padding: 96px 0;
}

.start-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

/* Connector line between steps */
.start-steps::before {
  content: '';
  position: absolute;
  top: 26px;
  left: calc(33.33% - 20px);
  right: calc(33.33% - 20px);
  height: 1px;
  background: linear-gradient(to right,
    rgba(59, 151, 168, 0.4) 0%,
    rgba(59, 151, 168, 0.4) 50%,
    transparent 100%
  );
  pointer-events: none;
}

.start-step {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.start-step-icon {
  width: 52px;
  height: 52px;
  background: rgba(59, 151, 168, 0.12);
  border: 1px solid rgba(59, 151, 168, 0.28);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-brand);
  position: relative;
  z-index: 1;
}

.start-step-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.start-step-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.4;
}

.start-step-text {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0;
}

/* ---------------------------------------------------------------
   SECTION 5 — CALENDLY EMBED
   White section — iframe blends flush, urgency text above embed
   --------------------------------------------------------------- */
.start-calendly {
  background: #ffffff;
  padding: 80px 0 0;
}

.start-calendly-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-brand);
  margin: 0 0 12px;
}

.start-calendly-headline {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 700;
  color: #1c2b35;
  margin: 0 0 14px;
  line-height: 1.2;
}

.start-calendly-sub {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  color: #4a6470;
  line-height: 1.72;
  margin: 0 auto 20px;
  max-width: 560px;
}

.start-calendly-urgency {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  color: #2a7a54;
  background: rgba(42, 122, 84, 0.08);
  border: 1px solid rgba(42, 122, 84, 0.2);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  margin: 0 auto 0;
}

.start-calendly-embed {
  margin-top: 32px;
  overflow: hidden;
}

.start-calendly-embed .calendly-inline-widget {
  width: 100%;
  display: block;
}

/* =============================================================
   RESPONSIVE — Tablet (768–1023px)
   ============================================================= */
@media (max-width: 1023px) {
  .start-hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .start-hero-left {
    align-items: center;
    text-align: center;
  }

  .start-hero-sub {
    max-width: 100%;
  }

  .start-stats {
    max-width: 400px;
    margin: 0 auto;
  }

  .start-cards {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  .start-faq-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .start-steps {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  .start-steps::before {
    display: none;
  }
}

/* =============================================================
   RESPONSIVE — Mobile (<768px)
   ============================================================= */
@media (max-width: 767px) {
  .start-container {
    padding: 0 20px;
  }

  .start-hero {
    padding: 160px 0 72px;
  }

  .start-expect,
  .start-faq,
  .start-next {
    padding: 64px 0;
  }

  .start-calendly {
    padding: 60px 0 0;
  }

  .start-section-header {
    margin-bottom: 36px;
  }

  .start-stats {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }

  .start-stat {
    padding: 18px 16px;
  }

  .start-stat-value {
    font-size: 28px;
  }

  .start-steps::before {
    display: none;
  }

  .start-calendly-urgency {
    font-size: 12px;
    text-align: left;
  }
}

/* =============================================================
   Accessibility — reduced motion
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .start-card,
  .start-card:hover,
  .start-stat,
  .start-stat:hover {
    transition: none;
    transform: none;
  }
}
