/* ==========================================================================
   YDBaba Business Growth Workshop - Global Stylesheet
   Theme: YDBaba Brand Colors (Vivid Crimson Red + Amber Gold + Dark Obsidian)
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. Custom Properties & Design Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Color Palette - Official YDBaba Brand Colors */
  --bg-dark: #090d16;
  --bg-surface: #0f172a;
  --bg-card: #131c2e;
  --bg-card-hover: #19253d;
  --bg-glass: rgba(15, 23, 42, 0.85);

  /* YDBaba Brand Crimson Red */
  --brand-red: #e50914;
  --brand-red-light: #ff3b47;
  --brand-red-hover: #dc2626;
  --brand-red-glow: rgba(229, 9, 20, 0.4);
  --gradient-red: linear-gradient(135deg, #ff3b47 0%, #e50914 50%, #b91c1c 100%);
  --gradient-red-subtle: linear-gradient(135deg, rgba(229, 9, 20, 0.15) 0%, rgba(185, 28, 28, 0.05) 100%);

  /* Secondary Amber Gold Accent */
  --primary-gold: #f59e0b;
  --primary-gold-light: #fbbf24;
  --primary-gold-glow: rgba(245, 158, 11, 0.25);
  --gradient-gold: linear-gradient(135deg, #ff3b47 0%, #f59e0b 50%, #fbbf24 100%);

  --accent-emerald: #10b981;
  --accent-emerald-glow: rgba(16, 185, 129, 0.2);
  --accent-red: #ef4444;
  --accent-red-glow: rgba(239, 68, 68, 0.15);

  --text-main: #f9fafb;
  --text-muted: #9ca3af;
  --text-dim: #6b7280;
  --text-inverse: #ffffff;

  --border-color: rgba(255, 255, 255, 0.08);
  --border-active: rgba(229, 9, 20, 0.5);

  /* Typography */
  --font-heading: 'Outfit', 'Plus Jakarta Sans', 'Noto Sans Devanagari', -apple-system, sans-serif;
  --font-body: 'Plus Jakarta Sans', 'Noto Sans Devanagari', system-ui, -apple-system, sans-serif;

  /* Elevation & Shadows */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.3);
  --shadow-red: 0 12px 30px -4px rgba(229, 9, 20, 0.45);
  --shadow-gold: 0 12px 30px -4px rgba(245, 158, 11, 0.35);

  /* Layout & Spacing */
  --container-max: 1200px;
  --header-height: 80px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html, body {
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100% !important;
  position: relative;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
}

/* Devanagari & Marathi Typography Fine-tuning */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.01em;
}

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

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

ul {
  list-style: none;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Section Common Styles */
section {
  padding: 5rem 0;
  position: relative;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: var(--gradient-red-subtle);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-full);
  color: var(--brand-red-light);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem auto;
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
}

.highlight-gold {
  background: linear-gradient(135deg, #ff3b47 0%, #f59e0b 50%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* --------------------------------------------------------------------------
   2. Buttons & CTAs
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-normal);
  border: none;
  text-align: center;
  user-select: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-red);
  color: var(--text-inverse);
  box-shadow: var(--shadow-red);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 35px -2px rgba(229, 9, 20, 0.6);
  background: linear-gradient(135deg, #ff525d 0%, #ff3b47 50%, #e50914 100%);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
}

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

.btn-full {
  width: 100%;
}

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

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(229, 9, 20, 0.6);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(229, 9, 20, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(229, 9, 20, 0);
  }
}

/* --------------------------------------------------------------------------
   3. Sticky Header & Mobile Drawer
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition-normal);
}

.header.scrolled {
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  height: 70px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  background: #ffffff;
  padding: 5px 12px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: var(--transition-fast);
}

.logo-img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 16px rgba(245, 158, 11, 0.3);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--primary-gold-light);
}

.header-cta {
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1002;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 340px;
  height: 100vh;
  background: var(--bg-surface);
  border-left: 1px solid var(--border-color);
  z-index: 1001;
  padding: 6rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: right 0.3s ease-in-out;
  box-shadow: -10px 0 30px rgba(0,0,0,0.5);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-link {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-main);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Mobile-Only Fixed Sticky Bottom CTA Bar */
.mobile-sticky-bottom-bar {
  display: none;
}

/* Top Centered Floating Coral Timer Pill Button (Fixed Right Under Header) */
.top-timer-wrapper {
  position: fixed;
  top: calc(var(--header-height) + 10px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 998;
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: 95vw;
  transition: top 0.3s ease;
}

.header.scrolled ~ .top-timer-wrapper,
.top-timer-wrapper.scrolled {
  top: 76px;
}

.fixed-timer-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #ff5252 0%, #ff3b47 50%, #e50914 100%);
  padding: 0.45rem 0.5rem 0.45rem 1.15rem;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(255, 60, 71, 0.5), 0 0 25px rgba(229, 9, 20, 0.4);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.35);
  user-select: none;
  cursor: pointer;
}

.fixed-timer-pill:hover {
  transform: scale(1.04);
  box-shadow: 0 14px 35px rgba(255, 60, 71, 0.75), 0 0 30px rgba(245, 158, 11, 0.5);
}

.timer-pill-left {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #ffffff;
  font-weight: 800;
  font-size: 1rem;
  white-space: nowrap;
}

.timer-pill-icon {
  font-size: 1.2rem;
  display: inline-block;
  animation: alarm-ring 2s infinite;
}

@keyframes alarm-ring {
  0%, 100% { transform: rotate(0deg); }
  10%, 30%, 50% { transform: rotate(-12deg); }
  20%, 40% { transform: rotate(12deg); }
  60% { transform: rotate(0deg); }
}

.timer-pill-box {
  background: #18181b;
  color: #ffffff;
  padding: 0.35rem 0.85rem;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  box-shadow: inset 0 2px 5px rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 68px;
}

.timer-pill-cta {
  background: #f59e0b;
  color: #090d16;
  font-weight: 800;
  font-size: 0.88rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}

.fixed-timer-pill:hover .timer-pill-cta {
  background: #ffffff;
  color: #b91c1c;
}

/* Middle Hero FOMO Timer Card */
.hero-fomo-card {
  margin: 1.25rem 0 1.5rem 0;
  padding: 0.85rem 1.25rem;
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.15) 0%, rgba(245, 158, 11, 0.1) 100%);
  border: 1px dashed rgba(245, 158, 11, 0.4);
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero-fomo-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.hero-fomo-badge {
  background: var(--gradient-red);
  color: #ffffff;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 0 12px rgba(229, 9, 20, 0.5);
  animation: pulse-glow 2s infinite;
}

.hero-fomo-text {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
}

.hero-countdown .time-box {
  background: rgba(0, 0, 0, 0.75);
  border-color: rgba(245, 158, 11, 0.4);
}

/* --------------------------------------------------------------------------
   4. Hero Section
   -------------------------------------------------------------------------- */
.hero {
  padding-top: 2rem;
  padding-bottom: 4rem;
  overflow: hidden;
  background: radial-gradient(circle at 70% 30%, rgba(245, 158, 11, 0.08) 0%, transparent 60%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid var(--border-active);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  color: var(--primary-gold-light);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: #ffffff;
  line-height: 1.2;
}

.hero-subheadline {
  font-size: 1.25rem;
  color: #e5e7eb;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.hero-event-strip {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid var(--border-active);
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: #ffffff;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.15);
}

/* Personal Coach Callout Banners */
.personal-coach-banner {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.18) 0%, rgba(229, 9, 20, 0.18) 100%);
  border: 1px solid rgba(245, 158, 11, 0.45);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  color: #ffffff;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.2);
}

.personal-coach-banner strong {
  color: var(--primary-gold-light);
}

.coach-personal-badge {
  background: rgba(229, 9, 20, 0.15);
  border: 1px solid var(--border-active);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  color: #ffffff;
  font-size: 0.95rem;
  margin: 1.25rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.coach-personal-badge strong {
  color: var(--primary-gold-light);
}
  color: #ffffff;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.15);
}

.hero-event-strip strong {
  color: var(--primary-gold-light);
}

.strip-dot {
  color: var(--primary-gold);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  color: var(--primary-gold-light);
  font-weight: 600;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.coach-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--border-active);
  box-shadow: var(--shadow-lg), 0 0 40px var(--primary-gold-glow);
  background: var(--bg-card);
}

.coach-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center center;
}

/* Floating Cards around Coach Image */
.floating-badge {
  position: absolute;
  background: rgba(19, 28, 46, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-active);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-md);
  animation: float 4s ease-in-out infinite alternate;
}

.floating-badge span {
  color: var(--primary-gold);
}

.fb-1 { top: 12%; left: -8%; animation-delay: 0s; }
.fb-2 { bottom: 25%; left: -10%; animation-delay: 1s; }
.fb-3 { top: 20%; right: -8%; animation-delay: 2s; }
.fb-4 { bottom: 15%; right: -6%; animation-delay: 3s; }

@keyframes float {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-10px); }
}

/* --------------------------------------------------------------------------
   5. Trust & Quick Benefits Bar
   -------------------------------------------------------------------------- */
.benefits-bar {
  background: var(--bg-surface);
  border-y: 1px solid var(--border-color);
  padding: 2rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--bg-card);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-main);
  text-align: center;
  transition: var(--transition-fast);
}

.benefit-item:hover {
  border-color: var(--border-active);
  transform: translateY(-2px);
}

.benefit-icon {
  color: var(--accent-emerald);
  font-size: 1.25rem;
  font-weight: 800;
}

/* --------------------------------------------------------------------------
   6. Problem Section
   -------------------------------------------------------------------------- */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: var(--transition-normal);
}

.problem-card:hover {
  border-color: rgba(239, 68, 68, 0.4);
  box-shadow: 0 8px 25px var(--accent-red-glow);
  transform: translateY(-4px);
}

.problem-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.problem-text {
  font-size: 1.05rem;
  font-weight: 600;
  color: #e5e7eb;
  line-height: 1.5;
}

.problem-highlight-box {
  text-align: center;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.problem-highlight-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   7. Workshop Introduction Section
   -------------------------------------------------------------------------- */
.intro-box {
  background: linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2.5rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.intro-text {
  font-size: 1.2rem;
  color: var(--text-main);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.intro-emphasis {
  display: inline-block;
  background: var(--gradient-gold-subtle);
  border: 1px dashed var(--primary-gold);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-gold-light);
}

/* --------------------------------------------------------------------------
   8. What You Will Learn Section
   -------------------------------------------------------------------------- */
.learn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.learn-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.learn-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-gold);
  opacity: 0;
  transition: var(--transition-fast);
}

.learn-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-active);
  box-shadow: var(--shadow-md), 0 0 20px var(--primary-gold-glow);
}

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

.card-num {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--primary-gold);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.card-header-flex {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(245, 158, 11, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-gold);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.learn-card h3 {
  font-size: 1.35rem;
}

.learn-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: auto;
}

.learn-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: #d1d5db;
  font-size: 0.95rem;
}

.learn-list li::before {
  content: '▸';
  color: var(--primary-gold);
  font-weight: bold;
}

/* --------------------------------------------------------------------------
   9. Transformation Section (Before vs After)
   -------------------------------------------------------------------------- */
.transform-container {
  max-width: 900px;
  margin: 0 auto;
}

.transform-table {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.transform-row {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.75rem;
  transition: var(--transition-fast);
}

.transform-row:hover {
  border-color: var(--border-active);
  transform: scale(1.01);
}

.tf-before {
  color: #f87171;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.tf-before::before {
  content: '✕';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(239, 68, 68, 0.15);
  border-radius: 50%;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.tf-arrow {
  text-align: center;
  color: var(--primary-gold);
  font-size: 1.25rem;
  font-weight: bold;
}

.tf-after {
  color: #34d399;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.tf-after::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(16, 185, 129, 0.15);
  border-radius: 50%;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   10. Who Is This Workshop For Section
   -------------------------------------------------------------------------- */
.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.who-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition-normal);
}

.who-card:hover {
  border-color: var(--border-active);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}

.who-icon {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
}

.who-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
}

.who-cta-box {
  text-align: center;
}

/* --------------------------------------------------------------------------
   11. Coach Section
   -------------------------------------------------------------------------- */
.coach-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

.coach-photo-area {
  position: relative;
}

.coach-main-img {
  width: 100%;
  border-radius: var(--radius-md);
  border: 2px solid var(--border-active);
  box-shadow: var(--shadow-lg);
}

.coach-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.coach-name {
  font-size: 2.25rem;
  color: #ffffff;
}

.coach-role {
  font-size: 1.1rem;
  color: var(--primary-gold-light);
  font-weight: 600;
}

.coach-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1rem 0;
}

.stat-chip {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.stat-chip span {
  color: var(--primary-gold);
}

.coach-bio {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   11b. Awards & Recognition Section
   -------------------------------------------------------------------------- */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.award-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.award-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-active);
  box-shadow: var(--shadow-md), 0 0 20px var(--brand-red-glow);
}

.award-img-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #000000;
}

.award-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease;
}

.award-card:hover .award-img {
  transform: scale(1.06);
}

.award-body {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-grow: 1;
}

.award-badge {
  align-self: flex-start;
  background: var(--gradient-red-subtle);
  border: 1px solid var(--border-active);
  color: var(--brand-red-light);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.award-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-top: 0.25rem;
}

.award-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

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

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

/* --------------------------------------------------------------------------
   12. Practical Workshop Section & Timeline
   -------------------------------------------------------------------------- */
.practical-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.checklist-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
}

.check-icon {
  width: 28px;
  height: 28px;
  background: var(--accent-emerald-glow);
  border: 1px solid var(--accent-emerald);
  color: var(--accent-emerald);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.timeline {
  position: relative;
  padding-left: 2rem;
  border-left: 2px solid var(--border-active);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.timeline-item {
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(-2rem - 6px);
  top: 4px;
  width: 10px;
  height: 10px;
  background: var(--primary-gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary-gold);
}

.timeline-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.timeline-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   13. Bonus Section
   -------------------------------------------------------------------------- */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.bonus-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(245, 158, 11, 0.05) 100%);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}

.bonus-tag {
  align-self: flex-start;
  background: var(--gradient-gold);
  color: var(--text-inverse);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.bonus-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   14. Workshop Details Section
   -------------------------------------------------------------------------- */
.details-card {
  background: linear-gradient(135deg, var(--bg-surface) 0%, #151f33 100%);
  border: 2px solid var(--border-active);
  border-radius: var(--radius-lg);
  padding: 3rem;
  max-width: 850px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg), 0 0 30px var(--primary-gold-glow);
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 1.25rem;
  border-radius: var(--radius-md);
}

.detail-icon {
  font-size: 1.75rem;
  color: var(--primary-gold);
}

.detail-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.detail-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
}

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

/* --------------------------------------------------------------------------
   15. Testimonials Horizontal Slider
   -------------------------------------------------------------------------- */
.slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 -0.5rem;
}

.testimonials-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 1rem 0.5rem;
  width: 100%;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.testimonials-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 calc(25% - 0.95rem);
  min-width: 290px;
  scroll-snap-align: start;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--brand-red);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-active);
  box-shadow: var(--shadow-md), 0 0 15px var(--brand-red-glow);
}

.testimonial-stars {
  color: var(--primary-gold-light);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #e5e7eb;
  font-weight: 500;
  font-style: italic;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gradient-red);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.testimonial-author {
  font-weight: 700;
  font-size: 0.95rem;
  color: #ffffff;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--primary-gold-light);
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(19, 28, 46, 0.95);
  border: 1px solid var(--border-active);
  color: var(--primary-gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 10;
  box-shadow: var(--shadow-md);
  transition: var(--transition-fast);
}

.slider-btn:hover {
  background: var(--brand-red);
  color: #ffffff;
  border-color: var(--brand-red);
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: -18px;
}

.next-btn {
  right: -18px;
}

@media (max-width: 1200px) {
  .testimonial-card {
    flex: 0 0 calc(33.333% - 0.95rem);
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 0.75rem);
  }
}

@media (max-width: 480px) {
  .testimonial-card {
    flex: 0 0 85%;
  }
}

/* --------------------------------------------------------------------------
   16. FAQ Section (Accordion)
   -------------------------------------------------------------------------- */
.faq-container {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.faq-item.active {
  border-color: var(--border-active);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 1rem;
}

.faq-icon {
  font-size: 1.25rem;
  color: var(--primary-gold);
  transition: transform 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
  padding: 0 1.5rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem 1.5rem;
  transition: max-height 0.3s ease-in-out, padding 0.3s ease;
}

/* --------------------------------------------------------------------------
   17. Final CTA Banner
   -------------------------------------------------------------------------- */
.final-cta-box {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(15, 23, 42, 0.95) 100%);
  border: 2px solid var(--border-active);
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
  text-align: center;
  max-width: 950px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

.final-cta-headline {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.final-cta-sub {
  font-size: 1.15rem;
  color: var(--text-main);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

/* --------------------------------------------------------------------------
   18. Lead Form Section
   -------------------------------------------------------------------------- */
.form-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-lg);
  padding: 3rem;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

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

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

.form-group label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #e5e7eb;
}

.form-group label span {
  color: var(--accent-red);
}

.form-control {
  width: 100%;
  padding: 0.9rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: #ffffff;
  font-size: 1rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px var(--primary-gold-glow);
}

.form-control.error {
  border-color: var(--accent-red);
}

.error-msg {
  font-size: 0.85rem;
  color: var(--accent-red);
  display: none;
}

.error-msg.visible {
  display: block;
}

/* Form Loading & Status */
.form-status {
  padding: 1rem;
  border-radius: var(--radius-md);
  text-align: center;
  font-weight: 600;
  display: none;
  margin-top: 1rem;
}

.form-status.success {
  display: block;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid var(--accent-emerald);
  color: #34d399;
}

.form-status.error {
  display: block;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid var(--accent-red);
  color: #f87171;
}

.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255,255,255,.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 0.8s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* --------------------------------------------------------------------------
   19. Thank You Page Styles
   -------------------------------------------------------------------------- */
.thanks-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: calc(var(--header-height) + 2rem);
}

.thanks-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2.5rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  box-shadow: var(--shadow-lg), 0 0 40px var(--primary-gold-glow);
}

.thanks-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.thanks-headline {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.thanks-message {
  font-size: 1.25rem;
  color: var(--primary-gold-light);
  margin-bottom: 2.5rem;
}

.steps-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  text-align: left;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  position: relative;
}

.step-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-gold);
  margin-bottom: 0.5rem;
}

.step-text {
  font-size: 1rem;
  color: var(--text-main);
  font-weight: 600;
}

.thanks-cta-group {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
}

.btn-whatsapp:hover {
  background: #1ebc57;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.thanks-summary {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.thanks-sum-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.thanks-sum-item h4 {
  font-size: 1rem;
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   20. Footer
   -------------------------------------------------------------------------- */
.footer {
  background: #05080e;
  border-top: 1px solid var(--border-color);
  padding: 4rem 0 2rem 0;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.95rem;
}

.footer-title {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

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

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icon {
  width: 38px;
  height: 38px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.social-icon:hover {
  color: var(--primary-gold);
  border-color: var(--primary-gold);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-dim);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--gradient-gold);
  color: var(--text-inverse);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
  z-index: 998;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

/* Floating Bottom-Left WhatsApp Action Button */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5), 0 0 15px rgba(37, 211, 102, 0.3);
  z-index: 1001;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.3);
  animation: whatsapp-pulse 2.5s infinite;
}

@keyframes whatsapp-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.8), 0 0 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
  position: absolute;
  left: 66px;
  background: #18181b;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.15);
}

.floating-whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
}

/* --------------------------------------------------------------------------
   21. Animations & Scroll Reveal
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* --------------------------------------------------------------------------
   22. Responsive Breakpoints
   -------------------------------------------------------------------------- */

/* --------------------------------------------------------------------------
   22. Comprehensive Responsive Breakpoints
   -------------------------------------------------------------------------- */

/* Laptop / Small Desktop (<= 1200px) */
@media (max-width: 1200px) {
  .container {
    max-width: 100%;
  }
}

/* Tablet (<= 1024px) */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .hero-visual {
    order: 2;
  }
  
  .hero-content {
    order: 1;
    text-align: center;
  }
  
  .hero-badge, .hero-tags, .hero-cta-group, .hero-event-strip {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .floating-badge {
    display: none;
  }

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

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

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

  .coach-box {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .coach-stats-grid {
    justify-content: center;
  }

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

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

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
  
  .thanks-summary {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile & Tablet Portrait (<= 768px) */
@media (max-width: 768px) {
  section {
    padding: 3rem 0;
  }

  .hero {
    padding-top: calc(var(--header-height) + 40px);
  }

  .fomo-bar {
    padding: 0.4rem 0;
  }

  .fomo-container {
    gap: 0.6rem;
    padding: 0 0.5rem;
  }

  .fomo-text {
    font-size: 0.82rem;
    gap: 0.4rem;
  }

  .fomo-badge {
    font-size: 0.68rem;
    padding: 0.15rem 0.45rem;
  }

  .time-box {
    min-width: 36px;
    padding: 0.15rem 0.35rem;
  }

  .time-box span {
    font-size: 0.95rem;
  }

  .time-box small {
    font-size: 0.55rem;
  }

  .fomo-cta {
    padding: 0.35rem 0.9rem;
    font-size: 0.8rem;
  }

  .hero-fomo-card {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1rem;
  }

  .nav-desktop, .header-cta {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .mobile-sticky-bottom-bar {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-active);
    padding: 0.65rem 1rem;
    z-index: 999;
    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.6);
  }

  .mobile-sticky-bottom-bar .btn {
    padding: 0.85rem 1.25rem;
    font-size: 1.05rem;
    border-radius: var(--radius-full);
  }

  body {
    padding-bottom: 75px !important;
  }

  .floating-whatsapp-btn {
    bottom: 5.25rem !important;
  }

  .back-to-top {
    bottom: 5.25rem !important;
  }

  .hero-headline {
    font-size: 1.75rem;
    line-height: 1.3;
  }

  .hero-subheadline {
    font-size: 1.05rem;
  }

  .hero-event-strip {
    width: 100%;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  .strip-dot {
    display: none;
  }

  .coach-img {
    height: 340px;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .benefit-item {
    font-size: 0.9rem;
    padding: 0.75rem 0.5rem;
  }

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

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

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

  .transform-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    text-align: center;
  }

  .tf-arrow {
    transform: rotate(90deg);
  }

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

  .slider-btn {
    display: none; /* Swipe natively on mobile */
  }

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

  .thanks-summary {
    grid-template-columns: 1fr;
  }

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

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

  .hero-cta-group .btn {
    width: 100%;
  }

  .back-to-top {
    bottom: 5.5rem;
    right: 1.25rem;
    width: 42px;
    height: 42px;
  }
}

/* Compact Mobile (<= 480px / 430px / 390px / 360px) */
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .top-timer-wrapper {
    top: calc(var(--header-height) + 6px);
    max-width: 96vw;
  }

  .fixed-timer-pill {
    padding: 0.35rem 0.4rem 0.35rem 0.75rem;
    gap: 0.35rem;
    max-width: 100%;
  }

  .timer-pill-left {
    font-size: 0.76rem;
    gap: 0.2rem;
  }

  .timer-pill-icon {
    font-size: 0.9rem;
  }

  .timer-pill-box {
    padding: 0.2rem 0.45rem;
    font-size: 0.88rem;
    min-width: 48px;
    border-radius: 8px;
  }

  .timer-pill-cta {
    font-size: 0.72rem;
    padding: 0.3rem 0.55rem;
  }

  .fomo-msg {
    display: none;
  }

  .fomo-bar {
    padding: 0.35rem 0.25rem;
  }

  .fomo-container {
    gap: 0.35rem;
  }

  .time-box {
    min-width: 32px;
    padding: 0.1rem 0.25rem;
  }

  .time-box span {
    font-size: 0.85rem;
  }

  .time-colon {
    font-size: 0.9rem;
  }

  .fomo-cta {
    font-size: 0.76rem;
    padding: 0.3rem 0.7rem;
  }

  .hero-fomo-card {
    padding: 0.6rem 0.75rem;
    flex-direction: column;
    gap: 0.5rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .hero-headline {
    font-size: 1.5rem;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.9rem;
  }

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

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

  .coach-stats-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  .intro-box {
    padding: 2rem 1.25rem;
  }

  .coach-box {
    padding: 1.5rem 1.25rem;
  }

  .final-cta-box {
    padding: 2.5rem 1.25rem;
  }

  .final-cta-headline {
    font-size: 1.6rem;
  }
}
