/* ==========================================
   WriteWay™ to Shine — Design System
   ========================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Noto+Sans+TC:wght@400;500;700;900&family=Noto+Serif+TC:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* --- Design Tokens --- */
:root {
  /* Colors */
  --bg-cream:      #FDFBF7;
  --bg-warm:       #F7F2EB;
  --bg-warm-alt:   #F2EDE5;
  --accent-gold:   #D4A373;
  --accent-gold-light: #E8C9A4;
  --accent-gold-dark:  #B8884F;
  --accent-sage:   #8E9B90;
  --accent-sage-light: #B5C2B7;
  --text-dark:     #2D2926;
  --text-body:     #4A4540;
  --text-muted:    #7A7067;
  --text-light:    #A69E95;
  --border-soft:   #EAE6DE;
  --white:         #FFFFFF;
  --shadow-sm:     0 2px 8px rgba(45,41,38,0.04);
  --shadow-md:     0 8px 24px rgba(45,41,38,0.06);
  --shadow-lg:     0 16px 48px rgba(45,41,38,0.08);
  --shadow-glow:   0 0 60px rgba(212,163,115,0.15);

  /* Typography */
  --font-display: 'Playfair Display', 'Noto Serif TC', serif;
  --font-body:    'Noto Serif TC', 'Inter', sans-serif;
  --font-ui:      'Inter', 'Noto Serif TC', sans-serif;

  /* Spacing */
  --section-pad: 120px;
  --container-max: 1100px;

  /* Transitions */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-cream);
  color: var(--text-body);
  line-height: 1.8;
  font-size: 18px;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* --- Container --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 32px;
}

/* --- Section Base --- */
.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section--warm {
  background-color: var(--bg-warm);
}

.section--accent {
  background: linear-gradient(135deg, #F7F0E6 0%, #F2EAE0 50%, #EDE5DB 100%);
}

/* --- Section Header --- */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ==========================================
   Navigation
   ========================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.4s var(--ease-out);
}

.nav.scrolled {
  background: rgba(253, 251, 247, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 1px 0 var(--border-soft);
}

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.nav-cta {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--white);
  background: var(--accent-gold);
  padding: 10px 24px;
  border-radius: 100px;
  transition: all 0.3s var(--ease-out);
  opacity: 0;
  transform: translateY(-8px);
}

.nav.scrolled .nav-cta {
  opacity: 1;
  transform: translateY(0);
}

.nav-cta:hover {
  background: var(--accent-gold-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 32px 100px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: float 12s ease-in-out infinite;
}

.hero-orb--gold {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-gold-light), transparent 70%);
  top: -10%;
  right: -5%;
  animation-delay: -2s;
}

.hero-orb--sage {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-sage-light), transparent 70%);
  bottom: -5%;
  left: -5%;
  animation-delay: -6s;
}

.hero-orb--warm {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #F0DCC8, transparent 70%);
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: -4s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-15px, 15px) scale(0.97); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--accent-gold);
  opacity: 0.5;
}

.hero-title {
  font-family: 'Noto Serif TC', serif;
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 16px;
  letter-spacing: 2px;
  word-break: break-word;
}

.hero-title em {
  font-style: italic;
  color: var(--accent-gold);
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.9;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn {
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 16px 40px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn--primary {
  background: var(--accent-gold);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(212,163,115,0.3);
}

.btn--primary:hover {
  background: var(--accent-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,163,115,0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1.5px solid var(--border-soft);
}

.btn--ghost:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.hero-meta {
  font-family: var(--font-ui);
  font-size: 16px;
  color: var(--text-light);
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-meta .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--border-soft);
}

/* ==========================================
   Pain Points
   ========================================== */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pain-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 32px;
  border: 1px solid var(--border-soft);
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
}

.pain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent-gold);
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
}

.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.pain-card:hover::before {
  opacity: 1;
}

.pain-icon {
  font-size: 32px;
  margin-bottom: 20px;
}

.pain-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.pain-card p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==========================================
   Formula Banner
   ========================================== */
.formula {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-cream) 100%);
}

.formula-text {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.formula-text .x {
  font-size: 20px;
  color: var(--accent-gold);
  font-weight: 400;
}

.formula-text .eq {
  font-size: 20px;
  color: var(--text-light);
  font-weight: 400;
}

.formula-result {
  color: var(--accent-gold-dark);
  font-style: italic;
}

/* ==========================================
   Three Pillars
   ========================================== */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pillar-card {
  background: var(--white);
  border-radius: 24px;
  padding: 48px 36px;
  text-align: center;
  border: 1px solid var(--border-soft);
  transition: all 0.4s var(--ease-out);
  position: relative;
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.pillar-number {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  color: var(--accent-gold-light);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 16px;
}

.pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 24px;
}

.pillar-card:nth-child(1) .pillar-icon {
  background: rgba(212,163,115,0.12);
}
.pillar-card:nth-child(2) .pillar-icon {
  background: rgba(142,155,144,0.12);
}
.pillar-card:nth-child(3) .pillar-icon {
  background: rgba(184,136,79,0.12);
}

.pillar-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.pillar-card p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ==========================================
   Timeline / Curriculum
   ========================================== */
.timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent-gold-light), var(--accent-sage-light));
  opacity: 0.4;
}

.timeline-item {
  display: flex;
  gap: 32px;
  padding-bottom: 48px;
  position: relative;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  width: 58px;
  min-width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--accent-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-gold);
  position: relative;
  z-index: 1;
  transition: all 0.3s var(--ease-out);
  flex-shrink: 0;
}

.timeline-item:hover .timeline-dot {
  background: var(--accent-gold);
  color: var(--white);
  box-shadow: 0 0 0 8px rgba(212,163,115,0.1);
}

.timeline-content {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--border-soft);
  flex: 1;
  transition: all 0.3s var(--ease-out);
}

.timeline-item:hover .timeline-content {
  box-shadow: var(--shadow-md);
  border-color: var(--accent-gold-light);
}

.timeline-content h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

.timeline-question {
  font-style: italic;
  color: var(--text-body) !important;
  font-size: 16px !important;
}

.timeline-skill {
  font-family: var(--font-ui);
  font-size: 13px !important;
  font-weight: 500;
  color: var(--accent-gold) !important;
  letter-spacing: 0.5px;
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* --- Phosphor Icon Sizing --- */
.pain-icon i {
  font-size: 32px;
  color: var(--accent-gold);
}

.pillar-icon i {
  font-size: 24px;
  color: var(--accent-gold-dark);
}

.hero-meta i {
  font-size: 16px;
  vertical-align: -2px;
}

.mobile-break {
  display: none;
}

/* ==========================================
   Before / After Transformation Table
   ========================================== */
.transform-table {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  background: var(--white);
}

.transform-row {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  border-bottom: 1px solid var(--border-soft);
}

.transform-row:last-child {
  border-bottom: none;
}

.transform-header {
  background: var(--bg-warm);
}

.transform-header .transform-cell {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.transform-cell {
  padding: 18px 20px;
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.6;
  border-right: 1px solid var(--border-soft);
}

.transform-cell:last-child {
  border-right: none;
}

.transform-label {
  font-family: var(--font-ui);
  font-weight: 600;
  color: var(--text-dark);
  font-size: 13px;
  background: var(--bg-warm);
}

.transform-after {
  color: var(--accent-gold-dark);
  font-weight: 500;
}

/* ==========================================
   Takeaways
   ========================================== */
.takeaway-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.takeaway-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 32px;
  border: 1px solid var(--border-soft);
  transition: all 0.3s var(--ease-out);
}

.takeaway-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.takeaway-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--accent-gold-light);
}

.takeaway-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.takeaway-card li {
  font-size: 16px;
  color: var(--text-body);
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.takeaway-card li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 18px;
}

/* ==========================================
   Course Format
   ========================================== */
.format-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 800px;
  margin: 0 auto;
}

.format-card {
  padding: 36px 32px;
  border-radius: 20px;
  background: var(--bg-warm);
  transition: all 0.3s var(--ease-out);
}

.format-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.format-icon {
  margin-bottom: 16px;
}

.format-icon i {
  font-size: 32px;
  color: var(--accent-gold);
}

.format-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.format-card p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==========================================
   Instructor
   ========================================== */
.instructor-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: start;
}

.instructor-img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-lg);
}

.instructor-text p {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.9;
  margin-bottom: 16px;
}

.instructor-text p:last-of-type {
  margin-bottom: 24px;
}

.instructor-highlight {
  background: var(--white);
  border-left: 3px solid var(--accent-gold);
  padding: 20px 24px;
  border-radius: 0 12px 12px 0;
  margin-top: 8px;
}

.instructor-highlight p {
  margin-bottom: 0 !important;
  font-weight: 500;
  color: var(--text-dark);
}

/* ==========================================
   Testimonials
   ========================================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid var(--border-soft);
  transition: all 0.3s var(--ease-out);
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.testimonial-card p {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.7;
  font-style: italic;
}

.testimonial-banner {
  background: linear-gradient(135deg, rgba(212,163,115,0.1), rgba(212,163,115,0.05));
  border: 1px solid rgba(212,163,115,0.2);
  border-radius: 16px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}

.testimonial-banner i {
  font-size: 24px;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.testimonial-banner p {
  font-size: 16px;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.6;
}

/* ==========================================
   Audience Fit / Not Fit
   ========================================== */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.audience-col {
  border-radius: 24px;
  padding: 48px 40px;
}

.audience-col--yes {
  background: linear-gradient(135deg, rgba(142,155,144,0.08), rgba(142,155,144,0.03));
  border: 1px solid rgba(142,155,144,0.15);
}

.audience-col--no {
  background: linear-gradient(135deg, rgba(180,170,160,0.06), rgba(180,170,160,0.02));
  border: 1px solid rgba(180,170,160,0.12);
}

.audience-col h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.audience-col--yes h3 { color: var(--accent-sage); }
.audience-col--no h3 { color: var(--text-light); }

.audience-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.audience-list li {
  font-size: 16px;
  color: var(--text-body);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.6;
}

.audience-list .icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  margin-top: 2px;
}

.audience-col--yes .icon {
  background: rgba(142,155,144,0.15);
  color: var(--accent-sage);
}

.audience-col--no .icon {
  background: rgba(180,170,160,0.12);
  color: var(--text-light);
}

/* ==========================================
   FAQ
   ========================================== */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

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

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 28px 0;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.3s;
  line-height: 1.5;
}

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

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  color: var(--text-light);
  transition: all 0.3s var(--ease-out);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease-out), padding 0.3s;
}

.faq-answer-inner {
  padding: 0 0 28px;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ==========================================
   Pricing Plans
   ========================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.pricing-card--featured {
  background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-warm) 100%);
  border-color: var(--accent-gold-light);
  transform: scale(1.03);
  z-index: 2;
  box-shadow: var(--shadow-md);
}

.pricing-card--featured:hover {
  transform: scale(1.03) translateY(-8px);
}

.pricing-icon {
  font-size: 32px;
  color: var(--accent-gold);
  margin-bottom: 24px;
}

.pricing-name {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text-dark);
  margin-bottom: 24px;
  font-weight: 700;
}

.pricing-details {
  list-style: none;
  margin-bottom: 40px;
  flex-grow: 1;
}

.pricing-details li {
  font-size: 16px;
  color: var(--text-body);
  margin-bottom: 16px;
  line-height: 1.6;
  position: relative;
  padding-left: 20px;
}

.pricing-details li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-weight: 900;
}

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

.pricing-bottom {
  margin-top: auto;
  text-align: left;
  border-top: 1px solid var(--border-soft);
  padding-top: 32px;
}

.pricing-badge {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.pricing-price {
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.pricing-price strong {
  font-size: 32px;
  font-family: var(--font-display);
  color: var(--accent-gold-dark);
}

.pricing-original {
  font-size: 15px;
  color: var(--text-light);
  text-decoration: line-through;
  margin-bottom: 8px;
}

.pricing-note {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pricing-btn {
  width: 100%;
  justify-content: center;
  padding: 16px 24px;
}

/* ==========================================
   Final CTA
   ========================================== */
.cta-section {
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #F5EDE2 0%, #EDE4D7 40%, #E8DDCF 100%);
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,163,115,0.15), transparent 70%);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.3;
}

.cta-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.cta-date {
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 600;
  color: var(--accent-gold-dark);
  margin-bottom: 32px;
  letter-spacing: 1px;
}

/* ==========================================
   Footer
   ========================================== */
.footer {
  padding: 48px 0;
  text-align: center;
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--text-light);
  letter-spacing: 1px;
  border-top: 1px solid var(--border-soft);
}

.footer a {
  color: var(--accent-gold);
  transition: color 0.3s;
}

.footer a:hover {
  color: var(--accent-gold-dark);
}

/* ==========================================
   Scroll Animations
   ========================================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.55s; }

.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   Responsive
   ========================================== */
@media (max-width: 900px) {
  :root {
    --section-pad: 80px;
  }

  .pain-grid,
  .pillars-grid,
  .takeaway-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .audience-grid,
  .format-grid {
    grid-template-columns: 1fr;
  }

  .transform-row {
    grid-template-columns: 60px 1fr 1fr;
  }

  .instructor-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .instructor-photo-placeholder {
    max-width: 280px;
    margin: 0 auto;
  }

  .formula-text {
    flex-direction: column;
    gap: 8px;
  }

  .hero {
    padding: 120px 24px 80px;
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-meta {
    flex-direction: column;
    gap: 8px;
  }

  .hero-meta .dot {
    display: none;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-dot {
    width: 42px;
    min-width: 42px;
    height: 42px;
    font-size: 11px;
  }

  .timeline-content {
    padding: 24px;
  }

  .section-title {
    font-size: 28px;
  }

  .container {
    padding: 0 20px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pricing-card--featured {
    transform: none;
  }
}

@media (max-width: 600px) {
  :root {
    --section-pad: 64px;
  }

  .mobile-break {
    display: block;
  }

  body {
    font-size: 16px;
  }

  .hero-cta-group {
    flex-direction: column;
  }

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

  .audience-col {
    padding: 32px 24px;
  }

  .pillar-card {
    padding: 36px 28px;
  }
}
