/* ============================================
   ENGLISH THERAPY ROOM — MAIN STYLESHEET
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300;1,9..40,400&display=swap');

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  --teal: #1A6B6B;
  --teal-dark: #145555;
  --teal-light: #2a8a8a;
  --gold: #C9A84C;
  --gold-dark: #a8873d;
  --gold-light: #d4b76a;
  --cream: #FAF6EF;
  --dark: #1A1A1A;
  --gray: #F0EDE8;
  --gray-mid: #d4cfc8;
  --gray-text: #6b6560;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(26, 107, 107, 0.08);
  --shadow-md: 0 4px 20px rgba(26, 107, 107, 0.12);
  --shadow-lg: 0 8px 40px rgba(26, 107, 107, 0.16);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}

/* ============================================
   LOADING SCREEN
   ============================================ */
#loading-screen {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  animation: fadeInUp 0.5s ease;
}

.loader-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-dark);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  padding: 10px;
  letter-spacing: 0.5px;
}

.loader-pulse {
  width: 40px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
  animation: pulse 1s ease infinite;
}

@keyframes pulse {
  0%, 100% { transform: scaleX(1); opacity: 1; }
  50% { transform: scaleX(0.5); opacity: 0.5; }
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: transparent;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(26, 26, 26, 0.97);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.navbar.white-nav {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}

.navbar.white-nav .nav-link {
  color: var(--dark);
}

.navbar.white-nav .nav-link:hover {
  color: var(--teal);
}

.navbar.white-nav .logo-text-main {
  color: var(--teal);
}

.navbar.white-nav .logo-text-sub {
  color: var(--teal);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-circle span {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  line-height: 1.1;
  padding: 2px;
}

.logo-text-main {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.logo-text-sub {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  display: block;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.nav-link.active {
  color: var(--gold);
}

/* CTA Button */
.btn-nav-cta {
  background: var(--gold);
  color: var(--dark) !important;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-nav-cta:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.3);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  padding: 6px;
  border-radius: 6px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

.navbar.white-nav .hamburger span {
  background: var(--dark);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(26, 26, 26, 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  display: flex;
}

.mobile-menu .nav-link {
  font-size: 24px;
  font-family: var(--font-heading);
  color: var(--white);
  padding: 8px 20px;
}

.mobile-menu .btn-nav-cta {
  font-size: 18px;
  padding: 14px 32px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  font-family: var(--font-body);
  text-align: center;
  justify-content: center;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 107, 107, 0.3);
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-teal {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}

.btn-outline-teal:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
}

/* ============================================
   SECTION COMMONS
   ============================================ */
.section {
  padding: 80px 0;
}

.section-sm {
  padding: 60px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title.white {
  color: var(--white);
}

.section-subtitle {
  font-size: 17px;
  color: var(--gray-text);
  max-width: 580px;
  line-height: 1.7;
}

.section-subtitle.white {
  color: rgba(255,255,255,0.8);
}

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

.text-center .section-subtitle {
  margin: 0 auto;
}

/* Divider */
.gold-divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 16px 0 24px;
}

.gold-divider.center {
  margin: 16px auto 24px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  background: var(--dark);
  position: relative;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(26, 107, 107, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 168, 76, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(26, 107, 107, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 107, 107, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 107, 107, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 1.5s ease infinite;
}

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

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

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

.hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-social-proof {
  display: flex;
  gap: 32px;
}

.proof-stat {
  display: flex;
  flex-direction: column;
}

.proof-number {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.proof-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* Hero Right — Book Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.book-mockup {
  width: 280px;
  height: 360px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  border-radius: 8px 20px 20px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 30px;
  position: relative;
  box-shadow:
    -6px 0 0 var(--teal-dark),
    -12px 0 0 rgba(26, 85, 85, 0.5),
    0 20px 60px rgba(0,0,0,0.4);
  text-align: center;
  z-index: 2;
}

.book-mockup::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 0; bottom: 0;
  width: 6px;
  background: var(--teal-dark);
  border-radius: 8px 0 0 8px;
}

.book-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.book-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 800;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 8px;
}

.book-subtitle {
  font-size: 11px;
  color: rgba(250, 246, 239, 0.6);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.book-divider {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 24px;
}

.book-vol {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 1px;
}

.book-price-badge {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 64px;
  height: 64px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.5);
}

.book-price-badge .price-main {
  font-size: 16px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}

.book-price-badge .price-sub {
  font-size: 9px;
  color: var(--dark);
  font-weight: 600;
  opacity: 0.7;
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem-section {
  background: var(--white);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}

.problem-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--gray-mid);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--teal);
  transform: scaleX(0);
  transition: var(--transition);
}

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

.problem-card:hover::before {
  transform: scaleX(1);
}

.problem-emoji {
  font-size: 40px;
  margin-bottom: 20px;
  display: block;
}

.problem-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.problem-card p {
  font-size: 15px;
  color: var(--gray-text);
  line-height: 1.7;
}

/* ============================================
   SOLUTION SECTION
   ============================================ */
.solution-section {
  background: var(--teal);
  position: relative;
  overflow: hidden;
}

.solution-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.solution-section::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  pointer-events: none;
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.solution-content .section-label {
  color: var(--gold);
}

.solution-content .gold-divider {
  background: var(--gold);
}

.solution-text {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 28px;
}

.solution-analogies {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.analogy-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.analogy-icon {
  font-size: 28px;
  flex-shrink: 0;
  margin-top: 2px;
}

.analogy-card h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 6px;
}

.analogy-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

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

.solution-step {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  gap: 20px;
  align-items: center;
  transition: var(--transition);
}

.solution-step:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(201, 168, 76, 0.4);
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-text h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.step-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}

/* ============================================
   PRODUCT PREVIEW SECTION
   ============================================ */
.product-preview {
  background: var(--cream);
}

.chapters-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin: 48px 0 40px;
}

.chapter-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}

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

.chapter-icon {
  font-size: 36px;
  margin-bottom: 14px;
  display: block;
}

.chapter-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.chapter-card h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}

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

.product-cta-note {
  font-size: 13px;
  color: var(--gray-text);
  margin-top: 12px;
}

/* ============================================
   SOCIAL PROOF SECTION
   ============================================ */
.social-proof {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.social-proof::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(26, 107, 107, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.stats-row {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin: 40px 0;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

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

.stat-number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  display: block;
}

.stat-icon {
  font-size: 20px;
  margin-right: 6px;
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1px;
  margin-top: 8px;
  display: block;
}

.tiktok-embed-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 40px 0;
  position: relative;
  z-index: 1;
}

.tiktok-thumb {
  aspect-ratio: 9/16;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}

.tiktok-thumb:hover {
  border-color: rgba(201, 168, 76, 0.4);
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
}

.tiktok-play {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.tiktok-thumb p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 0 16px;
  line-height: 1.5;
}

.tiktok-views {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
}

.social-cta {
  text-align: center;
  position: relative;
  z-index: 1;
}

/* ============================================
   SERIES SECTION
   ============================================ */
.series-section {
  background: var(--white);
}

.series-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  margin-top: 48px;
}

.volume-card {
  background: var(--gray);
  border-radius: var(--radius);
  padding: 24px 14px;
  text-align: center;
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
}

.volume-card.active {
  background: var(--teal);
  border-color: var(--gold);
}

.volume-card.coming {
  opacity: 0.5;
}

.volume-card:hover:not(.coming) {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.vol-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.vol-name {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 8px;
}

.volume-card.active .vol-name {
  color: var(--white);
}

.vol-status {
  font-size: 11px;
  font-weight: 500;
  color: var(--gray-text);
  padding: 4px 8px;
  border-radius: 50px;
  background: rgba(0,0,0,0.06);
  display: inline-block;
}

.volume-card.active .vol-status {
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}

.footer-brand .logo-text-main {
  font-size: 18px;
  margin-top: 8px;
  display: block;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-top: 12px;
  font-style: italic;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--transition);
  color: rgba(255,255,255,0.7);
}

.social-link:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-newsletter h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.footer-newsletter p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  line-height: 1.5;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--white);
  font-family: var(--font-body);
  outline: none;
  transition: var(--transition);
}

.newsletter-input::placeholder {
  color: rgba(255,255,255,0.3);
}

.newsletter-input:focus {
  border-color: var(--teal);
  background: rgba(255,255,255,0.08);
}

.newsletter-btn {
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
  font-size: 13px;
  padding: 10px 18px;
  border-radius: 8px;
  font-family: var(--font-body);
  transition: var(--transition);
  white-space: nowrap;
}

.newsletter-btn:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

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

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.footer-copy .gold {
  color: var(--gold);
}

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

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  transition: var(--transition);
}

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

/* ============================================
   SHOP PAGE
   ============================================ */
.page-header {
  background: var(--dark);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(26, 107, 107, 0.3) 0%, transparent 60%);
  pointer-events: none;
}

.page-header .section-label {
  position: relative;
  z-index: 1;
}

.page-header .section-title {
  color: var(--white);
  position: relative;
  z-index: 1;
}

.page-header .section-subtitle {
  color: rgba(255,255,255,0.65);
  position: relative;
  z-index: 1;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-mid);
  transition: var(--transition);
}

.product-card:hover:not(.coming-soon) {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--teal);
}

.product-card.coming-soon {
  opacity: 0.6;
}

.product-cover {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 28px;
  text-align: center;
  position: relative;
}

.product-cover.vol2 {
  background: linear-gradient(135deg, #1a4a6b 0%, #0d2d42 100%);
}

.product-cover.vol3 {
  background: linear-gradient(135deg, #4a1a6b 0%, #2d0d42 100%);
}

.cover-eyebrow {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.cover-title {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 800;
  color: var(--cream);
  line-height: 0.95;
  margin-bottom: 8px;
}

.cover-subtitle {
  font-size: 10px;
  color: rgba(250, 246, 239, 0.55);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.cover-divider {
  width: 32px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 16px;
}

.cover-vol {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
}

.product-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: var(--dark);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 50px;
}

.coming-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(26,26,26,0.7);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.2);
  white-space: nowrap;
}

.product-info {
  padding: 28px;
}

.product-price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.price-current {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--teal);
}

.price-original {
  font-size: 18px;
  color: var(--gray-text);
  text-decoration: line-through;
}

.price-save {
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
}

.product-info h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.product-description {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 20px;
}

.product-features {
  margin-bottom: 24px;
}

.product-features h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 12px;
}

.product-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--dark);
  padding: 6px 0;
  border-bottom: 1px solid var(--gray);
}

.product-features li:last-child {
  border: none;
}

.feature-check {
  color: var(--teal);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================
   BLOG PAGE
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-mid);
  transition: var(--transition);
}

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

.blog-thumb {
  aspect-ratio: 16/9;
  background: var(--teal);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.blog-thumb.post2 {
  background: linear-gradient(135deg, #1a4a6b 0%, #0d2d42 100%);
}

.blog-thumb.post3 {
  background: linear-gradient(135deg, #4a3a1a 0%, #2d2010 100%);
}

.blog-thumb-icon {
  font-size: 52px;
  margin-bottom: 12px;
  display: block;
}

.blog-thumb-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.blog-content {
  padding: 24px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.blog-date {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.blog-tag {
  font-size: 11px;
  font-weight: 600;
  background: rgba(26, 107, 107, 0.1);
  color: var(--teal);
  padding: 3px 10px;
  border-radius: 50px;
}

.blog-card h3 {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.35;
  margin-bottom: 10px;
}

.blog-card p {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 20px;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
  transition: var(--transition);
}

.blog-read-more:hover {
  gap: 10px;
  color: var(--teal-dark);
}

/* ============================================
   BLOG POST PAGE
   ============================================ */
.post-header {
  background: var(--teal);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.post-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 70%, rgba(0,0,0,0.2) 0%, transparent 60%);
}

.post-header-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.post-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.post-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.post-meta {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.post-date, .post-read-time {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 6px;
}

.post-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
}

.post-body h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--teal);
  margin: 40px 0 16px;
}

.post-body h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin: 28px 0 12px;
}

.post-body p {
  font-size: 17px;
  line-height: 1.85;
  color: #2a2a2a;
  margin-bottom: 20px;
}

.post-body ul, .post-body ol {
  padding-left: 24px;
  margin-bottom: 20px;
}

.post-body ul { list-style: disc; }
.post-body ol { list-style: decimal; }

.post-body li {
  font-size: 16px;
  line-height: 1.8;
  color: #2a2a2a;
  margin-bottom: 8px;
}

.post-body blockquote {
  border-left: 4px solid var(--gold);
  padding: 16px 24px;
  margin: 28px 0;
  background: rgba(201, 168, 76, 0.06);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-heading);
  font-size: 20px;
  font-style: italic;
  color: var(--teal);
  line-height: 1.5;
}

.post-highlight-box {
  background: var(--teal);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin: 32px 0;
}

.post-highlight-box h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}

.post-highlight-box p {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
}

.post-cta-box {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  margin: 48px 0;
  border: 2px solid var(--gold);
}

.post-cta-box h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.post-cta-box p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
  font-size: 16px;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-intro {
  background: var(--white);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-visual {
  background: var(--teal);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-visual::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}

.about-logo-large {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--teal-dark);
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  padding: 16px;
  position: relative;
  z-index: 1;
}

.about-visual h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.about-visual p {
  color: rgba(255,255,255,0.7);
  font-style: italic;
  font-size: 16px;
  position: relative;
  z-index: 1;
}

.about-text p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--dark);
  margin-bottom: 20px;
}

.about-text .big-quote {
  font-family: var(--font-heading);
  font-size: 22px;
  font-style: italic;
  color: var(--teal);
  border-left: 4px solid var(--gold);
  padding-left: 20px;
  margin: 28px 0;
  line-height: 1.5;
}

.about-mission {
  background: var(--cream);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}

.mission-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--gray-mid);
  text-align: center;
  transition: var(--transition);
}

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

.mission-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.mission-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.mission-card p {
  font-size: 15px;
  color: var(--gray-text);
  line-height: 1.7;
}

.series-timeline {
  background: var(--white);
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
  margin-top: 52px;
}

.timeline-item {
  text-align: center;
  position: relative;
}

.timeline-item::after {
  content: '';
  position: absolute;
  top: 28px;
  right: -8px;
  width: 16px;
  height: 2px;
  background: var(--gray-mid);
}

.timeline-item:last-child::after {
  display: none;
}

.timeline-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border: 2px solid var(--gray-mid);
  background: var(--gray);
  transition: var(--transition);
}

.timeline-item.active .timeline-dot {
  background: var(--teal);
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(26, 107, 107, 0.15);
}

.timeline-vol {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}

.timeline-name {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 6px;
}

.timeline-status {
  font-size: 11px;
  color: var(--gray-text);
  font-style: italic;
}

.timeline-item.active .timeline-status {
  color: var(--teal);
  font-weight: 600;
  font-style: normal;
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter-section {
  background: var(--teal);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.newsletter-form-large {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 32px auto 0;
}

.newsletter-form-large .newsletter-input {
  flex: 1;
  padding: 14px 18px;
  font-size: 15px;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
}

.newsletter-form-large .newsletter-input::placeholder {
  color: rgba(255,255,255,0.4);
}

.newsletter-form-large .newsletter-btn {
  padding: 14px 24px;
  font-size: 15px;
  border-radius: 10px;
}

/* ============================================
   BACK TO TOP
   ============================================ */
#back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: var(--transition);
  z-index: 500;
  border: 2px solid var(--gold);
}

#back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#back-to-top:hover {
  background: var(--teal-dark);
  transform: translateY(-3px);
}

/* ============================================
   COOKIE BANNER
   ============================================ */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(26, 26, 26, 0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  padding: 20px 24px;
  z-index: 800;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

#cookie-banner.show {
  transform: translateY(0);
}

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-text {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

.cookie-text strong {
  color: var(--gold);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-accept {
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 8px;
  transition: var(--transition);
}

.cookie-accept:hover {
  background: var(--gold-dark);
}

.cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  transition: var(--transition);
}

.cookie-decline:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}

/* ============================================
   THANK YOU PAGE
   ============================================ */
.thank-you-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  padding: 100px 24px;
}

.thank-you-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  text-align: center;
  max-width: 560px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-mid);
}

.thank-you-icon {
  font-size: 72px;
  margin-bottom: 24px;
  display: block;
}

.thank-you-card h1 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 16px;
}

.thank-you-card p {
  font-size: 16px;
  color: var(--gray-text);
  line-height: 1.75;
  margin-bottom: 20px;
}

.thank-you-steps {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 24px;
  margin: 24px 0;
  text-align: left;
}

.thank-you-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 8px 0;
}

.thank-you-step:not(:last-child) {
  border-bottom: 1px solid var(--gray-mid);
}

.step-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.step-info h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}

.step-info p {
  font-size: 13px;
  color: var(--gray-text);
  margin: 0;
}

/* ============================================
   404 PAGE
   ============================================ */
.page-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-404::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(26, 107, 107, 0.3) 0%, transparent 70%);
}

.error-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.error-num {
  font-family: var(--font-heading);
  font-size: clamp(100px, 20vw, 160px);
  font-weight: 800;
  color: rgba(26, 107, 107, 0.4);
  line-height: 1;
  display: block;
}

.error-content h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.error-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 36px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-24px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(24px); }
  to { opacity: 1; transform: translateX(0); }
}

.animate {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate.fade-up {
  transform: translateY(32px);
}

.animate.fade-left {
  transform: translateX(-32px);
}

.animate.fade-right {
  transform: translateX(32px);
}

.animate.visible {
  opacity: 1;
  transform: translate(0);
}

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }

/* ============================================
   RESPONSIVE — TABLET (768px)
   ============================================ */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-subtitle {
    margin: 0 auto 40px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-social-proof {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .solution-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .series-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .timeline-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .tiktok-embed-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .navbar .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .problem-grid {
    grid-template-columns: 1fr;
  }

  .chapters-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .shop-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .series-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-intro-grid {
    grid-template-columns: 1fr;
  }

  .mission-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .stats-row {
    gap: 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .newsletter-form-large {
    flex-direction: column;
  }

  .section {
    padding: 60px 0;
  }

  .timeline-item::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 32px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-social-proof {
    gap: 20px;
  }

  .chapters-grid {
    grid-template-columns: 1fr 1fr;
  }

  .series-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tiktok-embed-grid {
    grid-template-columns: 1fr 1fr;
  }

  .post-body {
    padding: 40px 20px;
  }

  .thank-you-card {
    padding: 40px 28px;
  }

  .cookie-inner {
    flex-direction: column;
  }
}

/* ============================================
   PRICE BLOCK
   ============================================ */
.price-block { margin-bottom: 4px; }

.price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.price-sale {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.price-was {
  font-size: 18px;
  color: var(--gray-text);
  text-decoration: line-through;
}

.price-badge-red {
  background: #e53e3e;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

.price-currencies {
  font-size: 12px;
  color: var(--gray-text);
  margin-top: 5px;
  letter-spacing: 0.2px;
}

/* ============================================
   REVIEWS SECTION
   ============================================ */
.reviews-section { background: var(--cream); }

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

.review-card {
  background: var(--white);
  border: 1.5px solid var(--teal);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--transition);
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.review-stars {
  font-size: 16px;
  letter-spacing: 1px;
}

.review-text {
  font-size: 15px;
  color: var(--dark);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}

.review-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--teal);
}

.review-meta {
  font-size: 12px;
  color: var(--gray-text);
  margin-top: 2px;
}

.review-flag { font-size: 20px; }

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

@media (max-width: 580px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}
