/* CSS Variables */
:root {
  --news-red: #c00000;
  --news-yellow: #ffeb3b;
  --news-background: #f5f3ef;
  --news-paper: #faf9f7;
  --font-size: 14px;
  --background: #faf9f7;
  --foreground: #1a1a1a;
  --card: #ffffff;
  --card-foreground: #1a1a1a;
  --primary: #030213;
  --primary-foreground: #ffffff;
  --secondary: #f3f3f5;
  --secondary-foreground: #030213;
  --muted: #ececf0;
  --muted-foreground: #717182;
  --accent: #e9ebef;
  --accent-foreground: #030213;
  --destructive: #d4183d;
  --destructive-foreground: #ffffff;
  --border: rgba(0, 0, 0, 0.1);
  --input: transparent;
  --input-background: #f3f3f5;
  --font-weight-medium: 500;
  --font-weight-normal: 400;
  --radius: 0.625rem;
}

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

body {
  font-family: 'Open Sans', 'Roboto', sans-serif;
  font-size: var(--font-size);
  line-height: 1.6;
  color: var(--foreground);
  background: var(--news-paper);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  color: var(--news-red);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  font-family: 'Open Sans', 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #1a1a1a;
}

/* Utility Classes */
.news-badge {
  background: var(--news-red);
  color: white;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0.25rem;
  display: inline-block;
}

.news-headline {
  font-family: 'Bebas Neue', 'Impact', sans-serif !important;
  color: var(--news-red) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.02em !important;
  line-height: 1.1 !important;
}

.news-subheadline {
  font-family: 'Open Sans', sans-serif !important;
  font-weight: 700 !important;
  color: #000000 !important;
  line-height: 1.3 !important;
}

.news-body {
  font-family: 'Open Sans', 'Roboto', sans-serif !important;
  color: #1a1a1a !important;
  line-height: 1.6 !important;
}

.news-quote {
  font-style: italic !important;
  border-left: 4px solid var(--news-red) !important;
  padding-left: 1rem !important;
  margin: 1rem 0 !important;
  background: rgba(192, 0, 0, 0.05) !important;
}

.news-highlight {
  background: var(--news-yellow) !important;
  padding: 0.2em 0.4em !important;
  font-weight: 700 !important;
  color: #000000 !important;
}

.highlight-yellow {
  color: var(--news-yellow) !important;
  font-weight: 700 !important;
  text-shadow: 0 0 10px rgba(255, 235, 59, 0.8) !important;
}

/* Header */
.news-header {
  background: white;
  border-bottom: 2px solid var(--news-red);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  overflow: hidden;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
  overflow: hidden;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.news-logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--news-red);
  margin: 0;
}

.header-nav {
  display: none;
}

.nav-link {
  color: #666;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0 1.5rem;
  transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--news-red);
}

.breaking-news {
  background: var(--news-red);
  color: white;
  padding: 0.5rem;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.urgent-badge {
  background: var(--news-red);
  color: white;
  padding: 0.25rem 0.5rem;
  font-size: 0.625rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0.125rem;
  animation: blink 1.5s infinite;
}

.marquee-container {
  overflow: hidden;
  flex: 1;
}

.marquee {
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}

@keyframes marquee {
  0% { transform: translate3d(100%, 0, 0); }
  100% { transform: translate3d(-100%, 0, 0); }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

@keyframes static-noise {
  0% { transform: translate(0, 0); }
  10% { transform: translate(-1px, -1px); }
  20% { transform: translate(1px, 1px); }
  30% { transform: translate(-1px, 1px); }
  40% { transform: translate(1px, -1px); }
  50% { transform: translate(0, 0); }
  60% { transform: translate(-1px, 0); }
  70% { transform: translate(1px, 0); }
  80% { transform: translate(0, -1px); }
  90% { transform: translate(0, 1px); }
  100% { transform: translate(0, 0); }
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.5));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0.4), rgba(0,0,0,0.8));
}

.static-noise {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: url('https://media.giphy.com/media/oEI9uBYSzLpBK/giphy.gif');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  mix-blend-mode: overlay;
  animation: static-noise 0.1s infinite;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 15;
  max-width: 64rem;
  margin: 0 auto;
  padding: 6vh 1rem 6vh 1rem;
  text-align: center;
}

.hero-badge {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.hero-badge .news-badge {
  animation: blink 1s infinite;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1;
  text-shadow: 
    0 0 10px rgba(255, 0, 0, 0.8),
    0 0 20px rgba(255, 0, 0, 0.6),
    0 0 30px rgba(255, 0, 0, 0.4),
    2px 2px 4px rgba(0, 0, 0, 0.8);
  -webkit-text-stroke: 0.5px black;
  text-stroke: 0.5px black;
}

.title-line {
  display: block;
}

.title-line.red { 
  color: var(--news-red); 
  text-shadow: 
    0 0 15px rgba(220, 38, 38, 0.9),
    0 0 25px rgba(220, 38, 38, 0.7),
    0 0 35px rgba(220, 38, 38, 0.5);
}
.title-line.white { 
  color: white; 
  text-shadow: 
    0 0 10px rgba(255, 255, 255, 0.8),
    0 0 20px rgba(255, 255, 255, 0.6),
    2px 2px 4px rgba(0, 0, 0, 0.8);
}
.title-line.yellow { 
  color: #ffe600; 
  text-shadow: 
    0 0 15px rgba(251, 191, 36, 0.9),
    0 0 25px rgba(251, 191, 36, 0.7),
    0 0 35px rgba(251, 191, 36, 0.5),
    1px 1px 3px rgba(0,0,0,0.7);
  filter: contrast(1.5) brightness(1.2);
}

.hero-subtitle {
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.subtitle-main {
  font-size: 1.125rem;
  color: #e5e5e5;
  margin-bottom: 1rem;
  font-weight: 600;
}

.subtitle-secondary {
  font-size: 1rem;
  color: #ccc;
}

.highlight {
  color: var(--news-red);
  font-weight: bold;
}

.hero-button {
  background: linear-gradient(to right, #c00000, #8b0000);
  color: white;
  border: 2px solid white;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: pulse 1.2s infinite;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.hero-button:hover {
  background: linear-gradient(135deg, #b91c1c 0%, #7f1d1d 50%, #b91c1c 100%);
  box-shadow: 
    0 0 30px rgba(220, 38, 38, 0.8),
    0 0 60px rgba(220, 38, 38, 0.6),
    0 0 90px rgba(220, 38, 38, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

.hero-warning {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: #ff0000 !important;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
}

.live-indicator {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #ff4d4f;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  animation: blink 1s infinite;
  text-align: center;
  text-shadow: 0 0 10px rgba(239, 68, 68, 0.8);
}

.floating-banner {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 20;
}

.urgency-banner {
  background: var(--news-red);
  color: white;
  padding: 0.5rem 0.75rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  animation: blink 1s infinite;
}

/* Video Section */
.video-section {
  padding: 4rem 0;
  background: white;
}

.video-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2rem;
  margin: 1rem 0;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #666;
}

/* Inline CTA buttons inside informational blocks */
.block-cta { margin-top: 1rem; text-align: center; }
.cta-yellow-inline {
  display: inline-block;
  padding: 0.85rem 1.25rem;
  background: #ffd60a;
  color: #000;
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(255, 214, 10, 0.35);
}
.cta-yellow-inline:hover { background: #ffbe0a; }

/* Full-width section CTA panel */
.section-cta-panel {
  margin: 1.25rem 0 2rem 0;
  text-align: center;
}
.cta-big {
  display: inline-block;
  padding: 1.1rem 2rem;
  background: #ffd60a;
  color: #000;
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 12px;
  box-shadow: 0 16px 36px rgba(255, 214, 10, 0.45), 0 6px 18px rgba(0,0,0,0.18);
}
.cta-big:hover { background: #ffbe0a; }

.video-container {
  max-width: 48rem;
  margin: 0 auto 2rem;
}

.video-placeholder {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.video-thumbnail {
  width: 100%;
  height: auto;
  display: block;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
}

.play-button {
  font-size: 4rem;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: transform 0.3s;
}

.play-button:hover {
  transform: scale(1.1);
}

.video-duration {
  font-size: 1.125rem;
  font-weight: 600;
}

.video-info {
  max-width: 48rem;
  margin: 0 auto;
}

.video-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--news-red);
}

.stat-label {
  font-size: 0.875rem;
  color: #666;
}

.video-description {
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.6;
}

/* Doctor Testimony */
.doctor-testimony {
  padding: 4rem 0;
  background: var(--news-background);
}

.testimony-header {
  text-align: center;
  margin-bottom: 3rem;
}

.testimony-content {
  max-width: 64rem;
  margin: 0 auto;
}

.testimony-quote {
  background: white;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
}

.testimony-quote blockquote {
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #333;
}

.testimony-quote cite {
  font-size: 1rem;
  color: #666;
  font-style: normal;
}

.testimony-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.detail-item {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.detail-item h4 {
  color: var(--news-red);
  margin-bottom: 0.5rem;
}

/* How It Works */
.how-it-works {
  padding: 4rem 0;
  background: white;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.step {
  text-align: center;
  padding: 2rem;
  background: var(--news-background);
  border-radius: 0.5rem;
}

.step-number {
  width: 3rem;
  height: 3rem;
  background: var(--news-red);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

.step h3 {
  margin-bottom: 1rem;
  color: var(--news-red);
}

.comparison {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

.comparison-item {
  padding: 2rem;
  border-radius: 0.5rem;
  border: 2px solid;
}

.comparison-item.bad {
  background: #fef2f2;
  border-color: #ef4444;
}

.comparison-item.good {
  background: #f0fdf4;
  border-color: #22c55e;
}

.comparison-item h4 {
  margin-bottom: 1rem;
  text-align: center;
}

.comparison-item.bad h4 {
  color: #dc2626;
}

.comparison-item.good h4 {
  color: #16a34a;
}

.comparison-item ul {
  list-style: none;
}

.comparison-item li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.comparison-item li:last-child {
  border-bottom: none;
}

/* Testimonials */
.testimonials {
  padding: 4rem 0 8rem 0;
  background: var(--news-background);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.testimonial {
  background: white;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-content {
  margin-bottom: 1rem;
  flex-grow: 1;
}

.testimonial-footer {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #666;
  margin-top: auto;
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  margin-right: 1rem;
  object-fit: cover;
}

.testimonial-info h4 {
  margin: 0;
  color: var(--news-red);
}

.testimonial-info p {
  margin: 0;
  font-size: 0.875rem;
  color: #666;
}

.testimonial-rating {
  color: #fbbf24;
  font-size: 1.25rem;
}

/* Urgency Timer */
.urgency-timer {
  padding: 4rem 0;
  background: linear-gradient(to right, #7f1d1d, #dc2626);
  color: white;
}

.urgency-header {
  text-align: center;
  margin-bottom: 3rem;
}

.urgency-badge {
  background: var(--news-yellow);
  color: black;
  padding: 0.5rem 1rem;
  font-size: 1.125rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: inline-block;
}

.urgency-title {
  font-size: 2rem;
  margin: 1rem 0;
  color: white;
}

/* Unified timer block with new color scheme */
.timer-container {
  background: #B30000; /* тёмно-красный фон */
  border: 2px solid #FFD700; /* золотая рамка */
  border-radius: 8px; /* единый скругленный угол */
  padding: 1.5rem; /* единые отступы */
  margin-bottom: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25); /* единая тень */
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.timer-display {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.timer-block {
  background: #1A1A1A; /* тёмно-серый фон блоков */
  padding: 1rem;
  border-radius: 8px; /* единый скругленный угол */
  text-align: center;
}

.timer-number {
  font-size: 3rem;
  font-weight: bold;
  color: #FFD700; /* золотые цифры */
  font-family: 'Bebas Neue', 'Impact', sans-serif; /* единый шрифт заголовков */
  text-transform: uppercase;
}

.timer-label {
  font-size: 1rem; /* единый размер текста */
  color: #FFFFFF; /* белый текст */
  font-family: 'Open Sans', 'Roboto', sans-serif; /* единый шрифт */
  font-weight: 600;
  text-transform: uppercase;
}

.timer-warning {
  text-align: center;
  color: #FFD700; /* золотой акцент */
  font-size: 1.2rem; /* единый размер текста */
  font-weight: 600;
  font-family: 'Open Sans', 'Roboto', sans-serif;
}

.urgency-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

/* Unified block styles */
.stock-card,
.availability-card,
.activity-card {
  background: #1A1A1A; /* единый тёмно-серый фон */
  border: 2px solid #FFD700; /* единая золотая рамка */
  border-radius: 8px; /* единый скругленный угол */
  padding: 1.5rem; /* единые отступы */
  color: #FFFFFF; /* белый текст */
  box-shadow: 0 4px 12px rgba(0,0,0,0.25); /* единая тень */
  font-family: 'Open Sans', 'Roboto', sans-serif; /* единый шрифт */
}

.stock-card h3,
.availability-card h3,
.activity-card h3 {
  color: #FFD700; /* золотые заголовки */
  margin-bottom: 1rem;
  font-family: 'Bebas Neue', 'Impact', sans-serif; /* единый шрифт заголовков */
  font-size: 1.25rem; /* единый размер заголовков */
  font-weight: bold;
  text-transform: uppercase; /* капслок */
  letter-spacing: 0.02em;
}

/* Unified stock block styles */
.stock-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1rem; /* единый размер текста */
}

.stock-number {
  font-size: 1.5rem;
  font-weight: bold;
  color: #DC3545; /* красный для "нет в наличии" */
  font-family: 'Bebas Neue', 'Impact', sans-serif;
}

.stock-bar {
  background: #333333; /* тёмный фон полосы */
  border-radius: 8px;
  height: 1rem;
  margin-bottom: 1rem;
  overflow: hidden;
  border: 1px solid #FFD700; /* золотая рамка */
}

.stock-progress {
  background: #DC3545; /* красный прогресс */
  height: 100%;
  border-radius: 8px;
  transition: width 1s ease;
}

.stock-warning {
  font-size: 1rem; /* единый размер текста */
  color: #FFFFFF; /* белый текст */
  font-weight: 600;
}

/* Unified availability block styles */
.availability-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.availability-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.1); /* полупрозрачный белый фон */
  border: 1px solid rgba(255, 215, 0, 0.3); /* полупрозрачная золотая рамка */
  border-radius: 8px;
  font-size: 1rem; /* единый размер текста */
}

.available {
  font-weight: bold;
  color: #28A745; /* зелёный для "доступно" */
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  text-transform: uppercase;
}

.unavailable {
  font-weight: bold;
  color: #DC3545; /* красный для "нет в наличии" */
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  text-transform: uppercase;
}

/* Unified activity block styles */
.activity-card {
  /* Styles already defined in unified block styles above */
}

.activity-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.activity-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.1); /* полупрозрачный белый фон */
  border: 1px solid rgba(255, 215, 0, 0.3); /* полупрозрачная золотая рамка */
  border-radius: 8px;
  font-size: 1rem; /* единый размер текста */
  color: #FFFFFF; /* белый текст */
}

.activity-badge {
  background: #28A745; /* зелёный для успешных действий */
  color: #FFFFFF;
  padding: 0.25rem 0.5rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: bold;
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.urgency-cta {
  text-align: center;
}

.urgency-cta h3 {
  font-size: 1.5rem;
  color: var(--news-yellow);
  margin-bottom: 1.5rem;
}

.urgency-cta p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.urgency-button {
  background: var(--news-yellow);
  color: black;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.25rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s;
  animation: pulse 2s infinite;
  margin-bottom: 1rem;
}

.urgency-button:hover {
  background: #f59e0b;
}

.urgency-note {
  font-size: 0.875rem;
  color: #ccc;
}

/* Compact Order Section */
.compact-order {
  padding: 3rem 0;
  /* Solid red background to match previous design */
  background: #b80000;
}

.order-card {
  max-width: 900px;
  margin: 0 auto;
  background: #d62828;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(214, 40, 40, 0.3);
  display: grid;
  grid-template-columns: 300px 1fr;
  align-items: center;
}

.product-side {
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Remove any background tint behind the product image */
  background: transparent;
}

.privacy-disclaimer {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  line-height: 1.4;
  margin: 10px 0;
  padding: 8px;
}

.privacy-disclaimer a {
  color: #ff4444 !important;
  text-decoration: underline !important;
}

.privacy-disclaimer a:hover {
  color: #ff6666 !important;
}

.product-img {
  width: 100%;
  max-width: 250px;
  height: auto;
  object-fit: contain;
  /* Remove visual fringe/pink line by eliminating effects and forcing transparency */
  display: block;
  background: transparent;
  border: 0;
  outline: 0;
  filter: none;
  box-shadow: none;
}

.offer-side {
  padding: 2.5rem;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.offer-headline {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: 1.75rem;
  font-weight: bold;
  line-height: 1.2;
  margin: 0;
}

.offer-headline .highlight {
  color: #ffd60a;
  font-weight: 900;
}

.price-section {
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.price-section .old-price {
  color: #cccccc;
  text-decoration: line-through;
  font-size: 1.125rem;
  font-weight: 400;
}

.price-section .new-price {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffd60a;
}

.inline-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.inline-form input[type="text"],
.inline-form input[type="tel"] {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  color: #333;
  transition: border-color 0.2s ease;
}

.inline-form input[type="text"]:focus,
.inline-form input[type="tel"]:focus {
  outline: none;
  border-color: #ffd60a;
  background: #ffffff;
}

.inline-form input::placeholder {
  color: #666;
}

/* Phone error text */
.phone-error { font-size: 0.85rem; color: #ffb3b3; margin-top: 0.25rem; }

.order-btn {
  padding: 1rem 2rem;
  background: #ffd60a;
  color: #000000;
  border: none;
  border-radius: 8px;
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: 1.125rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
  box-shadow: 0 4px 12px rgba(255, 214, 10, 0.3);
}

.order-btn:hover {
  background: #ffb600;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(255, 214, 10, 0.4);
}

.conditions {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  line-height: 1.4;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .order-card {
    grid-template-columns: 1fr;
    max-width: 95%;
    margin: 0 auto;
  }
  
  .product-side {
    padding: 1.5rem;
    order: 1;
  }
  
  .product-img {
    max-width: 200px;
  }
  
  .offer-side {
    padding: 2rem;
    text-align: center;
    order: 2;
  }
  
  .offer-headline {
    font-size: 1.5rem;
  }
  
  .price-section {
    justify-content: center;
  }
  
  .price-section .new-price {
    font-size: 2rem;
  }
}

/* Old styles removed - using new compact design */

/* Clean Product Column */
.product-column {
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image-container {
  width: 300px;
  height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.product-image {
  width: 90%;
  height: 90%;
  object-fit: contain;
  border-radius: 8px;
}

/* Hide decorative elements */
.image-reflection,
.product-badge,
.discount-label {
  display: none;
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #FFD700;
  color: #000000;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: 0.875rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.discount-label {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #28A745;
  color: #FFFFFF;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: 1.25rem;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.4);
}

.placeholder-content {
  text-align: center;
  padding: 2rem 1rem;
}

.product-name {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: 2.5rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.product-subtitle {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  line-height: 1.4;
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature {
  font-size: 0.875rem;
  font-weight: 600;
  opacity: 0.9;
}

/* Clean Form Column */
.form-column {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Clean Offer Header */
.offer-header {
  text-align: left;
}

.offer-title {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: 2rem;
  font-weight: bold;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.offer-subtitle {
  font-size: 1rem;
  color: #cccccc;
  font-weight: 400;
  line-height: 1.4;
}

/* Clean Price Block */
.price-block {
  margin-bottom: 1rem;
}

.price-comparison {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1rem;
}

.old-price {
  color: #cccccc;
  text-decoration: line-through;
  font-size: 1.25rem;
  font-weight: 400;
}

.new-price {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: 3rem;
  font-weight: bold;
  color: #00FF41;
}

.savings-badge {
  background: #DC2626;
  color: #FFFFFF;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: 0.875rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-block;
  margin-top: 0.5rem;
}

/* Hide Stock Counter */
.stock-counter {
  display: none;
}

/* Compact Timer */
.compact-timer {
  color: #FFFFFF;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.timer-text {
  color: #cccccc;
}

.timer-digits {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: 1.125rem;
  font-weight: bold;
  color: #FFD600;
}

/* Clean Form Styles */
.aggressive-form {
  margin-bottom: 2rem;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.field-group {
  position: relative;
}

.field-group input {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 400;
  background: #ffffff;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.field-group input:focus {
  outline: none;
  border-color: #FFD600;
}

.field-group input::placeholder {
  color: #888;
  font-weight: 400;
}

/* Clean CTA Button */
.cta-button {
  width: 100%;
  padding: 1.25rem 2rem;
  background: #FFD600;
  color: #000000;
  border: none;
  border-radius: 6px;
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: 1.25rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background-color 0.2s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  background: #FFB600;
}

/* Clean Benefits Row */
.benefits-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.benefit-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.benefit-text {
  font-size: 0.75rem;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.3;
}

/* Privacy Text */
.privacy-text {
  font-size: 0.75rem;
  color: #6c757d;
  text-align: center;
  line-height: 1.4;
}

.privacy-text a {
  color: #B30000;
  text-decoration: underline;
}

.privacy-text a:hover {
  color: #DC2626;
}

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

.package-option {
  padding: 1rem;
  border: 2px solid #d1d5db;
  border-radius: 0.5rem;
  text-align: center;
  position: relative;
}

.package-option.popular {
  border: 4px solid #dc2626;
  background: #fef2f2;
}

.popular-badge {
  position: absolute;
  top: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: #dc2626;
  color: white;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: bold;
  text-transform: uppercase;
}

.package-option h4 {
  margin-bottom: 0.5rem;
  color: var(--news-red);
}

.package-option.popular h4 {
  color: #dc2626;
}

.package-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: #22c55e;
  margin-bottom: 0.5rem;
}

.package-option.popular .package-price {
  color: #dc2626;
}

.package-option p {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 0.25rem;
}

.savings {
  font-size: 0.75rem;
  color: #22c55e;
  font-weight: bold;
}

.order-form-fields {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

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

.form-field label {
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: black;
}

.form-field input,
.form-field select {
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.25rem;
  font-size: 1rem;
  background: var(--input-background);
}

.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--news-red);
  box-shadow: 0 0 0 3px rgba(192, 0, 0, 0.1);
}

.submit-button {
  width: 100%;
  background: #22c55e;
  color: white;
  border: none;
  padding: 1rem;
  font-size: 1.25rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.submit-button:hover {
  background: #16a34a;
}

.security-info {
  text-align: center;
  font-size: 0.875rem;
  color: #666;
}

.security-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

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

.trust-item {
  background: white;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  text-align: center;
  font-weight: bold;
}

/* FAQ */
.faq {
  padding: 4rem 0;
  background: white;
}

.faq-list {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  background: #f9fafb;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
}

.faq-question:hover {
  background: #f3f4f6;
}

.faq-question h3 {
  margin: 0;
  color: var(--news-red);
  font-size: 1.125rem;
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--news-red);
  transition: transform 0.3s;
}

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

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 1.5rem;
  max-height: 200px;
}

/* Final Offer */
.final-offer {
  padding: 4rem 0;
  background: var(--news-background);
}

.final-header {
  text-align: center;
  margin-bottom: 3rem;
}

.final-title {
  font-size: 2rem;
  margin: 1rem 0;
}

.final-content {
  max-width: 48rem;
  margin: 0 auto;
}

.final-message {
  text-align: center;
  margin-bottom: 2rem;
}

.final-message p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.final-offer-box {
  background: white;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: 3px solid var(--news-red);
}

.final-offer-box h3 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.offer-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.offer-features {
  list-style: none;
  padding: 0;
}

.offer-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.offer-features li:last-child {
  border-bottom: none;
}

.final-cta {
  text-align: center;
}

.final-button {
  background: var(--news-red);
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.25rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-bottom: 1rem;
}

.final-button:hover {
  background: #a00000;
}

.final-note {
  font-size: 0.875rem;
  color: #666;
}

/* Mobile Form */
.mobile-form {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: #dc2626;
  color: white;
  padding: 1rem;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
  display: none;
  animation: slide-up 0.5s ease-out;
}

@keyframes slide-up {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.mobile-form-content {
  text-align: center;
}

.mobile-badge {
  background: var(--news-yellow);
  color: black;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.mobile-title {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.mobile-subtitle {
  font-size: 0.875rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.mobile-button {
  width: 100%;
  background: var(--news-yellow);
  color: black;
  border: none;
  padding: 0.75rem;
  font-size: 1.125rem;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.mobile-button:hover {
  background: #f59e0b;
}

/* Footer */
.footer {
  background: #111827;
  color: white;
  padding: 2rem 0;
}

.footer-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.footer-header h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: white;
}

.footer-header p {
  color: #9ca3af;
  font-size: 0.875rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-column h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: white;
}

.footer-column p {
  color: #9ca3af;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.footer-legal {
  border-top: 1px solid #374151;
  padding-top: 1.5rem;
  text-align: center;
}

.footer-legal p {
  color: #6b7280;
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (min-width: 768px) {
  .header-nav {
    display: flex;
  }
  
  .hero-title {
    font-size: 5rem;
  }
  
  .title-line {
    font-size: 5rem;
  }
  
  .floating-banner {
    top: 2rem;
    left: 2rem;
    right: 2rem;
  }
  
  .urgency-banner {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }
  
  .mobile-form {
    display: none;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 5.5rem;
  }
  
  .title-line {
    font-size: 5.5rem;
  }
}

@media (max-width: 767px) {
  .container {
    padding: 0 0.5rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .title-line {
    font-size: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .package-options {
    grid-template-columns: 1fr;
  }
  
  .urgency-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  /* Mobile adjustments for unified blocks */
  .timer-container {
    padding: 1rem;
    margin-bottom: 1rem;
  }
  
  .timer-number {
    font-size: 2rem;
  }
  
  .timer-label {
    font-size: 0.9rem;
  }
  
  .timer-warning {
    font-size: 1rem;
  }
  
  .stock-card,
  .availability-card,
  .activity-card {
    padding: 1rem;
  }
  
  .stock-card h3,
  .availability-card h3,
  .activity-card h3 {
    font-size: 1.1rem;
  }
  
  .stock-info,
  .availability-item,
  .activity-item {
    font-size: 0.9rem;
  }
  
  /* Mobile Order Form */
  .order-block {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .product-column {
    padding: 1.5rem 1rem;
  }
  
  .product-image-container {
    width: 250px;
    height: 320px;
  }
  
  .product-image {
    width: 100%;
    height: 100%;
  }
  
  .form-column {
    padding: 1.5rem 1rem;
  }
  
  .offer-title {
    font-size: 1.5rem;
  }
  
  .new-price {
    font-size: 2.5rem;
  }
  
  .price-comparison {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .benefits-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .benefit-item {
    flex-direction: row;
    text-align: left;
    justify-content: flex-start;
  }
  
  .benefit-icon {
    margin-right: 0.75rem;
    margin-bottom: 0;
  }
  
  .cta-button {
    font-size: 1.125rem;
    padding: 1rem 1.5rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .steps-container {
    grid-template-columns: 1fr;
  }
  
  .comparison {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .mobile-form {
    display: block;
  }
} 

/* Video Section - Enhanced */
.video-evidence-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.video-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #dc2626;
  color: white;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 0.25rem;
}

.video-caption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
}

.video-caption p {
  color: white;
  font-weight: bold;
  font-size: 0.875rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.8);
}

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

.evidence-card {
  padding: 1rem;
  border-radius: 0.5rem;
  border: 2px solid;
  min-height: 200px;
  display: flex;
  flex-direction: column;
}

.evidence-card.medical {
  min-height: 240px;
}

.evidence-card.whatsapp {
  background: #fef2f2;
  border-color: #ef4444;
}

.evidence-card.medical {
  background: #fef2f2;
  border-color: #ef4444;
}

.evidence-card.call {
  background: #fef2f2;
  border-color: #ef4444;
}

.evidence-badge {
  background: var(--news-red);
  color: white;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.message-container {
  background: white;
  padding: 1rem;
  border-radius: 0.25rem;
  border-left: 4px solid var(--news-red);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.message-time {
  font-size: 0.75rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.message-author {
  font-weight: bold;
  color: #333;
  margin-bottom: 0.5rem;
}

.message-text {
  font-style: italic;
  color: #333;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.message-status {
  font-size: 0.75rem;
  color: #666;
}

.medical-record {
  background: white;
  padding: 1rem;
  border-radius: 0.25rem;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.record-image {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  border-radius: 0.25rem;
  margin-bottom: 0.75rem;
}

.record-text {
  font-size: 0.875rem;
  color: #333;
  line-height: 1.4;
}

.confidential {
  font-weight: bold;
  color: var(--news-red);
}

.call-record {
  background: white;
  padding: 1rem;
  border-radius: 0.25rem;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.call-time {
  font-size: 0.75rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.call-text {
  font-style: italic;
  color: #333;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.call-warning {
  background: var(--news-red);
  color: white;
  padding: 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
}

.call-details {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #e5e5e5;
}

.call-details p {
  font-size: 0.75rem;
  color: #666;
  margin-bottom: 0.25rem;
}

.call-details strong {
  color: #333;
}

.emotional-appeal {
  background: #fef2f2;
  border: 2px solid var(--news-red);
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  margin-top: 2rem;
}

.emotional-appeal h3 {
  color: var(--news-red);
  margin-bottom: 1rem;
}

.emotional-appeal p {
  font-size: 1.125rem;
  color: #333;
  line-height: 1.6;
}

/* Doctor Testimony - Enhanced */
.doctor-photo {
  text-align: center;
  margin-bottom: 2rem;
}

.doctor-image {
  width: 100%;
  max-width: 300px;
  height: 20rem;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.doctor-info {
  background: black;
  color: white;
  padding: 1rem;
  border-radius: 0.5rem;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

.doctor-info h4 {
  color: white;
  margin-bottom: 0.25rem;
}

.doctor-info p {
  color: #ccc;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.death-date {
  color: #ef4444 !important;
  font-size: 0.75rem;
}

.testimony-quotes {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

.quote-card {
  padding: 1.5rem;
  border-radius: 0.5rem;
  border-left: 4px solid;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

.quote-card.confession-1 {
  background: #e9ecef;
  border-left-color: #495057;
}

.quote-card.confession-2 {
  background: #dee2e6;
  border-left-color: #343a40;
}

.quote-card.confession-3 {
  background: #ced4da;
  border-left-color: #212529;
}

.quote-badge {
  background: var(--news-red);
  color: white;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.quote-card blockquote {
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #333;
}

.quote-card cite {
  font-size: 0.875rem;
  color: #666;
  font-style: normal;
}

.final-revelation {
  background: black;
  color: white;
  padding: 3rem;
  border: 4px solid var(--news-red);
  border-radius: 0.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  text-align: center;
  margin-bottom: 2rem;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

.revelation-badge {
  background: var(--news-red);
  color: white;
  padding: 0.5rem 1rem;
  font-size: 1.125rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.final-revelation h3 {
  color: var(--news-yellow);
  margin-bottom: 1.5rem;
}

.final-revelation p {
  font-size: 1.125rem;
  color: #ccc;
  margin-bottom: 1.5rem;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

.revelation-quote {
  background: var(--news-red);
  padding: 1.5rem;
  border-radius: 0.5rem;
  display: inline-block;
}

.revelation-quote p {
  font-size: 1.25rem;
  font-weight: bold;
  color: white;
  margin: 0;
}

.warning-message {
  background: #fefce8;
  border: 2px solid #fbbf24;
  border-radius: 0.5rem;
  padding: 1rem;
  text-align: center;
}

.warning-message p {
  font-size: 0.875rem;
  color: #666;
}

/* How It Works - Enhanced */
.before-after {
  margin-bottom: 4rem;
}

.before-after h3 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #333;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  background: linear-gradient(to right, #fef2f2, #f0fdf4);
  padding: 3rem;
  border: 2px solid #d1d5db;
  border-radius: 0.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  min-height: 600px;
}

.comparison-badge {
  padding: 0.5rem 1rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: inline-block;
  border-radius: 0.25rem;
}

.comparison-badge.bad {
  background: #dc2626;
  color: white;
}

.comparison-badge.good {
  background: #16a34a;
  color: white;
}

.comparison-image {
  position: relative;
  margin-bottom: 1.5rem;
  min-height: 324px;
}

.comparison-img {
  width: 100%;
  height: 324px;
  object-fit: cover;
  border-radius: 0.5rem;
}

.image-overlay {
  position: absolute;
  top: -3rem;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  text-align: center;
}

.image-overlay.bad .overlay-title,
.image-overlay.bad .overlay-subtitle {
  color: #dc2626;
}

.image-overlay.good .overlay-title,
.image-overlay.good .overlay-subtitle {
  color: #16a34a;
}

.comparison-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  color: white;
  border-radius: 0.5rem;
  padding-top: 2rem;
}

.comparison-overlay.bad {
  background: rgba(220, 38, 38, 0.1);
}

.comparison-overlay.good {
  background: rgba(22, 163, 74, 0.1);
}

.overlay-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.overlay-subtitle {
  font-size: 1rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.comparison-list {
  list-style: none;
  padding: 0;
}

.comparison-list.bad li {
  color: #dc2626;
  padding: 0.25rem 0;
}

.comparison-list.good li {
  color: #16a34a;
  padding: 0.25rem 0;
}

.ingredients-section {
  margin-bottom: 3rem;
}

.ingredients-section h3 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #333;
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

.ingredient-card {
  padding: 1.25rem;
  text-align: center;
  border: 2px solid #d1d5db;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.ingredient-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: transparent;
  border: 4px solid var(--news-red);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  transition: all 0.3s ease;
}

.ingredient-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.ingredient-card:hover {
  border-color: var(--news-red);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transform: translateY(-3px);
}

.ingredient-card:hover .ingredient-icon {
  border-color: var(--news-red);
  transform: scale(1.05);
  box-shadow: 0 3px 15px rgba(192, 0, 0, 0.3);
}

.ingredient-card h4 {
  color: var(--news-red);
  margin-bottom: 0.5rem;
  font-size: clamp(1.2rem, 2.5vw + 0.2rem, 1.6rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.ingredient-badge {
  background: var(--news-red);
  color: white;
  padding: 0.25rem 0.5rem;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: inline-block;
  border-radius: 0.25rem;
  letter-spacing: 0.05em;
}

.ingredient-card p {
  font-size: 0.75rem;
  color: #666;
  line-height: 1.4;
  margin: 0;
  font-weight: 400;
}

.scientific-proof {
  background: #dbeafe;
  border: 2px solid #3b82f6;
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
}

.proof-badge {
  background: var(--news-red);
  color: white;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: inline-block;
}

.scientific-proof h3 {
  color: #333;
  margin-bottom: 1.5rem;
}

.proof-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.proof-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.proof-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: white;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
  min-height: 4rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.stat-label {
  font-weight: 600;
  color: #333;
  flex: 1;
  font-size: 1rem;
}

.stat-value {
  font-weight: bold;
  color: #16a34a;
  font-size: 1.375rem;
  flex-shrink: 0;
  margin-left: 1rem;
}

.proof-image {
  text-align: center;
}

.proof-img {
  width: 100%;
  height: auto;
  max-height: 20rem;
  object-fit: contain;
  border-radius: 0.5rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.proof-note {
  font-size: 0.75rem;
  color: #666;
  font-style: italic;
  margin-top: 0.5rem;
}

.censorship-warning {
  background: #fef2f2;
  border: 2px solid #ef4444;
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
}

.censorship-warning h4 {
  color: #dc2626;
  margin-bottom: 0.5rem;
}

.censorship-warning p {
  color: #dc2626;
  font-size: 0.875rem;
}

/* Testimonials - Enhanced */
.statistics-banner {
  background: linear-gradient(to right, #f0fdf4, #dbeafe);
  border: 2px solid #22c55e;
  border-radius: 0.5rem;
  padding: 2rem;
  margin-bottom: 3rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.statistics-banner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  text-align: center;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.stat-item:nth-child(1) .stat-number { color: #16a34a; }
.stat-item:nth-child(2) .stat-number { color: #16a34a; }
.stat-item:nth-child(3) .stat-number { color: #16a34a; }
.stat-item:nth-child(4) .stat-number { color: #16a34a; }

.stat-label {
  font-size: 0.875rem;
  color: #666;
}

.testimonial {
  background: white;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial:hover {
  border-color: var(--news-red);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.testimonial-avatar {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  margin-right: 1rem;
  object-fit: cover;
}

.testimonial-info h4 {
  margin: 0;
  color: var(--news-red);
}

.testimonial-info p {
  margin: 0;
  font-size: 0.875rem;
  color: #666;
}

.verified-badge {
  background: #16a34a;
  color: white;
  padding: 0.125rem 0.375rem;
  font-size: 0.625rem;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 0.125rem;
  margin-top: 0.25rem;
  display: inline-block;
}

.pressure-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.pressure-before,
.pressure-after {
  padding: 0.75rem;
  border-radius: 0.25rem;
  border-left: 4px solid;
}

.pressure-before {
  background: #fef2f2;
  border-left-color: #ef4444;
}

.pressure-after {
  background: #f0fdf4;
  border-left-color: #22c55e;
}

.pressure-label {
  font-size: 0.75rem;
  color: #666;
  margin-bottom: 0.25rem;
}

.pressure-value {
  font-size: 1.25rem;
  font-weight: bold;
}

.pressure-before .pressure-value {
  color: #dc2626;
}

.pressure-after .pressure-value {
  color: #16a34a;
}

.testimonial-content {
  margin-bottom: 1rem;
  flex-grow: 1;
}

.testimonial-content p {
  font-style: italic;
  line-height: 1.6;
  color: #333;
}

.testimonial-footer {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #666;
  margin-top: auto;
}

.social-proof {
  background: #dbeafe;
  border: 2px solid #3b82f6;
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  margin: 3rem 0 2rem 0;
}

.social-proof h3 {
  color: #333;
  margin-bottom: 1.5rem;
}

.proof-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.proof-stat {
  text-align: center;
}

.proof-number {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 0.25rem;
}

.proof-label {
  font-size: 0.875rem;
  color: #666;
}

.urgency-message {
  background: #fefce8;
  border: 2px solid #fbbf24;
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
}

.urgency-message h4 {
  color: #d97706;
  margin-bottom: 0.5rem;
}

.urgency-message p {
  color: #d97706;
  font-size: 0.875rem;
}

/* FAQ - Enhanced */
.trust-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  background: #f0fdf4;
  border: 2px solid #22c55e;
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.trust-item {
  text-align: center;
}

.trust-number {
  font-weight: bold;
  color: #333;
  margin-bottom: 0.25rem;
}

.trust-label {
  font-size: 0.875rem;
  color: #666;
}

.faq-badge {
  background: var(--news-red);
  color: white;
  padding: 0.125rem 0.375rem;
  font-size: 0.625rem;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 0.125rem;
  margin-right: 0.75rem;
}

.faq-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1rem;
}

.faq-text p {
  color: #333;
  line-height: 1.6;
}

.faq-evidence {
  text-align: center;
}

.evidence-image {
  width: 100%;
  height: 8rem;
  object-fit: cover;
  border-radius: 0.25rem;
  border: 1px solid #e5e7eb;
}

.evidence-caption {
  font-size: 0.75rem;
  color: #666;
  margin-top: 0.25rem;
}

.social-comments {
  background: #dbeafe;
  border: 2px solid #3b82f6;
  border-radius: 0.5rem;
  padding: 2rem;
  margin-top: 2rem;
}

.social-comments h3 {
  color: #333;
  margin-bottom: 1.5rem;
  text-align: center;
}

.comments-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comment {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem;
  background: white;
  border-radius: 0.25rem;
  border: 1px solid #e5e7eb;
}

.comment-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  object-fit: cover;
}

.comment-content {
  flex: 1;
}

.comment-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.comment-author {
  font-weight: bold;
  color: #333;
}

.comment-badge {
  background: #3b82f6;
  color: white;
  padding: 0.125rem 0.375rem;
  font-size: 0.625rem;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 0.125rem;
}

.comment-text {
  font-size: 0.875rem;
  color: #333;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.comment-footer {
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
  color: #666;
}

.trust-message {
  background: #fefce8;
  border: 2px solid #fbbf24;
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  margin-top: 2rem;
}

.trust-message h4 {
  color: #d97706;
  margin-bottom: 0.5rem;
}

.trust-message p {
  color: #d97706;
  font-size: 0.875rem;
}

/* Final Offer - Enhanced */
.final-offer {
  background: linear-gradient(to bottom, #7f1d1d, #000000);
  color: white;
  padding: 4rem 0;
}

.final-badge {
  background: var(--news-yellow);
  color: black;
  padding: 0.5rem 1rem;
  font-size: 1.125rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: inline-block;
}

.final-title {
  color: var(--news-yellow);
  margin-bottom: 1rem;
}

.final-subtitle {
  color: #ccc;
  font-size: 1.125rem;
  max-width: 48rem;
  margin: 0 auto;
}

.price-comparison {
  background: white;
  color: black;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  margin-bottom: 2rem;
}

.price-comparison h3 {
  color: #333;
  text-align: center;
  margin-bottom: 2rem;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.pharmacy-prices,
.cardispin-price,
.savings {
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 2px solid;
}

.pharmacy-prices {
  background: #fef2f2;
  border-color: #ef4444;
}

.cardispin-price {
  background: #f0fdf4;
  border-color: #22c55e;
  position: relative;
}

.best-choice {
  position: absolute;
  top: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: #22c55e;
  color: white;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 0.25rem;
}

.savings {
  background: #fefce8;
  border-color: #fbbf24;
}

.pharmacy-prices h4,
.cardispin-price h4,
.savings h4 {
  color: #333;
  margin-bottom: 1rem;
  text-align: center;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}

.price-value {
  font-weight: bold;
}

.price-value.free {
  color: #16a34a;
}

.price-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 1.125rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

.total-value {
  color: #dc2626;
}

.cardispin-price .total-value {
  color: #16a34a;
}

.price-note {
  font-size: 0.75rem;
  color: #666;
  margin-top: 0.5rem;
  text-align: center;
}

.savings-content {
  text-align: center;
}

.savings-amount {
  font-size: 2.5rem;
  font-weight: bold;
  color: #d97706;
  margin-bottom: 0.5rem;
}

.savings-period {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 1rem;
}

.savings-year {
  background: #fef3c7;
  padding: 0.75rem;
  border-radius: 0.25rem;
}

.year-savings {
  font-weight: bold;
  color: #d97706;
}

.government-program {
  background: #1e3a8a;
  border: 2px solid #3b82f6;
  border-radius: 0.5rem;
  padding: 2rem;
  margin-bottom: 2rem;
}

.program-badge {
  background: #3b82f6;
  color: white;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: inline-block;
}

.government-program h3 {
  color: #93c5fd;
  margin-bottom: 1.5rem;
  text-align: center;
}

.program-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.program-image {
  text-align: center;
}

.program-img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  border-radius: 0.5rem;
  border: 2px solid #3b82f6;
}

.program-note {
  font-size: 0.75rem;
  color: #93c5fd;
  margin-top: 0.5rem;
}

.program-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.program-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.program-label {
  font-weight: bold;
  color: white;
}

.program-value {
  font-size: 0.875rem;
  color: #93c5fd;
}

.bonus-section {
  background: linear-gradient(to right, #581c87, #be185d);
  border: 2px solid #ec4899;
  border-radius: 0.5rem;
  padding: 2rem;
  margin-bottom: 2rem;
}

.bonus-badge {
  background: #ec4899;
  color: white;
  padding: 0.5rem 1rem;
  font-size: 1.125rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: inline-block;
}

.bonus-section h3 {
  color: #f3e8ff;
  margin-bottom: 2rem;
  text-align: center;
}

.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.bonus-item {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #ec4899;
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
}

.bonus-item h4 {
  color: #f3e8ff;
  margin-bottom: 0.5rem;
}

.bonus-item p {
  color: #e9d5ff;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.bonus-price {
  font-size: 0.75rem;
  color: #ec4899;
}

.bonus-total {
  text-align: center;
}

.crossed-price {
  text-decoration: line-through;
  color: #e9d5ff;
}

.free-bonus {
  color: #f3e8ff;
  font-weight: bold;
}

.final-cta {
  text-align: center;
  margin-bottom: 2rem;
}

.final-cta h3 {
  color: var(--news-yellow);
  margin-bottom: 1.5rem;
}

.final-cta p {
  color: #ccc;
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.final-pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.final-pricing .old-price {
  color: #999;
  text-decoration: line-through;
  font-size: 1.5rem;
}

.final-pricing .new-price {
  color: var(--news-yellow);
  font-size: 3rem;
  font-weight: bold;
}

.final-pricing .discount-badge {
  background: #dc2626;
  color: white;
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  font-weight: bold;
  text-transform: uppercase;
}

.final-note {
  color: #ccc;
  margin-bottom: 2rem;
}

.final-button {
  background: var(--news-yellow);
  color: black;
  border: none;
  padding: 1.5rem 3rem;
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  animation: pulse 2s infinite;
  margin-bottom: 1.5rem;
}

.final-button:hover {
  background: #f59e0b;
}

.final-guarantees {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #ccc;
}

.memorial-message {
  background: black;
  border: 2px solid #4b5563;
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
}

.memorial-message h4 {
  color: #d1d5db;
  margin-bottom: 1rem;
}

.memorial-message p {
  color: #9ca3af;
  font-style: italic;
  max-width: 32rem;
  margin: 0 auto 1rem;
  line-height: 1.6;
}

.memorial-note {
  font-size: 0.75rem;
  color: #6b7280;
}

/* Responsive adjustments for new elements */
@media (max-width: 767px) {
  .video-evidence-grid {
    grid-template-columns: 1fr;
  }
  
  .comparison-grid {
    grid-template-columns: 1fr;
  }
  
  .ingredients-grid {
    grid-template-columns: 1fr;
  }
  
  .proof-content {
    grid-template-columns: 1fr;
  }
  
  .program-content {
    grid-template-columns: 1fr;
  }
  
  .bonuses-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-content {
    grid-template-columns: 1fr;
  }
  
  .final-pricing {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .final-pricing .new-price {
    font-size: 2rem;
  }
} 

@media (max-width: 1024px) {
  .ingredients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 640px) {
  .ingredients-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .ingredient-card {
    padding: 1rem;
  }
  
  .ingredient-icon {
    width: 140px;
    height: 140px;
    border-width: 4px;
  }
  
  .ingredient-icon img {
    width: 100%;
    height: 100%;
  }
 }

/* New Purchase Block */
.purchase-block {
  background: #dc2626;
  padding: 2rem 0;
  color: white;
}

.purchase-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 0 1rem;
}

.product-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.product-badge {
  background: #fbbf24;
  color: black;
  padding: 0.5rem 1rem;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 0.25rem;
}

.product-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.product-bottle {
  width: 200px;
  height: 300px;
  object-fit: cover;
  border-radius: 1rem;
}

.discount-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #fbbf24;
  color: black;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.25rem;
}

.product-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
}

.benefit-icon {
  font-size: 1.5rem;
}

.product-description {
  text-align: center;
  font-size: 0.75rem;
  color: #f3f4f6;
  line-height: 1.4;
}

.order-section {
  background: white;
  color: black;
  padding: 2rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.critical-warning {
  background: #dc2626;
  color: white;
  padding: 1rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: bold;
}

.warning-icon {
  font-size: 1.25rem;
}

.last-order {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: #f59e0b;
}

.fire-icon {
  font-size: 2rem;
}

.product-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: black;
  text-align: center;
}

.product-subtitle {
  font-size: 1.5rem;
  color: #f59e0b;
  text-align: center;
  font-weight: bold;
}

.price-comparison {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.old-price {
  color: #9ca3af;
  text-decoration: line-through;
  font-size: 1.5rem;
}

.new-price-badge {
  background: #fbbf24;
  color: black;
  padding: 0.5rem 1rem;
  font-size: 1.5rem;
  font-weight: bold;
  border-radius: 0.5rem;
}

.stock-warning {
  background: #fef3c7;
  color: #d97706;
  padding: 1rem;
  border-radius: 0.5rem;
  text-align: center;
  font-weight: bold;
}

.savings-badge {
  background: #dc2626;
  color: white;
  padding: 1rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: bold;
  font-size: 1.25rem;
}

.dollar-icon {
  font-size: 1.5rem;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field label {
  font-weight: bold;
  color: black;
}

.form-field input {
  padding: 1rem;
  border: 2px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 1rem;
}

.form-field input:focus {
  outline: none;
  border-color: #dc2626;
}

.order-button {
  background: #fbbf24;
  color: black;
  border: none;
  padding: 1.5rem;
  border-radius: 0.5rem;
  font-size: 1.25rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.order-button:hover {
  background: #f59e0b;
}

.star-icon {
  font-size: 1.5rem;
}

.privacy-notice {
  font-size: 0.75rem;
  color: #6b7280;
  text-align: center;
  line-height: 1.4;
}

.privacy-notice a {
  color: #dc2626;
  text-decoration: underline;
}

.guarantees {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.guarantee-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  text-align: center;
  font-size: 0.75rem;
  color: #6b7280;
}

.check-icon,
.truck-icon,
.shield-icon {
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  .purchase-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .guarantees {
    flex-direction: column;
    gap: 1rem;
  }
}

.product-bottle-placeholder {
  width: 200px;
  height: 300px;
  background: white;
  border-radius: 1rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #e5e7eb;
}

.bottle-label {
  background: #8b5cf6;
  color: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  width: 80%;
  height: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
}

.product-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}

.product-subname {
  font-size: 1.25rem;
  font-weight: bold;
  color: white;
}

.capsules-info {
  font-size: 0.75rem;
  color: #f3f4f6;
  margin-top: 0.5rem;
}

.description {
  font-size: 0.625rem;
  color: #f3f4f6;
  line-height: 1.2;
  margin-top: 0.25rem;
}

/* Leak/Pseudo-Social Video Section */
.leak-video-section {
  background: #0b0b0b;
  padding: 3rem 0 2.5rem;
  color: #e5e5e5;
  position: relative;
  box-shadow: inset 0 10px 40px rgba(0,0,0,0.6);
}

.leak-inner {
  max-width: 800px;
  margin: 0 auto;
}

.leak-header {
  text-align: center;
  margin-bottom: 1.25rem;
}

.leak-title {
  color: #ffffff;
  font-size: 1.75rem;
  margin-top: 0.75rem;
  margin-bottom: 0.25rem;
  text-shadow: 0 0 18px rgba(192,0,0,0.35);
}

.leak-subtitle {
  color: #bdbdbd;
  font-size: 0.95rem;
}

.leak-embed { }

.leak-video {
  position: relative;
  width: 100%;
  background: #000;
  border: 3px solid var(--news-red);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.65), 0 0 0 2px rgba(192,0,0,0.25) inset, 0 0 0 6px rgba(192,0,0,0.15);
  aspect-ratio: 16 / 9;
  min-height: 260px;
  background-image: repeating-linear-gradient(0deg, rgba(255,255,255,0.03), rgba(255,255,255,0.03) 2px, rgba(0,0,0,0.05) 2px, rgba(0,0,0,0.05) 4px);
}

.leak-video::before {
  content: "";
  display: block;
  padding-top: 56.25%; /* 16:9 */
}

.leak-video-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.05) brightness(0.9);
}

.leak-scanlines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.03) 50%, rgba(0,0,0,0.05) 50%);
  background-size: 100% 2px;
  mix-blend-mode: overlay;
}

.leak-badge-live {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--news-red);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  text-transform: uppercase;
  box-shadow: 0 0 16px rgba(192,0,0,0.5);
}

.leak-duration {
  position: absolute;
  right: 10px;
  bottom: 10px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.leak-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ff4d4f 0%, #c00000 60%, #8b0000 100%);
  color: #fff;
  font-size: 2rem;
  line-height: 86px;
  text-align: center;
  border: 2px solid rgba(255,255,255,0.85);
  box-shadow: 0 0 40px rgba(255,0,0,0.6), 0 8px 24px rgba(0,0,0,0.5);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.leak-play:hover {
  transform: translate(-50%, -50%) scale(1.04);
  box-shadow: 0 0 60px rgba(255,0,0,0.75), 0 10px 28px rgba(0,0,0,0.6);
}

.leak-meta { display: none; }
 .leak-comments { display: none; }

/* Stats bar under leak video */
.leak-stats-bar {
  margin-top: 0.75rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  background: #0f0f0f;
  border: 1px solid #1f1f1f;
  border-radius: 10px;
  padding: 0.75rem;
}

.leak-stat {
  text-align: center;
}

.leak-stat-number {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: 1.5rem;
  color: #ffffff;
  line-height: 1;
}

.leak-stat-label {
  font-size: 0.85rem;
  color: #bdbdbd;
}

/* Ensure play button centered and bold */
.leak-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ff4d4f 0%, #c00000 60%, #8b0000 100%);
  color: #fff;
  font-size: 2.25rem;
  line-height: 96px;
  text-align: center;
  border: 3px solid rgba(255,255,255,0.9);
  box-shadow: 0 0 40px rgba(255,0,0,0.6), 0 8px 24px rgba(0,0,0,0.5);
  cursor: pointer;
}

/* Remove modal styles no longer used */
.leak-modal, .leak-modal-backdrop, .leak-modal-dialog, .leak-modal-frame, .leak-modal-aspect, .leak-modal-close { display: none !important; }

/* Mobile polish: comprehensive small-screen tweaks */
@media (max-width: 640px) {
  /* Global */
  html, body { overscroll-behavior-y: none; }
  body { -webkit-tap-highlight-color: transparent; }
  img, video { max-width: 100%; height: auto; }
  .container { padding: 0 0.75rem; }

  /* Header: simplify nav */
  .header-nav { display: none; }
  .news-logo { font-size: 1.25rem; }

  /* Hero */
  .hero-section { min-height: 88vh; }
  .hero-title { font-size: 2rem; }
  .title-line { line-height: 1.05; }
  .hero-subtitle { max-width: 28rem; }
  .hero-button { width: 100%; padding: 0.9rem 1rem; font-size: 1rem; }
  .static-noise { display: none; }

  /* Leak video block */
  .leak-video-section { padding: 1.75rem 0 1.5rem; }
  .leak-inner { max-width: 100%; }
  .leak-title { font-size: 1.45rem; }
  .leak-subtitle { font-size: 0.9rem; }
  .leak-video { min-height: 210px; border-width: 2px; border-radius: 10px; }
  .leak-play { width: 72px; height: 72px; line-height: 72px; font-size: 1.75rem; border-width: 2px; }
  .leak-badge-live { font-size: 0.7rem; }
  .leak-duration { font-size: 0.7rem; }
  .leak-stats-bar { grid-template-columns: 1fr 1fr 1fr; gap: 0.35rem; padding: 0.6rem; }
  .leak-stat-number { font-size: 1.25rem; }
  .leak-stat-label { font-size: 0.8rem; }

  /* Video section placeholder/grid */
  .video-evidence-grid { grid-template-columns: 1fr; gap: 1rem; }
  
  /* Medical record image optimization */
  .record-image { height: 10rem; }
  .evidence-card.medical { min-height: 220px; }

  /* How it works / grids */
  .comparison-grid, .ingredients-grid, .proof-content { grid-template-columns: 1fr !important; }
  
  /* Scientific proof graph adaptation */
  .scientific-proof { padding: 1.5rem 1rem; }
  .proof-content { gap: 1.5rem; }
  .proof-stats { gap: 0.75rem; }
  .proof-stat { padding: 0.5rem 0.75rem; }
  .proof-img { max-height: 16rem; }
  .proof-image { margin-top: 1rem; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; gap: 1rem; }

  /* Urgency */
  .urgency-grid { grid-template-columns: 1fr; gap: 1rem; }
  .urgency-button { width: 100%; }

  /* Order form */
  .form-row { grid-template-columns: 1fr; gap: 0.75rem; }
  .order-form-fields .form-field input, .order-form-fields select { height: 48px; font-size: 16px; }
  .submit-button { width: 100%; padding: 0.9rem 1rem; font-size: 1.05rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 1rem; }

  /* Typography scaling */
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.35rem; }
  h3 { font-size: 1.1rem; }
  p { font-size: 0.95rem; }

  /* Hero refinement */
  .hero-content { padding: 5vh 0.75rem; }
  .hero-subtitle p { margin-bottom: 0.5rem; }
  .hero-warning { margin-top: 0.75rem; font-size: 0.8rem; }
  .live-indicator { margin-top: 0.5rem; font-size: 0.8rem; }

  /* Remove header shadow effects for clarity */
  .hero-title { text-shadow: none; }
  .title-line.red, .title-line.white, .title-line.yellow { text-shadow: none; }

  /* Leak section spacing */
  .leak-header { margin-bottom: 0.75rem; }
  .leak-stats-bar { margin-top: 0.5rem; }

  /* HERO — visual hierarchy for phones */
  .hero-content {
    padding-top: calc(env(safe-area-inset-top) + 8vh);
    padding-bottom: 7vh;
  }
  .hero-title {
    font-size: clamp(2.6rem, 9vw + 0.2rem, 4rem);
    line-height: 0.95;
    margin-bottom: 1.1rem;
    text-wrap: balance;
    word-break: break-word;
  }
  .title-line { line-height: 0.95; }
  .subtitle-main { font-size: 0.95rem; }
  .subtitle-secondary { font-size: 0.85rem; }
  .hero-badge { margin-bottom: 0.6rem; }
  .hero-button { width: 100%; padding: 0.85rem 1rem; margin-top: 0.75rem; }
  .hero-warning { font-size: 0.8rem; margin-top: 0.6rem; }
}

@media (max-width: 400px) {
  .hero-title { font-size: 1.75rem; }
  .leak-title { font-size: 1.25rem; }
  .leak-video { min-height: 180px; }
  .leak-stats-bar { grid-template-columns: 1fr; }
  .leak-stat { padding: 0.25rem 0; }
}

/* Force-disable mobile floating purchase bar */
#mobile-form,
.mobile-form { display: none !important; }

@media (max-width: 1024px) {
  #mobile-form,
  .mobile-form { display: none !important; }
}

@media (max-width: 767px) {
  #mobile-form,
  .mobile-form { display: none !important; }
}

/* Full-bleed mobile base */
html, body { width: 100%; max-width: 100%; }
body { margin: 0; }

@media (max-width: 640px) {
  /* Prevent oversized headings from forcing zoom */
  .news-logo { font-size: 1.5rem; }
  .header-container, .news-header, header { max-width: 100%; }
  .hero-section, .leak-video-section, .video-section, .doctor-testimony, .how-it-works, .testimonials, .urgency-timer, .order-form, .faq, .final-offer, .purchase-block, .footer { width: 100%; max-width: 100%; }
}

/* Prevent horizontal overflow globally */
html, body { overflow-x: hidden; }
.news-header, .header-container { overflow-x: clip; }
.marquee { display: inline-block; }

/* Use a single 16:9 technique in leak video (aspect-ratio only) */
.leak-video::before { display: none !important; content: none !important; }

/* Responsive media */
img, video, iframe { max-width: 100%; height: auto; }

/* Ensure badges don't stick outside container on small screens */
.product-image, .product-section, .purchase-block, .header-container { position: relative; overflow: hidden; }
.discount-badge { right: 0; top: 0; transform: translate(20%, -20%); }
@media (max-width: 640px) {
  .discount-badge { transform: translate(10%, -10%); }
}

@media (max-width: 640px) {
  /* Stronger mobile impact: restore controlled glow with better readability */
  .hero-title {
    text-shadow:
      0 0 10px rgba(255, 0, 0, 0.65),
      0 0 22px rgba(255, 0, 0, 0.45),
      2px 2px 4px rgba(0, 0, 0, 0.8);
  }
  .title-line.red { color: #ef4444; text-shadow: 0 0 16px rgba(239, 68, 68, 0.8); }
  .title-line.white { color: #ffffff; text-shadow: 0 0 12px rgba(255,255,255,0.85); }
  .title-line.yellow { color: #ffd60a; text-shadow: 0 0 18px rgba(255, 214, 10, 0.9); }
}

@media (max-width: 640px) {
  /* Headline bigger but balanced to avoid excessive wrapping */
  .hero-title { font-size: clamp(3.1rem, 11.2vw + 0.2rem, 4.8rem); }
  .title-line { line-height: 0.92; text-wrap: balance; }
  .hero-content { padding-left: 1rem; padding-right: 1rem; }
  /* Subtexts slightly smaller than desktop */
  .subtitle-main { font-size: 1rem; opacity: 0.98; color: #fff; text-shadow: 0 0 8px rgba(255,255,255,0.35); }
  .subtitle-secondary { font-size: 0.9rem; opacity: 0.95; color: #ffe8a3; text-shadow: 0 0 8px rgba(255, 214, 10, 0.35); }
  /* CTA full-width with glow */
  .hero-button {
    width: 100%;
    padding: 1.1rem 1rem;
    font-size: 1.05rem;
    background: linear-gradient(90deg, #ffd60a, #ffbe0a);
    color: #000;
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(255, 214, 10, 0.45), 0 4px 12px rgba(0,0,0,0.35);
    text-shadow: none;
  }
  .hero-button:hover { background: linear-gradient(90deg, #ffbe0a, #ffa800); }
}

/* Force stats row layout on very small screens */
@media (max-width: 400px) {
  .leak-stats-bar {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0.35rem;
  }
  .leak-stat-number { font-size: 1.05rem; }
  .leak-stat-label { font-size: 0.75rem; }
}

/* Mobile styles for "Последнее откровение" */
@media (max-width: 480px) {
  .final-revelation { padding: 1.2rem; }
  .revelation-badge {
    display: block;
    margin: 0 auto 1rem auto;
    max-width: 80vw;
    text-align: center;
  }
  .final-revelation h3 {
    font-size: clamp(1.1rem, 3.8vw + 0.2rem, 1.3rem);
    line-height: 1.25;
    text-align: center;
    word-break: normal;
    overflow-wrap: anywhere;
  }
  .final-revelation p {
    font-size: clamp(1rem, 3.2vw + 0.1rem, 1.25rem);
    line-height: 1.4;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
  .revelation-quote {
    display: block;
    width: 90%;
    margin: 0.75rem auto 0 auto;
    padding-top: 1rem;
    padding-bottom: 1rem;
    text-align: center;
  }
  .revelation-quote p {
    font-size: clamp(1rem, 3.5vw + 0.1rem, 1.2rem);
  }
}

/* Additional mobile styles for scientific proof graph */
@media (max-width: 480px) {
  .scientific-proof { padding: 1rem 0.75rem; }
  .proof-content { gap: 1rem; }
  .proof-stat { 
    padding: 0.75rem 1rem; 
    min-height: 3rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
  .stat-label { 
    font-size: 0.9rem; 
    margin-bottom: 0.25rem;
  }
  .stat-value { 
    font-size: 1.25rem; 
    margin-left: 0;
    align-self: flex-end;
  }
  .proof-img { max-height: 14rem; }
}

/* Mobile adaptation for ANTES/DESPUÉS comparison cards */
@media (max-width: 480px) {
  .comparison-grid {
    padding: 1rem;
    gap: 1rem;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .comparison-before,
  .comparison-after {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    padding: 1rem;
    margin: 0.75rem auto;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
  }

  .comparison-badge {
    font-size: clamp(0.85rem, 2.5vw + 0.2rem, 1rem);
    text-align: center;
    display: inline-block;
    margin-bottom: 0.5rem;
  }

  /* Move overlay titles into normal flow on mobile for better wrapping */
  .image-overlay {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    gap: 0.25rem;
  }

  .overlay-title {
    font-size: clamp(1.25rem, 5.5vw + 0.2rem, 1.75rem);
    text-align: center;
    margin: 0.25rem 0 0.15rem 0;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .overlay-subtitle {
    font-size: clamp(0.9rem, 3.5vw + 0.1rem, 1rem);
    text-align: center;
    margin: 0 0 0.35rem 0;
  }

  .comparison-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3; /* keep frame 4:3 on mobile */
    min-height: 0;
    margin-bottom: 0.75rem;
  }

  .comparison-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
  }

  .comparison-list {
    width: 100%;
    max-width: 28rem;
    margin: 0 auto;
  }

  .comparison-list li {
    font-size: clamp(0.9rem, 3.2vw + 0.1rem, 1.1rem);
    margin: 0.5rem 0;
    text-align: left;
  }

  /* Color readability tweaks on light backgrounds */
  .comparison-list.bad li { color: #b91c1c; }
  .comparison-list.good li { color: #0f7a2a; }
}

@media (max-width: 480px) {
  /* ensure comparison image reserves space and separates from text */
  .comparison-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    min-height: 0;
    margin-bottom: 1rem;
    display: block;
  }

  .comparison-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
  }

  /* disable absolute overlays that may collapse flow/overlap */
  .comparison-overlay {
    position: static;
    padding-top: 0;
  }

  /* give extra separation from following list */
  .comparison-list { margin-top: 0.25rem; }
}