/* ============ PROGRAM PAGES STYLES ============ */

/* ============ PROGRAM HERO ============ */
.program-hero {
  background: var(--near-black);
  padding: 10rem 2rem 6rem;
  position: relative;
  overflow: hidden;
}

.program-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.program-hero-content {
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  padding: 0 2rem;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.5rem;
}

.hero-title {
  color: var(--light);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  max-width: 700px;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--light-gray);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.program-hero-ctas {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.program-hero-ctas .btn-secondary {
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--light);
}

.program-hero-ctas .btn-secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.program-hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item {
  flex: 0 0 auto;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--light);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--light-gray);
  font-weight: 500;
  letter-spacing: 0.05em;
}

@media (max-width: 640px) {
  .program-hero {
    padding: 6rem 2rem 4rem;
  }

  .program-hero-stats {
    gap: 2rem;
    flex-wrap: wrap;
  }

  .program-hero-ctas {
    flex-direction: column;
  }

  .program-hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============ SESSION GRID ============ */
.session-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (max-width: 1024px) {
  .session-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .session-grid {
    grid-template-columns: 1fr;
  }
}

.session-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.session-card:hover {
  border-color: var(--orange);
  box-shadow: 0 2px 12px rgba(255, 107, 53, 0.08);
}

.session-num {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.session-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark);
  line-height: 1.4;
}

.session-build-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--light-gray);
  margin-bottom: 0.5rem;
}

.session-build {
  font-size: 0.9rem;
  color: var(--mid-gray);
  line-height: 1.6;
}

/* ============ SESSION CARD ACTIONS (M13-PR5) ============ */
.session-card-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.session-card-actions .btn-view-lesson {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.session-card-actions .btn-view-lesson:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.session-card-actions .btn-buy-session {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  background: var(--orange);
  border: 1px solid var(--orange);
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.session-card-actions .btn-buy-session:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
}

/* ============ TRACK BUY CTA (M13-PR5) ============ */
.track-buy-cta {
  margin-top: 1.5rem;
}

/* ============ BETA PRICING BOX ============ */
.beta-pricing-box {
  background: var(--orange-light);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  margin-top: 2rem;
  max-width: 600px;
}

.beta-header {
  margin-bottom: 1.5rem;
}

.beta-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.beta-pricing-box p {
  font-size: 1rem;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.beta-pricing-box strong {
  font-weight: 600;
  color: var(--dark);
}

.future-pricing-note {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 107, 53, 0.1);
}

.future-pricing-note h4 {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.future-pricing-note ul {
  list-style: none;
  padding: 0;
}

.future-pricing-note li {
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

/* Hybrid pricing for Relaunch */
.beta-pricing-box.hybrid-pricing {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background: var(--section-alt);
  border-color: var(--border);
}

.pricing-option {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.pricing-option:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.pricing-option h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.pricing-option p {
  font-size: 0.95rem;
  color: var(--mid-gray);
  line-height: 1.6;
  margin: 0;
}

/* ============ ADVANTAGE GRID ============ */
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

@media (max-width: 900px) {
  .advantage-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .advantage-grid {
    grid-template-columns: 1fr;
  }
}

.advantage-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.advantage-card:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.08);
}

.advantage-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.advantage-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.advantage-card p {
  font-size: 0.95rem;
  color: var(--mid-gray);
  line-height: 1.6;
  margin: 0;
}

/* ============ PROGRAM OPTIONS (Two-Card Layout) ============ */
.program-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .program-options {
    grid-template-columns: 1fr;
  }
}

.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.price-card:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.1);
}

.price-header {
  margin-bottom: 1.5rem;
  flex: 0 0 auto;
}

.price-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.price-subheader {
  font-size: 0.95rem;
  color: var(--mid-gray);
  margin: 0;
}

.price-details {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.price-highlight {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 0.25rem;
}

.price-period {
  font-size: 0.9rem;
  color: var(--light-gray);
  margin: 0;
}

.price-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  flex: 1 1 auto;
}

.price-features li {
  font-size: 0.95rem;
  color: var(--mid-gray);
  padding: 0.75rem 0;
  line-height: 1.6;
}

.price-features li::before {
  content: '✓ ';
  color: var(--orange);
  font-weight: 700;
  margin-right: 0.5rem;
}

/* ============ FAQ ACCORDION ============ */
.faq-section {
  margin-top: 2rem;
  max-width: 700px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  font-family: inherit;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--orange);
}

.faq-question span:first-child {
  flex: 1;
}

.faq-icon {
  flex: 0 0 auto;
  font-size: 1.5rem;
  color: var(--orange);
  font-weight: 300;
  margin-left: 1rem;
}

.faq-answer {
  overflow: hidden;
  padding-bottom: 1rem;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
  }
  to {
    opacity: 1;
    max-height: 500px;
  }
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--mid-gray);
  line-height: 1.7;
  margin: 0;
}

/* ============ WAITLIST FORM ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.section-dark .form-group label {
  color: var(--light);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s;
}

.section-dark .form-group input,
.section-dark .form-group select,
.section-dark .form-group textarea {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--light);
}

.section-dark .form-group input::placeholder,
.section-dark .form-group textarea::placeholder {
  color: var(--light-gray);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.08);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit {
  padding: 1rem 2rem;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  font-family: inherit;
}

.form-submit:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
}

.form-response {
  padding: 1rem;
  border-radius: 6px;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============ URGENCY NOTE ============ */
.urgency-note {
  margin-top: 2rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 107, 53, 0.05);
  border-left: 3px solid var(--orange);
  border-radius: 4px;
  font-size: 0.95rem;
  color: var(--dark);
  line-height: 1.6;
}

.section-dark .urgency-note {
  background: rgba(255, 107, 53, 0.1);
  color: var(--light);
  border-left-color: rgba(255, 107, 53, 0.5);
}

/* ============ TWO-COLUMN SECTION ============ */
.two-col-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .two-col-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.two-col-section .col h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}

.two-col-section .col p {
  font-size: 0.95rem;
  color: var(--mid-gray);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.two-col-section .col p:last-child {
  margin-bottom: 0;
}

/* ============ CASE STUDY BLOCK ============ */
.case-study-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  padding: 2rem;
  margin-top: 2rem;
}

.case-study-block p {
  font-size: 0.95rem;
  color: var(--mid-gray);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.case-study-block p:last-child {
  margin-bottom: 0;
}

.case-study-block strong {
  color: var(--dark);
  font-weight: 600;
}

/* ============ RESPONSIVE HELPERS ============ */
@media (max-width: 640px) {
  section {
    padding: 4rem 1.5rem;
  }

  .container {
    padding: 0 1.5rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }
}
