/* ==========================================================================
   THE COMEBACK KIT — ULTRA-PREMIUM SALES PAGE DESIGN SYSTEM
   Theme: Dark Hospitality Luxury / Conversion-Engineered Editorial
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-primary: #0a0d14;
  --bg-secondary: #0f1420;
  --bg-card: rgba(18, 23, 34, 0.75);
  --bg-card-hover: rgba(24, 31, 46, 0.9);
  --bg-elevated: #161c2b;
  --bg-glass: rgba(255, 255, 255, 0.03);
  
  /* Borders */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.14);
  --border-gold: rgba(245, 158, 11, 0.35);
  --border-emerald: rgba(16, 185, 129, 0.3);

  /* Conversion Accents */
  --gold-50: #fffbeb;
  --gold-100: #fef3c7;
  --gold-400: #fbbf24;
  --gold-500: #f59e0b;
  --gold-600: #d97706;
  --gold-glow: rgba(245, 158, 11, 0.25);

  --emerald-400: #34d399;
  --emerald-500: #10b981;
  --emerald-600: #059669;
  --emerald-glow: rgba(16, 185, 129, 0.22);

  --crimson-400: #f87171;
  --crimson-500: #ef4444;

  /* Typography */
  --text-white: #ffffff;
  --text-main: #e2e8f0;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  --font-serif: 'Instrument Serif', 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', monospace;

  /* Elevations & Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 20px 50px -12px rgba(0, 0, 0, 0.7);
  --shadow-gold: 0 10px 35px -5px rgba(245, 158, 11, 0.3);
  --shadow-emerald: 0 10px 35px -5px rgba(16, 185, 129, 0.25);

  /* Container */
  --container-max: 1180px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --transition-fast: 0.18s ease;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-main);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  line-height: 1.65;
  font-size: 1.05rem;
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(245, 158, 11, 0.07) 0%, transparent 60%),
    radial-gradient(circle at 10% 25%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 65%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
  background-attachment: fixed;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* Global Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography Helpers */
.serif-display {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.gradient-text-gold {
  background: linear-gradient(135deg, #fef08a 0%, #f59e0b 60%, #b45309 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-emerald {
  background: linear-gradient(135deg, #a7f3d0 0%, #10b981 60%, #047857 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gold { color: var(--gold-400); }
.text-emerald { color: var(--emerald-400); }
.text-crimson { color: var(--crimson-400); }
.text-white { color: var(--text-white); }
.text-muted { color: var(--text-muted); }

/* ==========================================================================
   TOP NOTIFICATION BAR
   ========================================================================== */
.announcement-bar {
  background: linear-gradient(90deg, #182030 0%, #251e12 50%, #182030 100%);
  border-bottom: 1px solid rgba(245, 158, 11, 0.25);
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
  color: var(--gold-100);
  text-align: center;
  position: relative;
  z-index: 40;
}

.announcement-content {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  font-weight: 500;
}

.badge-pulse {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(245, 158, 11, 0.18);
  border: 1px solid rgba(245, 158, 11, 0.4);
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold-400);
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 8px var(--gold-500);
  animation: pulseAnimation 2s infinite;
}

@keyframes pulseAnimation {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 4.5rem 0 3.5rem;
  position: relative;
}

.hero-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-medium);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.hero-pill-badge strong {
  color: var(--gold-400);
}

.hero-title {
  font-size: clamp(2.2rem, 4.8vw, 3.8rem);
  line-height: 1.15;
  color: var(--text-white);
  margin-bottom: 1.5rem;
  max-width: 1020px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 820px;
  margin: 0 auto 2.2rem;
}

.hero-subtitle strong {
  color: var(--text-white);
}

/* Metric Ticker Pills */
.hero-metrics-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.metric-pill {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.metric-pill-val {
  font-weight: 800;
  color: var(--emerald-400);
}

.metric-pill.gold .metric-pill-val {
  color: var(--gold-400);
}

/* Call to Action Buttons */
.cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #0b0e14;
  font-size: 1.15rem;
  font-weight: 800;
  padding: 1.1rem 2.5rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-gold);
  transition: var(--transition-normal);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: 0.6s ease;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 15px 40px -5px rgba(245, 158, 11, 0.45);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary .btn-price {
  background: rgba(0, 0, 0, 0.2);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
}

.cta-subtext {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  justify-content: center;
}

.cta-subtext span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.cta-subtext svg {
  color: var(--emerald-400);
}

/* ==========================================================================
   HERO VISUAL SHOWCASE (Bundle & Live Transformation Card)
   ========================================================================== */
.hero-visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-top: 3.5rem;
}

.bundle-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-lg);
  background: var(--bg-card);
}

.bundle-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bundle-image-card:hover img {
  transform: scale(1.02);
}

.bundle-image-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(10, 13, 20, 0.85);
  border: 1px solid var(--border-gold);
  color: var(--gold-400);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
}

/* Live Transformation Card */
.transformation-card {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
  position: relative;
}

.transformation-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 0.75rem;
}

.transformation-header h4 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.live-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--emerald-400);
  background: rgba(16, 185, 129, 0.12);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

.review-item {
  background: var(--bg-elevated);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  margin-bottom: 1rem;
  border: 1px solid var(--border-subtle);
}

.review-item.bad {
  border-left: 3px solid var(--crimson-500);
}

.review-item.recovered {
  border-left: 3px solid var(--emerald-500);
  background: rgba(16, 185, 129, 0.05);
  border-color: rgba(16, 185, 129, 0.25);
}

.review-author-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #334155;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #f8fafc;
}

.author-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-white);
}

.stars {
  color: #fbbf24;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.review-body {
  font-size: 0.92rem;
  color: var(--text-main);
  line-height: 1.5;
  font-style: italic;
}

.response-box {
  margin-top: 0.85rem;
  background: rgba(0, 0, 0, 0.35);
  border-radius: var(--radius-sm);
  padding: 0.8rem;
  font-size: 0.86rem;
  border-left: 2px solid var(--gold-500);
}

.response-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: var(--gold-400);
  margin-bottom: 0.25rem;
  display: block;
}

.outcome-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid var(--border-emerald);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--emerald-400);
}

/* ==========================================================================
   THE 30-DAY GUARANTEE CALLOUT (Within First 100 Words)
   ========================================================================== */
.guarantee-hero-callout {
  margin-top: 3.5rem;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(16, 185, 129, 0.05) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 1.8rem 2.2rem;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.guarantee-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  flex-shrink: 0;
}

.guarantee-content h3 {
  font-size: 1.25rem;
  color: var(--gold-100);
  margin-bottom: 0.45rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.guarantee-content p {
  color: var(--text-main);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* ==========================================================================
   THE REVENUE LEAK (HOOK SECTION)
   ========================================================================== */
.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-medium), transparent);
  margin: 0 auto;
}

.section-tag {
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--gold-400);
  display: block;
  margin-bottom: 0.75rem;
}

.section-tag.crimson { color: var(--crimson-400); }
.section-tag.emerald { color: var(--emerald-400); }

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  line-height: 1.2;
  color: var(--text-white);
  margin-bottom: 1.2rem;
}

.section-intro {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 760px;
}

/* Ad Spend & Leak Steps */
.leak-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin: 3.5rem 0 2.5rem;
  position: relative;
}

.leak-step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  position: relative;
  transition: var(--transition-normal);
}

.leak-step-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-medium);
}

.leak-step-card.disaster {
  border-color: rgba(239, 68, 68, 0.4);
  background: rgba(239, 68, 68, 0.04);
}

.leak-step-card.disaster .step-num {
  color: var(--crimson-400);
}

.step-num {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-400);
  margin-bottom: 0.75rem;
  display: block;
}

.leak-step-card h4 {
  font-size: 1.1rem;
  color: var(--text-white);
  margin-bottom: 0.6rem;
}

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

/* Statistics Grid */
.stats-contrast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.stat-box {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border-subtle);
}

.stat-box.danger {
  border-top: 3px solid var(--crimson-500);
}

.stat-box.warning {
  border-top: 3px solid var(--gold-500);
}

.stat-big {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-big.danger { color: var(--crimson-400); }
.stat-big.warning { color: var(--gold-400); }

.stat-box h4 {
  font-size: 1.15rem;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.stat-box p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.quote-highlight {
  margin-top: 2.5rem;
  background: rgba(255, 255, 255, 0.02);
  border-left: 3px solid var(--gold-500);
  padding: 1.4rem 1.8rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 1.15rem;
  color: var(--gold-100);
  line-height: 1.6;
}

/* ==========================================================================
   INTERACTIVE REVENUE LEAK & ROI CALCULATOR
   ========================================================================== */
.calculator-card {
  background: linear-gradient(135deg, rgba(22, 28, 43, 0.95) 0%, rgba(14, 18, 28, 0.95) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  margin: 3rem 0;
  position: relative;
  overflow: hidden;
}

.calculator-card::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.calc-controls {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.slider-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.slider-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-white);
}

.slider-val-badge {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-400);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid var(--border-gold);
  padding: 0.2rem 0.75rem;
  border-radius: var(--radius-sm);
}

input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  background: #1e293b;
  height: 8px;
  border-radius: 4px;
  outline: none;
  transition: background 0.2s;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold-400);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
  border: 2px solid #ffffff;
  transition: transform 0.1s ease;
}

input[type=range]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.calc-results-box {
  background: rgba(10, 13, 20, 0.7);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border-subtle);
}

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

.result-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.result-val {
  font-family: var(--font-mono);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
}

.result-val.leak {
  color: var(--crimson-400);
}

.result-val.recovered {
  color: var(--emerald-400);
  font-size: 1.45rem;
}

.result-val.roi {
  color: var(--gold-400);
  font-size: 1.35rem;
}

.calc-verdict-banner {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid var(--border-emerald);
  border-radius: var(--radius-md);
  padding: 1rem;
  text-align: center;
  font-size: 0.92rem;
  color: var(--emerald-400);
}

/* ==========================================================================
   BISTRO MERCATO CASE STUDY
   ========================================================================== */
.case-study-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-top: 2.5rem;
}

.case-study-media {
  height: 100%;
  min-height: 420px;
  position: relative;
}

.case-study-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-study-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10, 13, 20, 0.95), transparent);
  padding: 1.5rem;
  color: var(--gold-100);
}

.case-study-caption strong {
  display: block;
  font-size: 1.1rem;
  color: #ffffff;
}

.case-study-content {
  padding: 3rem 2.5rem 3rem 1rem;
}

.case-study-content h3 {
  font-size: 1.85rem;
  color: var(--text-white);
  margin-bottom: 1rem;
}

.case-study-content p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.8rem;
}

.case-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.case-stat-item {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

.case-stat-val {
  font-family: var(--font-mono);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--emerald-400);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.case-stat-item.gold .case-stat-val {
  color: var(--gold-400);
}

.case-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.35;
}

/* ==========================================================================
   COMPARISON TABLE: $47 VS $400/MONTH SAAS
   ========================================================================== */
.comparison-section {
  background: linear-gradient(180deg, var(--bg-primary) 0%, #0d121c 100%);
}

.comparison-wrapper {
  margin-top: 3rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-medium);
  background: var(--bg-card);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: 1.35rem 1.75rem;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 1rem;
}

.comparison-table th {
  background: rgba(15, 20, 32, 0.9);
  color: var(--text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.comparison-table th.highlight-col {
  background: rgba(245, 158, 11, 0.12);
  color: var(--gold-400);
  border-top: 3px solid var(--gold-500);
  font-size: 1.05rem;
}

.comparison-table td.highlight-col {
  background: rgba(245, 158, 11, 0.04);
  font-weight: 600;
  color: var(--text-white);
  border-left: 1px solid rgba(245, 158, 11, 0.2);
  border-right: 1px solid rgba(245, 158, 11, 0.2);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.table-feature-title {
  font-weight: 600;
  color: var(--text-white);
}

.table-saas-col {
  color: var(--crimson-400);
}

.comparison-savings-banner {
  background: linear-gradient(90deg, rgba(245, 158, 11, 0.15) 0%, rgba(16, 185, 129, 0.15) 100%);
  border-top: 1px solid var(--border-gold);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.savings-text {
  font-size: 1.05rem;
  color: var(--gold-100);
}

.savings-text strong {
  color: #ffffff;
}

/* ==========================================================================
   DELIVERABLE STACK & INTERACTIVE SCRIPT PREVIEW
   ========================================================================== */
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
  margin-top: 3rem;
}

.deliverable-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  position: relative;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.deliverable-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
}

.deliv-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.deliv-badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-400);
  background: rgba(245, 158, 11, 0.12);
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-full);
}

.deliv-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--bg-elevated);
  border: 1px solid var(--border-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
}

.deliverable-card h3 {
  font-size: 1.4rem;
  color: var(--text-white);
  margin-bottom: 0.75rem;
}

.deliverable-card p {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.deliverable-card ul {
  list-style: none;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.deliverable-card li {
  font-size: 0.88rem;
  color: var(--text-main);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.deliverable-card li svg {
  color: var(--emerald-400);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

/* Interactive Script Swipe-File Showcase */
.script-showcase-box {
  margin-top: 4rem;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.script-tabs {
  display: flex;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-subtle);
  overflow-x: auto;
}

.script-tab-btn {
  padding: 1.2rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  transition: var(--transition-fast);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.script-tab-btn:hover {
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.02);
}

.script-tab-btn.active {
  color: var(--gold-400);
  border-bottom-color: var(--gold-500);
  background: rgba(245, 158, 11, 0.06);
}

.script-content-area {
  padding: 2.5rem;
}

.script-panel {
  display: none;
}

.script-panel.active {
  display: block;
}

.script-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.script-path-badge {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
}

.script-path-badge.comp {
  background: rgba(16, 185, 129, 0.15);
  color: var(--emerald-400);
  border: 1px solid var(--border-emerald);
}

.script-path-badge.clarity {
  background: rgba(245, 158, 11, 0.15);
  color: var(--gold-400);
  border: 1px solid var(--border-gold);
}

.script-path-badge.disengage {
  background: rgba(148, 163, 184, 0.15);
  color: var(--text-muted);
  border: 1px solid var(--border-subtle);
}

.copy-script-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-medium);
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition-fast);
}

.copy-script-btn:hover {
  background: var(--gold-500);
  color: #0b0e14;
  border-color: var(--gold-500);
}

.script-text-box {
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #f1f5f9;
  font-family: inherit;
  margin-bottom: 1.5rem;
  position: relative;
}

.script-insight-box {
  background: rgba(255, 255, 255, 0.02);
  border-left: 2px solid var(--gold-500);
  padding: 1rem 1.4rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.script-insight-box strong {
  color: var(--gold-400);
}

/* ==========================================================================
   OBJECTION KILLERS (ACCORDION)
   ========================================================================== */
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 3rem;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-normal);
}

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

.faq-trigger {
  width: 100%;
  padding: 1.6rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
  transition: var(--transition-fast);
}

.faq-trigger:hover {
  color: var(--gold-400);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold-400);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

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

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

/* ==========================================================================
   MONEY BACK GUARANTEE SEAL SECTION
   ========================================================================== */
.guarantee-full-section {
  margin: 5rem 0;
}

.guarantee-badge-container {
  background: linear-gradient(135deg, rgba(20, 26, 40, 0.95) 0%, rgba(13, 17, 26, 0.95) 100%);
  border: 2px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 3.5rem 3rem;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 35px rgba(245, 158, 11, 0.1);
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.guarantee-crest {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f59e0b 0%, #b45309 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -4rem auto 1.5rem auto;
  box-shadow: var(--shadow-gold);
  border: 4px solid #0a0d14;
  color: #0a0d14;
}

.guarantee-badge-container h3 {
  font-size: 2.2rem;
  color: var(--text-white);
  margin-bottom: 1.2rem;
}

.guarantee-badge-container p {
  font-size: 1.1rem;
  color: var(--text-main);
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 1.8rem;
}

.guarantee-quote {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: var(--gold-100);
  font-style: italic;
  max-width: 680px;
  margin: 0 auto;
}

/* ==========================================================================
   FINAL CALL TO ACTION SECTION
   ========================================================================== */
.final-cta-section {
  padding: 6rem 0 4rem;
  text-align: center;
  background: radial-gradient(circle at 50% 50%, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
}

.final-cta-box {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 4rem 2.5rem;
  max-width: 860px;
  margin: 0 auto 3rem;
  box-shadow: var(--shadow-lg);
}

.final-cta-box h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--text-white);
  margin-bottom: 1.25rem;
}

.final-cta-box p {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 2.5rem;
}

/* P.S. Sections */
.ps-stack {
  max-width: 780px;
  margin: 3.5rem auto 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ps-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.8rem;
  font-size: 0.98rem;
  line-height: 1.6;
}

.ps-item strong {
  color: var(--gold-400);
  font-size: 1.05rem;
  display: inline-block;
  margin-right: 0.5rem;
}

/* ==========================================================================
   STICKY BOTTOM CONVERSION BAR
   ========================================================================== */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 13, 20, 0.92);
  border-top: 1px solid var(--border-gold);
  backdrop-filter: blur(16px);
  padding: 0.85rem 1.5rem;
  z-index: 100;
  transform: translateY(120%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
}

.sticky-bar.visible {
  transform: translateY(0);
}

.sticky-bar-content {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.sticky-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sticky-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
}

.sticky-pill {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid var(--border-emerald);
  color: var(--emerald-400);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

.sticky-btn {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #0a0d14;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.35);
  transition: transform 0.2s ease;
  white-space: nowrap;
}

.sticky-btn:hover {
  transform: scale(1.04);
}

/* ==========================================================================
   CHECKOUT MODAL
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: #111624;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  max-width: 580px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(245, 158, 11, 0.2);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.modal-overlay.open .modal-box {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--text-white);
}

.modal-header {
  text-align: center;
  margin-bottom: 2rem;
}

.modal-header h3 {
  font-size: 1.7rem;
  color: var(--text-white);
  margin-bottom: 0.35rem;
}

.modal-header p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.order-summary-box {
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1.8rem;
}

.order-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}

.order-line:last-child {
  margin-bottom: 0;
  padding-top: 0.6rem;
  border-top: 1px solid var(--border-subtle);
  font-weight: 700;
  font-size: 1.1rem;
}

.order-line .total-price {
  color: var(--gold-400);
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: left;
}

.form-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.form-field input {
  background: var(--bg-elevated);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  color: var(--text-white);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.form-field input:focus {
  border-color: var(--gold-400);
}

.submit-order-btn {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #0a0d14;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 1rem;
  border-radius: var(--radius-full);
  margin-top: 0.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow-gold);
}

.submit-order-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

.modal-trust-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* Toast Notifications */
.toast-notice {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  background: #1e293b;
  border: 1px solid var(--emerald-500);
  color: #ffffff;
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  font-weight: 600;
  z-index: 300;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-notice.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-notice svg {
  color: var(--emerald-400);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  border-top: 1px solid var(--border-subtle);
  padding: 3rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.footer-links a:hover {
  color: var(--text-muted);
}

/* ==========================================================================
   RESPONSIVE DESIGN (TABLET & MOBILE)
   ========================================================================== */
@media (max-width: 992px) {
  .hero-visual-grid {
    grid-template-columns: 1fr;
  }
  .leak-timeline {
    grid-template-columns: 1fr 1fr;
  }
  .case-study-hero {
    grid-template-columns: 1fr;
  }
  .case-study-content {
    padding: 2rem;
  }
  .calc-grid {
    grid-template-columns: 1fr;
  }
  .deliverables-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 3rem 0 2rem;
  }
  .hero-title {
    font-size: 2rem;
  }
  .leak-timeline {
    grid-template-columns: 1fr;
  }
  .stats-contrast-grid {
    grid-template-columns: 1fr;
  }
  .calculator-card {
    padding: 1.5rem;
  }
  .guarantee-hero-callout {
    flex-direction: column;
    padding: 1.5rem;
  }
  .comparison-wrapper {
    overflow-x: auto;
  }
  .comparison-table {
    min-width: 600px;
  }
  .script-content-area {
    padding: 1.5rem;
  }
  .sticky-info {
    display: none;
  }
  .sticky-bar-content {
    justify-content: center;
  }
  .sticky-btn {
    width: 100%;
    text-align: center;
  }
}

/* ==========================================================================
   THANK YOU & UPSELL PAGE STYLES
   ========================================================================== */
.thank-you-header {
  text-align: center;
  padding: 4.5rem 0 2.5rem;
}

.conf-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid var(--border-emerald);
  color: var(--emerald-400);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
}

.thank-you-title {
  font-size: clamp(2.3rem, 4.5vw, 3.8rem);
  line-height: 1.15;
  color: var(--text-white);
  margin-bottom: 1.25rem;
}

.thank-you-sub {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: var(--transition-normal);
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
}

.step-card-num {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--gold-400);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid var(--border-gold);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  display: inline-block;
  margin-bottom: 1rem;
}

.step-card h3 {
  font-size: 1.25rem;
  color: var(--text-white);
  margin-bottom: 0.65rem;
}

.step-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* 8-Minute Countdown Timer Widget */
.timer-banner-card {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.12) 0%, rgba(16, 185, 129, 0.08) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 4.5rem;
  box-shadow: var(--shadow-md);
}

.timer-info h3 {
  font-size: 1.5rem;
  color: var(--gold-100);
  margin-bottom: 0.4rem;
}

.timer-info p {
  color: var(--text-main);
  font-size: 1rem;
  max-width: 520px;
}

.timer-display-group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.timer-clock {
  font-family: var(--font-mono);
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold-400);
  background: #0a0d14;
  border: 1px solid var(--border-gold);
  padding: 0.5rem 1.4rem;
  border-radius: var(--radius-md);
  letter-spacing: 0.05em;
  box-shadow: 0 0 25px rgba(245, 158, 11, 0.2);
}

.timer-controls {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.btn-timer-toggle {
  background: var(--gold-500);
  color: #0a0d14;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}

.btn-timer-toggle:hover {
  background: var(--gold-400);
}

.btn-timer-reset {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  font-size: 0.8rem;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-sm);
}

.btn-timer-reset:hover {
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.12);
}

/* Downloads Grid */
.downloads-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 5rem;
}

.download-item-card {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.2rem;
  transition: var(--transition-normal);
}

.download-item-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
}

.download-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.download-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald-400);
  flex-shrink: 0;
}

.download-title {
  font-size: 1.15rem;
  color: var(--text-white);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.download-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.download-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-medium);
  color: var(--text-white);
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 700;
  transition: var(--transition-fast);
}

.download-action-btn:hover {
  background: var(--emerald-500);
  color: #0b0e14;
  border-color: var(--emerald-500);
}

/* ==========================================================================
   UPSELL SECTION ($197 WALK-IN AUTOMATION KIT)
   ========================================================================== */
.upsell-container {
  background: linear-gradient(135deg, rgba(24, 30, 46, 0.95) 0%, rgba(13, 17, 26, 0.98) 100%);
  border: 2px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.7), 0 0 45px rgba(245, 158, 11, 0.15);
  margin-bottom: 5rem;
  position: relative;
  overflow: hidden;
}

.upsell-container::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
}

.upsell-tag {
  display: inline-block;
  background: linear-gradient(90deg, #f59e0b, #d97706);
  color: #0a0d14;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}

.upsell-title {
  font-size: clamp(2rem, 3.8vw, 3rem);
  color: var(--text-white);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.upsell-intro {
  font-size: 1.2rem;
  color: var(--gold-100);
  line-height: 1.6;
  max-width: 820px;
  margin-bottom: 2.5rem;
}

.upsell-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 3rem;
}

.upsell-image-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-lg);
}

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

.upsell-items-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.upsell-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.35rem;
  border-left: 3px solid var(--gold-500);
}

.upsell-item h4 {
  font-size: 1.08rem;
  color: var(--text-white);
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.upsell-item p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Synergy & Math Cards */
.upsell-synergy-box {
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid var(--border-emerald);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 2rem;
}

.upsell-synergy-box h4 {
  font-size: 1.15rem;
  color: var(--emerald-400);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.synergy-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  font-size: 0.98rem;
  color: var(--text-main);
}

.synergy-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.synergy-list svg {
  color: var(--emerald-400);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.upsell-math-card {
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 1.8rem 2rem;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.math-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.2);
  border: 1px solid var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  flex-shrink: 0;
}

.math-text strong {
  color: #ffffff;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.35rem;
}

.math-text p {
  color: var(--gold-100);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* Upsell CTA Actions */
.upsell-action-zone {
  text-align: center;
  padding-top: 1rem;
}

.btn-upsell-yes {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #0b0e14;
  font-size: 1.25rem;
  font-weight: 800;
  padding: 1.2rem 3rem;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 40px rgba(245, 158, 11, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  letter-spacing: 0.04em;
  margin-bottom: 1.2rem;
}

.btn-upsell-yes:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 15px 50px rgba(245, 158, 11, 0.55);
}

.btn-upsell-no {
  display: block;
  font-size: 0.92rem;
  color: var(--text-dim);
  text-decoration: underline;
  transition: color 0.2s;
  background: none;
  border: none;
  margin: 0 auto;
}

.btn-upsell-no:hover {
  color: var(--text-muted);
}

.upsell-guarantee-note {
  font-size: 0.88rem;
  color: var(--text-dim);
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

@media (max-width: 992px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .timer-banner-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .timer-display-group {
    width: 100%;
    justify-content: space-between;
  }
  .downloads-grid {
    grid-template-columns: 1fr;
  }
  .upsell-hero-grid {
    grid-template-columns: 1fr;
  }
  .upsell-container {
    padding: 2rem;
  }
}

