/* =========================================
   Toxofil ES - Complete Stylesheet
   Anti-Parasite / Anti-Papilloma Product
   Spain Market | EUR | Spanish
   ========================================= */

/* ---------- CSS Variables ---------- */
:root {
  --primary: #2E86AB;
  --primary-deep: #1B6B8D;
  --primary-mid: #4A9DC4;
  --primary-light: #7BC0DE;
  --primary-pale: #E8F4F8;
  --accent: #4DB892;
  --accent-dark: #369B78;
  --accent-light: #6DCBA8;
  --accent-pale: #E6F6EF;
  --gradient-cta: linear-gradient(135deg, #4DB892, #369B78);
  --gradient-brand: linear-gradient(135deg, #2E86AB, #4DB892);
  --white: #fff;
  --off-white: #F9FBFC;
  --gray-50: #F2F6F9;
  --gray-100: #E4EAF0;
  --gray-200: #CDD6E0;
  --gray-300: #A3B1BF;
  --text: #2B3A4E;
  --text-mid: #556270;
  --text-light: #7E8D9E;
  --shadow-sm: 0 2px 8px rgba(46,134,171,0.08);
  --shadow-md: 0 4px 20px rgba(46,134,171,0.12);
  --shadow-lg: 0 8px 40px rgba(46,134,171,0.16);
  --shadow-xl: 0 12px 60px rgba(46,134,171,0.20);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-width: 0;
}

html, body {
  overflow-x: clip;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

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

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

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

ul {
  list-style: none;
}

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

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ---------- 1. Promo Bar ---------- */
.promo-bar {
  background: var(--gradient-brand);
  color: var(--white);
  text-align: center;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  z-index: 1001;
  letter-spacing: 0.3px;
}

.promo-bar span {
  position: relative;
  z-index: 2;
}

.promo-bar .promo-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  margin-right: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.promo-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  animation: shimmer 3s infinite;
  z-index: 1;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* ---------- 2. Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow var(--transition);
  width: 100%;
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.header-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-deep);
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-logo strong {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header-logo img {
  height: 36px;
  width: auto;
  border-radius: 4px;
  object-fit: contain;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  transition: color var(--transition);
  position: relative;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-brand);
  border-radius: 2px;
  transition: width var(--transition);
}

.header-nav a:hover {
  color: var(--primary);
}

.header-nav a:hover::after {
  width: 100%;
}

.header-cta {
  background: var(--gradient-cta);
  color: var(--white);
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(77,184,146,0.35);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  background: none;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100dvh;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  padding: 80px 24px 40px;
  overflow-y: auto;
}

.mobile-nav.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  padding: 8px 20px;
  transition: color var(--transition);
  text-align: center;
}

.mobile-nav a:hover {
  color: var(--primary);
}

.mobile-nav .mobile-cta {
  background: var(--gradient-cta);
  color: var(--white);
  padding: 14px 36px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 600;
  margin-top: 12px;
  white-space: nowrap;
}

/* ---------- 3. Hero Section ---------- */
.hero {
  padding: 80px 0 60px;
  background: linear-gradient(180deg, var(--primary-pale) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(77,184,146,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-pale);
  color: #2A7D5F;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(77,184,146,0.15);
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--text);
}

.hero-title .highlight {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 480px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.hero-pill:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.hero-pill svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

.hero-price-card {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}

.hero-price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  background: var(--gradient-brand) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}

.price-old {
  font-size: 20px;
  color: var(--gray-300);
  text-decoration: line-through;
  font-weight: 500;
}

.price-current {
  font-family: 'Outfit', sans-serif;
  font-size: 40px;
  font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-discount {
  background: linear-gradient(135deg, #FF6B6B, #EE5A24);
  color: var(--white);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  animation: badgePop 2s ease-in-out infinite;
}

@keyframes badgePop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gradient-cta);
  color: var(--white);
  padding: 16px 36px;
  border-radius: var(--radius-full);
  font-size: 16px;
  font-weight: 700;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
  animation: pulse-cta 2.5s ease-in-out infinite;
}

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

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

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(77,184,146,0.4);
}

@keyframes pulse-cta {
  0%, 100% { box-shadow: 0 4px 15px rgba(77,184,146,0.3); }
  50% { box-shadow: 0 4px 25px rgba(77,184,146,0.5); }
}

.hero-trust-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-light);
}

.hero-trust-note svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

/* ========== Hero Image & Visual Effects ========== */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-wrap {
  position: relative;
  width: 440px;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-wrap > img {
  position: relative;
  z-index: 4;
  width: 260px;
  height: auto;
  filter: drop-shadow(0 24px 50px rgba(0,0,0,0.16));
  animation: heroFloat 5s ease-in-out infinite;
}

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

/* --- Morphing Gradient Aura --- */
.hero-aura {
  position: absolute;
  width: 380px;
  height: 380px;
  z-index: 0;
  border-radius: 42% 58% 55% 45% / 50% 42% 58% 50%;
  background: linear-gradient(
    135deg,
    rgba(46,134,171,0.18) 0%,
    rgba(77,184,146,0.14) 40%,
    rgba(123,192,222,0.10) 70%,
    rgba(109,203,168,0.16) 100%
  );
  filter: blur(30px);
  animation: auraMorph 10s ease-in-out infinite;
}

@keyframes auraMorph {
  0% {
    border-radius: 42% 58% 55% 45% / 50% 42% 58% 50%;
    transform: rotate(0deg) scale(1);
  }
  25% {
    border-radius: 55% 45% 48% 52% / 44% 56% 50% 50%;
    transform: rotate(3deg) scale(1.04);
  }
  50% {
    border-radius: 48% 52% 42% 58% / 56% 44% 52% 48%;
    transform: rotate(-2deg) scale(1.02);
  }
  75% {
    border-radius: 52% 48% 56% 44% / 48% 52% 44% 56%;
    transform: rotate(4deg) scale(1.06);
  }
  100% {
    border-radius: 42% 58% 55% 45% / 50% 42% 58% 50%;
    transform: rotate(0deg) scale(1);
  }
}

/* --- Rotating Conic Ring --- */
.hero-ring {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    rgba(46,134,171,0.12) 15%,
    transparent 30%,
    rgba(77,184,146,0.10) 45%,
    transparent 60%,
    rgba(123,192,222,0.08) 75%,
    transparent 90%
  );
  z-index: 1;
  animation: ringRotate 16s linear infinite;
}

@keyframes ringRotate {
  to { transform: rotate(360deg); }
}

/* --- Concentric Scan Pulses --- */
.hero-scan {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(46,134,171,0.08);
  z-index: 1;
  animation: scanPulse 6s ease-out infinite;
}

.scan-1 { width: 240px; height: 240px; }
.scan-2 { width: 320px; height: 320px; animation-delay: 1.5s; }
.scan-3 { width: 400px; height: 400px; animation-delay: 3s; }

@keyframes scanPulse {
  0% {
    opacity: 0;
    transform: scale(0.85);
    border-color: rgba(46,134,171,0.15);
  }
  30% {
    opacity: 0.6;
    border-color: rgba(77,184,146,0.10);
  }
  100% {
    opacity: 0;
    transform: scale(1.08);
    border-color: rgba(46,134,171,0.03);
  }
}

/* --- Radial Glow Breathing --- */
.hero-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(46,134,171,0.14) 0%,
    rgba(77,184,146,0.07) 40%,
    transparent 70%
  );
  z-index: 0;
  animation: glowBreathe 4s ease-in-out infinite;
}

@keyframes glowBreathe {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.12); }
}

/* --- Platform Reflection --- */
.hero-platform {
  position: absolute;
  bottom: 6%;
  width: 55%;
  height: 18px;
  background: radial-gradient(ellipse, rgba(46,134,171,0.10) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

/* --- Ingredient Orbs (floating pills) --- */
.hero-orb {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 7px 14px;
  border-radius: 9999px;
  font-size: 0.73rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  pointer-events: none;
  opacity: 0;
  animation: orbAbsorb 7s ease-in-out infinite;
}

.orb-icon {
  font-size: 1rem;
  line-height: 1;
}

/* Orb positions & trajectories */
.orb-1 {
  top: 4%;
  left: -5%;
  --dx: calc(50% + 45px);
  --dy: calc(50% - 10px);
  animation-delay: 0s;
}

.orb-2 {
  top: 2%;
  right: -5%;
  --dx: calc(-50% - 30px);
  --dy: calc(50%);
  animation-delay: 1.4s;
}

.orb-3 {
  top: 42%;
  left: -18%;
  --dx: calc(50% + 70px);
  --dy: 8px;
  animation-delay: 2.8s;
}

.orb-4 {
  top: 42%;
  right: -16%;
  --dx: calc(-50% - 55px);
  --dy: 8px;
  animation-delay: 4.2s;
}

.orb-5 {
  bottom: 14%;
  left: -8%;
  --dx: calc(50% + 50px);
  --dy: calc(-40%);
  animation-delay: 5.6s;
}

@keyframes orbAbsorb {
  0% {
    opacity: 0;
    transform: translate(0, 0) scale(0.5);
  }
  8% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translate(var(--dx), var(--dy)) scale(0.45);
  }
  65% {
    opacity: 0;
    transform: translate(var(--dx), var(--dy)) scale(0.1);
  }
  66%, 100% {
    opacity: 0;
    transform: translate(0, 0) scale(0);
  }
}

/* --- Absorption Flash Glow --- */
.hero-flash {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77,184,146,0.22) 0%, transparent 70%);
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  animation: absorbFlash 7s ease-in-out infinite;
}

.flash-1 { animation-delay: 0s; }
.flash-2 { animation-delay: 1.4s; }
.flash-3 { animation-delay: 2.8s; }

@keyframes absorbFlash {
  50% {
    opacity: 0;
    transform: scale(0.5);
  }
  58% {
    opacity: 1;
    transform: scale(1.4);
  }
  70% {
    opacity: 0;
    transform: scale(1.6);
  }
  71%, 100% {
    opacity: 0;
  }
}

/* ---------- 4. Trust Bar ---------- */
.trust-bar {
  padding: 40px 0;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

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

.trust-item {
  text-align: center;
  padding: 16px;
}

.trust-item-value {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.trust-item-label {
  font-size: 14px;
  color: var(--text-mid);
  font-weight: 500;
}

/* ---------- 5. What Is Toxofil ---------- */
.section {
  padding: 80px 0;
  overflow-x: clip;
}

.section-alt {
  background: var(--gray-50);
}

/* .section-pale removed — unused */

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

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-pale);
  color: var(--primary-deep);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.15;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.7;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.what-content h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

.what-content p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 16px;
}

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

.what-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.5;
}

.what-list li svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}

.what-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.what-image-box {
  width: 100%;
  aspect-ratio: 1;
  max-width: 420px;
  background: linear-gradient(135deg, var(--primary-pale), var(--accent-pale));
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.what-image-box img {
  width: 60%;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 10px 30px rgba(46,134,171,0.15));
}

.what-image-box::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(77,184,146,0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: auraMorph 5s ease-in-out infinite;
}

/* ---------- 6. Danger of Papillomas ---------- */
.danger-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.danger-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: transform var(--transition), box-shadow var(--transition);
}

.danger-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.danger-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(255,107,107,0.1), rgba(238,90,36,0.1));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.danger-card-icon svg {
  width: 28px;
  height: 28px;
  color: #EE5A24;
}

.danger-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.danger-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* Location cards */
.location-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.location-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: transform var(--transition), box-shadow var(--transition);
}

.location-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.location-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-icon svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.location-card span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
}

/* ---------- 7. Parasites & HPV ---------- */
.parasites-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
  position: relative;
}

.parasites-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: var(--gray-200);
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 48px;
  height: 48px;
  background: var(--gradient-brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto 16px;
  box-shadow: 0 4px 12px rgba(46,134,171,0.25);
}

.step-card h4 {
  font-size: 15px;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.5;
}

/* ---------- 7B. Symptoms ---------- */
.symptoms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.symptom-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: transform var(--transition), box-shadow var(--transition);
}

.symptom-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.symptom-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(255,107,107,0.1), rgba(238,90,36,0.1));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.symptom-icon svg {
  width: 24px;
  height: 24px;
  color: #EE5A24;
}

.symptom-card h4 {
  font-size: 16px;
  margin-bottom: 6px;
  color: var(--text);
}

.symptom-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.5;
}

/* ---------- 12B. Usage ---------- */
.usage-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.usage-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: transform var(--transition);
}

.usage-card:hover {
  transform: translateY(-4px);
}

.usage-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.usage-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent-dark);
}

.usage-card h4 {
  font-size: 16px;
  margin-bottom: 6px;
  color: var(--text);
}

.usage-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.5;
}

/* ---------- 8. Benefits ---------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-brand);
  opacity: 0;
  transition: opacity var(--transition);
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.benefit-icon svg {
  width: 26px;
  height: 26px;
  color: var(--primary);
}

.benefit-card h4 {
  font-size: 17px;
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ---------- 9. Ingredients ---------- */
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.ingredient-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: transform var(--transition), box-shadow var(--transition);
}

.ingredient-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.ingredient-emoji {
  font-size: 40px;
  margin-bottom: 12px;
  display: block;
}

.ingredient-card h4 {
  font-size: 15px;
  margin-bottom: 8px;
  color: var(--primary-deep);
}

.ingredient-card p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.5;
}

/* ---------- 10. Clinical Study ---------- */
.study-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.study-group {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}

.study-group.toxofil {
  border: 2px solid var(--accent);
  position: relative;
}

.study-group.toxofil::after {
  content: 'RECOMENDADO';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-cta);
  color: var(--white);
  padding: 4px 16px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.study-group h4 {
  font-size: 20px;
  margin-bottom: 24px;
  text-align: center;
}

.study-bar-group {
  margin-bottom: 20px;
}

.study-bar-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--text-mid);
}

.study-bar-label strong {
  color: var(--text);
  font-weight: 700;
}

.study-bar-track {
  width: 100%;
  height: 12px;
  background: var(--gray-100);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.study-bar-fill {
  height: 100%;
  border-radius: var(--radius-full);
  width: 0;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.study-bar-fill.green {
  background: var(--gradient-cta);
}

.study-bar-fill.blue {
  background: var(--gradient-brand);
}

.study-bar-fill.red {
  background: linear-gradient(135deg, #FF6B6B, #EE5A24);
}

.study-bar-fill.gray {
  background: var(--gray-300);
}

.study-highlight {
  background: var(--accent-pale);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  margin-top: 32px;
}

.study-highlight-value {
  font-family: 'Outfit', sans-serif;
  font-size: 48px;
  font-weight: 800;
  background: var(--gradient-cta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.study-highlight p {
  font-size: 15px;
  color: var(--text-mid);
  margin-top: 4px;
}

/* ---------- 11. Expert Opinion ---------- */
.expert-section {
  background: linear-gradient(135deg, var(--primary-deep), var(--primary));
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.expert-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.expert-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.expert-avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 3px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.expert-avatar span {
  display: flex;
  align-items: center;
  justify-content: center;
}

.expert-content blockquote {
  font-size: 18px;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  padding-left: 24px;
  border-left: 3px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.95);
}

.expert-name {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.expert-title {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}

/* ---------- 12. How to Order ---------- */
.order-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  margin-top: 40px;
}

.order-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: var(--gray-200);
}

.order-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.order-step-icon {
  width: 80px;
  height: 80px;
  background: var(--white);
  border: 2px solid var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.order-step:hover .order-step-icon {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.order-step-icon svg {
  width: 32px;
  height: 32px;
  color: var(--primary);
}

.order-step h4 {
  font-size: 17px;
  margin-bottom: 8px;
}

.order-step p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.5;
}

/* ---------- 13. Testimonials ---------- */
.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.reviews-stars {
  display: flex;
  gap: 4px;
}

.reviews-stars svg {
  width: 24px;
  height: 24px;
  color: #F59E0B;
  fill: #F59E0B;
}

.reviews-avg {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--text);
}

.reviews-count {
  font-size: 14px;
  color: var(--text-light);
}

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

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: transform var(--transition), box-shadow var(--transition);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--primary);
  flex-shrink: 0;
}

.review-info {
  flex: 1;
}

.review-name {
  font-weight: 600;
  font-size: 15px;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-light);
}

.review-stars {
  display: flex;
  gap: 2px;
}

.review-stars svg {
  width: 14px;
  height: 14px;
  color: #F59E0B;
  fill: #F59E0B;
}

.review-verified {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #2A7D5F;
  font-size: 12px;
  font-weight: 600;
}

.review-verified svg {
  width: 14px;
  height: 14px;
}

.review-text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ---------- 14. Counterfeit Warning ---------- */
.warning-section {
  background: linear-gradient(135deg, #FFF5F5, #FFEFEF);
  border-top: 3px solid #FF6B6B;
}

.warning-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.warning-icon {
  width: 72px;
  height: 72px;
  background: rgba(255,107,107,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.warning-icon svg {
  width: 36px;
  height: 36px;
  color: #EE5A24;
}

.warning-content h3 {
  font-size: 22px;
  color: #C0392B;
  margin-bottom: 8px;
}

.warning-content p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.6;
}

.warning-content strong {
  color: var(--text);
}

/* ---------- 15. FAQ ---------- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-100);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 0;
  background: none;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--text-light);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding: 0 0 20px;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ---------- 16. Final CTA / Order Form ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--primary-deep), var(--primary));
  padding: 72px 0;
  position: relative;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

/* Decorative circles removed — clean gradient bg */

.cta-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.cta-info {
  color: var(--white);
}

.cta-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,0.2);
}

.cta-info h2 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
  color: var(--white);
}

.cta-info h2 span {
  color: var(--accent-light);
}

.cta-info > p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin-bottom: 20px;
}

.cta-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.cta-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

.cta-feat svg {
  width: 18px;
  height: 18px;
  color: var(--accent-light);
  flex-shrink: 0;
}

/* CTA Form Card */
.cta-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  position: relative;
  z-index: 3;
}

/* Form Price Banner */
.form-price-banner {
  background: var(--gray-50);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  text-align: center;
  margin-bottom: 24px;
  border: 1px solid var(--gray-100);
}

.form-price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 4px;
}

.cta-price-old {
  font-size: 18px;
  color: var(--gray-300);
  text-decoration: line-through;
  font-weight: 500;
}

.cta-price-now {
  font-family: 'Outfit', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: var(--primary-deep);
  line-height: 1;
}

.cta-price-badge {
  background: linear-gradient(135deg, #FF6B6B, #EE5A24);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  animation: badgePop 2s ease-in-out infinite;
}

.form-price-sub {
  font-size: 12px;
  color: var(--text-light);
  margin: 0;
}

/* Form Trust Row */
.cta-form-trust {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}

.trust-item-mini {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--text-light);
  font-weight: 600;
}

.trust-item-mini svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* Form Message */
.form-message-main {
  text-align: center;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  min-height: 20px;
}

/* Phone input component */
.phone-wrap {
  display: flex;
  align-items: stretch;
  width: 100%;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.phone-wrap:focus-within {
  border-color: var(--primary-mid);
  box-shadow: 0 0 0 3px rgba(46,134,171,0.1);
}

.phone-prefix {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  background: var(--gray-50);
  border-right: 1px solid var(--gray-200);
  font-weight: 700;
  font-size: 14px;
  color: var(--text-mid);
  white-space: nowrap;
}

.phone-prefix img {
  border-radius: 2px;
}

.phone-wrap input,
.form-group .phone-wrap input {
  border: none !important;
  border-radius: 0 !important;
  flex: 1;
  min-width: 0;
  outline: none;
  box-shadow: none !important;
}

.phone-wrap input:focus,
.form-group .phone-wrap input:focus {
  border: none !important;
  box-shadow: none !important;
}

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

.form-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group label svg {
  flex-shrink: 0;
}

.form-group input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input::placeholder {
  color: var(--gray-300);
}

.form-group input:focus {
  border-color: var(--primary-mid);
  box-shadow: 0 0 0 3px rgba(46,134,171,0.1);
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--gradient-cta);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 16px;
  font-weight: 700;
  margin-top: 8px;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: pulse-cta 2.5s ease-in-out infinite;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(77,184,146,0.4);
}

.form-legal {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 12px;
  text-align: center;
}

/* ---------- 17. Footer ---------- */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.8);
  padding: 48px 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  text-decoration: none;
  transition: opacity var(--transition);
}

.footer-brand:hover {
  opacity: 0.85;
}

.footer-brand img,
.footer-logo-img {
  height: 30px;
  width: auto;
  border-radius: 4px;
  object-fit: contain;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  max-width: 320px;
}

.footer h5 {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 14px;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 13px;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 13px;
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: var(--primary-light);
}

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

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

.modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  width: 100%;
  max-width: 420px;
  position: relative;
  transform: translateY(20px) scale(0.95);
  transition: transform var(--transition);
  max-height: 90vh;
  overflow-y: auto;
}

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

/* Modal uses same .form-price-banner, .cta-form-trust, .trust-item-mini */

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: var(--gray-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.modal-close:hover {
  background: var(--gray-100);
}

.modal-close svg {
  width: 18px;
  height: 18px;
  color: var(--text-mid);
}

/* ---------- Sticky Mobile CTA ---------- */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--white);
  padding: 12px 16px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  border-top: 1px solid var(--gray-100);
}

.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sticky-cta-price {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sticky-cta-price .price-old {
  font-size: 14px;
  color: var(--text-light);
}

.sticky-cta-price .price-current {
  font-size: 22px;
  background: none;
  -webkit-text-fill-color: var(--primary-deep);
  color: var(--primary-deep);
}

.sticky-cta .btn-primary {
  padding: 12px 24px;
  font-size: 14px;
  white-space: nowrap;
  animation: none;
}

/* ---------- Blog Grid (Homepage) ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-decoration: none;
  color: var(--text);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.blog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.blog-card:hover::before {
  transform: scaleX(1);
}

.blog-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--primary-pale);
  color: var(--primary-deep);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  width: fit-content;
}

.blog-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 10px;
  color: var(--text);
}

.blog-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 16px;
}

.blog-read {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  transition: var(--transition);
}

.blog-card:hover .blog-read {
  color: var(--accent-dark);
}

/* ---------- Responsive ---------- */
/* ==========================================================
   RESPONSIVE - TABLET (max-width: 1024px)
   ========================================================== */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .hero-content { order: 1; }
  .hero-visual { order: 0; }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-pills { justify-content: center; }
  .hero-price-card { display: inline-flex; }
  .hero-cta-group { justify-content: center; }

  .hero-img-wrap {
    width: 320px;
    height: 360px;
  }

  .hero-img-wrap > img { width: 200px; }
  .hero-aura { width: 300px; height: 300px; filter: blur(25px); }
  .hero-ring { width: 320px; height: 320px; }
  .scan-1 { width: 200px; height: 200px; }
  .scan-2 { width: 260px; height: 260px; }
  .scan-3 { width: 320px; height: 320px; }
  .hero-glow { width: 240px; height: 240px; }

  .hero-orb { font-size: 0.68rem; padding: 5px 10px; }
  .orb-icon { font-size: 0.85rem; }
  .orb-1 { left: 0%; }
  .orb-2 { right: 0%; }
  .orb-3 { left: -8%; }
  .orb-4 { right: -6%; }
  .orb-5 { left: 2%; }

  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ingredients-grid { grid-template-columns: repeat(3, 1fr); }

  .parasites-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .parasites-steps::before { display: none; }

  .expert-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .expert-avatar { margin: 0 auto; }
  .expert-content blockquote {
    border-left: none;
    padding-left: 0;
    border-top: 3px solid rgba(255,255,255,0.2);
    padding-top: 20px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .study-results { grid-template-columns: 1fr; }
}

/* ==========================================================
   RESPONSIVE - MOBILE (max-width: 768px)
   ========================================================== */
@media (max-width: 768px) {
  /* --- Base --- */
  body {
    padding-bottom: 72px;
    -webkit-text-size-adjust: 100%;
  }

  .container {
    padding: 0 16px;
  }

  /* --- Promo Bar --- */
  .promo-bar {
    font-size: 11px;
    padding: 8px 16px;
    line-height: 1.4;
    word-break: break-word;
  }

  .promo-bar .promo-badge {
    font-size: 10px;
    padding: 2px 8px;
    margin-right: 4px;
  }

  /* --- Header --- */
  .header .container {
    height: 56px;
    padding: 0 16px;
  }

  .header-logo {
    font-size: 20px;
    gap: 6px;
  }

  .header-logo img {
    height: 30px;
    width: auto;
  }

  .header-nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }

  /* --- Mobile Nav --- */
  .mobile-nav a {
    font-size: 18px;
    padding: 10px 20px;
  }

  .mobile-nav .mobile-cta {
    font-size: 15px;
    padding: 14px 36px;
  }

  /* --- Hero --- */
  .hero {
    padding: 32px 0 36px;
  }

  .hero .container {
    gap: 24px;
  }

  .hero-badge {
    font-size: 11px;
    padding: 5px 12px;
    margin-bottom: 14px;
  }

  .hero-title {
    font-size: 28px;
    line-height: 1.15;
    margin-bottom: 12px;
  }

  .hero-subtitle {
    font-size: 15px;
    margin-bottom: 18px;
    line-height: 1.55;
  }

  .hero-pills {
    gap: 6px;
    margin-bottom: 20px;
  }

  .hero-pill {
    font-size: 12px;
    padding: 6px 10px;
    gap: 4px;
  }

  .hero-pill svg {
    width: 13px;
    height: 13px;
  }

  .hero-price-card {
    gap: 12px;
    padding: 14px 18px;
    margin-bottom: 20px;
    border-radius: var(--radius-md);
  }

  .price-old { font-size: 16px; }
  .price-current { font-size: 32px; }
  .price-discount { font-size: 11px; padding: 3px 10px; }

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .btn-primary {
    width: 100%;
    max-width: 320px;
    padding: 14px 24px;
    font-size: 15px;
    justify-content: center;
  }

  .hero-trust-note {
    font-size: 12px;
  }

  /* --- Hero Visual --- */
  .hero-img-wrap {
    width: 260px;
    height: 300px;
  }

  .hero-img-wrap > img {
    width: 170px;
  }

  .hero-aura { width: 240px; height: 240px; filter: blur(20px); }
  .hero-ring { width: 260px; height: 260px; }
  .hero-scan { display: none; }
  .hero-glow { width: 200px; height: 200px; }

  .hero-orb {
    font-size: 0.62rem;
    padding: 4px 9px;
    gap: 4px;
  }
  .orb-icon { font-size: 0.78rem; }
  .orb-1 { top: 2%; left: 2%; }
  .orb-2 { top: 0; right: 2%; }
  .orb-3 { left: -2%; }
  .orb-4 { right: 0%; }
  .orb-5 { bottom: 10%; left: 5%; }
  .hero-flash { width: 60px; height: 60px; }

  /* --- Sections --- */
  .section {
    padding: 40px 0;
  }

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

  .section-tag {
    font-size: 11px;
    padding: 4px 12px;
    margin-bottom: 10px;
  }

  .section-title {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .section-subtitle {
    font-size: 14px;
    line-height: 1.6;
  }

  /* --- Trust Bar --- */
  .trust-bar {
    padding: 24px 0;
  }

  .trust-bar .container {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .trust-item {
    padding: 16px 12px;
  }

  .trust-item-value {
    font-size: 24px;
  }

  .trust-item-label {
    font-size: 12px;
  }

  /* --- What is Section --- */
  .what-content h3 {
    font-size: 22px;
  }

  .what-content p {
    font-size: 14px;
  }

  .what-list li {
    font-size: 14px;
  }

  .what-image-box {
    max-width: 200px;
    margin: 0 auto;
  }

  /* --- Danger/Location Grid --- */
  .danger-grid { grid-template-columns: 1fr; gap: 16px; }
  .danger-card { padding: 20px 16px; }
  .danger-card h4 { font-size: 16px; }
  .danger-card p { font-size: 13px; }

  .location-grid { grid-template-columns: 1fr; gap: 10px; }
  .location-card { padding: 12px 14px; }
  .location-card span { font-size: 13px; }

  /* --- Parasites Steps --- */
  .parasites-steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .step-card {
    padding: 20px 16px;
  }

  .step-num {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .step-card h4 { font-size: 16px; }
  .step-card p { font-size: 13px; }

  /* --- Symptoms --- */
  .symptoms-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
  }

  .symptom-card {
    padding: 20px 14px;
  }

  .symptom-card h4 { font-size: 14px; }
  .symptom-card p { font-size: 12px; }

  /* --- Usage --- */
  .usage-cards {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 24px;
  }

  .usage-card {
    padding: 20px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
  }

  .usage-icon {
    margin: 0;
    flex-shrink: 0;
  }

  .usage-card h4 { font-size: 14px; margin-bottom: 2px; }
  .usage-card p { font-size: 13px; }

  /* --- Benefits --- */
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .benefit-card {
    padding: 20px 16px;
  }

  .benefit-icon {
    width: 44px;
    height: 44px;
  }

  .benefit-card h4 { font-size: 16px; }
  .benefit-card p { font-size: 13px; }

  /* --- Ingredients --- */
  .ingredients-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .ingredient-card {
    padding: 16px 12px;
  }

  .ingredient-emoji {
    font-size: 28px;
  }

  .ingredient-card h4 { font-size: 14px; }
  .ingredient-card p { font-size: 12px; line-height: 1.5; }

  /* --- Study Results --- */
  .study-results {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .study-group {
    padding: 20px 16px;
  }

  .study-group h4 { font-size: 18px; }

  .study-bar-label {
    font-size: 13px;
  }

  .study-highlight {
    padding: 20px;
    margin-top: 24px;
  }

  .study-highlight-value {
    font-size: 36px;
  }

  .study-highlight p {
    font-size: 14px;
  }

  /* --- Expert --- */
  .expert-section {
    padding: 40px 0;
  }

  .expert-inner {
    padding: 28px 20px;
    gap: 20px;
  }

  .expert-avatar {
    width: 80px;
    height: 80px;
  }

  .expert-avatar span {
    font-size: 48px !important;
  }

  .expert-content blockquote {
    font-size: 15px;
    line-height: 1.6;
    padding: 0 0 16px;
  }

  .expert-name { font-size: 16px; }
  .expert-title { font-size: 13px; }

  /* --- Order Steps --- */
  .order-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .order-steps::before { display: none; }

  .order-step {
    padding: 20px 16px;
  }

  .order-step-icon {
    width: 48px;
    height: 48px;
  }

  .order-step h4 { font-size: 16px; }
  .order-step p { font-size: 13px; }

  /* --- Reviews --- */
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .reviews-summary {
    padding: 16px 20px;
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .reviews-avg { font-size: 32px; }

  .review-card {
    padding: 18px 16px;
  }

  .review-avatar {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }

  .review-name { font-size: 14px; }
  .review-text { font-size: 14px; line-height: 1.6; }

  .review-stars svg {
    width: 14px;
    height: 14px;
  }

  /* --- Warning --- */
  .warning-inner {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
    gap: 16px;
  }

  .warning-icon svg {
    width: 28px;
    height: 28px;
  }

  .warning-content h3 { font-size: 18px; }
  .warning-content p { font-size: 14px; }

  /* --- Blog Grid (Homepage) --- */
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .blog-card {
    padding: 18px 16px;
  }

  .blog-card h4 { font-size: 15px; }
  .blog-card p { font-size: 13px; margin-bottom: 12px; }
  .blog-tag { font-size: 10px; margin-bottom: 10px; }
  .blog-read { font-size: 13px; }

  /* --- FAQ --- */
  .faq-question {
    padding: 16px;
    font-size: 15px;
  }

  .faq-answer-inner {
    padding: 0 16px 16px;
    font-size: 14px;
  }

  .faq-question svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }

  /* --- CTA Section --- */
  .cta-section {
    padding: 40px 0;
  }

  .cta-layout {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .cta-info h2 {
    font-size: 22px;
  }

  .cta-info > p {
    font-size: 14px;
  }

  .cta-features {
    align-items: center;
  }

  .cta-form-card {
    padding: 24px 18px;
    border-radius: var(--radius-lg);
    text-align: center;
  }

  .cta-form-card .form-group {
    text-align: left;
  }

  .cta-price-now {
    font-size: 28px;
  }

  .form-price-banner {
    padding: 14px 16px;
    margin-bottom: 18px;
  }

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

  .form-group label {
    font-size: 12px;
    margin-bottom: 4px;
  }

  .form-group input {
    padding: 12px;
    font-size: 14px;
  }

  .form-submit {
    padding: 14px;
    font-size: 14px;
    border-radius: var(--radius-md);
    margin-top: 4px;
  }

  .form-legal {
    font-size: 11px;
    line-height: 1.4;
  }

  /* --- Footer --- */
  .footer {
    padding: 32px 0 16px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-brand {
    font-size: 20px;
  }

  .footer-desc {
    font-size: 13px;
    max-width: 100%;
  }

  .footer h5 {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .footer-links a {
    font-size: 13px;
  }

  .footer-links li {
    margin-bottom: 8px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .footer-copy {
    font-size: 11px;
    line-height: 1.5;
  }

  .footer-legal {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-legal a {
    font-size: 12px;
  }

  /* --- Modal --- */
  .modal-overlay {
    padding: 16px;
    align-items: center;
  }

  .modal {
    padding: 24px 18px;
    border-radius: var(--radius-lg);
    max-height: 90vh;
    max-width: 100%;
    width: 100%;
  }

  .modal .form-price-banner {
    padding: 12px 14px;
    margin-bottom: 14px;
  }

  .modal .cta-price-now {
    font-size: 26px;
  }

  .modal .form-group {
    margin-bottom: 12px;
  }

  .modal .form-group label {
    font-size: 12px;
    margin-bottom: 4px;
  }

  .modal .form-group input {
    padding: 11px 12px;
    font-size: 14px;
  }

  .modal .form-submit {
    padding: 13px;
    font-size: 14px;
    border-radius: var(--radius-md);
  }

  .modal .cta-form-trust {
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    justify-content: center;
  }

  .modal .trust-item-mini {
    font-size: 10px;
  }

  .modal-close {
    top: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
  }

  .modal-close svg {
    width: 14px;
    height: 14px;
  }

  /* --- Sticky CTA --- */
  .sticky-cta {
    display: block;
  }

  .sticky-cta-inner {
    padding: 10px 16px;
  }

  .sticky-cta .btn-primary {
    padding: 10px 20px;
    font-size: 14px;
    width: auto;
    max-width: none;
  }

  .sticky-cta .price-old { font-size: 14px; }
  .sticky-cta .price-current { font-size: 18px; }
}

/* ==========================================================
   RESPONSIVE - SMALL MOBILE (max-width: 480px)
   ========================================================== */
@media (max-width: 480px) {
  .mobile-nav {
    gap: 14px;
    padding: 70px 20px 32px;
  }

  .mobile-nav a {
    font-size: 17px;
    padding: 6px 16px;
  }

  .mobile-nav .mobile-cta {
    padding: 12px 28px;
    font-size: 14px;
  }

  .header-logo {
    font-size: 18px;
    gap: 5px;
  }

  .header-logo img {
    height: 26px;
    width: auto;
  }

  .hero-title {
    font-size: 24px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .hero-price-card {
    gap: 10px;
    padding: 12px 14px;
    width: 100%;
    justify-content: center;
  }

  .price-current {
    font-size: 28px;
  }

  .price-old {
    font-size: 14px;
  }

  .section-title {
    font-size: 21px;
  }

  .section-subtitle {
    font-size: 13px;
  }

  .trust-bar .container {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .trust-item {
    padding: 14px 8px;
  }

  .trust-item-value {
    font-size: 22px;
  }

  .trust-item-label {
    font-size: 11px;
  }

  .ingredients-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .ingredient-card {
    padding: 16px;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    text-align: left;
  }

  .ingredient-emoji {
    font-size: 28px;
    margin-bottom: 0;
  }

  .ingredient-card h4 {
    font-size: 14px;
    margin-bottom: 2px;
  }

  .ingredient-card p {
    font-size: 12px;
    display: none;
  }

  .hero-img-wrap {
    width: 240px;
    height: 280px;
  }

  .hero-img-wrap > img { width: 160px; }
  .hero-aura { width: 220px; height: 220px; }
  .hero-ring { width: 240px; height: 240px; }
  .hero-glow { width: 180px; height: 180px; }

  .hero-orb { display: none; }
  .hero-flash { width: 50px; height: 50px; }

  .hero-pill {
    font-size: 11px;
    padding: 5px 8px;
  }

  .hero-pill svg {
    width: 12px;
    height: 12px;
  }

  .btn-primary {
    padding: 13px 20px;
    font-size: 14px;
  }

  .benefits-grid {
    gap: 10px;
  }

  .benefit-card {
    padding: 16px 14px;
  }

  .study-group {
    padding: 16px 14px;
  }

  .study-highlight-value {
    font-size: 32px;
  }

  .reviews-avg {
    font-size: 28px;
  }

  .review-card {
    padding: 16px 14px;
  }

  .cta-section {
    padding: 28px 0;
  }

  .cta-info h2 {
    font-size: 19px;
  }

  .cta-tag {
    font-size: 11px;
    padding: 4px 10px;
  }

  .cta-form-card {
    padding: 20px 14px;
  }

  .cta-price-now {
    font-size: 26px;
  }

  .form-submit {
    padding: 13px;
    font-size: 13px;
  }

  .faq-question {
    font-size: 14px;
    padding: 14px;
  }

  .faq-answer-inner {
    font-size: 13px;
    padding: 0 14px 14px;
  }

  .footer-top {
    gap: 20px;
  }

  .modal {
    padding: 20px 14px;
  }

  .modal .form-price-banner {
    padding: 10px 12px;
  }

  .modal .trust-item-mini {
    font-size: 9px;
  }

  .cta-price-now {
    font-size: 24px;
  }
}

/* ==========================================================
   RESPONSIVE - VERY SMALL (max-width: 360px)
   ========================================================== */
@media (max-width: 360px) {
  .mobile-nav {
    gap: 10px;
    padding: 65px 16px 28px;
  }

  .mobile-nav a {
    font-size: 15px;
    padding: 5px 12px;
  }

  .mobile-nav .mobile-cta {
    padding: 11px 24px;
    font-size: 13px;
  }

  .hero-title {
    font-size: 22px;
  }

  .hero-price-card {
    padding: 10px 12px;
  }

  .price-current {
    font-size: 26px;
  }

  .trust-item-value {
    font-size: 20px;
  }

  .hero-img-wrap {
    width: 220px;
    height: 260px;
  }

  .hero-img-wrap > img {
    width: 145px;
  }

  .section-title {
    font-size: 19px;
  }

  .btn-primary {
    font-size: 13px;
    padding: 12px 16px;
  }

  .mobile-nav a {
    font-size: 16px;
  }
}

/* --- END OF FILE ---*/
