/* ==========================================================================
   LUXURY DESIGN SYSTEM - MIDNIGHT NAVY & GOLD (COLUMNS LAYOUT)
   ========================================================================== */

/* 🔹 Google Fonts Integration */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

/* 🔹 Styling Variables */
:root {
  /* Midnight Navy Colors */
  --bg-dark: #030816;
  --bg-radial: radial-gradient(circle at center, #0b1f3f 0%, #020712 100%);
  --bg-card: rgba(11, 31, 63, 0.4);
  --bg-card-hover: rgba(11, 31, 63, 0.6);
  
  /* Borders */
  --border-color: rgba(212, 175, 55, 0.15);
  --border-accent: rgba(212, 175, 55, 0.45);
  
  /* Typography Colors */
  --text-white: #ffffff;
  --text-gold-light: #fbe6af;
  --text-gray: #a3b3cc;
  --text-dark: #020712;
  
  /* Metallic Gold Palette */
  --accent-gold-light: #F4D068;
  --accent-gold: #D4AF37;
  --accent-gold-dark: #AA771C;
  --gold-gradient: linear-gradient(135deg, #F4D068 0%, #D4AF37 50%, #AA771C 100%);
  
  /* Alerts */
  --accent-red: #e04c4c;
  
  /* Fonts */
  --font-title: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;
  
  /* Containers */
  --max-width: 1140px;
  --max-width-narrow: 850px;
}

/* 🔹 Reset and Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-white);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--bg-radial);
  line-height: 1.7;
  overflow-x: hidden;
  padding-top: 80px; /* Offset for fixed header menu */
}

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

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

/* 🔹 Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.02em;
}

p {
  margin-bottom: 20px;
}

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

.text-gold-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 🔹 Layout Containers */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
}

/* ==========================================================================
   COMPONENTS
   ========================================================================== */

/* Header (Fixed Menu Bar with Gold Logo & CTA) */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(3, 8, 22, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.header-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-wrapper {
  display: flex;
  align-items: center;
}

.header-logo {
  max-height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.header-logo:hover {
  transform: scale(1.05);
}

.header-cta {
  display: flex;
  align-items: center;
}

.btn-header-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: var(--gold-gradient);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
}

.btn-header-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
  filter: brightness(1.05);
}

/* Luxury Cards */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), inset 0 0 15px rgba(212, 175, 55, 0.05);
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-accent);
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(212, 175, 55, 0.1), inset 0 0 20px rgba(212, 175, 55, 0.1);
}

/* Premium Gold Buttons */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 650px;
  padding: 18px 30px;
  background: var(--gold-gradient);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 1.12rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
  filter: brightness(1.1);
}

.btn-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 40px 0;
  width: 100%;
}

.hero-btn-container {
  align-items: flex-start;
}

.btn-subtext {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-gray);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  margin-top: 4px;
  opacity: 0.95;
}

@media (max-width: 992px) {
  .hero-btn-container {
    align-items: center;
  }
}

/* Section Title Group */
.title-group {
  text-align: center;
  margin-bottom: 60px;
}

.title-group h2 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.title-group .subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  text-transform: uppercase;
  color: var(--text-gray);
  letter-spacing: 0.15em;
}

@media (max-width: 768px) {
  .title-group h2 {
    font-size: 2.1rem;
  }
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */

/* 🔹 Hero Section (2 Columns) */
.hero {
  padding: 40px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
}

.hero h1:not(.flyer-main-title) {
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero h1 span.highlight {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 10px;
  color: var(--accent-gold);
}

.hero-objections-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 30px;
}

.objection-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(11, 31, 63, 0.3);
  border: 1px solid var(--border-color);
  padding: 16px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.objection-card:hover {
  background: rgba(11, 31, 63, 0.5);
  border-color: var(--border-accent);
  transform: translateY(-2px);
}

.objection-card i {
  color: var(--accent-gold);
  font-size: 1.25rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.objection-card h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.objection-card p {
  font-size: 0.85rem;
  color: var(--text-gray);
  margin-bottom: 0;
  line-height: 1.4;
}

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

.hero-image-container::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 10%;
  width: 80%;
  height: 80%;
  background: var(--accent-gold);
  filter: blur(80px);
  opacity: 0.15;
  z-index: 1;
  border-radius: 50%;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 360px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-accent);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  z-index: 2;
  transition: transform 0.5s ease;
}

.hero-image-wrapper:hover {
  transform: scale(1.02);
}

.hero-video-wrapper {
  position: relative;
  width: 100%;
  max-width: 360px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-accent);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  z-index: 2;
  transition: transform 0.5s ease;
  background-color: #000;
}

.video-unmute-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(3, 8, 22, 0.35);
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s ease;
}

.video-unmute-overlay:hover {
  background: rgba(3, 8, 22, 0.15);
}

.unmute-badge {
  background: var(--gold-gradient);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  padding: 10px 18px;
  border-radius: 30px;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.5);
  display: flex;
  align-items: center;
  gap: 8px;
  animation: pulseUnmute 1.5s infinite;
}

@keyframes pulseUnmute {
  0% { transform: scale(1); box-shadow: 0 10px 25px rgba(212, 175, 55, 0.5); }
  50% { transform: scale(1.05); box-shadow: 0 10px 35px rgba(212, 175, 55, 0.8); }
  100% { transform: scale(1); box-shadow: 0 10px 25px rgba(212, 175, 55, 0.5); }
}

.hero-video-wrapper:hover {
  transform: scale(1.02);
}

.hero-video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 992px) {
  section.hero {
    background-image: linear-gradient(to bottom, rgba(3, 8, 22, 0.95) 0%, rgba(3, 8, 22, 0.75) 40%, rgba(3, 8, 22, 0.2) 100%), url('bootcamp/navy_gold_background.png') !important;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
    text-align: center;
  }
  
  .hero-content {
    display: contents;
  }
  
  .hero-header-flyer {
    order: 1;
    margin-bottom: 30px;
  }

  .flyer-top-hook {
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.95));
  }

  .flyer-category {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.95);
  }
  
  .hero h1 {
    font-size: 2.4rem;
  }
  
  .hero-sub {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .hero-image-container {
    order: 2;
    margin-bottom: 30px;
  }
  
  .hero-image-wrapper,
  .hero-video-wrapper {
    max-width: 400px;
  }
  
  .hero-objections-grid {
    order: 3;
    margin-bottom: 20px;
  }
  
  .hero-btn-container {
    order: 4;
  }
}

/* 🔹 Qualifier (2 Columns Cards) */
.qualifier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.qualifier-col h3 {
  font-size: 2rem;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.qualifier-col.yes h3 {
  color: var(--accent-gold);
}

.qualifier-col.no h3 {
  color: var(--accent-red);
}

.list-items {
  list-style: none;
}

.list-items li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 20px;
  font-size: 1.05rem;
  color: var(--text-gray);
}

.list-items li strong {
  color: var(--text-white);
}

.list-items li i {
  position: absolute;
  left: 0;
  top: 4px;
  font-size: 1.3rem;
}

.qualifier-col.yes li i {
  color: var(--accent-gold);
}

.qualifier-col.no li i {
  color: var(--accent-red);
}

@media (max-width: 768px) {
  .qualifier-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* 🔹 Story Section (2 Columns - Creative Editorial Layout) */
.story-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  align-items: flex-start;
}

.story-left {
  position: relative;
}

.story-image-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-accent);
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
  transition: transform 0.5s ease;
}

.story-image-frame img {
  transition: transform 0.5s ease;
}

.story-image-frame:hover img {
  transform: scale(1.05);
}

.story-left::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  width: 50px;
  height: 50px;
  border-top: 3px solid var(--accent-gold);
  border-left: 3px solid var(--accent-gold);
}

.story-left::after {
  content: "";
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 50px;
  height: 50px;
  border-bottom: 3px solid var(--accent-gold);
  border-right: 3px solid var(--accent-gold);
}

.story-right {
  font-size: 1.05rem;
  color: var(--text-gray);
}

.story-right p:first-of-type::first-letter {
  font-family: var(--font-title);
  font-size: 3.5rem;
  float: left;
  line-height: 1;
  padding-right: 12px;
  color: var(--accent-gold);
  font-weight: 700;
}

.story-right p {
  margin-bottom: 24px;
}

.story-right strong {
  color: var(--text-white);
}

.story-quote {
  font-family: var(--font-title);
  font-size: 1.5rem;
  color: var(--text-gold-light);
  line-height: 1.4;
  margin: 30px 0;
  padding-left: 20px;
  border-left: 2px solid var(--accent-gold);
  font-style: italic;
}

@media (max-width: 992px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .story-left {
    max-width: 450px;
    margin: 0 auto;
  }
}

/* 🔹 Pain Section (Grid Columns) */
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.pain-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: rgba(224, 76, 76, 0.02);
  border: 1px solid rgba(224, 76, 76, 0.08);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.pain-card:hover {
  background: rgba(224, 76, 76, 0.05);
  border-color: rgba(224, 76, 76, 0.2);
  transform: translateY(-2px);
}

.pain-card i {
  color: var(--accent-red);
  font-size: 1.4rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.pain-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
  color: var(--text-gray);
}

.pain-card strong {
  color: var(--text-white);
}

@media (max-width: 768px) {
  .pain-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.problem-resolution {
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: 20px;
  padding: 50px 40px;
  margin-top: 80px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  position: relative;
  overflow: hidden;
}

.problem-resolution::before {
  content: "✨";
  position: absolute;
  top: 15px;
  font-size: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
}

.problem-resolution h3 {
  font-size: 2.2rem;
  margin-bottom: 24px;
}

.problem-resolution p {
  color: var(--text-gray);
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 20px;
}

@media (max-width: 768px) {
  .problem-resolution h3 {
    font-size: 1.7rem;
  }
}

/* 🔹 Offer Section (2 Columns Split Layout) */
.offer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: stretch;
  margin-top: 50px;
}

.offer-left {
  display: flex;
  flex-direction: column;
}

.offer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.offer-list li {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
}

.offer-list li span.title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.offer-list li span.title i {
  color: var(--accent-gold);
}

.offer-list li span.val {
  font-weight: 700;
  color: var(--accent-red);
  font-size: 0.95rem;
}

.offer-list li.free span.val {
  color: var(--accent-gold);
}

.offer-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(180deg, rgba(11, 31, 63, 0.6) 0%, rgba(3, 8, 22, 0.9) 100%);
  border: 2px solid var(--border-accent);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 20px 45px rgba(0,0,0,0.6);
}

.price-total-label {
  font-size: 1.25rem;
  color: var(--accent-red);
  font-weight: 700;
  margin-bottom: 5px;
  letter-spacing: 0.05em;
}

.price-savings {
  display: inline-block;
  background: var(--gold-gradient);
  color: var(--text-dark);
  font-size: 1.15rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 8px;
  margin: 10px auto 25px;
}

.price-final-label {
  font-size: 1.25rem;
  color: var(--text-gray);
  margin-bottom: 5px;
}

.price-value {
  font-size: 5rem;
  font-family: var(--font-title);
  color: var(--text-white);
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
  margin-bottom: 25px;
}

@media (max-width: 992px) {
  .offer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ==========================================================================
   INTERACTIVE MODULES TABS LAYOUT (NEW)
   ========================================================================== */
.modules-tabs-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}

/* Tab buttons */
.modules-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 20px;
}

.module-tab-btn {
  background: rgba(11, 31, 63, 0.3);
  border: 1px solid var(--border-color);
  color: var(--text-gray);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.module-tab-btn:hover {
  border-color: var(--border-accent);
  color: var(--text-white);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

.module-tab-btn.active {
  background: var(--gold-gradient);
  color: var(--text-dark);
  border-color: transparent;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Tab content layout (split column inside card) */
.modules-tab-content {
  position: relative;
  min-height: 250px;
}

.module-panel {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.module-panel.active {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  opacity: 1;
  transform: translateY(0);
}

.module-info {
  display: flex;
  flex-direction: column;
}

.module-info h3 {
  font-size: 2.2rem;
  color: var(--accent-gold);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.module-info h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--gold-gradient);
}

.module-info p {
  font-size: 1.1rem;
  color: var(--text-gray);
  line-height: 1.7;
}

.module-illustration {
  border-radius: 0;
  overflow: visible;
  border: none;
  box-shadow: none;
  max-width: 240px;
  margin: 0 auto;
  transition: transform 0.4s ease;
}

.module-illustration img {
  width: 100%;
  height: auto;
  filter: drop-shadow(5px 15px 25px rgba(0, 0, 0, 0.7));
}

.module-panel:hover .module-illustration {
  transform: translateY(-8px) scale(1.03);
}

@media (max-width: 768px) {
  .module-panel.active {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ==========================================================================
   3D MOCKUPS IN BONOS SECTION (NEW)
   ========================================================================== */
.mockup-container {
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
  position: relative;
}

.mockup-img {
  width: 100%;
  max-width: 185px;
  height: auto;
  transition: transform 0.5s ease;
  filter: drop-shadow(5px 15px 25px rgba(0, 0, 0, 0.7));
}

.bono-card:hover .mockup-img {
  transform: translateY(-8px) scale(1.03);
}

/* 🔹 Bonos Section (2 Columns) */
.bonos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.bono-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.bono-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.1);
}

.bono-badge {
  display: inline-block;
  align-self: center;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-dark);
  background: var(--accent-gold);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}

.bono-card h3 {
  font-size: 1.8rem;
  color: var(--text-white);
  margin-bottom: 15px;
  line-height: 1.3;
}

.bono-card p {
  font-size: 0.95rem;
  color: var(--text-gray);
  margin-bottom: 30px;
  flex-grow: 1;
}

.bono-val {
  font-family: var(--font-title);
  font-size: 1.25rem;
  color: var(--accent-gold);
  font-weight: 600;
}

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

/* 🔹 Testimonials Section (Video Testimonial) */
.testimonials-section {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.testimonial-video-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.testimonial-video-wrapper {
  width: 100%;
  max-width: 340px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-accent);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  background: #000;
  transition: transform 0.5s ease;
}

.testimonial-video-wrapper:hover {
  transform: scale(1.01);
}

.testimonial-video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
}

/* 🔹 Guarantee (Columns Split) */
.guarantee-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 40px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 45px;
}

.guarantee-img-container {
  display: flex;
  justify-content: center;
}

.guarantee-img {
  max-width: 140px;
  height: auto;
}

.guarantee-content h3 {
  font-size: 2.1rem;
  color: var(--accent-gold);
  margin-bottom: 15px;
}

.guarantee-content p {
  font-size: 1.05rem;
  color: var(--text-gray);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .guarantee-grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 35px 25px;
    gap: 30px;
  }
}

/* 🔹 FAQ Section (Creative 2 Columns Layout) */
.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  align-items: flex-start;
}

.faq-intro h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.faq-intro p {
  color: var(--text-gray);
  font-size: 1.1rem;
  line-height: 1.6;
}

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

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(11, 31, 63, 0.2);
  transition: all 0.3s ease;
}

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

.faq-question {
  width: 100%;
  padding: 22px 24px;
  background: none;
  border: none;
  color: var(--text-white);
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.faq-question i {
  font-size: 0.95rem;
  color: var(--accent-gold);
  transition: transform 0.3s ease;
}

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

.faq-item.active {
  border-color: var(--border-accent);
  background: var(--bg-card);
}

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

.faq-answer-inner {
  padding: 0 24px 24px;
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* 🔹 Footer */
footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--border-color);
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-gray);
}

footer p {
  margin-bottom: 16px;
}

footer .disclaimer {
  max-width: 800px;
  margin: 24px auto 0;
  opacity: 0.5;
  line-height: 1.5;
}

/* ==========================================================================
   CUPOS WIDGET (LUXURY VERSION)
   ========================================================================== */
.cupos-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 0 25px;
}

.cupos-card {
  width: 100%;
  text-align: center;
  padding: 24px;
  color: var(--text-white);
  border: 1px solid var(--border-accent);
  border-radius: 16px;
  background: rgba(3, 8, 22, 0.7);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.cupos-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}

.cupos-title {
  margin: 8px 0;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

#cupos-num {
  display: inline-block;
  min-width: 2ch;
  margin: 0 0.1em;
  padding: 0 0.25em;
  font-weight: 900;
  background: var(--gold-gradient);
  color: var(--text-dark);
  border-radius: 6px;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
  animation: vibrar 0.8s infinite alternate ease-in-out;
}

.cupos-bar {
  height: 6px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
  margin: 15px auto 10px;
  max-width: 320px;
}

#cupos-fill {
  height: 100%;
  width: 100%;
  background: var(--gold-gradient);
  transform-origin: left center;
  transition: transform 0.5s ease;
}

.cupos-sub {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* 🔹 Section Background Decorations (Flyer Background) */
.hero,
#oferta,
.testimonials-section {
  background-image: url('bootcamp/navy_gold_background.png');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
}

/* 🔹 Testimonial Images Slider */
.testimonial-images-slider {
  position: relative;
  max-width: 960px;
  margin: 40px auto 0;
  padding: 0 55px; /* Gutter space for buttons so they don't cover image text */
}

.slider-track-container {
  overflow: hidden;
  width: 100%;
  border-radius: 16px;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.slider-slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider-slide img {
  width: 100%;
  height: auto;
  max-height: none;
  border-radius: 12px;
  border: 1px solid var(--border-accent);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  transition: transform 0.4s ease;
}

.slider-slide img:hover {
  transform: scale(1.01);
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(3, 8, 22, 0.9);
  border: 1px solid var(--border-color);
  color: var(--accent-gold);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.slider-btn:hover {
  background: var(--accent-gold);
  color: var(--text-dark);
  border-color: var(--accent-gold);
}

.slider-btn.prev-slide {
  left: 5px;
}

.slider-btn.next-slide {
  right: 5px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: var(--accent-gold);
  transform: scale(1.25);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

/* Responsive adjustments for Testimonials Slider */
@media (max-width: 768px) {
  .testimonial-images-slider {
    padding: 0 45px;
    margin-top: 30px;
  }
  
  .slider-btn {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }
  
  .slider-btn.prev-slide {
    left: 2px;
  }
  
  .slider-btn.next-slide {
    right: 2px;
  }
}

@media (max-width: 480px) {
  .testimonial-images-slider {
    padding: 0 35px;
    margin-top: 20px;
  }
  
  .slider-btn {
    width: 30px;
    height: 30px;
    font-size: 0.75rem;
  }
  
  .slider-btn.prev-slide {
    left: 0;
  }
  
  .slider-btn.next-slide {
    right: 0;
  }
}

/* 🔹 Flyer Style Hero Header */
.hero-header-flyer {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

.flyer-top-hook {
  font-family: var(--font-title);
  font-size: 2.1rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.35;
  color: #fbe6af;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 25px;
  letter-spacing: 0.01em;
}

.flyer-category-container {
  display: inline-block;
  margin-bottom: 15px;
}

.flyer-category {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--text-white);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1;
}

.flyer-underline {
  height: 3px;
  width: 100%;
  max-width: 250px;
  background: linear-gradient(90deg, transparent 0%, #D4AF37 20%, #fff 50%, #D4AF37 80%, transparent 100%);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
  margin-top: 10px;
  margin-bottom: 25px;
}

.flyer-main-title {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 3.6rem;
  line-height: 1.05;
  text-transform: uppercase;
  background: linear-gradient(135deg, #F4D068 0%, #D4AF37 45%, #AA771C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
  filter: drop-shadow(0px 4px 15px rgba(0, 0, 0, 0.6));
  display: inline-block;
}

.flyer-schedule-bar {
  border-left: 3px solid var(--accent-gold);
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  margin-bottom: 25px;
  width: fit-content;
}

.flyer-schedule-bar .schedule-item {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.1;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.flyer-schedule-bar img,
.schedule-badge img {
  display: inline-block !important;
  vertical-align: middle;
}

.flyer-subtitle {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-gray);
  line-height: 1.7;
  max-width: 600px;
  margin-top: 15px;
}

.flyer-subtitle strong {
  color: var(--text-white);
  font-weight: 700;
}

/* Responsive design for Flyer Style Hero Header */
@media (max-width: 1200px) {
  .flyer-main-title {
    font-size: 3.0rem;
  }
  .flyer-top-hook {
    font-size: 1.9rem;
  }
}

@media (max-width: 992px) {
  .hero-header-flyer {
    align-items: center;
    text-align: center;
  }
  .flyer-top-hook {
    font-size: 1.8rem;
    text-align: center;
  }
  .flyer-category {
    font-size: 1.8rem;
    letter-spacing: 0.15em;
  }
  .flyer-underline {
    margin-left: auto;
    margin-right: auto;
  }
  .flyer-main-title {
    font-size: 3.5rem;
    text-align: center;
  }
  .flyer-schedule-bar {
    border-left: none;
    border-top: 1px solid rgba(212, 175, 55, 0.4);
    border-bottom: 1px solid rgba(212, 175, 55, 0.4);
    padding: 12px 25px;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    margin: 15px auto 25px;
  }
  .flyer-schedule-bar .schedule-item {
    font-size: 1.1rem;
  }
  .flyer-subtitle {
    margin: 15px auto 0;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .flyer-top-hook {
    font-size: 1.4rem;
  }
  .flyer-category {
    font-size: 1.5rem;
    letter-spacing: 0.12em;
  }
  .flyer-main-title {
    font-size: 2.6rem;
  }
  .flyer-schedule-bar {
    gap: 12px;
    padding: 10px 15px;
  }
  .flyer-schedule-bar .schedule-item {
    font-size: 0.9rem;
  }
  .flyer-subtitle {
    font-size: 1rem;
  }
}
