/*
Theme Name: Equine Pro-Stem
Theme URI: https://equineprostem.com
Author: Equine Pro-Stem Team
Author URI: https://equineprostem.com
Description: A premium WordPress theme for Equine Pro-Stem - 100% organic racehorse health supplement. Features modern design, smooth animations, and comprehensive product information sections.
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: equine-prostem
Tags: one-page, responsive, dark-theme, equine, supplement, health, racehorse
*/

/* ============================================
   BASE STYLES
   ============================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: #020617;
  color: #f8fafc;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
  color: #94a3b8;
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #f59e0b;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

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

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.text-gradient-amber {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-dark {
  background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
}

/* ============================================
   NAVIGATION
   ============================================ */

.site-navigation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(2, 6, 23, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(51, 65, 85, 0.5);
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.site-navigation.visible {
  transform: translateY(0);
}

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

.site-logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}

.site-logo span {
  color: #f59e0b;
}

.nav-menu {
  display: none;
  list-style: none;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .nav-menu {
    display: flex;
  }
}

.nav-menu a {
  color: #cbd5e1;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.nav-menu a:hover {
  color: #ffffff;
  background: rgba(51, 65, 85, 0.5);
}

.nav-cta {
  display: none;
  background: #f59e0b;
  color: #000000;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  transition: background 0.3s ease;
}

@media (min-width: 1024px) {
  .nav-cta {
    display: block;
  }
}

.nav-cta:hover {
  background: #d97706;
  color: #000000;
}

.mobile-menu-toggle {
  display: block;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 0.5rem;
}

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: #020617;
  padding-top: 80px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  display: block;
  color: #cbd5e1;
  font-size: 1.125rem;
  font-weight: 500;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  margin: 0.25rem 1rem;
  transition: all 0.3s ease;
}

.mobile-menu a:hover {
  color: #ffffff;
  background: rgba(51, 65, 85, 0.5);
}

.mobile-menu .nav-cta {
  display: block;
  margin: 1rem;
  text-align: center;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 2rem 1rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 158, 11, 0.2);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
}

.hero-badge svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #fbbf24;
}

.hero-badge span {
  color: #fcd34d;
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.hero-title span {
  color: #f59e0b;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: #cbd5e1;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero-tag {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  sm:flex-direction: row;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.btn-primary {
  background: #f59e0b;
  color: #000000;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary:hover {
  background: #d97706;
  color: #000000;
  transform: scale(1.05);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-trust-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #34d399;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.hero-scroll svg {
  width: 2rem;
  height: 2rem;
  color: rgba(255, 255, 255, 0.6);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* ============================================
   SECTION STYLES
   ============================================ */

.section {
  padding: 6rem 0;
}

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

.section-label {
  color: #f59e0b;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  color: #ffffff;
  margin-bottom: 1rem;
}

.section-description {
  color: #94a3b8;
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.benefit-card {
  background: rgba(30, 41, 59, 0.5);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(51, 65, 85, 0.5);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  background: rgba(30, 41, 59, 0.8);
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(245, 158, 11, 0.1);
}

.benefit-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.benefit-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: #ffffff;
}

.benefit-card h3 {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.benefit-card p {
  color: #94a3b8;
  font-size: 0.875rem;
  line-height: 1.6;
}

.benefits-banner {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(249, 115, 22, 0.2));
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  margin-top: 4rem;
}

.benefits-banner p {
  color: #fcd34d;
  font-size: 1.125rem;
}

.benefits-banner span {
  color: #fbbf24;
  font-weight: 700;
}

/* ============================================
   SCIENCE SECTION
   ============================================ */

.science-overview {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
  border: 1px solid rgba(51, 65, 85, 0.5);
  border-radius: 1.5rem;
  padding: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .science-overview {
    padding: 3rem;
  }
}

.science-overview-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .science-overview-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.science-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.science-tag {
  background: rgba(16, 185, 129, 0.2);
  color: #6ee7b7;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
}

.science-image {
  position: relative;
}

.science-image img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.science-image-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: #f59e0b;
  color: #000000;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.ingredients-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .ingredients-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ingredient-card {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(51, 65, 85, 0.5);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: border-color 0.3s ease;
}

.ingredient-card:hover {
  border-color: rgba(16, 185, 129, 0.5);
}

.ingredient-source {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.ingredient-source svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #34d399;
}

.ingredient-source span {
  color: #34d399;
  font-size: 0.875rem;
  font-weight: 500;
}

.ingredient-card h3 {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.ingredient-card p {
  color: #94a3b8;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.ingredient-benefits {
  list-style: none;
}

.ingredient-benefits li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #cbd5e1;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.ingredient-benefits svg {
  width: 1rem;
  height: 1rem;
  color: #34d399;
  flex-shrink: 0;
}

.quality-banner {
  background: linear-gradient(135deg, rgba(6, 78, 59, 0.3), rgba(15, 118, 110, 0.3));
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  margin-top: 4rem;
}

.quality-banner h3 {
  color: #ffffff;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.quality-banner p {
  color: #cbd5e1;
  max-width: 800px;
  margin: 0 auto;
}

/* ============================================
   RESEARCH SECTION
   ============================================ */

.research-overview {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .research-overview {
    grid-template-columns: repeat(3, 1fr);
  }
}

.research-card {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(51, 65, 85, 0.5);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
}

.research-card svg {
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto 1rem;
}

.research-card h3 {
  color: #ffffff;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.research-card p {
  color: #94a3b8;
  font-size: 0.875rem;
}

.findings-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .findings-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .findings-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.finding-card {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(51, 65, 85, 0.5);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: border-color 0.3s ease;
}

.finding-card:hover {
  border-color: rgba(59, 130, 246, 0.5);
}

.finding-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.finding-header h4 {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  padding-right: 1rem;
}

.finding-change {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.finding-change span:first-child {
  font-size: 1.125rem;
  font-weight: 700;
}

.finding-significance {
  background: rgba(51, 65, 85, 0.5);
  color: #cbd5e1;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}

.finding-card p {
  color: #94a3b8;
  font-size: 0.875rem;
}

.research-conclusion {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.3), rgba(6, 78, 59, 0.3));
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
}

.research-conclusion h3 {
  color: #ffffff;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.research-conclusion p {
  color: #cbd5e1;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

.research-conclusion span {
  color: #60a5fa;
  font-weight: 600;
}

/* ============================================
   TESTIMONIAL SECTION
   ============================================ */

.trainer-card {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
  border: 1px solid rgba(51, 65, 85, 0.5);
  border-radius: 1.5rem;
  padding: 2rem;
  margin-bottom: 3rem;
}

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

@media (min-width: 768px) {
  .trainer-info {
    flex-direction: row;
    align-items: flex-start;
  }
}

.trainer-avatar {
  width: 6rem;
  height: 6rem;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trainer-avatar svg {
  width: 3rem;
  height: 3rem;
  color: #000000;
}

.trainer-details {
  text-align: center;
}

@media (min-width: 768px) {
  .trainer-details {
    text-align: left;
  }
}

.trainer-details h3 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.trainer-details .role {
  color: #f59e0b;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.trainer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  color: #94a3b8;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .trainer-meta {
    justify-content: flex-start;
  }
}

.trainer-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.trainer-meta svg {
  width: 1rem;
  height: 1rem;
}

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

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(51, 65, 85, 0.5);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #f59e0b;
  margin-bottom: 0.25rem;
}

.stat-change {
  color: #34d399;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #ffffff;
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.stat-description {
  color: #64748b;
  font-size: 0.75rem;
}

.testimonial-quote {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(249, 115, 22, 0.1));
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 3rem;
}

.testimonial-quote svg {
  width: 2.5rem;
  height: 2.5rem;
  color: #f59e0b;
  margin-bottom: 1rem;
}

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

.testimonial-quote cite {
  color: #94a3b8;
  font-style: normal;
}

.key-points-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .key-points-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .key-points-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.key-point-card {
  background: rgba(30, 41, 59, 0.3);
  border: 1px solid rgba(51, 65, 85, 0.5);
  border-radius: 0.75rem;
  padding: 1.25rem;
}

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

.key-point-header svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #34d399;
}

.key-point-header h4 {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
}

.key-point-card p {
  color: #94a3b8;
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ============================================
   MODE OF ACTION SECTION
   ============================================ */

.pathways-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .pathways-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pathway-card {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(51, 65, 85, 0.5);
  border-radius: 1rem;
  overflow: hidden;
}

.pathway-header {
  padding: 1rem 1.5rem;
}

.pathway-header h3 {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 700;
}

.pathway-content {
  padding: 1.5rem;
}

.pathway-effects {
  list-style: none;
}

.pathway-effects li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #cbd5e1;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.pathway-effects li:last-child {
  margin-bottom: 0;
}

.effect-icon {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.effect-icon svg {
  width: 0.75rem;
  height: 0.75rem;
  color: #ffffff;
}

.dual-action {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(51, 65, 85, 0.5);
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 2rem;
}

.dual-action h3 {
  color: #ffffff;
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 2rem;
}

.dual-action-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .dual-action-grid {
    flex-direction: row;
    justify-content: center;
  }
}

.action-card {
  background: rgba(6, 78, 59, 0.3);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  max-width: 280px;
  width: 100%;
}

.action-number {
  width: 3rem;
  height: 3rem;
  background: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.action-number span {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
}

.action-card h4 {
  color: #34d399;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.action-card p {
  color: #94a3b8;
  font-size: 0.875rem;
}

.action-arrow {
  color: #64748b;
}

@media (min-width: 768px) {
  .action-arrow {
    transform: rotate(0deg);
  }
}

.dual-action-result {
  text-align: center;
  margin-top: 2rem;
}

.dual-action-result p {
  color: #cbd5e1;
}

.dual-action-result span {
  color: #f59e0b;
  font-weight: 600;
}

.research-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.875rem;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #94a3b8;
}

.legend-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(51, 65, 85, 0.5);
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-item.active {
  border-color: rgba(6, 182, 212, 0.5);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #22d3ee;
}

.faq-question svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #94a3b8;
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  color: #94a3b8;
  padding: 0 1.5rem 1.25rem;
  line-height: 1.7;
}

/* ============================================
   DOSAGE SECTION
   ============================================ */

.dosage-main {
  background: linear-gradient(135deg, rgba(225, 29, 72, 0.2), rgba(249, 115, 22, 0.2));
  border: 1px solid rgba(225, 29, 72, 0.3);
  border-radius: 1.5rem;
  padding: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .dosage-main {
    padding: 3rem;
  }
}

.dosage-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .dosage-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.dosage-info {
  text-align: center;
}

@media (min-width: 768px) {
  .dosage-info {
    text-align: left;
  }
}

.dosage-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(225, 29, 72, 0.2);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
}

.dosage-badge svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #fb7185;
}

.dosage-badge span {
  color: #fda4af;
  font-size: 0.875rem;
  font-weight: 500;
}

.dosage-amount {
  font-size: 4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.dosage-amount span {
  font-size: 2rem;
  color: #fb7185;
}

.dosage-label {
  font-size: 1.25rem;
  color: #cbd5e1;
  margin-bottom: 1rem;
}

.dosage-description {
  color: #94a3b8;
  line-height: 1.7;
}

.dosage-when {
  background: rgba(2, 6, 23, 0.5);
  border-radius: 1rem;
  padding: 1.5rem;
}

.dosage-when h4 {
  color: #ffffff;
  font-size: 1.125rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dosage-when h4 svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #fb7185;
}

.dosage-when > p {
  color: #94a3b8;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.dosage-when > p span {
  color: #fb7185;
  font-weight: 600;
}

.dosage-list {
  list-style: none;
}

.dosage-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #cbd5e1;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.dosage-list svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #34d399;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.timeline-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .timeline-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.timeline-card {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(51, 65, 85, 0.5);
  border-radius: 1rem;
  padding: 1.5rem;
}

.timeline-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(16, 185, 129, 0.2);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.timeline-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #34d399;
}

.timeline-icon.amber {
  background: rgba(245, 158, 11, 0.2);
}

.timeline-icon.amber svg {
  color: #fbbf24;
}

.timeline-icon.rose {
  background: rgba(225, 29, 72, 0.2);
}

.timeline-icon.rose svg {
  color: #fb7185;
}

.timeline-card h3 {
  color: #ffffff;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.timeline-card p {
  color: #94a3b8;
  font-size: 0.875rem;
  line-height: 1.6;
}

.processing-note {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(51, 65, 85, 0.5);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
}

.processing-note p {
  color: #cbd5e1;
}

.processing-note span {
  color: #fbbf24;
  font-weight: 600;
}

/* ============================================
   CERTIFICATIONS SECTION
   ============================================ */

.certifications-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .certifications-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.certification-card {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(51, 65, 85, 0.5);
  border-radius: 1rem;
  padding: 2rem;
  transition: border-color 0.3s ease;
}

.certification-card:hover {
  border-color: rgba(16, 185, 129, 0.5);
}

.certification-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.certification-icon svg {
  width: 2rem;
  height: 2rem;
  color: #ffffff;
}

.certification-card h3 {
  color: #ffffff;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.certification-card p {
  color: #94a3b8;
  line-height: 1.6;
}

.safety-banner {
  background: linear-gradient(135deg, rgba(6, 78, 59, 0.3), rgba(15, 118, 110, 0.3));
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 3rem;
}

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

@media (min-width: 768px) {
  .safety-content {
    flex-direction: row;
  }
}

.safety-icon {
  width: 5rem;
  height: 5rem;
  background: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.safety-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  color: #ffffff;
}

.safety-text {
  text-align: center;
}

@media (min-width: 768px) {
  .safety-text {
    text-align: left;
  }
}

.safety-text h3 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.safety-text p {
  color: #cbd5e1;
  line-height: 1.7;
}

.guarantees-title {
  color: #ffffff;
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .guarantees-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(30, 41, 59, 0.3);
  border: 1px solid rgba(51, 65, 85, 0.5);
  border-radius: 0.75rem;
  padding: 1rem;
}

.guarantee-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #34d399;
  flex-shrink: 0;
}

.guarantee-item span {
  color: #cbd5e1;
  font-size: 0.875rem;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: #020617;
  border-top: 1px solid rgba(51, 65, 85, 0.5);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.footer-brand h2 span {
  color: #f59e0b;
}

.footer-brand p {
  color: #94a3b8;
  margin-bottom: 1.5rem;
  max-width: 400px;
}

.footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-tags span {
  background: rgba(30, 41, 59, 0.5);
  color: #94a3b8;
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

.footer-links h3 {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 1rem;
}

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

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

.footer-links a {
  color: #94a3b8;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #f59e0b;
}

.footer-contact h3 {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #94a3b8;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.contact-item svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(51, 65, 85, 0.5);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p {
  color: #64748b;
  font-size: 0.875rem;
}

.footer-badges {
  display: flex;
  gap: 1.5rem;
}

.footer-badges span {
  color: #64748b;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.footer-badges svg {
  width: 0.875rem;
  height: 0.875rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */

@media (max-width: 767px) {
  .section {
    padding: 4rem 0;
  }
  
  .section-header {
    margin-bottom: 2.5rem;
  }
}

/* ============================================
   WORDPRESS SPECIFIC
   ============================================ */

/* Admin bar compensation */
body.admin-bar .site-navigation {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .site-navigation {
    top: 46px;
  }
}

/* WordPress alignment classes */
.alignleft {
  float: left;
  margin-right: 1.5rem;
  margin-bottom: 1rem;
}

.alignright {
  float: right;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Screen reader text */
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Clearfix */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}
