/* Cedulogy Ultra-Premium Responsive Design System */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Oswald:wght@500;600;700&display=swap');

:root {
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'Oswald', 'Arial Narrow', sans-serif;

  --bg-dark: #0b090a;
  --bg-surface: #161214;
  --bg-surface-2: #211b1e;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  
  --text-main: #ffffff;
  --text-muted: #a3959e;
  --text-dim: #6e626a;
  
  --brand-crimson: #e11d48;
  --brand-crimson-hover: #f43f5e;
  --brand-gold: #f59e0b;
  
  --gradient-brand: linear-gradient(135deg, #e11d48 0%, #be123c 50%, #881337 100%);
  --gradient-glow: radial-gradient(circle at 50% 0%, rgba(225, 29, 72, 0.22) 0%, transparent 70%);
  --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.01) 100%);
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 35px rgba(225, 29, 72, 0.4);
  
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-dark);
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-dark);
  background-image: var(--gradient-glow);
  background-attachment: fixed;
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

/* Typography with Fluid Sizing */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text-main);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.02;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.1;
}

.text-gradient {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

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

/* Top Announcement Bar */
.top-bar {
  background: #050405;
  border-bottom: 1px solid var(--glass-border);
  padding: 0.6rem 1rem;
  text-align: center;
  font-size: clamp(0.68rem, 2vw, 0.75rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-crimson);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.top-bar-pulse {
  width: 8px;
  height: 8px;
  background: var(--brand-crimson);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--brand-crimson);
  animation: pulse 1.5s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(225, 29, 72, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(225, 29, 72, 0); }
}

/* Header Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 9, 10, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  width: 100%;
}

.nav-main {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
}

.logo-img {
  height: clamp(30px, 4vw, 38px);
  width: auto;
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: clamp(1rem, 2vw, 2.2rem);
  align-items: center;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all 0.2s;
}

.nav-links a:hover, .nav-links a.active {
  color: #ffffff;
}

.mobile-menu-btn {
  display: none;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: #fff;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 1.25rem;
  cursor: pointer;
}

.mobile-drawer {
  display: none;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--glass-border);
  padding: 1rem 1.5rem;
}

.mobile-drawer.open {
  display: block;
}

.mobile-drawer a {
  display: block;
  padding: 0.85rem 0;
  color: var(--text-main);
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* Premium Buttons */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--gradient-brand);
  color: #ffffff;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  text-align: center;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.cta-button-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg);
  color: #ffffff;
  border: 1px solid var(--glass-border);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
  text-align: center;
}

.cta-button-outline:hover {
  border-color: var(--brand-crimson);
  background: rgba(225, 29, 72, 0.15);
}

/* Hero Section */
.hero {
  position: relative;
  padding: clamp(3rem, 6vw, 5rem) 1.25rem clamp(3.5rem, 6vw, 6rem);
  overflow: hidden;
  border-bottom: 1px solid var(--glass-border);
}

.hero-bg-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1000px;
  height: 600px;
  background: radial-gradient(circle, rgba(225, 29, 72, 0.22) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(225, 29, 72, 0.12);
  border: 1px solid rgba(225, 29, 72, 0.4);
  color: #ff6b8b;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-size: clamp(0.7rem, 1.8vw, 0.78rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.hero .subtitle {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  max-width: 580px;
}

.social-proof-avatars {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  width: fit-content;
  max-width: 100%;
}

.avatar-stack {
  display: flex;
  flex-shrink: 0;
}

.avatar-stack img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--bg-dark);
  margin-left: -8px;
}

.avatar-stack img:first-child { margin-left: 0; }

.avatar-text {
  font-size: clamp(0.75rem, 2vw, 0.85rem);
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.hero-subtext {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dim);
}

/* Hero Right Deck */
.hero-deck-card {
  background: var(--gradient-glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: clamp(1.25rem, 3vw, 2rem);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.hero-deck-main-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.6));
}

.hero-deck-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
}

.hero-deck-thumb {
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 0.4rem;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
}

.hero-deck-thumb:hover, .hero-deck-thumb.active {
  border-color: var(--brand-crimson);
  background: rgba(225,29,72,0.12);
}

.hero-deck-thumb img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
}

/* Trust Bar */
.trust-strip {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--glass-border);
  padding: 1.75rem 1.25rem;
}

.trust-flex {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.25rem;
}

.trust-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--glass-border);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
}

.trust-box-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.trust-box-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}

.trust-box-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* Common Section Layout */
.section {
  padding: clamp(3.5rem, 6vw, 6rem) 1.25rem;
  max-width: 1240px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}

.section-header .tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--brand-crimson);
  font-weight: 800;
  display: block;
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: clamp(1rem, 2vw, 1.15rem);
}

/* PDP Specific Layout */
.pdp-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.pdp-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
  gap: 0.6rem;
  margin-top: 1rem;
}

.pdp-thumb {
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 0.35rem;
  cursor: pointer;
  transition: all 0.2s;
}

.pdp-thumb.active, .pdp-thumb:hover {
  border-color: var(--brand-crimson);
}

.pdp-thumb img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
}

/* Product Cards */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--gradient-glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
  transition: all 0.3s;
}

.product-card:hover {
  border-color: rgba(225, 29, 72, 0.5);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.product-img-wrapper {
  background: radial-gradient(circle at 50% 50%, rgba(225,29,72,0.15) 0%, rgba(0,0,0,0.6) 80%);
  padding: 2rem;
  text-align: center;
  position: relative;
}

.product-img {
  max-height: 250px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.7));
}

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gradient-brand);
  color: #fff;
  font-weight: 800;
  font-size: 0.68rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.product-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-bestfor {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-crimson);
  margin-bottom: 0.4rem;
}

.product-title {
  font-size: 1.8rem;
  margin-bottom: 0.25rem;
}

.bullets-list {
  list-style: none;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.bullets-list li {
  font-size: 0.88rem;
  color: var(--text-main);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.bullets-list li::before {
  content: "✓";
  color: var(--brand-crimson);
  font-weight: 900;
}

/* Bundle Selector */
.bundle-selector {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.bundle-option {
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 0.65rem 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.2s;
}

.bundle-option.selected {
  border-color: var(--brand-crimson);
  background: rgba(225, 29, 72, 0.12);
}

.bundle-radio {
  accent-color: var(--brand-crimson);
}

.bundle-label {
  font-size: 0.8rem;
  font-weight: 700;
}

.bundle-price {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--brand-gold);
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.current-price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
}

.compare-price {
  text-decoration: line-through;
  color: var(--text-dim);
  font-size: 1.1rem;
}

.card-actions {
  display: grid;
  gap: 0.5rem;
}

/* Quiz Box */
.quiz-box {
  background: var(--gradient-glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: clamp(1.75rem, 4vw, 3rem) clamp(1.25rem, 3vw, 2.5rem);
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
}

.quiz-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.quiz-btn {
  background: rgba(0,0,0,0.5);
  border: 1px solid var(--glass-border);
  color: var(--text-main);
  padding: 1.25rem 1rem;
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.quiz-btn:hover {
  border-color: var(--brand-crimson);
  background: rgba(225,29,72,0.12);
}

.quiz-result {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--bg-surface);
  border: 1px solid var(--brand-crimson);
  border-radius: var(--radius-lg);
  display: none;
}

/* Ingredients & Timeline Grid */
.ingredients-grid, .timeline-grid, .reviews-grid, .objections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.ingredient-card, .timeline-card, .review-card, .objection-card {
  background: var(--gradient-glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  backdrop-filter: blur(16px);
}

/* Comparison Table */
.comp-table-wrapper {
  overflow-x: auto;
  margin-top: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  -webkit-overflow-scrolling: touch;
}

.comp-table {
  width: 100%;
  min-width: 580px;
  border-collapse: collapse;
  text-align: left;
  background: var(--bg-surface);
}

.comp-table th, .comp-table td {
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--glass-border);
  font-size: 0.9rem;
}

.comp-table th {
  font-family: var(--font-display);
  font-size: 1.05rem;
  text-transform: uppercase;
  background: #090708;
}

.comp-table th.highlight {
  color: #ffffff;
  background: var(--gradient-brand);
}

.comp-table td.highlight {
  background: rgba(225,29,72,0.08);
  font-weight: 700;
  color: #ffffff;
}

/* FAQ Container */
.faq-container {
  max-width: 850px;
  margin: 0 auto;
}

.faq-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.faq-tab-btn {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.faq-tab-btn.active, .faq-tab-btn:hover {
  border-color: var(--brand-crimson);
  color: #ffffff;
  background: var(--gradient-brand);
}

.faq-item {
  background: var(--gradient-glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  margin-bottom: 0.85rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.2rem 1.4rem;
  background: none;
  border: none;
  color: var(--text-main);
  font-family: var(--font-display);
  font-size: 1.15rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 1.4rem 1.2rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  display: none;
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Lead Section */
.lead-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: clamp(3.5rem, 6vw, 6rem) 1.25rem;
}

.lead-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.lead-form {
  background: var(--gradient-glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-input {
  width: 100%;
  padding: 0.9rem 1.25rem;
  background: rgba(0,0,0,0.5);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  color: #fff;
  font-size: 0.95rem;
  outline: none;
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay.open {
  display: flex;
}

.modal-content {
  background: var(--bg-surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  max-width: 540px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem 1.5rem;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.6rem;
  cursor: pointer;
}

/* EXIT INTENT POPUP STYLES */
.exit-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  animation: fadeIn 0.3s ease-out;
}

.exit-modal-overlay.open {
  display: flex;
}

.exit-modal-box {
  background: linear-gradient(135deg, #1e171a 0%, #110d0f 100%);
  border: 2px solid var(--brand-crimson);
  border-radius: var(--radius-xl);
  max-width: 520px;
  width: 100%;
  padding: 2.5rem 2rem;
  position: relative;
  box-shadow: 0 0 50px rgba(225, 29, 72, 0.4);
  text-align: center;
}

.exit-badge {
  display: inline-block;
  background: var(--gradient-brand);
  color: #fff;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.exit-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1.05;
  margin-bottom: 0.75rem;
}

.exit-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
}

.exit-form-group {
  margin-bottom: 1rem;
  text-align: left;
}

.exit-form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.35rem;
}

.exit-input {
  width: 100%;
  padding: 0.9rem 1.25rem;
  background: rgba(0,0,0,0.6);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  color: #fff;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.exit-input:focus {
  border-color: var(--brand-crimson);
}

.exit-close-btn {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.75rem;
  cursor: pointer;
}

.exit-decline {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-dim);
  text-decoration: underline;
  cursor: pointer;
}

/* Social Proof Ticker */
.social-proof-ticker {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 150;
  background: rgba(22, 18, 20, 0.95);
  border: 1px solid var(--glass-border);
  border-left: 4px solid var(--brand-crimson);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.2rem;
  box-shadow: 0 15px 35px rgba(0,0,0,0.6);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 340px;
}

.ticker-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
}

/* Footer */
.site-footer {
  background: #050405;
  border-top: 1px solid var(--glass-border);
  padding: 4rem 1.25rem 2rem;
}

.footer-content {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 1rem;
  max-width: 400px;
}

.footer-col h4 {
  color: var(--brand-crimson);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  border-top: 1px solid var(--glass-border);
  padding-top: 2rem;
  font-size: 0.8rem;
  color: var(--text-dim);
  text-align: center;
}

/* Sticky Mobile Purchase Bar */
.sticky-buy-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(11, 9, 10, 0.95);
  border-top: 1px solid var(--glass-border);
  padding: 0.75rem 1rem;
  backdrop-filter: blur(16px);
}

/* RESPONSIVE MEDIA QUERIES FOR TABLETS & MOBILES */
@media (max-width: 1024px) {
  .hero-grid, .pdp-grid, .lead-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero { text-align: center; }
  .hero .subtitle, .social-proof-avatars { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }

  .pdp-thumbs {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .footer-content { grid-template-columns: 1fr; gap: 2rem; }
  .sticky-buy-bar { display: block; }
  .social-proof-ticker { display: none; }
}

@media (max-width: 480px) {
  .hero-actions .cta-button, .hero-actions .cta-button-outline {
    width: 100%;
  }

  .pdp-thumbs {
    grid-template-columns: repeat(5, 1fr);
    gap: 0.4rem;
  }

  .quiz-options {
    grid-template-columns: 1fr;
  }
}
