/* ==========================================================================
   CSS DESIGN SYSTEM & GENERAL RESETS
   ========================================================================== */

:root {
  /* Colors - Premium Warm Light Mode */
  --bg-darker: #fbfaf6;       /* Warm cream off-white base */
  --bg-card: #ffffff;         /* Pure white cards */
  --bg-card-hover: #f5f4ee;
  
  --text-white: #1a1c22;      /* Deep charcoal for body text */
  --text-muted: #626875;      /* Slate grey for muted text */
  
  /* Brand Accents */
  --cbr-gold: #b59410;        /* Slightly deeper gold for white bg contrast */
  --cbr-gold-dark: #8a6f05;   /* Dark Bronze */
  --cbr-gold-gradient: linear-gradient(135deg, #d8b427 0%, #b59410 50%, #8a6f05 100%);
  
  --cbr-red: #d32f2f;         /* Elegant Crimson/Red */
  --cbr-red-dark: #9a0007;
  --cbr-red-gradient: linear-gradient(135deg, #e53935 0%, #c62828 100%);
  
  --border-color: rgba(26, 28, 34, 0.08); /* Transparent charcoal borders */
  
  /* Layout constraints */
  --mobile-width: 480px;
  
  /* Fonts */
  --font-header: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  width: 100%;
  height: 100%;
  background-color: #e8e6e0; /* Warm sand-grey backdrop */
  font-family: var(--font-body);
  color: var(--text-white);
  overflow: hidden; /* Prevent bounce outside frame */
  display: flex;
  justify-content: center;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
  background: var(--cbr-gold-dark);
  border-radius: 99px;
}

/* Centered Mobile Simulator View for Desktop */
.mobile-frame {
  max-width: var(--mobile-width);
  width: 100%;
  height: 100%;
  margin: 0 auto;
  background-color: var(--bg-darker);
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 50px rgba(26, 28, 34, 0.15), 0 0 100px rgba(181, 148, 16, 0.03);
  border-left: 1px solid rgba(0, 0, 0, 0.02);
  border-right: 1px solid rgba(0, 0, 0, 0.02);
}

.scroll-container {
  flex: 1;
  overflow-y: auto;
  scroll-behavior: smooth;
  position: relative;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

/* Announcement Bar */
.announcement-bar {
  background: #16171a;
  font-family: var(--font-header);
  font-weight: 700;
  font-size: 9.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  min-height: 28px;
  height: auto;
  padding: 6px 12px;
  line-height: 1.3;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  z-index: 100;
  color: #f3c623;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* Header */
.main-header {
  background: rgba(251, 250, 246, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  z-index: 90;
}

.logo {
  font-family: var(--font-header);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
}

.header-logo-link {
  display: flex;
  align-items: center;
  transition: opacity 0.2s ease;
  text-decoration: none;
}
.header-logo-link img {
  height: 100%;
  width: auto;
  display: block;
}
.header-logo-link:active {
  opacity: 0.85;
}

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

.logo-sub {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-left: 5px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  padding-left: 5px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.instagram-icon {
  color: #e1306c; /* Brand Pink */
  font-size: 20px;
  transition: transform 0.2s ease, opacity 0.2s ease;
  display: inline-flex;
  text-decoration: none !important;
}
.instagram-icon:active {
  transform: scale(0.9);
  opacity: 0.8;
}

.whatsapp-icon-header {
  color: #25d366; /* Brand Green */
  font-size: 20px;
  transition: transform 0.2s ease, opacity 0.2s ease;
  display: inline-flex;
  text-decoration: none !important;
}
.whatsapp-icon-header:active {
  transform: scale(0.9);
  opacity: 0.8;
}


/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
  position: relative;
  min-height: 600px;
  padding: 80px 24px 12px;
  display: flex;
  align-items: flex-end;
  background-image: url('img/new-hero.jpg'); /* Alt image mapping */
  background-size: cover;
  background-position: center 25%;
  background-repeat: no-repeat;
}

/* Rich gradient overlay to fade to warm off-white and make text pop */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom, 
    rgba(255, 255, 255, 0) 0%,    /* Completely clear at the top */
    rgba(255, 255, 255, 0) 30%,   /* Stays 100% sharp through her face/shoulders */
    rgba(255, 255, 255, 0.7) 55%, /* Softly starts fading behind the headline */
    rgba(255, 255, 255, 1) 85%    /* Solid white by the time it hits the button block */
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.badge-row {
  margin-bottom: 12px;
}

.badge {
  display: inline-block;
  font-family: var(--font-header);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 99px;
  text-transform: uppercase;
}

.red-badge {
  background: rgba(229, 57, 53, 0.15);
  border: 1px solid rgba(229, 57, 53, 0.5);
  color: #ff5252;
}

.hero-section h1 {
  font-family: var(--font-header);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 10px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.hero-subhead {
  font-size: 14px;
  line-height: 1.5;
  color: #111111;
  font-weight: 500;
  margin-bottom: 24px;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.85);
}

.hero-cta-group {
  margin-bottom: 20px;
}

.btn-subtext {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 8px;
}
.btn-subtext i {
  color: var(--cbr-gold);
}

.hero-rating {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 11px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
  padding: 8px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.stars {
  color: var(--cbr-gold);
  display: flex;
  gap: 2px;
}

/* ==========================================================================
   BUTTONS & TYPOGRAPHY
   ========================================================================== */

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  width: 100%;
  padding: 15px 24px;
  border-radius: 99px;
  font-family: var(--font-header);
  font-weight: 700;
  font-size: 15px;
  text-transform: none;
  letter-spacing: 0.5px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn span i {
  margin-left: 8px;
}

.btn-primary {
  width: 78%;
  margin-left: auto;
  margin-right: auto;
}

.btn-gold {
  background: var(--cbr-gold-gradient);
  color: #08090b;
  box-shadow: 0 4px 15px rgba(229, 193, 88, 0.3);
}
.btn-gold:active {
  transform: scale(0.97);
  box-shadow: 0 2px 5px rgba(229, 193, 88, 0.2);
}

.btn-outline {
  background: transparent;
  color: var(--text-white);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}
.btn-outline:active {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Generic Section Heading */
.section-padding {
  padding: 40px 20px;
}

.section-header {
  margin-bottom: 24px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-header);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--cbr-gold);
  text-transform: uppercase;
  margin-bottom: 6px;
}

h2 {
  font-family: var(--font-header);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-white);
  letter-spacing: -0.2px;
}

/* Glassmorphism Card Style */
.glass-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(26, 28, 34, 0.08);
  border-radius: 16px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(26, 28, 34, 0.03);
}

/* ==========================================================================
   PAS SECTION & METHOD (HOW IT WORKS)
   ========================================================================== */

/* PAS */
.agitate-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.solve-box {
  border-left: 3px solid var(--cbr-gold);
}

.solve-box h3 {
  font-family: var(--font-header);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.solve-box p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
}

/* Method */
.steps-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 4px 20px;
  -webkit-overflow-scrolling: touch;
}

.steps-grid::-webkit-scrollbar {
  display: none;
}

.step-card {
  flex: 0 0 85%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  box-shadow: 0 8px 24px rgba(26, 28, 34, 0.03);
}

.step-num {
  font-family: var(--font-header);
  font-weight: 700;
  font-size: 28px;
  color: rgba(26, 28, 34, 0.06);
  line-height: 1;
  position: absolute;
  top: 15px;
  right: 20px;
}

.step-card h4 {
  font-family: var(--font-header);
  font-size: 15px;
  font-weight: 700;
  color: var(--cbr-gold);
}

.step-card p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
}

/* ==========================================================================
   PROOF BATTERY (TRANSFORMATIONS & CHATS)
   ========================================================================== */

.transformations-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.transformation-card {
  padding: 15px;
}

.image-split {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.img-box {
  flex: 1;
  position: relative;
  aspect-ratio: 2/3;
  overflow: hidden;
  border-radius: 8px;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-tag {
  position: absolute;
  bottom: 8px;
  left: 8px;
  font-family: var(--font-header);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: rgba(20, 23, 29, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 3px 6px;
  border-radius: 4px;
  color: var(--cbr-gold);
}



.card-details h4 {
  font-family: var(--font-header);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}

.results-stat {
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 8px;
}

.testimonial-quote {
  font-size: 12px;
  font-style: italic;
  line-height: 1.5;
  color: var(--text-muted);
  border-left: 2px solid rgba(255, 255, 255, 0.1);
  padding-left: 8px;
}

/* Chat bubble styling */
.chat-wins-header {
  margin-top: 30px;
  margin-bottom: 15px;
}
.chat-wins-header h4 {
  font-family: var(--font-header);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.chat-bubbles-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chat-bubble {
  max-width: 85%;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 12.5px;
  line-height: 1.45;
  position: relative;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  color: #303030 !important;
}

.chat-bubble.received {
  background: #ffffff;
  border-top-left-radius: 0;
  align-self: flex-start;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* WhatsApp Mockup Chat Thread Card */
.chat-thread {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background-image: radial-gradient(#efeae2 1px, transparent 1px);
  background-size: 12px 12px;
  background-color: #f4f1eb;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding-bottom: 8px;
  margin-bottom: 4px;
}

.chat-user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cbr-gold-gradient);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-header);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}

.chat-user-details {
  flex: 1;
  margin-left: 10px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.chat-user-details strong {
  font-size: 13px;
  color: #1a1c22;
  font-family: var(--font-header);
  font-weight: 700;
}

.chat-user-details span {
  font-size: 9px;
  color: var(--text-muted);
}

.chat-platform-icon {
  color: #25d366;
  font-size: 16px;
  flex-shrink: 0;
}

.chat-time {
  display: block;
  font-size: 9px;
  color: var(--text-muted);
  text-align: right;
  margin-top: 4px;
}

/* ==========================================================================
   ABOUT ME SECTION
   ========================================================================== */

.about-content {
  padding: 0;
  border: none;
}

.about-img-box {
  width: 65%;
  margin: 0 auto;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.about-text-box {
  padding: 24px 10px;
}

.about-text-box h2 {
  font-size: 24px;
  margin-bottom: 2px;
}

.coach-title {
  font-size: 12px;
  font-weight: 500;
  color: var(--cbr-gold);
  margin-bottom: 15px;
}

.about-text-box p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 12px;
}

/* ==========================================================================
   OFFERS & PRICING
   ========================================================================== */

.pricing-scroll-wrapper {
  width: 100%;
  overflow-x: auto;
  padding: 10px 0 35px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.pricing-scroll-wrapper::-webkit-scrollbar {
  display: none;
}
.pricing-cards-stack {
  display: flex;
  flex-direction: row;
  gap: 16px;
  padding: 0 4px;
}
.pricing-cards-stack .price-card {
  flex: 0 0 85%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  margin-bottom: 0;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 20px;
}

.featured-card {
  border: 1.5px solid var(--cbr-gold);
  background: linear-gradient(180deg, #1d2026 0%, #101216 100%);
  box-shadow: 0 10px 30px rgba(181, 148, 16, 0.15);
  transform: translateY(12px);
}

.featured-card h3,
.featured-card .price-desc,
.featured-card .card-features li {
  color: #ffffff !important;
}

.featured-card .price-value {
  color: #f3c623 !important; /* High contrast gold on dark bg */
}

.featured-card .price-tag {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.price-badge {
  background: var(--cbr-red);
  color: #fff;
  font-family: var(--font-header);
  font-weight: 700;
  font-size: 8px;
  letter-spacing: 1.5px;
  padding: 4px 8px;
  border-radius: 4px;
  align-self: flex-start;
  margin-bottom: 4px;
}

.price-card h3 {
  font-family: var(--font-header);
  font-size: 18px;
  font-weight: 700;
}

.price-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

.price-tag {
  font-family: var(--font-header);
  font-weight: 700;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 12px;
}

.price-value {
  font-size: 16px;
  color: var(--cbr-gold);
}

.card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.card-features li i {
  margin-right: 6px;
}

.btn-card {
  padding: 12px;
  font-size: 13px;
  margin-top: auto;
}

/* ==========================================================================
   ONBOARDING MULTI-STEP QUIZ
   ========================================================================== */

.quiz-container {
  padding: 24px 20px;
  border: 1px solid rgba(229, 193, 88, 0.15);
}

.quiz-header {
  margin-bottom: 24px;
}

.quiz-header span {
  font-family: var(--font-header);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 1.5px;
}

.quiz-header h3 {
  font-family: var(--font-header);
  font-size: 18px;
  font-weight: 700;
  margin: 6px 0 12px;
  line-height: 1.25;
}

/* Progress bar container */
.progress-container {
  width: 100%;
  height: 4px;
  background: rgba(26, 28, 34, 0.05);
  border-radius: 99px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: var(--cbr-gold-gradient);
  border-radius: 99px;
  transition: width 0.3s ease;
}

/* Steps */
.quiz-step {
  display: none;
}

.quiz-step.active {
  display: block;
}

/* Option radio cards */
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.quiz-option {
  cursor: pointer;
}

.quiz-option input[type="radio"] {
  display: none;
}

.option-box {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  border-radius: 12px;
  background: rgba(26, 28, 34, 0.02);
  border: 1px solid var(--border-color);
  transition: all 0.2s ease;
}

.quiz-option input[type="radio"]:checked + .option-box {
  background: rgba(229, 193, 88, 0.05);
  border-color: var(--cbr-gold);
}

.option-title {
  font-family: var(--font-header);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-white);
}

.quiz-option input[type="radio"]:checked + .option-box .option-title {
  color: var(--cbr-gold);
}

.option-desc {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Input Step Fields */
.inputs-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 24px;
}

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

.form-field label {
  font-family: var(--font-header);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-field input,
.form-field textarea {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 12px;
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--cbr-gold);
  background: #ffffff;
}

/* Controls */
.quiz-controls {
  display: flex;
  gap: 10px;
}

.quiz-controls .btn {
  flex: 1;
  padding: 12px;
  font-size: 13px;
}

.btn-prev {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border-color);
}
.btn-prev:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.hidden {
  display: none !important;
}

/* Success State */
.quiz-success-state {
  text-align: center;
  padding: 20px 0;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.success-icon-box {
  font-size: 54px;
  margin-bottom: 15px;
}

.quiz-success-state h3 {
  font-family: var(--font-header);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.quiz-success-state p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.booking-widget-wrapper {
  margin-top: 15px;
}

.widget-subtext {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ==========================================================================
   INSTAGRAM GRID & FAQS
   ========================================================================== */

/* Instagram Feed */
.feed-subhead {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: -18px;
  margin-bottom: 20px;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.insta-post {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.insta-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 9, 11, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cbr-gold);
  font-size: 16px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.insta-post:active .insta-overlay {
  opacity: 1;
}

/* Accordion FAQs */
.faq-accordion-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background: transparent;
  border: none;
  color: var(--text-white);
  font-family: var(--font-header);
  font-weight: 600;
  font-size: 13.5px;
  text-align: left;
  cursor: pointer;
}

.faq-trigger i {
  color: var(--cbr-gold);
  transition: transform 0.2s ease;
}

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

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.faq-panel p {
  padding: 0 16px 16px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--text-muted);
}

.faq-panel p strong {
  color: var(--text-white);
}

.faq-panel ul {
  list-style: disc;
  padding: 0 16px 16px 32px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.faq-panel ul li {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--text-muted);
}

/* ==========================================================================
   FOOTER & FLOATING WHATSAPP
   ========================================================================== */

.main-footer {
  background: #040507;
  color: #ffffff;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
  padding: 24px 20px 20px 20px;
}

.footer-logo {
  font-family: var(--font-header);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 6px;
}

.footer-logo img {
  display: block;
}

.main-footer .logo-sub {
  color: rgba(255, 255, 255, 0.6) !important;
}

.footer-tagline {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 4px;
}

.footer-certs {
  font-size: 10px;
  letter-spacing: 0.5px;
  color: #f3c623; /* Brighter gold for high contrast on black */
  margin-bottom: 20px;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
  font-size: 12.5px;
}

.footer-links a,
.footer-links a:link,
.footer-links a:visited {
  color: rgba(255, 255, 255, 0.85) !important;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-links a:hover,
.footer-links a:active {
  color: #f3c623 !important;
}

.footer-copy {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
  margin-top: 8px;
  text-align: left;
}





/* ==========================================================================
   NEW TRANSCRIPT-BASED SECTIONS
   ========================================================================== */

/* Back Link inside main header */
.back-link {
  color: var(--text-muted);
  text-decoration: none;
  font-family: var(--font-header);
  font-weight: 600;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}
.back-link:active {
  color: var(--cbr-gold);
}

/* Onboarding Flow Section */
.onboarding-steps-flow {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  padding-left: 10px;
  margin-top: 15px;
}

.flow-step {
  display: flex;
  gap: 16px;
  position: relative;
}

/* Vertical connector line between dots */
.flow-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 36px;
  left: 16px;
  width: 2px;
  height: calc(100% - 22px);
  background: linear-gradient(to bottom, var(--cbr-gold) 0%, rgba(26, 28, 34, 0.05) 100%);
  z-index: 1;
}

.flow-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cbr-gold-gradient);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-header);
  font-weight: 700;
  font-size: 14px;
  z-index: 2;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(181, 148, 16, 0.2);
}

.flow-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.flow-text h5 {
  font-family: var(--font-header);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-white);
}

.flow-text p {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--text-muted);
}

/* Scrollable Direct Message Wins */
.stories-scroll-wrapper {
  width: 100%;
  overflow-x: auto;
  padding: 10px 0 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar but keep functionality */
.stories-scroll-wrapper::-webkit-scrollbar {
  display: none;
}

.chat-wins-scroll {
  display: flex;
  gap: 14px;
  padding: 0 4px;
}

.scroll-item {
  flex: 0 0 85%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  margin-bottom: 0 !important;
}

.section-subtitle-small {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

.chat-wins-header {
  margin-top: 24px;
  margin-bottom: 8px;
}
.chat-wins-header h4 {
  font-family: var(--font-header);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-white);
}

/* Video Testimonials Stack */
.video-wins-header {
  margin-top: 30px;
  margin-bottom: 8px;
}
.video-wins-header h4 {
  font-family: var(--font-header);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-white);
}

.videos-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.video-container-wrapper {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  background: #111;
}

.inline-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 2;
}

.video-overlay-details {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 10;
  background: rgba(26, 28, 34, 0.82);
  padding: 5px 9px;
  border-radius: 6px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  max-width: calc(100% - 16px);
}

.video-overlay-details h5 {
  font-family: var(--font-header);
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
}

.video-overlay-details p {
  font-size: 9px;
  color: rgba(255,255,255,0.7);
  margin-top: 1px;
}

.video-backup-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f5f4ee 0%, #e8e6e0 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--cbr-gold);
  z-index: 1;
}

.play-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--cbr-gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(181, 148, 16, 0.3);
}

.video-backup-placeholder p {
  font-family: var(--font-header);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-white);
}

/* Schedule Section */
.schedule-section {
  border-top: 1px solid var(--border-color);
  margin-top: 10px;
}

.schedule-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
}

.schedule-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
}

.schedule-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.day-lbl {
  font-family: var(--font-header);
  font-weight: 600;
  font-size: 13px;
  color: var(--text-white);
}

.time-val {
  font-size: 13px;
  font-weight: 700;
  color: var(--cbr-gold);
}

.rest-day .time-val {
  color: var(--cbr-red);
}

.schedule-subtext {
  font-size: 10.5px;
  color: var(--text-muted);
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
}

.schedule-subtext i {
  color: var(--cbr-gold);
}

/* Case Study specific styling elements */
.case-study-callout {
  border: 1px solid rgba(181, 148, 16, 0.2);
  background: rgba(181, 148, 16, 0.02);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  box-shadow: inset 0 0 15px rgba(181, 148, 16, 0.01);
}
.case-study-callout h4 {
  font-family: var(--font-header);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-white);
}
.case-study-callout .btn {
  font-size: 11px;
  padding: 10px;
  margin-top: 4px;
}

.case-study-hero h1 {
  font-family: var(--font-header);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-white);
  margin: 0;
}

.case-subtitle {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 6px;
}

.stats-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 16px;
}

.stat-mini-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 12px 6px;
  text-align: center;
}

.stat-lbl {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.stat-val {
  font-family: var(--font-header);
  font-size: 13px;
  font-weight: 700;
  color: var(--cbr-gold);
}

.case-photos-section {
  padding: 0 20px;
  margin-top: -15px;
}

.case-photos-section .single-image-box img {
  border-radius: 8px;
}

.photo-caption {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 10px;
  font-style: italic;
}

.solution-empathy-block h3 {
  font-family: var(--font-header);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
  margin-top: 0;
}

.ronnie-transformation-box h3 {
  font-family: var(--font-header);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 16px;
  margin-top: 24px;
}

.detail-block {
  margin-bottom: 24px;
}
.detail-block h2,
.detail-block h3 {
  font-family: var(--font-header);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
  border-bottom: 2px solid var(--cbr-gold);
  padding-bottom: 4px;
  display: inline-block;
}
.detail-body {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
}

.solution-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
  font-size: 13px;
  color: var(--text-muted);
}
.solution-list li {
  position: relative;
  padding-left: 20px;
  line-height: 1.5;
}
.solution-list li i {
  position: absolute;
  left: 0;
  top: 3px;
  color: var(--cbr-gold);
  font-size: 12px;
}

.solution-list li .solution-emoji {
  position: absolute;
  left: 0;
  top: -1px;
  font-size: 13px;
}

.client-story-quote {
  margin-top: 12px;
  border-left: 3px solid var(--cbr-gold);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.quote-author {
  font-size: 11px;
  font-weight: 700;
  color: var(--cbr-gold);
  text-align: right;
}

/* Bonus / Fast-Action Urgency Section */
.bonus-section {
  padding: 10px 20px;
}

.bonus-card {
  border: 1px dashed rgba(181, 148, 16, 0.4);
  background: rgba(181, 148, 16, 0.02);
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 20px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 20px rgba(181, 148, 16, 0.01);
}

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

.bonus-tag {
  align-self: flex-start;
  font-family: var(--font-header);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 1.5px;
  color: var(--cbr-gold);
  background: rgba(181, 148, 16, 0.1);
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.bonus-card h3 {
  font-family: var(--font-header);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-white);
}

.bonus-card p {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--text-muted);
}

/* Closing CTA Card */
.closing-cta-section {
  padding: 20px 20px 40px;
}

.closing-cta-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 30px 20px;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.closing-cta-card h2 {
  font-family: var(--font-header);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-white);
}

.closing-cta-card p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
}

.closing-cta-card .btn {
  margin-top: 5px;
}

.cta-email-option {
  margin-top: 10px;
  margin-bottom: 5px;
}

.email-direct-link {
  font-size: 13.5px;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
  display: inline-block;
  letter-spacing: 0.3px;
}

.email-direct-link:hover {
  color: var(--cbr-gold);
  text-decoration: underline;
}

.closing-cta-card .cta-subtext {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
  font-style: italic;
}

.closing-cta-card .cta-subtext i {
  color: var(--cbr-gold);
  margin-right: 4px;
}

/* Contact Choices Grid in Closing CTA */
.contact-choices-grid {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  width: 100%;
}

.choice-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 99px;
  font-family: var(--font-header);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s ease;
}

.wa-choice {
  background-color: #25d366;
  color: white;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.15);
}
.wa-choice:active {
  transform: scale(0.97);
  background-color: #20ba59;
}

.email-choice {
  background-color: var(--text-white);
  color: var(--bg-darker);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}
.email-choice:active {
  transform: scale(0.97);
  opacity: 0.9;
}

.calendly-choice {
  background: var(--cbr-gold-gradient);
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(181, 148, 16, 0.2);
}
.calendly-choice:active {
  transform: scale(0.97);
  opacity: 0.9;
}

/* Desktop Glow Ambient Background Overlay */
@media (min-width: 481px) {
  body {
    background: radial-gradient(circle at 50% 30%, rgba(181, 148, 16, 0.05) 0%, rgba(232, 230, 224, 1) 75%), #e8e6e0;
  }
}

/* ==========================================================================
   TRANSFORMATION SPOTLIGHT SLIDER
   ========================================================================== */

.transformation-gallery-header {
  margin-top: 30px;
  margin-bottom: 8px;
}

.transformation-gallery-header h4 {
  font-family: var(--font-header);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-white);
}

.transformations-scroll-wrapper {
  width: 100%;
  overflow-x: auto;
  padding: 10px 0 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.transformations-scroll-wrapper::-webkit-scrollbar {
  display: none;
}

.transformations-scroll {
  display: flex;
  gap: 16px;
  padding: 0 4px;
}

.transformation-slide {
  flex: 0 0 90%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
}

.single-image-box {
  width: 100%;
  position: relative;
  background: transparent;
  border: none;
}

.single-image-box img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

.slide-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.slide-details h5 {
  font-family: var(--font-header);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-white);
}

.slide-tag {
  font-size: 10px;
  font-weight: 700;
  color: var(--cbr-gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.slide-desc {
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-muted);
}

.slide-link {
  font-family: var(--font-header);
  font-size: 11px;
  font-weight: 700;
  color: var(--cbr-gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  transition: gap 0.2s ease;
}

.slide-link:active {
  gap: 8px;
}

/* Grab cursors for drag-to-scroll */
.transformations-scroll-wrapper,
.steps-grid,
.stories-scroll-wrapper,
.ronnie-transform-grid {
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.transformations-scroll-wrapper:active,
.steps-grid:active,
.stories-scroll-wrapper:active,
.ronnie-transform-grid:active {
  cursor: grabbing;
}

/* Story Points for Spotlights */
.story-points {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
  border-top: 1px dashed var(--border-color);
  padding-top: 10px;
}
.story-point {
  font-size: 11.5px !important;
  line-height: 1.5 !important;
  color: var(--text-muted) !important;
  margin-bottom: 0 !important;
}
.story-point strong {
  color: var(--text-white);
}
.story-point i {
  margin-right: 4px;
}

/* Google Reviews Header Badge */
.google-reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--border-color);
  border-radius: 99px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(26, 28, 34, 0.02);
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  margin-top: 4px;
}
.google-reviews-badge:active {
  transform: scale(0.97);
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--cbr-gold);
}
.google-reviews-badge svg {
  display: block;
  flex-shrink: 0;
}
.google-reviews-badge-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.1;
}
.google-reviews-badge-title {
  font-family: var(--font-header);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-white);
}
.google-reviews-badge-subtitle {
  font-size: 8.5px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Google Review Card inside Masonry (Slim Horizontal style) */
.google-review-card-cta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 12px;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  border-radius: 8px;
  transition: transform 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
  width: 100%;
  margin-top: 0;
}
.google-review-card-cta:active {
  transform: scale(0.97);
  border-color: var(--cbr-gold);
}

.google-speech-bubble {
  width: 38px;
  height: 38px;
  background: #ffffff;
  border-radius: 6px;
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}
/* Speech bubble pointer pointing right */
.google-speech-bubble::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: #ffffff;
  border-right: 1.5px solid rgba(0, 0, 0, 0.08);
  border-top: 1.5px solid rgba(0, 0, 0, 0.08);
  z-index: 1;
}

.google-speech-bubble svg {
  position: relative;
  z-index: 2;
  display: block;
}

.google-review-info-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  min-width: 0; /* Prevents overflow */
  padding-left: 2px;
}

.google-review-info-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  color: #5f6368;
  line-height: 1;
}

.google-review-info-rating-row {
  display: flex;
  align-items: center;
  gap: 4px;
}

.google-review-info-score {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 800;
  color: #1a1c22;
  line-height: 1;
}

.google-review-info-stars {
  display: flex;
  gap: 1px;
  color: #FBBC05;
  font-size: 8px;
}

.google-review-info-count {
  font-size: 9px;
  color: #70757a;
  font-weight: 500;
  white-space: nowrap;
}

/* Reviews Masonry Grid (Desktop / Mobile legibility) */
.reviews-masonry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
  margin-bottom: 24px;
}
.masonry-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.review-screenshot-item {
  width: 100%;
  display: block;
}
.review-screenshot-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  border: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}
.reviews-masonry-grid .video-container-wrapper {
  width: 100%;
  aspect-ratio: 9/11;
  border-radius: 12px;
  border: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

/* Video Mute / Sound Toggle Overlay Indicator */
.mute-indicator {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  background: rgba(26, 28, 34, 0.75);
  color: #ffffff;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* Centered Play / Pause Button Overlay */
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 6;
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.48);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 22px;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.2s ease;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  border: 2px solid rgba(255,255,255,0.25);
}

.video-play-btn.hidden {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8);
}

/* Coach's Own Transformation Carousel */
.ronnie-transform-grid {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 5px 0 15px;
  -webkit-overflow-scrolling: touch;
}
.ronnie-transform-grid::-webkit-scrollbar {
  display: none;
}
.coach-transform-slide {
  flex: 0 0 48%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.transform-img-box {
  width: 100%;
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 3px solid var(--cbr-gold);
}

.transform-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coach-slide-desc {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--text-muted);
  margin-top: 4px;
  text-align: center;
}

/* Hide scrollbar for solve carousel track */
.solve-carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(8, 9, 11, 0.65);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  color: var(--text-white);
  font-size: 10px;
  font-weight: 500;
  padding: 6px 8px;
  text-align: center;
  z-index: 2;
  box-sizing: border-box;
  letter-spacing: 0.3px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ==========================================================================
   DEVELOPER MESSAGE POP-UP MODAL
   ========================================================================== */

.popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 28, 34, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.popup-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

.popup-card {
  width: 100%;
  background: var(--bg-darker);
  border-radius: 20px;
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 40px rgba(26, 28, 34, 0.2);
  padding: 30px 24px 24px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 85%;
  display: flex;
  flex-direction: column;
}

.popup-overlay.visible .popup-card {
  transform: translateY(0);
}

.popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(26, 28, 34, 0.06);
  border: none;
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.2s ease;
  z-index: 10;
}

.popup-close.unlocked {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.popup-close:active {
  transform: scale(0.9);
  background: rgba(26, 28, 34, 0.12);
}

.popup-body {
  overflow-y: auto;
  padding-right: 4px;
}

.popup-body::-webkit-scrollbar {
  width: 3px;
}
.popup-body::-webkit-scrollbar-thumb {
  background: rgba(26, 28, 34, 0.15);
  border-radius: 10px;
}

.popup-headline {
  font-family: var(--font-header);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 14px;
  color: var(--text-white);
}

.popup-body p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.popup-body p:last-child {
  margin-bottom: 0;
}

.popup-scroll-prompt {
  font-weight: 600;
  color: var(--cbr-gold) !important;
  font-style: italic;
  margin-top: 10px;
}

/* ==========================================================================
   REVIEW IMAGE LIGHTBOX MODAL
   ========================================================================== */
.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 9, 11, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  cursor: zoom-out;
  padding: 24px;
  box-sizing: border-box;
  border-radius: 24px;
}

.lightbox-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-overlay img {
  max-width: 95%;
  max-height: 85%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-overlay.visible img {
  transform: scale(1.05);
}

/* ==========================================================================
   INFINITE AUTOPLAY CAROUSEL
   ========================================================================== */
.infinite-carousel-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  margin-top: 24px;
  background: transparent;
  padding: 10px 0;
}

.infinite-carousel-track {
  display: flex;
  width: max-content;
  gap: 12px;
  animation: scroll-infinite 35s linear infinite;
}

.infinite-carousel-item {
  flex: 0 0 150px;
  width: 150px;
  height: 225px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: #000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.infinite-carousel-item img,
.infinite-carousel-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes scroll-infinite {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}




@media (max-width: 480px) {
  html, body {
    display: block;
    background-color: var(--bg-darker);
  }
  .mobile-frame {
    border-left: none;
    border-right: none;
    box-shadow: none;
    margin: 0;
    width: 100%;
    max-width: 100%;
  }
}
