/* ==========================================================================
   CSS VARIABLES & CORE SETUP
   ========================================================================== */
:root {
  --primary: #5A1E2B;      /* Deep Burgundy */
  --primary-dark: #3E141E; /* Dark Burgundy */
  --secondary: #D6B57A;    /* Champagne Gold */
  --secondary-dark: #B89355; 
  --accent: #8F3D56;       /* Rose Burgundy */
  --background: #F8F5F0;   /* Warm Ivory */
  --surface: #FFFFFF;      /* Pure White */
  --text-dark: #2C2C2C;    /* Soft Charcoal */
  
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--background);
  color: var(--text-dark);
  font-family: var(--font-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   TOP BANNER
   ========================================================================== */
.top-banner {
  background-color: var(--primary);
  color: var(--secondary);
  text-align: center;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(214, 181, 122, 0.4);
  position: relative;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(90, 30, 43, 0.15);
}

.banner-text {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ==========================================================================
   HERO SECTION (LIGHT IVORY CANVAS)
   ========================================================================== */
.hero-section {
  background-color: var(--background);
  color: var(--text-dark);
  padding: 30px 24px 40px;
  position: relative;
  overflow: hidden;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(214, 181, 122, 0.15) 0%, transparent 60%),
    radial-gradient(circle at 10% 80%, rgba(143, 61, 86, 0.05) 0%, transparent 50%);
}

.hero-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeIn 0.8s ease-out forwards;
}

/* Category Tags */
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.tag {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tag-divider {
  color: var(--secondary);
  font-size: 0.85rem;
}

/* Headline */
.hero-title {
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: clamp(1.5rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
/* ==========================================
   YOUTUBE VIDEO EMBED
========================================== */
.yt-video-container {
  width: 100%;
  max-width: 680px;
  margin: 0 auto 30px;
}

.yt-video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(47, 93, 87, 0.15);
  border: 1px solid rgba(47, 93, 87, 0.1);
  background: #000;
}

.yt-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.highlight-text {
  color: var(--accent);
  position: relative;
  display: inline-block;
}

/* Subtitle Box */
.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-dark);
  max-width: 820px;
  font-weight: 500;
  margin-bottom: 40px;
  line-height: 1.6;
  background: var(--surface);
  padding: 20px 28px;
  border-radius: 12px;
  border: 1px solid rgba(214, 181, 122, 0.4);
  box-shadow: 0 4px 20px rgba(90, 30, 43, 0.06);
}

/* Explicit Highlight for 3-Hour LIVE Workshop */
.badge-highlight {
  background-color: var(--primary);
  color: var(--secondary);
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 6px;
  display: inline-block;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(90, 30, 43, 0.2);
}

/* Body / Narrative */
.hero-body {
  max-width: 720px;
  margin-bottom: 40px;
}

.audience-lead {
  font-size: 1.15rem;
  color: #000;
  margin-bottom: 16px;
}

.audience-lead strong {
  color: var(--primary);
  font-weight: 700;
}

.core-problem {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 28px;
  font-weight: 500;
}

/* Callout Box */
.hero-callout {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  padding: 20px 36px;
  border-radius: 12px;
  border-left: 5px solid var(--accent);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
}

.callout-text {
  font-size: 1.05rem;
  color: #000;
  font-weight: 500;
}

.emphasis-badge {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Call to Action Group */
.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}

/* Burgundy & Gold Pill Button Base Styles */
.burgundy-pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background-color: #4b1d2b; /* Exact burgundy color */
  border: 2px solid #d9b36a; /* Gold outline border */
  border-radius: 50px;       /* Full pill shape */
  padding: 16px 36px;
  color: #ffffff;
  text-decoration: none;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  box-shadow: 0 10px 25px rgba(75, 29, 43, 0.35);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-sizing: border-box;
}

/* Hover & Tap Animations */
.burgundy-pill-btn:hover {
  background-color: #3b1622;
  border-color: #e3c281;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(75, 29, 43, 0.45);
}

.burgundy-pill-btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* Label & Arrow Container */
.burgundy-pill-btn .btn-main-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.burgundy-pill-btn .btn-label {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.2px;
  color: #ffffff;
}

.burgundy-pill-btn .btn-arrow {
  color: #d9b36a; /* Gold Arrow */
  font-size: 1.3rem;
  font-weight: 700;
  transition: transform 0.2s ease;
  line-height: 1;
}

/* Price Container */
.burgundy-pill-btn .btn-price-wrapper {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(217, 179, 106, 0.15); /* Soft gold tint capsule */
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(217, 179, 106, 0.3);
}

.burgundy-pill-btn .old-price {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: line-through;
}

.burgundy-pill-btn .new-price {
  color: #d9b36a; 
  font-size: 1.35rem;
  font-weight: 800;
}

/* ==========================================================================
   MOBILE RESPONSIVE MEDIA QUERY (PRICE IN SECOND LINE)
   ========================================================================== */
@media (max-width: 640px) {
  .burgundy-pill-btn {
    flex-direction: column;  /* Moves price to the second line */
    gap: 6px;
    padding: 12px 24px;
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  .burgundy-pill-btn .btn-label {
    font-size: 1rem;
  }

  .burgundy-pill-btn .btn-arrow {
    font-size: 1.1rem;
  }

  .burgundy-pill-btn .btn-price-wrapper {
    padding: 2px 10px;
  }

  .burgundy-pill-btn .old-price {
    font-size: 0.8rem;
  }

  .burgundy-pill-btn .new-price {
    font-size: 0.95rem;
  }
}

.btn-icon {
  width: 20px;
  height: 20px;
  stroke: var(--secondary);
  transition: transform 0.2s ease;
}

.btn-primary:hover .btn-icon {
  transform: translateX(4px);
}

.cta-microcopy {
  font-size: 0.85rem;
  color: #000;
  font-weight: 600;
}

/* ==========================================================================
   ANIMATIONS & RESPONSIVE
   ========================================================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .hero-section {
    padding: 20px 16px 40px;
  }

  .tag-divider {
    display: none;
  }

  .hero-tags {
    gap: 6px 8px;
  }

  .tag {
    font-size: 0.7rem;
    background: rgba(143, 61, 86, 0.08);
    padding: 4px 10px;
    border-radius: 20px;
  }
  .hero-title {
    font-size: clamp(1.7rem, 4.7vw, 3.2rem);
  }

  .hero-subtitle {
    padding: 16px;
    font-size: clamp(0.9rem, 1vw, 1rem);
  }

  .badge-highlight {
    margin-top: 6px;
  }

  .hero-callout {
    padding: 16px 20px;
    width: 100%;
  }

  .btn-primary {
    width: 100%;
    padding: 16px 24px;
    font-size: 1.1rem;
  }
}
/* ==========================================================================
   FOUR LIFE-CHANGING SKILLS SECTION
   ========================================================================== */
.skills-section {
  background-color: #faf9f7;
  padding: 40px 24px;
  position: relative;
  border-top: 1px solid rgba(214, 181, 122, 0.25);
}

.skills-container {
  max-width: 1140px;
  margin: 0 auto;
}

/* Header Styles */
.skills-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--accent);
  background: rgba(143, 61, 86, 0.08);
  padding: 6px 16px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  border: 1px solid rgba(143, 61, 86, 0.2);
}

.section-title {
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.15rem;
  color: #000;
  font-weight: 500;
  line-height: 1.6;
}

.subtitle-highlight {
  color: var(--primary);
  font-weight: 700;
}

/* Skills Grid (2x2 Layout on Desktop) */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* Skill Card Styling */
.skill-card {
  background-color: var(--surface);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(214, 181, 122, 0.35);
  box-shadow: 0 10px 30px rgba(90, 30, 43, 0.05);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}

.skill-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(90, 30, 43, 0.12);
  border-color: var(--secondary);
}

/* Card Image Wrapper & Number Badge */
.card-image-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.skill-card:hover .card-image {
  transform: scale(1.05);
}

.card-number {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: var(--primary);
  color: var(--secondary);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 6px 14px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  border: 1px solid var(--secondary);
}

/* Card Body Content */
.card-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title {
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.card-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45px;
  height: 3px;
  background-color: var(--secondary);
  border-radius: 2px;
}

/* Bullet Points */
.skill-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.skill-list li {
  position: relative;
  padding-left: 28px;
  font-size: 1.02rem;
  color: #000;
  line-height: 1.5;
}

.skill-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 900;
  font-size: 1.05rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 900px) {
  .skills-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .card-image-wrapper {
    height: 200px;
  }

  .card-content {
    padding: 24px;
  }
}

@media (max-width: 640px) {
  .skills-section {
    padding: 60px px;
  }

  .skills-header {
    margin-bottom: 40px;
  }
}
/* ==========================================================================
   TRANSFORMATION EXPERIENCE (SPECIAL FEATURE SECTION)
   ========================================================================== */
.transformation-section {
  background: linear-gradient(180deg, var(--background) 0%, #FAF6EE 50%, var(--background) 100%);
  padding: 30px 20px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(214, 181, 122, 0.3);
  border-bottom: 1px solid rgba(214, 181, 122, 0.3);
}

.transformation-container {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Title & Lead */
.transformation-title {
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.transformation-lead {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 20px;
  font-family: "Bodoni Moda", serif;
  font-style: italic;
}

.formula-intro {
  font-size: 1.05rem;
  color: #000;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 24px;
}

/* 4 Pillars Card Grid */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  width: 100%;
  max-width: 820px;
  margin-bottom: 50px;
}

.pillar-card {
  background-color: var(--surface);
  border: 1px dashed rgba(143, 61, 86, 0.25);
  padding: 18px 24px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  transition: all 0.3s ease;
}

.pillar-card:hover {
  border-style: solid;
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(90, 30, 43, 0.06);
}

.pillar-status {
  color: var(--accent);
  font-weight: 900;
  font-size: 1.1rem;
  background: rgba(143, 61, 86, 0.08);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pillar-card p {
  font-size: 1.05rem;
  color: var(--text-dark);
  font-weight: 500;
}

.highlight-alone {
  color: var(--primary);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--secondary);
  text-underline-offset: 3px;
}

/* Central Revelation Box */
.revelation-box {
  background: var(--primary);
  color: #FFFFFF;
  padding: 48px 40px;
  border-radius: 20px;
  width: 100%;
  max-width: 820px;
  position: relative;
  box-shadow: 0 15px 35px rgba(90, 30, 43, 0.25);
  border: 2px solid var(--secondary);
}

.sparkle-accent {
  color: var(--secondary);
  letter-spacing: 6px;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.revelation-text {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.3;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.revelation-subtext {
  font-size: 1.2rem;
  color: var(--secondary);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 768px) {
  .transformation-section {
    padding: 20px 16px;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .revelation-box {
    padding: 32px 20px;
  }
}
/* ==========================================================================
   WHAT YOU'LL WALK AWAY WITH SECTION (REFERENCE LAYOUT MATCH)
   ========================================================================== */
.walkaway-section {
  background-color: var(--background);
  padding: 40px 24px;
  position: relative;
}

.walkaway-container {
  max-width: 900px;
  margin: 0 auto;
}

/* Header */
.walkaway-header {
  text-align: center;
  margin-bottom: 30px;
}

.walkaway-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--accent);
  background: rgba(143, 61, 86, 0.08);
  padding: 6px 16px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  border: 1px solid rgba(143, 61, 86, 0.2);
}

.walkaway-title {
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.01em;
}

/* Outer Container Card (Matches Image Border & Background) */
.walkaway-card {
  background-color: var(--primary); /* Deep Burgundy surface matching image container */
  border-radius: 16px;
  border: 2px solid var(--secondary); /* Champagne Gold Outline */
  box-shadow: 0 15px 35px rgba(90, 30, 43, 0.2);
  overflow: hidden;
}

/* Single List Row */
.walkaway-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid rgba(214, 181, 122, 0.2); /* Divider line between rows */
  transition: background-color 0.25s ease;
}

.walkaway-row:last-child {
  border-bottom: none;
}

.walkaway-row:hover {
  background-color: rgba(255, 255, 255, 0.04);
}

/* Text inside rows */
.row-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.4;
  padding-right: 16px;
}

/* Special styling for the last item ("A New Version Of Yourself") */
.highlight-row {
  background-color: rgba(214, 181, 122, 0.12);
}

.highlight-row .row-text {
  color: var(--secondary);
  font-size: 1.25rem;
}

/* Green Checkmark Wrapper matching reference image */
.check-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 20px;
  border-left: 1px solid rgba(214, 181, 122, 0.2); /* Vertical line before icon */
  height: 100%;
}

.check-icon {
  background-color: #27AE60; /* Vibrant emerald green checkmark pill matching reference */
  color: #FFFFFF;
  width: 32px;
  height: 32px;
  border-radius: 8px; /* Slightly rounded square like reference */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 900;
  box-shadow: 0 2px 8px rgba(39, 174, 96, 0.3);
  flex-shrink: 0;
}
/* Container Wrapper to Force Centering Anywhere */
.btn-center-wrapper {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  margin: 24px auto !important; /* Adjust vertical spacing as needed */
  text-align: center !important;
}

/* Burgundy & Gold Pill Button Base Styles */
.burgundy-pill-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background-color: #4b1d2b; /* Exact burgundy color */
  border: 2px solid #d9b36a; /* Gold outline border */
  border-radius: 50px;       /* Full pill shape */
  padding: 16px 36px;
  color: #ffffff;
  text-decoration: none;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  box-shadow: 0 10px 25px rgba(75, 29, 43, 0.35);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-sizing: border-box;
  margin: 0 auto;            /* Center fallback */
}

/* Hover & Tap Animations */
.burgundy-pill-btn:hover {
  background-color: #3b1622;
  border-color: #e3c281;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(75, 29, 43, 0.45);
}

.burgundy-pill-btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* Label & Arrow Container */
.burgundy-pill-btn .btn-main-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.burgundy-pill-btn .btn-label {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.2px;
  color: #ffffff;
}
/* Price Container */
.burgundy-pill-btn .btn-price-wrapper {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(217, 179, 106, 0.15); /* Soft gold tint capsule */
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(217, 179, 106, 0.3);
}

.burgundy-pill-btn .old-price {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  text-decoration: line-through;
}

.burgundy-pill-btn .new-price {
  color: #d9b36a; /* Gold highlighted price */
  font-size: 1.4rem;
  font-weight: 800;
}

/* ==========================================================================
   MOBILE RESPONSIVE MEDIA QUERY (PRICE IN SECOND LINE)
   ========================================================================== */
@media (max-width: 640px) {
  .burgundy-pill-btn {
    flex-direction: column !important;  /* Moves price to second line */
    gap: 6px;
    padding: 12px 24px;
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  .burgundy-pill-btn .btn-label {
    font-size: 1rem;
  }

  .burgundy-pill-btn .btn-arrow {
    font-size: 1.1rem;
  }

  .burgundy-pill-btn .btn-price-wrapper {
    padding: 2px 10px;
  }

  .burgundy-pill-btn .old-price {
    font-size: 1rem;
  }

  .burgundy-pill-btn .new-price {
    font-size: 1.1rem;
  }
}
/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 640px) {
  .walkaway-section {
    padding: 30px 16px;
  }

  .walkaway-card {
    border-radius: 12px;
  }

  .walkaway-row {
    padding: 16px 18px;
  }

  .row-text {
    font-size: 1rem;
  }

  .highlight-row .row-text {
    font-size: 1.05rem;
  }

  .check-wrapper {
    padding-left: 12px;
  }

  .check-icon {
    width: 28px;
    height: 28px;
    font-size: 0.85rem;
  }
}
/* ==========================================================================
   EXCLUSIVE BONUSES SECTION
   ========================================================================== */
.bonuses-section {
  background-color: var(--background);
  padding: 30px 24px;
  position: relative;
  border-top: 1px solid rgba(214, 181, 122, 0.25);
}

.bonuses-container {
  max-width: 1000px;
  margin: 0 auto;
}

/* Header */
.bonuses-header {
  text-align: center;
  margin-bottom: 56px;
}

.bonuses-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--accent);
  background: rgba(143, 61, 86, 0.08);
  padding: 6px 16px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  border: 1px solid rgba(143, 61, 86, 0.2);
}

.bonuses-title {
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.bonuses-subtitle {
  font-size: 1.1rem;
  color: #000;
  font-weight: 500;
  font-family: "Bodoni Moda", serif;
  font-style: italic;
}

/* Grid Layout */
.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Bonus Card Styling */
.bonus-card {
  background-color: var(--surface);
  border: 1px solid rgba(214, 181, 122, 0.4);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: 0 6px 20px rgba(90, 30, 43, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(90, 30, 43, 0.1);
  border-color: var(--secondary);
}

.bonus-icon-box {
  background-color: rgba(214, 181, 122, 0.15);
  font-size: 1.8rem;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(214, 181, 122, 0.3);
}

.bonus-details {
  display: flex;
  flex-direction: column;
}

.bonus-tag {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.tag-verified {
  color: var(--primary);
}

.bonus-name {
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 6px;
  line-height: 1.3;
}

.bonus-desc {
  font-size: 0.95rem;
  color: #000;
  line-height: 1.45;
}

/* Certificate Special Card */
.highlight-bonus {
  background-color: #FAF5EA;
  border: 2px solid var(--secondary);
}

.highlight-bonus .bonus-icon-box {
  background-color: var(--primary);
  color: var(--secondary);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 768px) {
  .bonuses-section {
    padding: 30px 16px;
  }

  .bonuses-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .bonus-card {
    padding: 20px;
    gap: 16px;
  }

  .bonus-icon-box {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }
}
/* ==========================================================================
   WHO IS THIS FOR SECTION (BALANCED & CENTERED GRID)
   ========================================================================== */
.target-audience-section {
  background-color: var(--background);
  padding: 40px 24px;
  position: relative;
  border-top: 1px solid rgba(214, 181, 122, 0.25);
}

.target-audience-container {
  max-width: 1140px;
  margin: 0 auto;
}

/* Header */
.target-audience-header {
  text-align: center;
  margin-bottom: 56px;
}

.audience-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--accent);
  background: rgba(143, 61, 86, 0.08);
  padding: 6px 16px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  border: 1px solid rgba(143, 61, 86, 0.2);
}

.audience-title {
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.audience-subtitle {
  font-size: 1.1rem;
  color: #000;
  font-weight: 500;
}

/* 3-Column Flexible Grid Structure */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Base Card Styling - All 8 boxes are exact same size */
.audience-card {
  position: relative;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(90, 30, 43, 0.08);
  border: 1px solid rgba(214, 181, 122, 0.3);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  cursor: pointer;
}

.audience-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(90, 30, 43, 0.18);
  border-color: var(--secondary);
}

/* Positioning rules to center the last 2 items on Desktop */
@media (min-width: 993px) {
  .card-centered-left {
    grid-column: 1 / 2;
    transform: translateX(50%); /* Shifts box to align perfectly with center gap */
  }

  .card-centered-right {
    grid-column: 2 / 3;
    transform: translateX(50%); /* Shifts box to align perfectly with center gap */
  }

  .card-centered-left:hover {
    transform: translateX(50%) translateY(-8px);
  }

  .card-centered-right:hover {
    transform: translateX(50%) translateY(-8px);
  }
}

/* Image with zoom effect */
.audience-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.audience-card:hover .audience-img {
  transform: scale(1.08);
}

/* Top-Left Masterclass Gold Badge */
.top-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--secondary);
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Bottom Dark Overlay Bar */
.bottom-bar {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background-color: rgba(62, 20, 30, 0.92); /* Deep Burgundy Overlay */
  backdrop-filter: blur(4px);
  padding: 16px 20px;
  border-radius: 12px;
  z-index: 2;
  border: 1px solid rgba(214, 181, 122, 0.3);
  transition: background-color 0.3s ease;
}

.audience-card:hover .bottom-bar {
  background-color: rgba(90, 30, 43, 0.96);
}

.card-role {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 8px;
  line-height: 1.25;
}

/* Gold Underline Accent */
.bar-accent {
  display: block;
  width: 32px;
  height: 3px;
  background-color: var(--secondary);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.audience-card:hover .bar-accent {
  width: 50px;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 992px) {
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-centered-left,
  .card-centered-right {
    transform: none;
    grid-column: auto;
  }

  .card-centered-left:hover,
  .card-centered-right:hover {
    transform: translateY(-8px);
  }
}

@media (max-width: 640px) {
  .target-audience-section {
    padding: 60px 16px;
  }

  .audience-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .audience-card {
    height: 320px;
  }
}

/* ==========================================================================
   MEET YOUR MENTOR SECTION (EXACT LAYOUT WITH BURGUNDY & GOLD THEME)
   ========================================================================== */

.mentor-section {
  background-color: #3b1622; /* Rich dark burgundy background */
  padding: 80px 20px;
  color: #ffffff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.mentor-container {
  max-width: 1140px;
  margin: 0 auto;
}

.mentor-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: center;
}

/* Left Image Card */
.mentor-image-card {
  width: 100%;
  height: 520px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #f2daae 0%, #5c2435 70%);
  background-color: #5c2435; /* Fallback frame background */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.mentor-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Right Content Column */
.mentor-content-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Pill Tag */
.mentor-pill-tag {
  display: inline-block;
  border: 1px solid rgba(217, 179, 106, 0.5); /* Gold outline */
  background: rgba(217, 179, 106, 0.08);
  color: #D9B36A; /* Gold color */
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

/* Subtitle & Name Header */
.mentor-subtitle-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #d8b3be; /* Soft muted pink/burgundy text */
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.mentor-name {
  font-size: clamp(2.8rem, 5vw, 3.8rem);
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 6px 0;
  letter-spacing: -1px;
  line-height: 1;
}

.mentor-role {
  font-size: 1.15rem;
  font-weight: 800;
  color: #D9B36A; /* Gold Highlight */
  margin: 0 0 28px 0;
}

/* Paragraph Texts */
.mentor-bio-text p {
  font-size: 1.15rem;
  line-height: 1.65;
  color: #e2d5d8;
  margin-bottom: 16px;
}

.mentor-bio-text p strong {
  color: #ffffff;
  font-weight: 700;
}

/* Framed Mission Box */
.mentor-mission-box {
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid #D9B36A; /* Gold border frame */
  border-left: 4px solid #D9B36A; /* Thicker gold left border accent */
  border-radius: 12px;
  padding: 20px 24px;
  margin-top: 16px;
  box-sizing: border-box;
}

.mission-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.quote-icon {
  color: #D9B36A;
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
}

.mission-title {
  color: #D9B36A;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.mission-quote {
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.5;
  margin: 0;
}

/* Responsive Rules */
@media (max-width: 992px) {
  .mentor-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .mentor-image-card {
    height: 420px;
  }
}

@media (max-width: 640px) {
  .mentor-section {
    padding: 50px 16px;
  }

  .mentor-image-card {
    height: 340px;
  }

  .mentor-name {
    font-size: 2.5rem;
  }
}
/* ==========================================================================
   LIMITED-TIME LAUNCH OFFER SECTION (BURGUNDY GRADIENT STYLE)
   ========================================================================== */
.offer-section {
  background-color: var(--background);
  padding: 30px 24px;
  position: relative;
}

.offer-container {
  max-width: 860px;
  margin: 0 auto;
}

/* Outer Gradient Burgundy Banner Card */
.offer-card-gradient {
  background: linear-gradient(145deg, #662e3b 0%,#54202c 40%, #290B12 100%);
  border: 1px solid var(--secondary);
  border-radius: 28px;
  padding: 56px 40px 40px;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 50px rgba(41, 11, 18, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Top Badge */
.offer-top-badge {
  position: absolute;
  top: -20px;
  background: var(--secondary);
  color: #290B12;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 8px 24px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #27AE60;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.7);
  animation: pulse-green 1.8s infinite;
}

@keyframes pulse-green {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(39, 174, 96, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(39, 174, 96, 0); }
}

/* Header */
.offer-header {
  margin-bottom: 24px;
}

.offer-title {
  font-family: var(--font-heading);
  color: #FFFFFF;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 8px;
}

.offer-value {
  font-size: 1rem;
  color: var(--secondary);
  font-weight: 600;
  font-size: 1.2rem;
}

.strike-price {
  text-decoration: line-through;
}

/* Price Display Box */
.price-box-dark {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(214, 181, 122, 0.3);
  padding: 20px 40px;
  border-radius: 20px;
  margin-bottom: 24px;
  width: 100%;
  max-width: 440px;
  backdrop-filter: blur(8px);
}

.currency {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 6vw, 4.5rem);
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1;
  margin: 4px 0;
}

.price-period {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* Tagline */
.tagline-highlight {
  font-size: 1.15rem;
  color: var(--secondary);
  font-weight: 500;
  max-width: 620px;
  margin-bottom: 24px;
  line-height: 1.5;
  font-style: italic;
}

/* Sparkle Divider matching image style */
.sparkle-divider {
  color: var(--secondary);
  font-size: 0.9rem;
  letter-spacing: 12px;
  margin-bottom: 24px;
  opacity: 0.85;
}

/* Pitch Section */
.offer-pitch {
  margin-bottom: 32px;
  max-width: 640px;
}

.pitch-headline {
  font-family: var(--font-heading);
  color: #FFFFFF;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.pitch-text {
  font-size: 1.1rem;
  color: var(--secondary);
  line-height: 1.5;
}

/* CTA & Glowing Button Effect */
.cta-area {
  width: 100%;
  max-width: 500px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.btn-glowing-cta {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #EAD096 0%, #D6B57A 100%);
  color: #290B12;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  text-decoration: none;
  padding: 20px 32px;
  border-radius: 50px;
  border: none;
  position: relative;
  transition: all 0.3s ease;
  animation: glow-pulse 2.5s infinite ease-in-out;
}

.btn-glowing-cta:hover {
  transform: translateY(-3px) scale(1.02);
  background: linear-gradient(135deg, #FFF0CA 0%, #EAD096 100%);
}

.btn-glowing-cta .btn-icon {
  width: 22px;
  height: 22px;
  stroke: #290B12;
  transition: transform 0.2s ease;
}

.btn-glowing-cta:hover .btn-icon {
  transform: translateX(5px);
}

/* Glow Keyframe Effect */
@keyframes glow-pulse {
  0% {
    box-shadow: 0 0 15px rgba(214, 181, 122, 0.4), 0 0 30px rgba(214, 181, 122, 0.2);
  }
  50% {
    box-shadow: 0 0 25px rgba(214, 181, 122, 0.8), 0 0 50px rgba(214, 181, 122, 0.4);
  }
  100% {
    box-shadow: 0 0 15px rgba(214, 181, 122, 0.4), 0 0 30px rgba(214, 181, 122, 0.2);
  }
}

.urgency-note {
  font-size: 0.85rem;
  color: #F8F5F0;
  font-weight: 500;
}

/* Footer Pillars */
.pillars-footer {
  border-top: 1px dashed rgba(214, 181, 122, 0.3);
  padding-top: 24px;
  width: 100%;
}

.pillars-list {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 6px;
}

.transformation-motto {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Mobile Responsive */
@media (max-width: 640px) {
  .offer-section {
    padding: 40px 16px;
  }

  .offer-card-gradient {
    padding: 44px 20px 28px;
  }

  .price-box-dark {
    padding: 16px 20px;
  }

  .btn-glowing-cta {
    font-size: 1.1rem;
    padding: 16px 20px;
  }

  .pillars-list {
    font-size: 0.85rem;
  }
}
/* ==========================================================================
   COMPACT FOOTER SECTION (ORIGINAL STRUCTURE)
   ========================================================================== */
.site-footer {
  background-color: var(--primary);
  color: #FFFFFF;
  padding: 32px 16px 24px; /* Reduced vertical padding */
  border-top: 1px solid var(--secondary);
}

.footer-container {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

/* Brand Section */
.footer-brand {
  margin-bottom: 14px;
}

.powered-by {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.brand-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem; /* Compact title height */
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.1;
}

/* Contact Details */
.contact-item {
  display: inline-flex; /* Changed to inline-flex so it wraps tightly around text/icon */
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #FFFFFF;
  text-decoration: none;
  font-family: var(--font-sans, sans-serif);
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0 auto 24px auto; /* Centers the block horizontally */
  transition: color 0.3s ease;
}

.contact-item:hover {
  color: var(--secondary);
}

.contact-icon {
  width: 22px;
  height: 22px;
  color: var(--secondary);
  flex-shrink: 0;
}

/* Horizontal Line */
.footer-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(214, 181, 122, 0.2);
  margin-bottom: 16px;
}

/* Disclaimer Text */
.footer-disclaimer {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.45;
  max-width: 780px;
  margin: 0 auto 14px;
}

.footer-disclaimer strong {
  color: #FFFFFF;
}

/* Footer Policy Links */
.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--secondary);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-links a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.link-bullet {
  color: var(--secondary);
  opacity: 0.5;
  font-size: 0.75rem;
}

/* Mobile Adjustments */
@media (max-width: 640px) {
  .site-footer {
    padding: 24px 12px 20px;
  }

  .footer-contact {
    gap: 10px;
    flex-direction: column;
  }

  .footer-disclaimer {
    font-size: 0.72rem;
  }

  .footer-links a {
    font-size: 0.78rem;
  }
}

/*continuous button animation*/
.btn-attention {
  animation: continuousAttention 2.5s infinite ease-in-out;
}

@keyframes continuousAttention {
  0%, 100% {
    transform: scale(0.95); /* Normal size */
  }
  50% {
    transform: scale(1.05); /* Grows bigger / comes out toward viewer */
  }
}