/* ===== DESIGN TOKENS ===== */
:root {
  /* Colors — soft professional palette */
  --bg-primary: #f8faf8;
  --bg-secondary: #eef2ef;
  --bg-card: #ffffff;
  --bg-card-hover: #f7faf8;
  --bg-glass: rgba(255, 255, 255, 0.75);
  --border-glass: rgba(107, 144, 128, 0.18);

  --text-primary: #1a1f1c;
  --text-secondary: #51625a;
  --text-muted: #5f6f66;

  --accent-emerald: #6b9080;
  --accent-emerald-dark: #4f7567;
  --accent-emerald-light: #a4c3b2;
  --accent-gold: #c9a66b;
  --accent-gold-light: #e3d2b0;
  --accent-teal: #5d8a7e;

  --gradient-hero: linear-gradient(135deg, #f8faf8 0%, #eef2ef 40%, #e3ebe6 70%, #dde7e2 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent-emerald), var(--accent-teal));
  --gradient-gold: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
  --gradient-card: linear-gradient(160deg, rgba(107, 144, 128, 0.06), rgba(93, 138, 126, 0.03));

  /* Shadows — softer, light-friendly */
  --shadow-sm: 0 2px 8px rgba(26, 31, 28, 0.06);
  --shadow-md: 0 4px 20px rgba(26, 31, 28, 0.08);
  --shadow-lg: 0 8px 40px rgba(26, 31, 28, 0.1);
  --shadow-glow: 0 0 30px rgba(107, 144, 128, 0.12);
  --shadow-gold-glow: 0 0 25px rgba(201, 166, 107, 0.15);

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;
  --border-radius: 16px;
  --border-radius-sm: 10px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ===== ACCESSIBILITY ===== */
:focus-visible {
  outline: 3px solid var(--accent-emerald-dark);
  outline-offset: 3px;
  border-radius: 4px;
}

.btn:focus-visible,
.nav-cta:focus-visible,
.cart-toggle:focus-visible,
.qty-btn:focus-visible,
.cart-checkout:focus-visible {
  outline: 3px solid var(--accent-emerald-dark);
  outline-offset: 3px;
}

input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--accent-emerald-dark);
  outline-offset: 1px;
}

/* Keep mouse clicks clean; only show ring for keyboard nav */
:focus:not(:focus-visible) {
  outline: none;
}

/* picture should not affect layout — let img participate directly */
picture {
  display: contents;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

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

ul {
  list-style: none;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 50px;
  background: rgba(107, 144, 128, 0.08);
  border: 1px solid rgba(107, 144, 128, 0.2);
  color: var(--accent-emerald);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 680px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

.inline-link {
  color: var(--accent-emerald-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition-fast);
}

.inline-link:hover {
  color: var(--accent-gold);
}

.gold-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.emerald-text {
  color: var(--accent-emerald);
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition-smooth);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(248, 250, 248, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  padding: 10px 0;
  box-shadow: var(--shadow-md);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.nav-logo .logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 4px 0;
}

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

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

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

.nav-cta {
  padding: 10px 24px !important;
  background: var(--gradient-accent) !important;
  color: #ffffff !important;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: all var(--transition-smooth) !important;
  box-shadow: 0 4px 15px rgba(107, 144, 128, 0.2);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(107, 144, 128, 0.3) !important;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 1px;
  transition: all var(--transition-fast);
}

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

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-toggle {
  position: relative;
  background: transparent;
  border: 1px solid var(--border-glass);
  border-radius: 50px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-primary);
  font-size: 1.1rem;
  transition: all var(--transition-fast);
}

.cart-toggle:hover {
  background: rgba(107, 144, 128, 0.1);
  border-color: rgba(107, 144, 128, 0.3);
  transform: translateY(-2px);
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: #4a3f2e;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: all var(--transition-fast);
}

.cart-count.has-items {
  opacity: 1;
  transform: scale(1);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--gradient-hero);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107, 144, 128, 0.08) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 166, 107, 0.06) 0%, transparent 70%);
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.05); }
}

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

.hero-content {
  animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 50px;
  background: rgba(201, 166, 107, 0.1);
  border: 1px solid rgba(201, 166, 107, 0.25);
  color: var(--accent-gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero h1 {
  margin-bottom: 20px;
  line-height: 1.15;
}

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

.hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: fadeInRight 0.8s ease-out 0.2s both;
}

.hero-image-wrapper {
  position: relative;
  width: 380px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent, rgba(107, 144, 128, 0.15), transparent, rgba(201, 166, 107, 0.1), transparent);
  animation: rotate 12s linear infinite;
}

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

.hero-image-wrapper img {
  width: 300px;
  height: auto;
  border-radius: var(--border-radius);
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 40px rgba(26, 31, 28, 0.12));
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
  align-items: center;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.hero-rating .stars {
  color: var(--accent-gold);
  letter-spacing: 2px;
  font-size: 1rem;
}

.hero-rating strong {
  color: var(--text-primary);
}

.hero-guarantee {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 50px;
  background: rgba(107, 144, 128, 0.08);
  border: 1px solid rgba(107, 144, 128, 0.15);
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.hero-guarantee .guarantee-icon {
  font-size: 1rem;
}

.hero-fud {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-fud span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(107, 144, 128, 0.12);
}

.stat {
  text-align: left;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  border: none;
  cursor: pointer;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-accent);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(107, 144, 128, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(107, 144, 128, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(107, 144, 128, 0.06);
  border-color: rgba(107, 144, 128, 0.3);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gradient-gold);
  color: #4a3f2e;
  box-shadow: var(--shadow-gold-glow);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201, 166, 107, 0.3);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.85rem;
}

/* ===== WHY SECTION ===== */
.why-section {
  padding: var(--section-padding);
  position: relative;
}

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

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius);
  padding: 36px 28px;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-smooth);
}

.why-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(107, 144, 128, 0.25);
}

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

.why-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(107, 144, 128, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.why-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.why-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ===== PROTOCOL SECTION ===== */
.protocol-section {
  padding: var(--section-padding);
  background: var(--bg-secondary);
  position: relative;
}

.protocol-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(107, 144, 128, 0.2), transparent);
}

.protocol-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.protocol-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  align-items: start;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius);
  padding: 36px;
  transition: all var(--transition-smooth);
  backdrop-filter: blur(10px);
}

.protocol-step:hover {
  background: var(--bg-card-hover);
  border-color: rgba(107, 144, 128, 0.25);
  box-shadow: var(--shadow-glow);
  transform: translateX(6px);
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(107, 144, 128, 0.1);
  border: 2px solid rgba(107, 144, 128, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-emerald);
  flex-shrink: 0;
}

.step-content h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.step-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

.step-content ul {
  margin-top: 12px;
}

.step-content ul li {
  color: var(--text-secondary);
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
  font-size: 0.95rem;
}

.step-content ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--accent-emerald);
  font-size: 0.7rem;
  top: 10px;
}

.step-content strong {
  color: var(--accent-gold);
  font-weight: 600;
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
  padding: var(--section-padding);
  position: relative;
}

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

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: all var(--transition-smooth);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(107, 144, 128, 0.3);
}

.product-card.featured {
  border-color: rgba(201, 166, 107, 0.3);
}

.product-card.featured:hover {
  box-shadow: var(--shadow-gold-glow);
  border-color: rgba(201, 166, 107, 0.5);
}

.product-card.featured .product-badge {
  background: var(--gradient-gold);
  color: #ffffff;
}

.product-image {
  position: relative;
  padding: 24px;
  background: linear-gradient(180deg, rgba(107, 144, 128, 0.04), transparent);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 220px;
}

.product-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(107, 144, 128, 0.12);
  color: var(--accent-emerald);
}

.product-image img {
  width: 160px;
  height: auto;
  object-fit: contain;
  transition: transform var(--transition-smooth);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-info {
  padding: 20px 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-info h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.product-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 8px;
}

.product-info p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 16px;
  flex: 1;
}

.product-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-cart-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.product-cart-row .add-to-cart {
  flex: 1;
  justify-content: center;
  padding: 10px 16px;
  font-size: 0.82rem;
}

.product-actions .btn-secondary {
  justify-content: center;
  padding: 10px 16px;
  font-size: 0.82rem;
}

.quantity-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-glass);
  border-radius: 50px;
  overflow: hidden;
  background: var(--bg-secondary);
  flex-shrink: 0;
}

.qty-btn {
  width: 32px;
  height: 36px;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover {
  background: rgba(107, 144, 128, 0.1);
  color: var(--accent-emerald);
}

.qty-input {
  width: 40px;
  height: 36px;
  background: transparent;
  border: none;
  color: var(--text-primary);
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  -moz-appearance: textfield;
  appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ===== FULL SYSTEM CALLOUT ===== */
.full-system-callout {
  margin-top: 48px;
  padding: 32px 36px;
  background: linear-gradient(135deg, rgba(107, 144, 128, 0.08), rgba(201, 166, 107, 0.06));
  border: 2px solid rgba(201, 166, 107, 0.25);
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
}

.full-system-content {
  display: flex;
  align-items: center;
  gap: 28px;
}

.full-system-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.full-system-text {
  flex: 1;
}

.full-system-text h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.full-system-text p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.full-system-callout .btn {
  white-space: nowrap;
  justify-content: center;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .full-system-content {
    flex-direction: column;
    text-align: center;
  }

  .full-system-callout .btn {
    width: 100%;
    max-width: 320px;
  }
}

/* ===== PRODUCTS TRUST BAR ===== */
.products-trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-item .trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(107, 144, 128, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.trust-item div {
  display: flex;
  flex-direction: column;
}

.trust-item strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.trust-item span {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .products-trust-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .products-trust-bar {
    grid-template-columns: 1fr;
  }
}

/* ===== 90 FOR LIFE SECTION ===== */
.ninety-for-life-section {
  padding: var(--section-padding);
  background: var(--bg-secondary);
  position: relative;
}

.ninety-for-life-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(107, 144, 128, 0.2), transparent);
}

.ninety-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto 48px;
}

.ninety-intro-text p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--bg-primary);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.ninety-subtitle {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 40px;
  color: var(--text-primary);
}

.ninety-for-life-section .product-card .product-image {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(107, 144, 128, 0.03));
}

@media (max-width: 768px) {
  .ninety-intro {
    grid-template-columns: 1fr;
  }

  .ninety-subtitle {
    font-size: 1.25rem;
  }
}

/* ===== CONSULTATION / FORM SECTION ===== */
.consult-section {
  padding: var(--section-padding);
  background: var(--bg-secondary);
  position: relative;
}

.consult-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(107, 144, 128, 0.2), transparent);
}

.consult-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.consult-info h2 {
  margin-bottom: 16px;
}

.consult-info p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.consult-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.consult-benefit {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: rgba(107, 144, 128, 0.05);
  border-radius: var(--border-radius-sm);
  border: 1px solid rgba(107, 144, 128, 0.08);
}

.consult-benefit-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(107, 144, 128, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.consult-benefit span {
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.consult-form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius);
  padding: 40px;
  backdrop-filter: blur(10px);
}

.consult-form-wrapper h3 {
  margin-bottom: 6px;
  font-size: 1.4rem;
}

.consult-form-wrapper .form-subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-primary);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius-sm);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-emerald);
  box-shadow: 0 0 0 3px rgba(107, 144, 128, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit {
  width: 100%;
  margin-top: 8px;
  justify-content: center;
  font-size: 1rem;
  padding: 16px 32px;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  padding: var(--section-padding);
  background: var(--bg-primary);
  position: relative;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(107, 144, 128, 0.2), transparent);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
  backdrop-filter: blur(10px);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-glow);
  border-color: rgba(107, 144, 128, 0.25);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: var(--accent-gold);
  letter-spacing: 2px;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.testimonial-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #ffffff;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
}

.testimonial-info strong {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 600;
}

.testimonial-info span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

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

  .testimonial-card {
    padding: 24px;
  }
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: var(--section-padding);
  background: var(--bg-secondary);
  position: relative;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(107, 144, 128, 0.2), transparent);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius);
  padding: 28px;
  transition: all var(--transition-smooth);
  backdrop-filter: blur(10px);
}

.faq-item:hover {
  background: var(--bg-card-hover);
  border-color: rgba(107, 144, 128, 0.25);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

.faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--text-primary);
  line-height: 1.4;
}

.faq-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

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

  .faq-item {
    padding: 22px;
  }
}

/* ===== NEED MORE HELP CALLOUT ===== */
.help-callout {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 1000px;
  margin: 48px auto 0;
  padding: 32px 36px;
  background: linear-gradient(135deg, rgba(201, 166, 107, 0.1), rgba(107, 144, 128, 0.06));
  border: 1px solid rgba(201, 166, 107, 0.25);
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
}

.help-callout-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.help-callout-text {
  flex: 1;
}

.help-callout-text h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.help-callout-text p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.help-callout-text strong {
  color: var(--accent-gold);
}

.help-callout-btn {
  flex-shrink: 0;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .help-callout {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
  }

  .help-callout-btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}

/* ===== FOOTER ===== */
.footer {
  padding: 60px 0 30px;
  border-top: 1px solid var(--border-glass);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border-glass);
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-emerald);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  max-width: 900px;
  line-height: 1.7;
  opacity: 0.7;
}

.footer-copyright {
  font-size: 0.82rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.sponsor-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 6px;
  background: rgba(107, 144, 128, 0.08);
  border: 1px solid rgba(107, 144, 128, 0.15);
  font-size: 0.72rem;
  color: var(--accent-emerald);
  font-weight: 500;
  margin-top: 8px;
}

/* ===== CART DRAWER ===== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 31, 28, 0.35);
  backdrop-filter: blur(4px);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 420px;
  max-width: 90vw;
  background: var(--bg-primary);
  border-left: 1px solid var(--border-glass);
  z-index: 1101;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--transition-smooth);
  box-shadow: var(--shadow-lg);
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid var(--border-glass);
}

.cart-header h3 {
  font-size: 1.4rem;
  font-family: 'Playfair Display', serif;
}

.cart-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.cart-close:hover {
  background: rgba(107, 144, 128, 0.1);
  color: var(--text-primary);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-item {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius-sm);
}

.cart-item-image {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background: rgba(107, 144, 128, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.cart-item-image img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.cart-item-details {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-price {
  color: var(--accent-gold);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-item-qty .qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--bg-secondary);
}

.cart-item-qty .qty-input {
  width: 36px;
  height: 28px;
  border-radius: 6px;
  background: var(--bg-primary);
  border: 1px solid var(--border-glass);
}

.cart-item-remove {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(183, 96, 88, 0.08);
  border: 1px solid rgba(183, 96, 88, 0.15);
  color: #b76058;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.cart-item-remove:hover {
  background: rgba(183, 96, 88, 0.15);
  transform: scale(1.05);
}

.cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  text-align: center;
  color: var(--text-muted);
}

.cart-empty-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  opacity: 0.5;
}

.cart-empty p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.cart-empty span {
  font-size: 0.85rem;
}

.cart-empty,
.cart-items {
  display: none;
}

.cart-empty.show,
.cart-items.show {
  display: flex;
}

.cart-footer {
  padding: 24px;
  border-top: 1px solid var(--border-glass);
  background: var(--bg-secondary);
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 1.1rem;
  font-weight: 600;
}

.cart-subtotal span:last-child {
  font-family: 'Playfair Display', serif;
  color: var(--accent-gold);
  font-size: 1.3rem;
}

.cart-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.cart-guarantee {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.4;
}

.cart-checkout {
  width: 100%;
  justify-content: center;
  padding: 16px 24px;
  font-size: 1rem;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

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

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ===== FORM SUCCESS ===== */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.show {
  display: block;
  animation: fadeInUp 0.5s ease-out;
}

.form-success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.form-success h3 {
  margin-bottom: 8px;
  color: var(--accent-emerald);
}

.form-success p {
  color: var(--text-secondary);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    order: 2;
  }

  .hero-image {
    order: 1;
  }

  .hero-description {
    margin: 0 auto 36px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .consult-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 70px 0;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(248, 250, 248, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.2rem;
  }

  .mobile-menu-btn {
    display: flex;
    z-index: 1001;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .protocol-step {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .step-number {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }

  .hero-image-wrapper {
    width: 260px;
    height: 260px;
  }

  .hero-image-wrapper img {
    width: 200px;
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .consult-form-wrapper {
    padding: 28px;
  }

  .cart-drawer {
    width: 100%;
    max-width: 100vw;
  }

  .cart-item {
    gap: 12px;
    padding: 12px;
  }

  .cart-item-image {
    width: 50px;
    height: 50px;
  }

  .cart-item-image img {
    width: 40px;
    height: 40px;
  }

  .cart-toggle {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

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

@media (max-width: 768px) {
  .btn {
    min-height: 52px;
    padding: 14px 28px;
  }

  .btn-sm {
    min-height: 44px;
  }

  .qty-btn {
    width: 36px;
    height: 40px;
  }

  .qty-input {
    height: 40px;
  }

  .product-cart-row .add-to-cart {
    min-height: 44px;
  }

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

  .hero-trust-row {
    justify-content: center;
  }

  .hero-fud {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .navbar {
    padding: 12px 0;
  }

  .navbar.scrolled {
    padding: 8px 0;
  }

  .cart-toggle {
    width: 48px;
    height: 48px;
  }

  .mobile-menu-btn {
    width: 44px;
    height: 44px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 15px;
  }

  .product-actions {
    flex-direction: column;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .hero-trust-row {
    flex-direction: column;
    gap: 12px;
  }

  .hero-fud {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }
}
