/* ===== CSS RESET & VARIABLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #1a1a1a;
  --secondary-color: #d4af37;
  --accent-color: #f5f5f5;
  --text-dark: #333333;
  --text-light: #666666;
  --border-color: #e0e0e0;
  --success-color: #27ae60;
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: #ffffff;
}

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

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 2rem;
}

h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
  font-size: 1rem;
}

a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: var(--transition);
}

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

/* ===== NAVIGATION ===== */
.navbar {
  background-color: var(--primary-color);
  color: var(--accent-color);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  gap: 2rem;
  position: relative;
}

.logo {
  justify-self: start;
}

.logo h1 {
  font-size: 1.8rem;
  color: var(--secondary-color);
  margin: 0;
}

.nav-center {
  justify-self: center;
}

.nav-menu-desktop {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-menu-desktop a {
  color: var(--accent-color);
  font-weight: 500;
  transition: var(--transition);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  text-decoration: none;
}

.nav-menu-desktop a:hover {
  color: var(--secondary-color);
  background: rgba(212, 175, 55, 0.1);
}

.nav-menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  color: var(--accent-color);
  font-weight: 500;
  transition: var(--transition);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  text-decoration: none;
}

.nav-menu a:hover {
  color: var(--secondary-color);
  background: rgba(212, 175, 55, 0.1);
}

.nav-right {
  justify-self: end;
}

.btn-buy-now {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #f4d03f 100%);
  color: var(--primary-color);
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  text-decoration: none;
  display: inline-block;
}

.btn-buy-now:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, #f4d03f 0%, var(--secondary-color) 100%);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--secondary-color);
  font-size: 1.5rem;
  cursor: pointer;
  grid-column: 3;
  justify-self: end;
  padding: 0.5rem;
  transition: all 0.3s ease;
}

.menu-toggle:hover {
  color: var(--accent-color);
  transform: scale(1.1);
}

/* ===== BUTTONS ===== */
.btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.btn-primary:hover {
  background-color: #c9a227;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, #2a2a2a 100%);
  color: var(--accent-color);
  padding: 5rem 0;
  min-height: 700px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  color: var(--accent-color);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #f5e27c 0%, #d4af37 50%, #b8860b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  color: #e0e0e0;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1rem;
  color: #f0f0f0;
}

.feature-icon {
  background: var(--secondary-color);
  color: var(--primary-color);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
}

.hero-cta {
  margin-bottom: 1.5rem;
}

.btn-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #f4d03f 100%);
  color: var(--primary-color);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
  min-width: 280px;
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.btn-text {
  flex: 1;
  text-align: left;
}

.btn-price {
  background: rgba(26, 26, 26, 0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 700;
}

.offer-text {
  color: var(--secondary-color);
  font-weight: 600;
  margin-top: 1rem;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.urgency {
  color: #ff6b6b;
  font-weight: 700;
}

.countdown {
  color: #ffa726;
  font-weight: 600;
}

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

.product-showcase {
  position: relative;
  max-width: 450px;
  width: 100%;
  background: transparent;
  padding: 0;
}

.product-image {
  max-width: 100%;
  height: auto;
  border-radius: 0;
  transition: all 0.3s ease;
  filter: none;
}

.product-image:hover {
  transform: scale(1.02);
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #f4d03f 100%);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3),
    0 2px 8px rgba(212, 175, 55, 0.2);
  animation: pulse 2s infinite;
  z-index: 10;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* ===== SECTIONS ===== */
section {
  padding: 4rem 0;
}

section:nth-child(even) {
  background-color: #f9f9f9;
}

/* ===== ABOUT SECTION ===== */
.about {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23d4af37" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  pointer-events: none;
}

.about-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.about-header h2 {
  color: var(--secondary-color);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.subtitle-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--secondary-color),
    transparent
  );
}

.subtitle-text {
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.text-block {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--secondary-color);
  transition: all 0.3s ease;
}

.text-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.text-icon {
  flex-shrink: 0;
  margin-top: 0.5rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.text-content h3 {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.text-content p {
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
  font-size: 1rem;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #f4d03f 100%);
  border-radius: 15px;
  color: var(--primary-color);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.badge {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border-color: var(--secondary-color);
}

.badge-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.badge-content h4 {
  color: var(--primary-color);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.badge-content p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.4;
}

/* ===== BENEFITS SECTION ===== */
.benefits {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.benefits::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="benefits-dots" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="%23d4af37" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23benefits-dots)"/></svg>');
  pointer-events: none;
}

.benefits-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.benefits-header h2 {
  color: var(--secondary-color);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.benefits-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  position: relative;
  z-index: 2;
}

.benefit-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color) 0%, #f4d03f 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--secondary-color);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #f4d03f 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.benefit-icon img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
}

.benefit-content h3 {
  color: var(--primary-color);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.benefit-content p {
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
  font-size: 1rem;
}

.benefit-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #f4d03f 100%);
  color: var(--primary-color);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== SCIENCE SECTION ===== */
.science {
  background: linear-gradient(135deg, var(--primary-color) 0%, #2a2a2a 100%);
  color: var(--accent-color);
  position: relative;
  overflow: hidden;
}

.science::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="science-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23d4af37" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23science-pattern)"/></svg>');
  pointer-events: none;
}

.science-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.science-header h2 {
  color: var(--secondary-color);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.science-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.science-intro {
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.intro-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 3rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.intro-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #f4d03f 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.intro-icon img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

.intro-text h3 {
  color: var(--secondary-color);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.intro-text p {
  color: #e0e0e0;
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0;
}

.science-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  position: relative;
  z-index: 2;
}

.science-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 2.5rem;
  border-radius: 20px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.science-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary-color) 0%, #f4d03f 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.science-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--secondary-color);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.science-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #f4d03f 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.science-icon img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
}

.science-content h3 {
  color: var(--secondary-color);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.science-content p {
  color: #e0e0e0;
  line-height: 1.6;
  margin: 0;
  font-size: 1rem;
}

.science-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #f4d03f 100%);
  color: var(--primary-color);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== INGREDIENTS SECTION ===== */
.ingredients {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.ingredients::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="ingredients-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23d4af37" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23ingredients-pattern)"/></svg>');
  pointer-events: none;
}

.ingredients-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.ingredients-header h2 {
  color: var(--secondary-color);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.ingredients-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.ingredients-description {
  max-width: 600px;
  margin: 2rem auto 0;
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.6;
}

.ingredients-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  position: relative;
  z-index: 2;
}

.ingredient {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.ingredient::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color) 0%, #f4d03f 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.ingredient:hover::before {
  transform: scaleX(1);
}

.ingredient:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--secondary-color);
}

.ingredient-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #f4d03f 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.ingredient-icon img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
}

.ingredient-content h3 {
  color: var(--primary-color);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.ingredient-content p {
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
  font-size: 1rem;
}

.ingredient-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #f4d03f 100%);
  color: var(--primary-color);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="steps-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23d4af37" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23steps-pattern)"/></svg>');
  pointer-events: none;
}

.how-it-works-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.how-it-works-header h2 {
  color: var(--secondary-color);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.how-it-works-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

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

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  position: relative;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2.5rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color) 0%, #f4d03f 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.step:hover::before {
  transform: scaleX(1);
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--secondary-color);
}

.step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #f4d03f 100%);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
  position: relative;
  z-index: 2;
}

.step-line {
  width: 2px;
  height: 100px;
  background: linear-gradient(
    180deg,
    var(--secondary-color) 0%,
    transparent 100%
  );
  margin-top: 1rem;
}

.step:last-child .step-line {
  display: none;
}

.step-content {
  flex: 1;
}

.step-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #f4d03f 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.step-icon img {
  width: 25px;
  height: 25px;
  filter: brightness(0) invert(1);
}

.step-content h3 {
  color: var(--primary-color);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.step-content p {
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
  font-size: 1rem;
}

.step-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #f4d03f 100%);
  color: var(--primary-color);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== TIMELINE SECTION ===== */
.timeline {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="timeline-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1" fill="%23d4af37" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23timeline-pattern)"/></svg>');
  pointer-events: none;
}

.timeline-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.timeline-header h2 {
  color: var(--secondary-color);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.timeline-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.timeline-description {
  max-width: 800px;
  margin: 2rem auto 0;
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.6;
}

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

.timeline-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  position: relative;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2.5rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color) 0%, #f4d03f 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.timeline-item:hover::before {
  transform: scaleX(1);
}

.timeline-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--secondary-color);
}

.timeline-progress {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.timeline-marker {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #f4d03f 100%);
  color: var(--primary-color);
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
  position: relative;
  z-index: 2;
}

.timeline-line {
  width: 2px;
  height: 100px;
  background: linear-gradient(
    180deg,
    var(--secondary-color) 0%,
    transparent 100%
  );
  margin-top: 1rem;
}

.timeline-item:last-child .timeline-line {
  display: none;
}

.timeline-content {
  flex: 1;
}

.timeline-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #f4d03f 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.timeline-icon img {
  width: 25px;
  height: 25px;
  filter: brightness(0) invert(1);
}

.timeline-content h3 {
  color: var(--primary-color);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.timeline-content p {
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
  font-size: 1rem;
}

.timeline-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #f4d03f 100%);
  color: var(--primary-color);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== RESULTS SECTION ===== */
.results {
  background: linear-gradient(135deg, var(--primary-color) 0%, #2a2a2a 100%);
  color: var(--accent-color);
  position: relative;
  overflow: hidden;
}

.results::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="results-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23d4af37" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23results-pattern)"/></svg>');
  pointer-events: none;
}

.results-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.results-header h2 {
  color: var(--secondary-color);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.results-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.results-description {
  max-width: 800px;
  margin: 2rem auto 0;
  color: #e0e0e0;
  font-size: 1.1rem;
  line-height: 1.6;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  position: relative;
  z-index: 2;
}

.result-card {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.result-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color) 0%, #f4d03f 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.result-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--secondary-color);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.result-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #f4d03f 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.result-icon img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
}

.result-content {
  flex: 1;
}

.result-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
  line-height: 1;
  transition: all 0.3s ease;
}

.result-content h3 {
  color: var(--secondary-color);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.result-content p {
  color: #e0e0e0;
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}

.result-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #f4d03f 100%);
  color: var(--primary-color);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== COMPARISON SECTION ===== */
.comparison {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.comparison::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="comparison-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23d4af37" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23comparison-pattern)"/></svg>');
  pointer-events: none;
}

.comparison-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.comparison-header h2 {
  color: var(--secondary-color);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

.comparison > .container > p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 1.05rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.comparison-table {
  position: relative;
  z-index: 2;
}

.comparison-table-desktop {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  overflow: hidden;
  display: table;
}

.comparison-cards-mobile {
  display: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

thead {
  background-color: var(--primary-color);
  color: var(--accent-color);
}

th {
  padding: 1.5rem;
  text-align: left;
  font-weight: 600;
}

td {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

tbody tr:hover {
  background-color: #f9f9f9;
}

tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

/* Mobile Comparison Cards */
.comparison-cards-mobile {
  display: none;
  flex-direction: column;
  gap: 1.5rem;
}

.comparison-card {
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.comparison-card:hover {
  border-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.15);
}

.comparison-feature {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--secondary-color);
  text-align: center;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.comparison-item {
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
}

.comparison-item.halo-grow {
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.1) 0%,
    rgba(212, 175, 55, 0.05) 100%
  );
  border: 2px solid var(--secondary-color);
}

.comparison-item.typical {
  background: rgba(0, 0, 0, 0.03);
  border: 2px solid #e0e0e0;
}

.comparison-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.comparison-item.halo-grow .comparison-label {
  color: var(--secondary-color);
}

.comparison-item.typical .comparison-label {
  color: var(--text-light);
}

.comparison-value {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.4;
}

.comparison-item.halo-grow .comparison-value {
  color: var(--primary-color);
}

.comparison-item.typical .comparison-value {
  color: var(--text-light);
}

/* ===== REVIEWS SECTION ===== */
.reviews {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.reviews::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="reviews-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23d4af37" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23reviews-pattern)"/></svg>');
  pointer-events: none;
}

.reviews-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.reviews-header h2 {
  color: var(--secondary-color);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.reviews-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.reviews-summary {
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.rating-overview {
  display: flex;
  align-items: center;
  gap: 4rem;
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.1);
  max-width: 800px;
  margin: 0 auto;
}

.overall-rating {
  text-align: center;
  flex-shrink: 0;
}

.rating-number {
  font-size: 4rem;
  font-weight: 700;
  color: var(--secondary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.rating-stars {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.rating-text {
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 500;
}

.rating-breakdown {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.rating-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.rating-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-color);
  min-width: 30px;
}

.rating-progress {
  flex: 1;
  height: 8px;
  background: #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.rating-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--secondary-color) 0%, #f4d03f 100%);
  border-radius: 4px;
  transition: width 0.8s ease;
}

.rating-percent {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
  min-width: 35px;
  text-align: right;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.review-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color) 0%, #f4d03f 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--secondary-color);
}

.stars {
  color: var(--secondary-color);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.2rem;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #f4d03f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: bold;
}

.review-card p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
  font-style: italic;
  line-height: 1.7;
  font-size: 1.1rem;
  position: relative;
}

.review-card p::before {
  content: "\201C";
  font-size: 3rem;
  color: var(--secondary-color);
  position: absolute;
  top: -0.5rem;
  left: -1rem;
  opacity: 0.3;
  font-family: serif;
}

.review-card p::after {
  content: "\201D";
  font-size: 3rem;
  color: var(--secondary-color);
  position: absolute;
  bottom: -1rem;
  right: -0.5rem;
  opacity: 0.3;
  font-family: serif;
}

.reviewer {
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
  font-style: normal;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.reviewer::before {
  content: "👤";
  font-size: 1.2rem;
}

/* ===== FAQ SECTION ===== */
.faq {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="faq-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23d4af37" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23faq-pattern)"/></svg>');
  pointer-events: none;
}

.faq-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.faq-header h2 {
  color: var(--secondary-color);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.faq-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.faq-items {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.faq-item {
  margin-bottom: 1.5rem;
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 15px;
  overflow: hidden;
  background: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  border-color: var(--secondary-color);
}

.faq-question {
  width: 100%;
  padding: 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.faq-question:hover {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #f4d03f 100%);
  color: var(--primary-color);
  transform: none;
}

.faq-question::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary-color) 0%, #f4d03f 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.faq-question:hover::before {
  transform: scaleX(1);
}

.faq-toggle {
  font-size: 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: rotate(0deg);
  display: inline-block;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: white;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  opacity: 0;
  transform: translateY(-10px);
}

.faq-answer.active {
  max-height: 200px;
  padding: 2rem;
  opacity: 1;
  transform: translateY(0);
}

.faq-answer p {
  margin: 0;
  color: var(--text-light);
  line-height: 1.6;
  font-size: 1rem;
  transition: all 0.3s ease;
  transform: translateY(10px);
}

.faq-answer.active p {
  transform: translateY(0);
}

/* ===== OFFER SECTION ===== */
.offer {
  background: linear-gradient(135deg, var(--primary-color) 0%, #2a2a2a 100%);
  color: var(--accent-color);
  text-align: center;
}

.offer-content {
  max-width: 600px;
  margin: 0 auto;
}

.offer h2 {
  color: var(--secondary-color);
  font-size: 2.5rem;
}

.offer-details {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 10px;
  margin: 2rem 0;
}

.offer-item {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.offer-item:last-child {
  margin-bottom: 0;
}

.guarantee-text {
  color: var(--secondary-color);
  font-weight: 600;
  margin-top: 1.5rem;
}

/* ===== GUARANTEE SECTION ===== */
.guarantee {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.guarantee::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="guarantee-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23d4af37" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23guarantee-pattern)"/></svg>');
  pointer-events: none;
}

.guarantee-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.guarantee-header h2 {
  color: var(--secondary-color);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.guarantee-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

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

.guarantee-main {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 4rem;
  padding: 3rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.guarantee-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #f4d03f 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.guarantee-icon img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

.guarantee-text h3 {
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.guarantee-text p {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.guarantee-text p:last-child {
  margin-bottom: 0;
}

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

.guarantee-feature {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.3s ease;
}

.guarantee-feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  border-color: var(--secondary-color);
}

.guarantee-feature .feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #f4d03f 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.guarantee-feature .feature-icon img {
  width: 25px;
  height: 25px;
  filter: brightness(0) invert(1);
}

.guarantee-feature h4 {
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.guarantee-feature p {
  color: var(--text-light);
  margin: 0;
  font-size: 1rem;
}

/* ===== SECURITY SECTION ===== */
.security {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.security::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="security-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23d4af37" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23security-pattern)"/></svg>');
  pointer-events: none;
}

.security-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.security-header h2 {
  color: var(--secondary-color);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.security-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

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

.security-main {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 4rem;
  padding: 3rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.security-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #f4d03f 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.security-icon img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

.security-text h3 {
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.security-text p {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0;
}

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

.security-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.3s ease;
}

.security-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  border-color: var(--secondary-color);
}

.security-item .security-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #f4d03f 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.security-item .security-icon img {
  width: 25px;
  height: 25px;
  filter: brightness(0) invert(1);
}

.security-item .security-content h4 {
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.security-item .security-content p {
  color: var(--text-light);
  margin: 0;
  font-size: 1rem;
}

/* ===== CONTACT SECTION ===== */
.contact {
  background: linear-gradient(135deg, var(--primary-color) 0%, #2a2a2a 100%);
  color: var(--accent-color);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contact-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1" fill="%23d4af37" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-pattern)"/></svg>');
  pointer-events: none;
}

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.contact-header h2 {
  color: var(--secondary-color);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.contact-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.contact-description {
  max-width: 800px;
  margin: 2rem auto 0;
  color: #e0e0e0;
  font-size: 1.1rem;
  line-height: 1.6;
}

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

.contact-main {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 4rem;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #f4d03f 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.contact-icon img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

.contact-text h3 {
  color: var(--secondary-color);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-text p {
  color: #e0e0e0;
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0;
}

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

.contact-method {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--secondary-color);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.contact-method .contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #f4d03f 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.contact-method .contact-icon img {
  width: 25px;
  height: 25px;
  filter: brightness(0) invert(1);
}

.contact-method .contact-details h4 {
  color: var(--secondary-color);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-method .contact-details p {
  color: #e0e0e0;
  margin: 0;
  font-size: 1rem;
}

.contact-method .contact-details a {
  color: var(--secondary-color);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-method .contact-details a:hover {
  color: #f4d03f;
}

/* ===== POLICY PAGES ===== */
.policy-page {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 4rem 0;
  min-height: 100vh;
}

.policy-header {
  text-align: center;
  margin-bottom: 4rem;
  padding: 2rem 0;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.policy-header h1 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #f4d03f 100%);
  color: var(--primary-color);
  padding: 1.5rem 3rem;
  border-radius: 50px;
  display: inline-block;
  font-size: 2.5rem;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
  margin-bottom: 1rem;
}

.policy-date {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.back-to-home {
  margin-top: 2rem;
}

.btn-secondary {
  background: linear-gradient(135deg, var(--primary-color) 0%, #2a2a2a 100%);
  color: var(--accent-color);
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #2a2a2a 0%, var(--primary-color) 100%);
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
}

.policy-section {
  background: white;
  padding: 2.5rem;
  margin-bottom: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.3s ease;
}

.policy-section:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  border-color: var(--secondary-color);
}

.policy-section h2 {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 0.5rem;
}

.policy-section h3 {
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 1.5rem 0 0.8rem 0;
}

.policy-section p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.policy-section ul,
.policy-section ol {
  margin: 1rem 0;
  padding-left: 2rem;
}

.policy-section li {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.policy-section a {
  color: var(--secondary-color);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.policy-section a:hover {
  color: #f4d03f;
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--primary-color);
  color: var(--accent-color);
  padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.footer-section p {
  color: #cccccc;
  margin-bottom: 1rem;
}

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

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

.footer-section a {
  color: #cccccc;
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--secondary-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: #999999;
  font-size: 0.9rem;
}

.footer-bottom p {
  margin-bottom: 0.5rem;
  color: #999999;
}

/* ===== RESPONSIVE DESIGN ===== */
/* Tablet styles */
@media (max-width: 992px) and (min-width: 769px) {
  .comparison-row {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .comparison-card {
    padding: 1.5rem;
  }

  .comparison-feature {
    font-size: 1.15rem;
  }
}

/* Mobile styles */
@media (max-width: 768px) {
  h2 {
    font-size: 2rem;
  }

  .nav-wrapper {
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem;
  }

  .nav-center {
    display: none;
  }

  .nav-right {
    display: none;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: var(--primary-color);
    padding: 1rem;
    gap: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    border-radius: 0 0 15px 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    min-height: 200px;
    width: 100%;
  }

  .nav-menu.active {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0);
    transition: all 0.3s ease;
    background-color: var(--primary-color) !important;
    border: 2px solid var(--secondary-color) !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000 !important;
    width: 100% !important;
    min-height: 200px !important;
  }

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

  .nav-menu a {
    padding: 1rem;
    border-radius: 0;
    display: block;
    width: 100%;
  }

  .menu-toggle {
    display: block !important;
    grid-column: 3;
    font-size: 1.8rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    cursor: pointer;
    z-index: 1001;
    position: relative;
    min-width: 50px;
    min-height: 50px;
    text-align: center;
    line-height: 1;
  }

  .menu-toggle:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.05);
    color: var(--accent-color);
  }

  .menu-toggle:active {
    transform: scale(0.95);
    background: rgba(212, 175, 55, 0.3);
  }

  .btn-buy-now {
    display: none;
  }

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

  .hero-image {
    order: -1;
    margin-bottom: 1rem;
  }

  .product-showcase {
    max-width: 300px;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .btn-hero {
    min-width: 100%;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  section {
    padding: 2rem 0;
  }

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

  .about-stats {
    flex-direction: row;
    gap: 1rem;
  }

  .stat-item {
    padding: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .text-block {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .benefits-grid,
  .science-grid,
  .ingredients-list,
  .steps-grid,
  .timeline-items,
  .results-grid,
  .reviews-grid,
  .security-features {
    grid-template-columns: 1fr;
  }

  table {
    font-size: 0.9rem;
  }

  th,
  td {
    padding: 1rem;
  }

  .offer-content {
    padding: 1rem;
  }

  .offer h2 {
    font-size: 1.8rem;
  }

  .result-number {
    font-size: 2rem;
  }

  .faq-items {
    max-width: 100%;
  }

  /* Enhanced tablet and mobile optimizations */
  .trust-badges {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }

  .badge {
    flex-direction: row;
    text-align: left;
    gap: 1rem;
    padding: 1.5rem;
  }

  .badge-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }

  .contact-main {
    flex-direction: row;
    text-align: left;
    gap: 2rem;
    padding: 2rem;
  }

  .contact-method {
    flex-direction: row;
    text-align: left;
    gap: 1rem;
    padding: 1.5rem;
  }

  .footer-content {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: left;
  }

  /* Enhanced tablet styles for timeline and ingredients */
  .timeline-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
  }

  .timeline-items::before {
    content: "";
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(
      180deg,
      var(--secondary-color) 0%,
      #f4d03f 100%
    );
    border-radius: 2px;
  }

  .timeline-item {
    flex-direction: row;
    text-align: left;
    gap: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
  }

  .timeline-progress {
    order: 0;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
  }

  .timeline-marker {
    font-size: 1.1rem;
    padding: 0.7rem 1.3rem;
    border-radius: 20px;
    background: linear-gradient(
      135deg,
      var(--secondary-color) 0%,
      #f4d03f 100%
    );
    color: white;
    font-weight: 700;
    min-width: 80px;
    text-align: center;
  }

  .timeline-icon {
    width: 60px;
    height: 60px;
    margin: 0;
    background: linear-gradient(
      135deg,
      var(--secondary-color) 0%,
      #f4d03f 100%
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  }

  .timeline-icon img {
    width: 25px;
    height: 25px;
    filter: brightness(0) invert(1);
  }

  .timeline-content h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    font-weight: 700;
  }

  .timeline-content p {
    font-size: 1.1rem;
    color: var(--text-light);
  }

  .ingredients-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .ingredient {
    flex-direction: row;
    text-align: left;
    gap: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
  }

  .ingredient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: var(--secondary-color);
  }

  .ingredient-icon {
    width: 80px;
    height: 80px;
    margin: 0;
    order: 0;
    flex-shrink: 0;
    background: linear-gradient(
      135deg,
      var(--secondary-color) 0%,
      #f4d03f 100%
    );
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  }

  .ingredient-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
  }

  .ingredient-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
  }

  .ingredient-content p {
    font-size: 1.1rem;
    color: var(--text-light);
  }

  .ingredient-benefits {
    text-align: left;
  }

  .ingredient-benefits h4 {
    color: var(--secondary-color);
    font-weight: 600;
  }

  .ingredient-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(
      135deg,
      var(--secondary-color) 0%,
      #f4d03f 100%
    );
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .logo h1 {
    font-size: 1.3rem;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-features {
    gap: 0.6rem;
  }

  .feature-item {
    font-size: 0.9rem;
  }

  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  .btn-large {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }

  section {
    padding: 1.5rem 0;
  }

  .badge,
  .benefit-card,
  .science-card,
  .ingredient,
  .step,
  .timeline-item,
  .result-card,
  .review-card,
  .security-item {
    padding: 1.5rem;
  }

  .offer-details {
    padding: 1.5rem;
  }

  .offer-item {
    font-size: 1rem;
  }

  .result-number {
    font-size: 1.8rem;
  }

  .faq-header h2,
  .comparison-header h2,
  .reviews-header h2,
  .about-header h2,
  .benefits-header h2,
  .ingredients-header h2,
  .how-it-works-header h2,
  .timeline-header h2,
  .guarantee-header h2,
  .security-header h2 {
    font-size: 1.8rem;
  }

  .faq-question {
    padding: 1.5rem;
    font-size: 1rem;
  }

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

  .faq-answer {
    max-height: 0;
  }

  /* Enhanced mobile styles for reviews section */
  .rating-overview {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
  }

  .rating-number {
    font-size: 3rem;
  }

  .rating-breakdown {
    width: 100%;
  }

  .review-card {
    padding: 2rem;
  }

  .review-card p {
    font-size: 1rem;
  }

  .review-card p::before,
  .review-card p::after {
    font-size: 2rem;
  }

  .footer-content {
    gap: 1.5rem;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-section {
    margin-bottom: 2rem;
  }

  .footer-section h3,
  .footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .footer-section ul {
    padding: 0;
  }

  .footer-section li {
    margin-bottom: 0.8rem;
  }

  .footer-section a {
    font-size: 0.95rem;
  }

  /* Enhanced mobile styles for new sections */
  .intro-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .step {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .step-indicator {
    order: -1;
  }

  .step-line {
    display: none;
  }

  /* Additional mobile optimizations */
  .trust-badges {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .badge {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1.5rem;
  }

  .badge-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto;
  }

  .badge-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .badge-content p {
    font-size: 0.9rem;
  }

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

  .stat-item {
    padding: 1rem;
    text-align: center;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }

  /* Responsive table for mobile - traditional table format */
  .comparison-table-desktop {
    display: table;
    font-size: 0.75rem;
    width: 100%;
  }

  .comparison-cards-mobile {
    display: none;
  }

  .comparison-table-desktop thead {
    display: table-header-group;
  }

  .comparison-table-desktop tbody {
    display: table-row-group;
  }

  .comparison-table-desktop tr {
    display: table-row;
  }

  .comparison-table-desktop th,
  .comparison-table-desktop td {
    display: table-cell;
    padding: 0.7rem 0.4rem;
    font-size: 0.75rem;
    word-wrap: break-word;
  }

  .comparison-table-desktop th {
    font-size: 0.8rem;
    padding: 0.8rem 0.4rem;
  }

  .comparison-table-desktop td:first-child,
  .comparison-table-desktop th:first-child {
    font-weight: 700;
  }

  .offer-content {
    padding: 1.5rem;
    text-align: center;
  }

  .offer h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }

  /* Enhanced mobile timeline design */
  .timeline-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
  }

  .timeline-items::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(
      180deg,
      var(--secondary-color) 0%,
      #f4d03f 100%
    );
    border-radius: 2px;
    transform: translateX(-50%);
  }

  .timeline-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 0;
    position: relative;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .timeline-progress {
    order: -1;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    margin-bottom: 1rem;
  }

  .timeline-marker {
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    background: linear-gradient(
      135deg,
      var(--secondary-color) 0%,
      #f4d03f 100%
    );
    color: white;
    font-weight: 700;
    min-width: 80px;
    text-align: center;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  }

  .timeline-line {
    display: none;
  }

  .timeline-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(
      135deg,
      var(--secondary-color) 0%,
      #f4d03f 100%
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
  }

  .timeline-icon img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
  }

  .timeline-content {
    flex: 1;
  }

  .timeline-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
  }

  .timeline-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
  }

  .timeline-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(
      135deg,
      var(--secondary-color) 0%,
      #f4d03f 100%
    );
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
  }

  /* Enhanced mobile ingredients design */
  .ingredients-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .ingredient {
    flex-direction: row;
    text-align: left;
    gap: 1.5rem;
    padding: 1.5rem;
    margin-bottom: 0;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
  }

  .ingredient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: var(--secondary-color);
  }

  .ingredient-icon {
    width: 60px;
    height: 60px;
    margin: 0;
    order: 0;
    flex-shrink: 0;
    background: linear-gradient(
      135deg,
      var(--secondary-color) 0%,
      #f4d03f 100%
    );
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  }

  .ingredient-icon img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
  }

  .ingredient-content {
    flex: 1;
  }

  .ingredient-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    font-weight: 700;
  }

  .ingredient-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--text-light);
  }

  .ingredient-benefits {
    text-align: left;
    margin-top: 1rem;
  }

  .ingredient-benefits h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
    font-weight: 600;
  }

  .ingredient-benefits ul {
    padding-left: 1.5rem;
    margin: 0;
  }

  .ingredient-benefits li {
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
    line-height: 1.5;
    color: var(--text-light);
    position: relative;
  }

  .ingredient-benefits li::before {
    content: "✓";
    color: var(--secondary-color);
    font-weight: bold;
    position: absolute;
    left: -1.2rem;
  }

  .ingredient-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(
      135deg,
      var(--secondary-color) 0%,
      #f4d03f 100%
    );
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
  }

  .result-card {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .result-icon {
    align-self: center;
  }

  .subtitle-line {
    display: none;
  }

  .subtitle-text {
    font-size: 1rem;
  }

  .timeline-icon,
  .result-icon,
  .benefit-icon,
  .science-icon,
  .ingredient-icon {
    width: 50px;
    height: 50px;
  }

  .timeline-icon img,
  .result-icon img,
  .benefit-icon img,
  .science-icon img,
  .ingredient-icon img {
    width: 20px;
    height: 20px;
  }

  /* Enhanced mobile styles for steps section */
  .steps-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .step-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
    max-width: 400px;
    margin: 0 auto;
  }

  .step-number {
    order: -1;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(
      135deg,
      var(--secondary-color) 0%,
      #f4d03f 100%
    );
    color: white;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
  }

  .step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(
      135deg,
      var(--secondary-color) 0%,
      #f4d03f 100%
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
  }

  .step-icon img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
  }

  .step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
  }

  .step-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
  }

  /* Enhanced mobile styles for guarantee, security, and contact sections */
  .guarantee-main,
  .security-main,
  .contact-main {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    padding: 2rem;
  }

  .guarantee-features,
  .security-features,
  .contact-methods {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .guarantee-feature,
  .security-item,
  .contact-method {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1.5rem;
  }

  .guarantee-icon,
  .security-icon,
  .contact-icon {
    width: 60px;
    height: 60px;
    align-self: center;
  }

  .guarantee-icon img,
  .security-icon img,
  .contact-icon img {
    width: 30px;
    height: 30px;
  }

  /* Mobile heading styles */
  .science-header h2,
  .results-header h2,
  .contact-header h2 {
    font-size: 1.8rem;
  }

  /* Policy pages mobile styles */
  .policy-header h1 {
    font-size: 1.8rem;
    padding: 1rem 2rem;
    border-radius: 30px;
  }

  .policy-section {
    padding: 1.5rem;
  }

  .policy-section h2 {
    font-size: 1.3rem;
  }

  .policy-section h3 {
    font-size: 1.1rem;
  }
}
