/* ==========================================================================
   COG LANDING PAGE - MODERN DARK LUXURY DESIGN SYSTEM
   Programmed Black Tourmaline for Energetic Protection
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Palette */
  --bg-dark: #090a0f;
  --bg-surface: #12141d;
  --bg-surface-elevated: #191c29;
  --bg-glass: rgba(22, 26, 38, 0.75);
  --bg-glass-card: rgba(255, 255, 255, 0.03);
  
  --color-gold: #e5c158;
  --color-gold-light: #f6e6b4;
  --color-gold-dark: #b8932b;
  --gold-glow: rgba(229, 193, 88, 0.25);
  --purple-glow: rgba(138, 43, 226, 0.2);
  
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --text-dim: #6b7280;
  
  --border-gold: rgba(229, 193, 88, 0.25);
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-subtle: rgba(255, 255, 255, 0.05);

  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

/* Reset & Basic Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
}

.text-gold {
  color: var(--color-gold);
  background: linear-gradient(135deg, #fff2cb 0%, #e5c158 50%, #b88d26 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(229, 193, 88, 0.1);
  border: 1px solid var(--border-gold);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-gold);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 90px 0;
  position: relative;
}

/* Glassmorphism Panel */
.glass-panel {
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.glass-card {
  background: var(--bg-glass-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all var(--transition-normal);
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3), 0 0 20px var(--gold-glow);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: 1px solid transparent;
  outline: none;
}

.btn-primary {
  background: linear-gradient(135deg, #f6e6b4 0%, #e5c158 50%, #b8932b 100%);
  color: #090a0f;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(229, 193, 88, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(229, 193, 88, 0.5);
  background: linear-gradient(135deg, #ffffff 0%, #f6e6b4 50%, #e5c158 100%);
}

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

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--border-gold);
  transform: translateY(-2px);
  color: var(--color-gold-light);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
}

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.cog-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition-normal);
}

.cog-navbar.scrolled {
  background: rgba(9, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  padding: 12px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.logo-symbol {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #e5c158, #8a2be2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 1.2rem;
  box-shadow: 0 0 15px var(--gold-glow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

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

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

/* ==========================================================================
   1. HERO BANNER
   ========================================================================== */
.hero-section {
  padding-top: 160px;
  padding-bottom: 80px;
  background: radial-gradient(circle at 70% 30%, rgba(138, 43, 226, 0.12) 0%, transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(229, 193, 88, 0.1) 0%, transparent 50%),
              var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.hero-subheading {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 600px;
  line-height: 1.65;
}

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

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

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: 0 0 50px rgba(229, 193, 88, 0.2), 0 20px 60px rgba(0, 0, 0, 0.8);
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform var(--transition-slow);
}

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

.aura-glow-effect {
  position: absolute;
  top: -20%;
  left: -20%;
  right: -20%;
  bottom: -20%;
  background: radial-gradient(circle, rgba(229, 193, 88, 0.3) 0%, rgba(138, 43, 226, 0.15) 40%, transparent 70%);
  z-index: -1;
  filter: blur(40px);
  animation: auraPulse 6s ease-in-out infinite alternate;
}

@keyframes auraPulse {
  0% { opacity: 0.5; transform: scale(0.95); }
  100% { opacity: 0.9; transform: scale(1.05); }
}

.hero-badge-floating {
  position: absolute;
  bottom: 20px;
  left: -20px;
  background: rgba(18, 20, 29, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-gold);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.badge-icon {
  width: 40px;
  height: 40px;
  background: rgba(229, 193, 88, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 1.2rem;
}

.badge-text strong {
  display: block;
  font-size: 0.95rem;
  color: #fff;
}
.badge-text span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   2. QUICK BENEFITS STRIP
   ========================================================================== */
.benefits-strip-section {
  padding: 30px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.benefit-card-mini {
  background: var(--bg-glass-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all var(--transition-fast);
}

.benefit-card-mini:hover {
  border-color: var(--border-gold);
  background: rgba(229, 193, 88, 0.05);
  transform: translateY(-2px);
}

.benefit-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e5c158, #b8932b);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.benefit-card-mini span {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
}

/* ==========================================================================
   3. VIDEO SECTION
   ========================================================================== */
.video-section {
  background: radial-gradient(circle at 50% 50%, rgba(26, 30, 45, 0.7) 0%, var(--bg-dark) 100%);
}

.video-container-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  max-width: 960px;
  margin: 0 auto 36px auto;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-thumbnail-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.video-thumbnail-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
  transition: opacity var(--transition-normal), transform var(--transition-slow);
}

.video-thumbnail-wrapper:hover img {
  opacity: 0.9;
  transform: scale(1.03);
}

.play-button-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
}

.play-btn-circle {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f6e6b4 0%, #e5c158 100%);
  color: #090a0f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  padding-left: 6px;
  box-shadow: 0 0 30px var(--gold-glow);
  transition: all var(--transition-fast);
  animation: pulsePlay 2s infinite;
}

.video-thumbnail-wrapper:hover .play-btn-circle {
  transform: scale(1.1);
  box-shadow: 0 0 50px rgba(229, 193, 88, 0.7);
}

@keyframes pulsePlay {
  0% { box-shadow: 0 0 0 0 rgba(229, 193, 88, 0.6); }
  70% { box-shadow: 0 0 0 25px rgba(229, 193, 88, 0); }
  100% { box-shadow: 0 0 0 0 rgba(229, 193, 88, 0); }
}

.video-cta-box {
  text-align: center;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  padding: 30px;
  border-radius: var(--radius-lg);
  max-width: 600px;
  margin: 0 auto;
}

.video-cta-box p {
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 16px;
  font-weight: 500;
}

/* Modal for Video */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  padding: 24px;
}

.video-modal.active {
  opacity: 1;
  visibility: visible;
}

.video-modal-content {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
}

.video-modal-close {
  position: absolute;
  top: -45px;
  right: 0;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
}

/* ==========================================================================
   4. ARE YOU EXPERIENCING THESE CHALLENGES?
   ========================================================================== */
.challenges-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.challenge-column {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.challenge-column.personal-col {
  border-top: 4px solid #ef4444;
}

.challenge-column.business-col {
  border-top: 4px solid var(--color-gold);
}

.col-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.col-header-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.personal-col .col-header-icon {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
}

.business-col .col-header-icon {
  background: rgba(229, 193, 88, 0.15);
  color: var(--color-gold);
}

.col-header h3 {
  font-size: 1.5rem;
}

.challenge-list {
  list-style: none;
  display: grid;
  gap: 16px;
}

.challenge-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.02);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-fast);
}

.challenge-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(4px);
}

.challenge-icon-bullet {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.personal-col .challenge-icon-bullet {
  background: rgba(239, 68, 68, 0.2);
  color: #f87171;
}

.business-col .challenge-icon-bullet {
  background: rgba(229, 193, 88, 0.2);
  color: var(--color-gold);
}

.challenge-item span {
  font-weight: 500;
  font-size: 1.02rem;
  color: var(--text-main);
}

/* ==========================================================================
   5. WHY BLACK TOURMALINE?
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.why-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: all var(--transition-normal);
}

.why-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 25px var(--gold-glow);
}

.why-card-number {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.2rem;
  color: rgba(255, 255, 255, 0.06);
}

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(229, 193, 88, 0.15), rgba(138, 43, 226, 0.15));
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--color-gold);
  margin-bottom: 24px;
}

.why-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* ==========================================================================
   6. WHO CAN BENEFIT?
   ========================================================================== */
.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.who-card {
  background: var(--bg-glass-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  transition: all var(--transition-normal);
}

.who-card:hover {
  background: rgba(229, 193, 88, 0.06);
  border-color: var(--border-gold);
  transform: translateY(-4px);
}

.who-emoji-box {
  font-size: 2.2rem;
  margin-bottom: 12px;
  display: inline-block;
}

.who-card h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
}

/* ==========================================================================
   7. BUSINESS PROTECTION SECTION
   ========================================================================== */
.business-protection-section {
  background: linear-gradient(180deg, #0d0e14 0%, #06070a 100%);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  position: relative;
  overflow: hidden;
}

.business-protection-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(229, 193, 88, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.business-content-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 48px;
  margin-bottom: 40px;
}

.business-benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.biz-benefit-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  gap: 16px;
}

.biz-benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(229, 193, 88, 0.15);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.biz-benefit-info h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.biz-benefit-info p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* ==========================================================================
   8. PERSONAL & FAMILY PROTECTION
   ========================================================================== */
.personal-section {
  background: radial-gradient(circle at 30% 50%, rgba(138, 43, 226, 0.08) 0%, transparent 60%), var(--bg-dark);
}

.personal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.personal-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition-normal);
}

.personal-card:hover {
  border-color: var(--color-gold-light);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.personal-icon {
  font-size: 2.5rem;
  margin-bottom: 14px;
}

.personal-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.personal-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ==========================================================================
   9. WHY PERSONALIZED PROGRAMMING? (TIMELINE)
   ========================================================================== */
.timeline-wrapper {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline-line {
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #e5c158, #8a2be2, #e5c158);
  z-index: 1;
}

.timeline-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
  z-index: 2;
}

.timeline-step-item {
  text-align: center;
}

.step-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 2px solid var(--color-gold);
  color: var(--color-gold);
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  box-shadow: 0 0 20px var(--gold-glow);
  transition: all var(--transition-fast);
}

.timeline-step-item:hover .step-circle {
  background: var(--color-gold);
  color: #000;
  transform: scale(1.1);
}

.timeline-step-item h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.timeline-step-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.timeline-note-box {
  margin-top: 40px;
  background: var(--bg-glass);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  font-size: 0.98rem;
  color: var(--color-gold-light);
}

/* ==========================================================================
   10. TESTIMONIALS
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  margin-bottom: 16px;
  display: flex;
  gap: 4px;
}

.testimonial-quote {
  font-style: italic;
  color: var(--text-main);
  margin-bottom: 24px;
  font-size: 0.98rem;
  line-height: 1.65;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 16px;
}

.user-avatar-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e5c158, #8a2be2);
  color: #000;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.user-info h5 {
  font-size: 1rem;
  color: #fff;
}
.user-info span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   11. FAQ ACCORDION
   ========================================================================== */
.faq-accordion {
  max-width: 840px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

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

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

.faq-question {
  width: 100%;
  padding: 22px 28px;
  background: none;
  border: none;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.08rem;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-toggle-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast);
  color: var(--color-gold);
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(180deg);
  background: var(--color-gold);
  color: #000;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 28px;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  padding-bottom: 22px;
}

/* ==========================================================================
   12. LEAD CAPTURE SECTION (MAIN FORM)
   ========================================================================== */
.lead-section {
  background: radial-gradient(circle at 50% 30%, rgba(229, 193, 88, 0.07) 0%, var(--bg-dark) 70%);
}

.lead-form-wrapper {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 48px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: #e5e7eb;
  margin-bottom: 8px;
}

.form-group label .star {
  color: var(--color-gold);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: rgba(9, 10, 15, 0.7);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.98rem;
  transition: all var(--transition-fast);
  outline: none;
}

.form-control:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 15px var(--gold-glow);
  background: rgba(9, 10, 15, 0.9);
}

select.form-control {
  cursor: pointer;
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

/* Multi-select Pills */
.pill-checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.pill-checkbox-item {
  position: relative;
}

.pill-checkbox-item input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.pill-label {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: 50px;
  font-size: 0.88rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.pill-checkbox-item input:checked + .pill-label {
  background: rgba(229, 193, 88, 0.15);
  border-color: var(--color-gold);
  color: var(--color-gold-light);
  font-weight: 600;
}

.pill-label:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

/* Radio Group Time */
.time-radio-group {
  display: flex;
  gap: 16px;
}

.radio-pill-item input {
  display: none;
}

.radio-pill-label {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: rgba(9, 10, 15, 0.7);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.radio-pill-item input:checked + .radio-pill-label {
  border-color: var(--color-gold);
  color: #fff;
  background: rgba(229, 193, 88, 0.1);
}

/* Checkbox Consent */
.checkbox-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 24px 0;
}

.checkbox-consent input {
  width: 18px;
  height: 18px;
  accent-color: var(--color-gold);
  margin-top: 2px;
  cursor: pointer;
}

.checkbox-consent span {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.form-actions-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

/* Form alert status */
.form-alert {
  padding: 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.form-alert-success {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid #22c55e;
  color: #4ade80;
}
.form-alert-error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid #ef4444;
  color: #f87171;
}

/* ==========================================================================
   13. FINAL CTA BANNER
   ========================================================================== */
.final-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1c180b 0%, #2e240c 50%, #171309 100%);
  border-top: 1px solid var(--color-gold);
  text-align: center;
  position: relative;
}

.final-cta-box h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--color-gold-light);
  margin-bottom: 16px;
}

.final-cta-box p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  margin: 0 auto 32px auto;
}

.final-cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Footer */
.cog-footer {
  background: #050608;
  padding: 30px 0;
  border-top: 1px solid var(--border-subtle);
  color: var(--text-dim);
  font-size: 0.9rem;
  text-align: center;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all var(--transition-fast);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-subheading {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-visual {
    margin-top: 30px;
  }
  .challenges-grid {
    grid-template-columns: 1fr;
  }
  .timeline-line {
    display: none;
  }
  .timeline-steps {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .timeline-step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
  }
  .step-circle {
    margin: 0;
    flex-shrink: 0;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
  .lead-form-wrapper {
    padding: 24px;
  }
  .business-content-box {
    padding: 24px;
  }
}
