/* ==========================================================================
   OUTFIT ISSUES - PREMIUM FASHION FUNNEL PAGE DESIGN SYSTEM
   ========================================================================== */

:root {
  /* Color Tokens */
  --bg-dark: #090a0f;
  --bg-card: #12141d;
  --bg-card-hover: #191c28;
  --bg-glass: rgba(18, 20, 29, 0.75);
  --border-light: rgba(255, 255, 255, 0.08);
  --border-focus: rgba(255, 42, 75, 0.5);

  --accent-pinterest: #e60023;
  --accent-pinterest-glow: rgba(230, 0, 35, 0.4);
  --accent-coral: #ff2a4b;
  --accent-purple: #8a2be2;
  --accent-gold: #ffb703;
  --accent-emerald: #10b981;
  --accent-cyan: #06b6d4;

  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --text-dark: #111827;

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Shadows & Borders */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 30px rgba(255, 42, 75, 0.25);
  --shadow-card: 0 10px 30px -5px rgba(0, 0, 0, 0.5);
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

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;
}

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

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

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

.text-success { color: var(--accent-emerald); }
.text-warning { color: var(--accent-gold); }
.text-danger { color: var(--accent-coral); }
.text-info { color: var(--accent-cyan); }

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

/* ==========================================================================
   ANNOUNCEMENT BAR
   ========================================================================== */
.announcement-bar {
  background: linear-gradient(90deg, #180508 0%, #30060b 50%, #180508 100%);
  border-bottom: 1px solid rgba(230, 0, 35, 0.2);
  padding: 10px 0;
  font-size: 14px;
  text-align: center;
  position: relative;
  z-index: 100;
}

.announcement-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-coral);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-coral);
  animation: pulse 1.8s infinite;
}

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

.announcement-badge {
  background-color: var(--accent-pinterest);
  color: #fff;
  padding: 3px 12px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.announcement-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px var(--accent-pinterest-glow);
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.main-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  padding: 16px 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent-pinterest), #ff4d6d);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  box-shadow: 0 4px 15px var(--accent-pinterest-glow);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 1px;
  color: #fff;
}

.brand-tag {
  font-size: 11px;
  color: var(--accent-coral);
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a:hover {
  color: #fff;
}

/* Button Component */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-coral) 0%, var(--accent-pinterest) 100%);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--accent-pinterest-glow);
}

.btn-hero {
  padding: 16px 28px;
  font-size: 16px;
  flex-direction: column;
  gap: 2px;
}

.btn-subtext {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.85;
}

.btn-outline {
  background: transparent;
  border-color: var(--border-light);
  color: var(--text-main);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.05);
}

.btn-light {
  background: #ffffff;
  color: var(--text-dark);
}

.btn-light:hover {
  background: #f3f4f6;
  transform: translateY(-2px);
}

.btn-success {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
}

.btn-block {
  width: 100%;
}

.glow-effect {
  position: relative;
  overflow: hidden;
}

.glow-effect::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: rotate(45deg) translateY(-100%);
  transition: transform 0.8s ease;
}

.glow-effect:hover::after {
  transform: rotate(45deg) translateY(100%);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 60px 0 80px 0;
  overflow: hidden;
}

.hero-bg-shapes .shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
  pointer-events: none;
}

.shape-1 {
  width: 450px;
  height: 450px;
  background: var(--accent-pinterest);
  top: -100px;
  left: -100px;
}

.shape-2 {
  width: 500px;
  height: 500px;
  background: var(--accent-purple);
  bottom: 0;
  right: -100px;
}

.shape-3 {
  width: 300px;
  height: 300px;
  background: var(--accent-gold);
  top: 30%;
  left: 45%;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(230, 0, 35, 0.12);
  border: 1px solid rgba(230, 0, 35, 0.3);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-coral);
  margin-bottom: 20px;
}

.icon-pinterest {
  font-size: 16px;
}

.hero-title {
  font-size: 44px;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 540px;
}

/* Hero Form Card */
.hero-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(10px);
}

.form-card-header {
  margin-bottom: 20px;
}

.form-header-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--accent-gold);
  margin-bottom: 4px;
}

.form-card-header h3 {
  font-size: 20px;
  margin-bottom: 4px;
}

.form-card-header p {
  font-size: 13px;
  color: var(--text-muted);
}

.optin-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.input-group label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.input-group input,
.input-group select {
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-light);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  transition: var(--transition);
  outline: none;
}

.input-group input:focus,
.input-group select:focus {
  border-color: var(--accent-coral);
  box-shadow: 0 0 0 3px var(--border-focus);
}

.form-trust-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
  font-size: 12px;
  color: var(--text-muted);
}

/* 3D Stack Mockup Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mockup-stack {
  position: relative;
  width: 100%;
  max-width: 440px;
  height: 520px;
}

.floating-badge {
  position: absolute;
  z-index: 30;
  background: rgba(18, 20, 29, 0.9);
  border: 1px solid var(--border-light);
  padding: 10px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  animation: float 4s ease-in-out infinite;
}

.badge-top-right {
  top: 10px;
  right: -10px;
}

.badge-bottom-left {
  bottom: 20px;
  left: -20px;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.stack-card {
  position: absolute;
  width: 290px;
  height: 400px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  transition: var(--transition);
}

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

.card-main {
  z-index: 10;
  top: 60px;
  left: 60px;
}

.card-secondary {
  z-index: 5;
  top: 15px;
  left: 120px;
  transform: rotate(6deg) scale(0.92);
  opacity: 0.85;
}

.card-tertiary {
  z-index: 2;
  top: 100px;
  left: 10px;
  transform: rotate(-6deg) scale(0.88);
  opacity: 0.75;
}

.stack-card:hover {
  transform: scale(1.03) translateY(-6px) rotate(0deg);
  z-index: 20;
  opacity: 1;
}

.card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent-coral);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  z-index: 2;
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, transparent 100%);
  padding: 20px 16px 16px 16px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pdf-pill {
  font-size: 10px;
  font-weight: 800;
  color: var(--accent-gold);
  text-transform: uppercase;
}

.card-overlay h4 {
  font-size: 14px;
  line-height: 1.3;
}

/* ==========================================================================
   STATS BAR
   ========================================================================== */
.stats-bar {
  background: var(--bg-card);
  border-y: 1px solid var(--border-light);
  padding: 32px 0;
  position: relative;
  z-index: 10;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px;
}

.stat-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--accent-coral);
}

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

.stat-number {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: #fff;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
}

/* ==========================================================================
   PDF SHOWCASE SECTION
   ========================================================================== */
.pdf-showcase-section {
  padding: 90px 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px auto;
}

.section-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: var(--accent-coral);
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: 36px;
  margin-bottom: 12px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 16px;
}

.pdf-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pdf-item-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.pdf-item-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.pdf-badge-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 5;
  background: var(--accent-pinterest);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.tag-purple { background: var(--accent-purple); }
.tag-blue { background: var(--accent-cyan); color: #000; }

.pdf-card-img-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.pdf-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.pdf-item-card:hover .pdf-card-img-wrapper img {
  transform: scale(1.06);
}

.img-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(9, 10, 15, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.pdf-item-card:hover .img-hover-overlay {
  opacity: 1;
}

.pdf-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pdf-meta {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.pdf-card-content h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.pdf-card-content p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.pdf-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  margin-bottom: 24px;
  flex-grow: 1;
}

.pdf-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.pdf-card-actions {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 10px;
}

/* ==========================================================================
   STYLE QUIZ SECTION
   ========================================================================== */
.quiz-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, #0d0f18 100%);
}

.quiz-card-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  box-shadow: var(--shadow-card);
  position: relative;
}

.quiz-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 8px;
}

.quiz-card-wrapper h2 {
  font-size: 30px;
  margin-bottom: 8px;
}

.quiz-card-wrapper p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 32px;
}

.quiz-step {
  display: none;
}

.quiz-step.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

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

.step-progress {
  margin-bottom: 16px;
}

.step-pill {
  background: rgba(255, 255, 255, 0.08);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-gold);
}

.quiz-step h3 {
  font-size: 22px;
  margin-bottom: 24px;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quiz-option-btn {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
}

.quiz-option-btn:hover {
  border-color: var(--accent-coral);
  background: rgba(255, 42, 75, 0.08);
  transform: translateX(4px);
}

.option-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--accent-coral);
  flex-shrink: 0;
}

/* Quiz Result */
.quiz-result {
  animation: fadeIn 0.4s ease;
}

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

.result-icon {
  font-size: 44px;
  margin-bottom: 8px;
}

.result-badge {
  font-size: 12px;
  font-weight: 800;
  color: var(--accent-emerald);
  letter-spacing: 1px;
}

.result-header h3 {
  font-size: 26px;
  margin-top: 4px;
  margin-bottom: 6px;
}

.result-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.result-box img {
  width: 200px;
  height: 270px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.result-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

/* ==========================================================================
   TRANSFORMATIONS
   ========================================================================== */
.transformations-section {
  padding: 80px 0;
}

.transformations-grid {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: center;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.trans-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.trans-after {
  border-color: rgba(16, 185, 129, 0.4);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(16, 185, 129, 0.05) 100%);
}

.trans-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.tag-before { background: rgba(239, 68, 68, 0.15); color: #f87171; }
.tag-after { background: rgba(16, 185, 129, 0.15); color: #34d399; }

.trans-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.trans-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.trans-vs {
  width: 50px;
  height: 50px;
  background: var(--bg-card-hover);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--accent-gold);
  margin: 0 auto;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials-section {
  padding: 80px 0;
  background: var(--bg-card);
  border-y: 1px solid var(--border-light);
}

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

.testimonial-card {
  background: var(--bg-dark);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}

.test-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-coral));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  font-size: 14px;
}

.user-info {
  flex-grow: 1;
}

.user-info h4 {
  font-size: 15px;
}

.user-handle {
  font-size: 12px;
  color: var(--text-muted);
}

.test-rating {
  font-size: 12px;
  font-weight: 800;
  color: var(--accent-gold);
}

.testimonial-card p {
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
}

.test-footer {
  font-size: 12px;
  color: var(--accent-coral);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   BOTTOM CTA BANNER
   ========================================================================== */
.bottom-cta-section {
  padding: 80px 0;
}

.bottom-cta-box {
  background: linear-gradient(135deg, #2a050b 0%, #150616 100%);
  border: 1px solid rgba(255, 42, 75, 0.3);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: 0 20px 50px rgba(230, 0, 35, 0.2);
}

.cta-content h2 {
  font-size: 32px;
  margin-bottom: 8px;
}

.cta-content p {
  color: var(--text-muted);
  font-size: 16px;
}

.cta-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: var(--accent-gold);
  letter-spacing: 1px;
  margin-bottom: 6px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
  background: #06070a;
  border-top: 1px solid var(--border-light);
  padding: 60px 0 24px 0;
  font-size: 14px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 2.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: var(--text-muted);
  margin-top: 12px;
  margin-bottom: 20px;

}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(230, 0, 35, 0.15);
  color: var(--accent-coral);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 13px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.link-col h4 {
  font-size: 15px;
  margin-bottom: 16px;
}

.link-col a {
  display: block;
  color: var(--text-muted);
  margin-bottom: 10px;
  font-size: 13px;
  transition: var(--transition);
}

.link-col a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 24px;
  color: var(--text-muted);
  font-size: 13px;
}

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

/* ==========================================================================
   MODAL DIALOGS & OVERLAYS
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 60px rgba(0,0,0,0.8);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.modal-backdrop.active .modal-container {
  transform: translateY(0) scale(1);
}

.modal-sm { max-width: 480px; }
.modal-md { max-width: 620px; }
.modal-lg { max-width: 900px; }

.modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pdf-modal-tag {
  font-size: 11px;
  font-weight: 800;
  color: var(--accent-coral);
}

.modal-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 20px;
  cursor: pointer;
  padding: 4px;
  transition: var(--transition);
}

.modal-close:hover {
  color: #fff;
}

.modal-body {
  padding: 24px;
  overflow-y: auto;
}

.modal-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0,0,0,0.2);
}

/* PDF Viewer Specifics */
.pdf-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0,0,0,0.4);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.pdf-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 14px;
}

.pdf-document-viewport {
  background: #2a2d39;
  border-radius: var(--radius-md);
  padding: 24px;
  min-height: 480px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow-y: auto;
}

.pdf-page-sheet {
  background: #ffffff;
  color: #111827;
  width: 100%;
  max-width: 600px;
  min-height: 650px;
  border-radius: 4px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  position: relative;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Printable PDF Render Styles */
.pdf-header-print {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #111827;
  padding-bottom: 16px;
  margin-bottom: 24px;
}

.pdf-brand-tag {
  font-size: 12px;
  font-weight: 900;
  color: #e60023;
  letter-spacing: 1px;
}

.pdf-page-num {
  font-size: 12px;
  color: #6b7280;
}

.pdf-title-print {
  font-size: 24px;
  font-weight: 900;
  color: #111827;
  margin-bottom: 12px;
  font-family: 'Outfit', sans-serif;
}

.pdf-subtitle-print {
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 24px;
}

.pdf-section-title {
  font-size: 16px;
  font-weight: 800;
  color: #111827;
  border-left: 4px solid #e60023;
  padding-left: 10px;
  margin: 20px 0 12px 0;
}

.pdf-checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.pdf-check-item {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pdf-check-box {
  width: 16px;
  height: 16px;
  border: 2px solid #9ca3af;
  border-radius: 3px;
}

.pdf-matrix-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
  font-size: 13px;
}

.pdf-matrix-table th, .pdf-matrix-table td {
  border: 1px solid #e5e7eb;
  padding: 10px;
  text-align: left;
}

.pdf-matrix-table th {
  background: #111827;
  color: #fff;
}

/* Success Download Modal */
.success-header {
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-bottom: none;
}

.success-icon-animated {
  font-size: 56px;
  color: var(--accent-emerald);
  margin-bottom: 8px;
}

.download-links-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.dl-item {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border-light);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dl-info {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}

.dl-info i {
  font-size: 24px;
}

.dl-size {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
}

/* Admin Leads Table */
.admin-stats-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.admin-stat {
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--border-light);
  padding: 16px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
}

.stat-lbl { font-size: 12px; color: var(--text-muted); }
.stat-val { font-size: 22px; font-weight: 800; color: #fff; margin-top: 4px; }

.admin-table-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.table-responsive {
  overflow-x: auto;
}

.leads-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  text-align: left;
}

.leads-table th, .leads-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border-light);
}

.leads-table th {
  background: rgba(0,0,0,0.3);
  color: var(--text-muted);
}

/* Gate Modal Styling */
.gate-info-box {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.gate-icon {
  width: 48px;
  height: 48px;
  background: rgba(230, 0, 35, 0.1);
  border: 1px solid rgba(230, 0, 35, 0.3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.gate-text h4 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 2px;
}

.gate-text p {
  font-size: 13px;
  color: var(--text-muted);
}

/* Enhanced Printable PDF Swatch & Grid Components */
.pdf-swatch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 16px 0;
}

.pdf-swatch-card {
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  background: #fff;
}

.swatch-color-box {
  height: 40px;
  width: 100%;
}

.swatch-label {
  padding: 6px 4px;
  color: #111827;
}

.pdf-callout-box {
  background: #f9fafb;
  border-left: 4px solid #e60023;
  padding: 14px 16px;
  border-radius: 0 6px 6px 0;
  margin: 16px 0;
}

.pdf-callout-title {
  font-size: 13px;
  font-weight: 800;
  color: #e60023;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pdf-callout-desc {
  font-size: 13px;
  color: #374151;
  margin-top: 4px;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: #1e2330;
  border-left: 4px solid var(--accent-coral);
  color: #fff;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
  }
  .pdf-cards-grid,
  .testimonials-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .transformations-grid {
    grid-template-columns: 1fr;
  }
  .trans-vs { display: none; }
  .bottom-cta-box {
    flex-direction: column;
    text-align: center;
  }
  .footer-content {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
}

