/* ==========================================================================
   7-DAY MINDFULNESS MEDITATION WORKSHOP — STYLESHEET
   Aesthetic, calming, modern & high-converting landing page design.
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-primary: #FAF8F5;
  --bg-secondary: #F3EFEA;
  --bg-card: #FFFFFF;
  --bg-dark: #1E392A;
  
  --primary-sage: #3D6B56;
  --primary-forest: #224233;
  --primary-light: #EBF3EE;
  
  --accent-gold: #D4A373;
  --accent-terracotta: #C87A54;
  --accent-soft-pink: #F7EDE2;
  
  --text-main: #1E2421;
  --text-muted: #5A6560;
  --text-light: #88968F;
  --text-white: #FFFFFF;
  
  --border-light: #E5E0D8;
  --border-active: #3D6B56;
  
  /* Fonts */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  
  /* Shadows & Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  
  --shadow-sm: 0 2px 8px rgba(30, 36, 33, 0.04);
  --shadow-md: 0 8px 24px rgba(30, 36, 33, 0.08);
  --shadow-lg: 0 16px 40px rgba(30, 36, 33, 0.12);
  --shadow-glow: 0 0 30px rgba(61, 107, 86, 0.2);
  
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--primary-forest);
  font-weight: 700;
  line-height: 1.2;
}

p {
  color: var(--text-muted);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 800px;
}

.section {
  padding: 100px 0;
  position: relative;
}

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

.highlight-serif {
  font-style: italic;
  color: var(--primary-sage);
  font-weight: 600;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-sage), var(--primary-forest));
  color: var(--text-white);
  box-shadow: 0 8px 20px rgba(61, 107, 86, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(61, 107, 86, 0.4);
  background: linear-gradient(135deg, #477b63, #1a3528);
}

.btn-outline {
  background: transparent;
  color: var(--primary-forest);
  border: 1.5px solid var(--primary-sage);
}

.btn-outline:hover {
  background: var(--primary-light);
  color: var(--primary-forest);
}

.btn-large {
  padding: 18px 36px;
  font-size: 1.1rem;
}

.btn-xl {
  padding: 22px 48px;
  font-size: 1.25rem;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.btn-block {
  width: 100%;
}

.pulse-button {
  animation: pulse-glow 2.5s infinite;
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(61, 107, 86, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(61, 107, 86, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(61, 107, 86, 0);
  }
}

/* Announcement Bar */
.announcement-bar {
  background: var(--primary-forest);
  color: var(--text-white);
  padding: 10px 16px;
  font-size: 0.875rem;
  position: relative;
  z-index: 100;
}

.announcement-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #4EED94;
  border-radius: 50%;
  box-shadow: 0 0 10px #4EED94;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.countdown-mini {
  background: rgba(255, 255, 255, 0.15);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-family: monospace;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

/* Navbar */
.navbar {
  background: rgba(250, 248, 245, 0.9);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 99;
  border-bottom: 1px solid var(--border-light);
  padding: 16px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-forest);
  line-height: 1;
}

.brand-tagline {
  display: block;
  font-size: 0.725rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.nav-links a:hover {
  color: var(--primary-sage);
}

/* HERO SECTION */
.hero-section {
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #F5F1EA 0%, var(--bg-primary) 100%);
}

.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.4;
}

.glow-1 {
  width: 400px;
  height: 400px;
  background: #D8EADF;
  top: -100px;
  left: -100px;
}

.glow-2 {
  width: 500px;
  height: 500px;
  background: #F3E2CE;
  bottom: -150px;
  right: -100px;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-badge-wrapper {
  margin-bottom: 20px;
}

.hero-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-forest);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.875rem;
  border: 1px solid rgba(61, 107, 86, 0.2);
}

.hero-headline {
  font-size: 3.75rem;
  max-width: 900px;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
  font-weight: 800;
  font-style: normal;
}

.headline-calmer {
  color: var(--primary-sage);
  font-weight: 800;
  font-style: normal;
}

.headline-orange {
  color: #E86523; /* Bright, attractive orange color */
  font-weight: 800;
  font-style: normal;
}

.hero-subheadline {
  font-size: 1.25rem;
  max-width: 760px;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}

/* Logistics Strip */
.logistics-strip {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: var(--bg-card);
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.logistics-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary-forest);
}

.logistics-divider {
  color: var(--border-light);
}

/* Pricing Card */
.pricing-card {
  background: var(--bg-card);
  width: 100%;
  max-width: 650px;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(61, 107, 86, 0.15);
  margin-bottom: 40px;
  position: relative;
}

.pricing-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 16px;
}

.price-box {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.currency {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-forest);
}

.price-amount {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-forest);
  line-height: 1;
}

.price-original {
  font-size: 1.1rem;
  color: var(--text-light);
  text-decoration: line-through;
  margin-left: 4px;
}

.discount-pill {
  background: #FFF3E0;
  color: var(--accent-terracotta);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
}

.urgency-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.meta-tag {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.urgency-badge {
  color: var(--accent-terracotta);
  font-weight: 700;
}

.hero-cta-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.guarantee-note {
  font-size: 0.85rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Social Proof */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
}

.avatar-group {
  display: flex;
}

.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 2px solid var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -10px;
  font-size: 1rem;
}

.avatar:first-child {
  margin-left: 0;
}

.proof-text {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* SECTION HEADERS */
.section-header {
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--primary-sage);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.75rem;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* WHY THIS WORKSHOP SECTION */
.why-section {
  background: var(--bg-card);
}

.quote-card {
  background: var(--bg-primary);
  border-left: 4px solid var(--primary-sage);
  padding: 36px 48px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  max-width: 850px;
  margin: 0 auto 48px;
  position: relative;
}

.quote-icon {
  font-family: var(--font-serif);
  font-size: 5rem;
  color: rgba(61, 107, 86, 0.15);
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}

.quote-text {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--primary-forest);
  position: relative;
  z-index: 1;
  line-height: 1.5;
}

.benefits-intro {
  margin-bottom: 40px;
}

.lead-text {
  font-size: 1.2rem;
  color: var(--text-main);
}

/* Pillars Grid */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-bottom: 50px;
}

.pillar-card {
  background: var(--bg-primary);
  padding: 32px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

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

.pillar-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 20px;
}

.icon-green { background: #E8F4EC; }
.icon-blue { background: #E6F0FA; }
.icon-pink { background: #FCEBEB; }
.icon-gold { background: #FEF6E6; }

.pillar-title {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.pillar-desc {
  font-size: 0.95rem;
  line-height: 1.6;
}

.takeaway-banner {
  background: linear-gradient(135deg, var(--primary-forest), var(--primary-sage));
  color: var(--text-white);
  padding: 32px 40px;
  border-radius: var(--radius-md);
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}

.takeaway-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.takeaway-text {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.15rem;
  line-height: 1.6;
}

/* 7-DAY JOURNEY SECTION */
.journey-section {
  background: var(--bg-secondary);
}

.timeline-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 850px;
  margin: 0 auto 50px;
}

.timeline-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 28px;
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.timeline-card:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-sage);
}

.highlight-card {
  border: 2px solid var(--accent-gold);
  background: linear-gradient(135deg, #FFFFFF, #FFFBF5);
}

.day-badge-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 80px;
}

.day-number {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--primary-sage);
}

.day-icon {
  font-size: 2rem;
  margin-top: 4px;
}

.day-content {
  flex-grow: 1;
}

.day-title {
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.day-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.day-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-forest);
  background: var(--primary-light);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

.tag-gold {
  background: #FEF3E2;
  color: #B8731D;
}

.journey-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 850px;
  margin: 0 auto;
}

.impact-card, .reassurance-card {
  background: var(--bg-card);
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.impact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.impact-icon {
  font-size: 1.75rem;
}

.reassurance-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-terracotta);
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 8px;
}

/* WHAT'S INCLUDED SECTION */
.included-section {
  background: var(--bg-card);
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.included-card {
  background: var(--bg-primary);
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  position: relative;
  transition: var(--transition);
}

.included-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--primary-sage);
}

.check-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-sage);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.bonus-card {
  border: 2px dashed var(--accent-gold);
  background: #FFFDF9;
}

.bonus-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--accent-gold);
  color: var(--text-white);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: var(--radius-pill);
}

.bonus-check {
  background: var(--accent-gold);
}

.included-title {
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.included-desc {
  font-size: 0.9rem;
}

/* Audio Preview Player */
.audio-preview-box {
  background: linear-gradient(135deg, #1E392A, #14281D);
  color: var(--text-white);
  padding: 36px 48px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.audio-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--accent-gold);
  display: block;
  margin-bottom: 6px;
}

.audio-info h3 {
  color: var(--text-white);
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.audio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.audio-controls {
  display: flex;
  align-items: center;
  gap: 20px;
}

.play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-gold);
  color: var(--text-white);
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(212, 163, 115, 0.4);
}

.play-btn:hover {
  transform: scale(1.08);
  background: #e5b382;
}

.sound-wave {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 30px;
}

.sound-wave .bar {
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  transition: height 0.2s ease;
}

.sound-wave.playing .bar {
  background: var(--accent-gold);
  animation: wave 1s infinite ease-in-out alternate;
}

.sound-wave.playing .bar:nth-child(1) { animation-delay: 0.1s; }
.sound-wave.playing .bar:nth-child(2) { animation-delay: 0.3s; }
.sound-wave.playing .bar:nth-child(3) { animation-delay: 0.5s; }
.sound-wave.playing .bar:nth-child(4) { animation-delay: 0.2s; }
.sound-wave.playing .bar:nth-child(5) { animation-delay: 0.4s; }
.sound-wave.playing .bar:nth-child(6) { animation-delay: 0.6s; }
.sound-wave.playing .bar:nth-child(7) { animation-delay: 0.15s; }

@keyframes wave {
  0% { height: 6px; }
  100% { height: 28px; }
}

.audio-time {
  font-family: monospace;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

/* FAQ SECTION */
.faq-section {
  background: var(--bg-primary);
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: var(--transition);
}

.accordion-header {
  width: 100%;
  padding: 22px 28px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
  gap: 16px;
}

.accordion-title {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-forest);
}

.accordion-icon {
  color: var(--primary-sage);
  transition: transform 0.3s ease;
  font-size: 0.9rem;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
}

.accordion-item.active .accordion-content {
  max-height: 300px;
  transition: max-height 0.35s ease-in-out;
}

.accordion-body {
  padding: 0 28px 24px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* FINAL CTA SECTION */
.final-cta-section {
  background: var(--bg-dark);
  color: var(--text-white);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}

.cta-bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(61, 107, 86, 0.4) 0%, rgba(30, 57, 42, 0) 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.final-cta-card {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto;
}

.cta-badge {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--accent-gold);
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 16px;
}

.final-headline {
  color: var(--text-white);
  font-size: 3.2rem;
  margin-bottom: 20px;
  line-height: 1.25;
}

.final-urgency {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.2rem;
  margin-bottom: 36px;
}

/* Countdown Large */
.countdown-large {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.time-block {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  min-width: 85px;
}

.time-num {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  font-weight: 700;
  display: block;
  line-height: 1;
  color: var(--text-white);
}

.time-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--accent-gold);
  margin-top: 4px;
  display: block;
}

.time-colon {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.4);
}

.price-summary-box {
  margin-bottom: 32px;
}

.price-val {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-gold);
  display: block;
}

.price-sub {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.security-badges {
  margin-top: 20px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* FOOTER */
.site-footer {
  background: #14261C;
  color: rgba(255, 255, 255, 0.6);
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
}

.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a:hover {
  color: var(--text-white);
}

/* STICKY BOTTOM BAR */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(30, 57, 42, 0.95);
  backdrop-filter: blur(12px);
  color: var(--text-white);
  padding: 12px 0;
  z-index: 98;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.sticky-bar.visible {
  transform: translateY(0);
}

.sticky-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sticky-title {
  font-size: 0.95rem;
  font-weight: 700;
  display: block;
}

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

/* REGISTRATION MODAL */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 26, 20, 0.75);
  backdrop-filter: blur(8px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: var(--bg-card);
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--bg-primary);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.modal-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-sage);
  letter-spacing: 1px;
}

.modal-header h2 {
  font-size: 1.8rem;
  margin: 4px 0;
}

.modal-subtitle {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.modal-summary {
  background: var(--bg-primary);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--text-muted);
}

.discount-row {
  color: var(--accent-terracotta);
}

.total-row {
  border-top: 1px solid var(--border-light);
  padding-top: 8px;
  margin-bottom: 0;
  font-weight: 700;
  color: var(--primary-forest);
  font-size: 1.05rem;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-forest);
}

.form-group input {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.form-group input:focus {
  border-color: var(--primary-sage);
  box-shadow: 0 0 0 3px rgba(61, 107, 86, 0.15);
}

.form-footer-note {
  font-size: 0.8rem;
  text-align: center;
  color: var(--text-light);
  margin-top: 8px;
}

.hidden {
  display: none !important;
}

.modal-success-screen {
  text-align: center;
  padding: 20px 0;
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 12px;
}

.success-details {
  background: var(--primary-light);
  padding: 16px;
  border-radius: var(--radius-md);
  margin: 20px 0;
  font-size: 0.95rem;
  color: var(--primary-forest);
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
  .hero-headline {
    font-size: 3rem;
  }
  
  .journey-footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .hero-headline {
    font-size: 2.35rem;
  }
  
  .hero-subheadline {
    font-size: 1.05rem;
  }
  
  .pricing-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .urgency-info {
    align-items: center;
  }
  
  .timeline-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .day-badge-col {
    flex-direction: row;
    gap: 10px;
  }

  .audio-preview-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px;
  }

  .countdown-large {
    gap: 8px;
  }

  .time-block {
    min-width: 65px;
    padding: 12px 10px;
  }

  .time-num {
    font-size: 2rem;
  }

  .final-headline {
    font-size: 2.25rem;
  }
}
