/* ============================================
   VASOHARD — Brand Design System
   ============================================ */

/* === ZUUME FONT === */
@font-face {
  font-family: 'Zuume';
  src: url('./assets/Zuume-BoldItalic.woff2') format('woff2'),
       url('./assets/Zuume-BoldItalic.woff') format('woff');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  min-height: 100dvh;
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
  background-color: #0a0a0a;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; }

/* === TEXTURE BACKGROUND === */
.dark-section {
  background-color: #0a0a0a;
  background-image: url('assets/hex-pattern.svg');
  background-repeat: repeat;
  background-size: 60px 34.64px;
  position: relative;
}

.white-section {
  background-color: #ffffff;
  color: #1a1a1a;
}

/* === CONTAINER === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === TYPOGRAPHY === */
.display-font {
  font-family: 'Oswald', 'Impact', 'Arial Narrow', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #D4A017;
}

/* === COLORS === */
:root {
  --gold: #D4A017;
  --gold-light: #FFD700;
  --orange: #E8651A;
  --dark-bg: #0a0a0a;
  --card-bg: #F5F0E6;
  --green-cta: #28A745;
  --red-accent: #CC0000;
  --white: #ffffff;
  --dark-text: #1a1a1a;
  --muted: #888888;
}

/* === ORANGE DOT DIVIDER === */
.dot-divider {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 16px 0;
}
.dot-divider span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  display: inline-block;
}

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 0 24px;
  height: 80px;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

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

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

.header-nav a {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  transition: color 0.2s;
}

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

.btn-header-cta {
  background: #CC3300;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 28px;
  border-radius: 6px;
  transition: background 0.2s, transform 0.15s;
}

.btn-header-cta:hover {
  background: #e63900;
  transform: translateY(-1px);
}

/* === HERO === */
.hero {
  padding: 20px 0 40px;
  min-height: auto;
  display: flex;
  align-items: center;
}

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

.hero-image {
  display: flex;
  justify-content: center;
}

.hero-image img {
  max-height: 520px;
  width: auto;
  filter: drop-shadow(0 20px 60px rgba(212,160,23,0.25));
}

.hero-text h1 {
  font-size: clamp(48px, 7vw, 88px);
}

.hero-text h1 .brand-gold {
  color: var(--gold-light);
  font-family: 'Zuume', 'Oswald', 'Impact', 'Arial Narrow', sans-serif;
  font-style: italic;
  font-weight: 700;
}

.hero-tagline {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--orange);
  font-style: italic;
  margin-top: 8px;
  white-space: nowrap;
}

.hero-subtitle {
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 16px;
  line-height: 1.4;
  color: rgba(255,255,255,0.9);
}

.btn-gold {
  display: inline-block;
  background: linear-gradient(180deg, #FFD700 0%, #D4A017 100%);
  color: #1a1a1a;
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px 48px;
  border-radius: 50px;
  margin-top: 32px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(212,160,23,0.4);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(212,160,23,0.6);
}

/* === BENEFITS ICONS === */
.benefits-icons {
  padding: 64px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.benefit-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #1a1a1a;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 2px,
    rgba(255,255,255,0.04) 2px,
    rgba(255,255,255,0.04) 4px
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon svg {
  width: 40px;
  height: 40px;
  stroke: #fff;
  color: #fff;
  fill: none;
  stroke-width: 1.5;
}

.benefit-label {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #8B1A1A;
  line-height: 1.3;
}

.benefits-description {
  text-align: center;
  max-width: 720px;
  margin: 40px auto 0;
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  font-style: italic;
}

/* === BENEFITS + FORMULA (MERGED) === */
.benefits-formula-section {
  padding: 64px 0 80px;
}

/* (legacy) */
.formula-section {
  padding: 80px 0;
}

.formula-badges-row {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.formula-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.formula-badge-item .badge-icon {
  width: 56px;
  height: 56px;
  border-radius: 0;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: none;
}

.formula-badge-item .badge-icon svg {
  width: 40px;
  height: 40px;
  stroke: #1a1a1a;
  color: #1a1a1a;
  fill: none;
  stroke-width: 1.5;
}

.formula-badge-item .badge-label {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #8B1A1A;
}

.formula-bottle-center {
  display: flex;
  justify-content: center;
  padding: 48px 0;
}

.formula-bottle-center img {
  max-height: 420px;
  width: auto;
  filter: drop-shadow(0 15px 40px rgba(212,160,23,0.2));
}

/* === BONUSES === */
.bonuses-section {
  padding: 80px 0;
}

.bonuses-header {
  text-align: center;
  margin-bottom: 48px;
}

.bonuses-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  margin-top: 12px;
}

.bonuses-header h2 .text-gold {
  color: var(--gold-light);
}

.bonuses-sub {
  font-size: 18px;
  margin-top: 12px;
  color: rgba(255,255,255,0.8);
}

.bonuses-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.bonus-text h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--orange);
  font-style: italic;
  margin-bottom: 16px;
}

.bonus-text p {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  line-height: 1.7;
}

.bonus-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.bonus-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}

.bonus-card-img {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 48px;
}

.bonus-card h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.3;
}

.bonus-card .dl-tag {
  font-size: 12px;
  color: var(--orange);
  margin-top: 4px;
}

.bonus-card .disclaimer {
  font-size: 11px;
  color: var(--muted);
  margin-top: 8px;
}

/* === GUARANTEE === */
.guarantee-section {
  padding: 80px 0;
}

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

.guarantee-visual {
  text-align: center;
}

.guarantee-seal {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFD700, #D4A017);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  box-shadow: 0 8px 32px rgba(212,160,23,0.3);
}

.guarantee-seal-inner {
  text-align: center;
  color: #1a1a1a;
}

.guarantee-seal-inner .days {
  font-family: 'Oswald', sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}

.guarantee-seal-inner .label {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.guarantee-bottles img {
  max-height: 200px;
  margin: 0 auto;
}

.guarantee-text h2 {
  font-size: clamp(32px, 5vw, 56px);
}

.guarantee-text h2 .text-orange {
  color: var(--orange);
}

.guarantee-text p {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  margin-top: 16px;
}

.shipping-callout {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 16px;
  background: rgba(0,0,0,0.03);
  border-radius: 8px;
}

.shipping-callout svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.shipping-callout strong {
  font-size: 14px;
  display: block;
}

.shipping-callout .social-proof {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
}

/* === FEEL GREAT === */
.feel-great-section {
  padding: 80px 0;
}

.feel-great-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.feel-great-text h2 {
  font-size: clamp(32px, 5vw, 52px);
}

.feel-great-text .sub-tagline {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  color: var(--orange);
  text-transform: uppercase;
  font-style: italic;
  margin-top: 8px;
}

.feel-great-bullets {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feel-great-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255,255,255,0.9);
}

.bullet-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  margin-top: 6px;
}

.feel-great-image {
  display: flex;
  justify-content: center;
}

.feel-great-image img {
  max-height: 450px;
  border-radius: 12px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}

.disclaimer-note {
  font-size: 11px;
  color: var(--muted);
  margin-top: 16px;
}

/* === REFERENCES === */
.references-section {
  padding: 80px 0;
}

.references-heading {
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 32px;
}

.institution-logos {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  opacity: 0.6;
}

.institution-logos span {
  font-size: 14px;
  font-weight: 600;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.references-list {
  columns: 2;
  column-gap: 40px;
  font-size: 12px;
  color: #666;
  line-height: 1.6;
}

.references-list p {
  break-inside: avoid;
  margin-bottom: 12px;
}

.product-label-img {
  text-align: center;
  margin-top: 40px;
}

.product-label-img img {
  max-height: 300px;
  margin: 0 auto;
}

/* === FOOTER === */
.site-footer {
  padding: 48px 24px;
  text-align: center;
}

.footer-logo img {
  height: 50px;
  margin: 0 auto 24px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.footer-links a {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

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

.footer-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.footer-copyright {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: 24px;
}

/* ============================================
   ORDER PAGE STYLES
   ============================================ */

.order-hero-headline {
  text-align: center;
  padding: 60px 0 40px;
}

.order-hero-headline h1 {
  font-size: clamp(28px, 5vw, 52px);
  color: #fff;
}

.order-hero-headline h1 .text-orange {
  color: var(--orange);
}

/* === PRICING CARDS === */
.pricing-section {
  padding: 40px 0 60px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 24px;
  align-items: end;
}

.pricing-card {
  background: var(--card-bg);
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  color: #1a1a1a;
  position: relative;
  transition: transform 0.3s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

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

.pricing-card.featured {
  box-shadow: 0 8px 40px rgba(212,160,23,0.4);
}

.card-ribbon {
  background: linear-gradient(135deg, #FFD700, #D4A017);
  color: #1a1a1a;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 10px;
}

.card-header {
  padding: 20px 16px 12px;
}

.card-package-name {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  color: #1a1a1a;
}

.card-sub {
  font-size: 13px;
  color: #666;
  margin-top: 2px;
}

.card-image {
  padding: 16px;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.card-image img {
  max-height: 180px;
  width: auto;
}

.free-shipping-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--red-accent);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 8px;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.1;
  transform: rotate(-15deg);
}

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

.card-price .per-bottle {
  font-family: 'Oswald', sans-serif;
  font-size: 52px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
}

.card-price .per-bottle-label {
  font-size: 13px;
  color: #666;
}

.card-total {
  padding: 8px 16px;
  font-size: 14px;
}

.card-total .original {
  text-decoration: line-through;
  color: #999;
  margin-right: 8px;
}

.card-total .sale {
  font-weight: 700;
  color: #1a1a1a;
  font-size: 18px;
}

.card-total .shipping-note {
  display: block;
  font-size: 12px;
  color: #666;
  margin-top: 4px;
}

.card-features {
  padding: 12px 20px;
  text-align: left;
}

.card-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  padding: 4px 0;
}

.card-features li svg {
  width: 18px;
  height: 18px;
  fill: var(--green-cta);
  flex-shrink: 0;
}

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

.btn-add-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--green-cta);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 12px rgba(40,167,69,0.3);
}

.btn-add-cart:hover {
  background: #219a3b;
  transform: translateY(-1px);
}

.btn-add-cart svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.payment-icons {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  opacity: 0.5;
}

.payment-icons img {
  height: 24px;
}

.payment-icons span {
  display: inline-block;
  font-size: 11px;
  padding: 2px 6px;
  border: 1px solid #ccc;
  border-radius: 3px;
  color: #777;
  font-weight: 600;
}

/* === TRUST BADGES (ORDER PAGE) === */
.trust-badges {
  padding: 40px 0;
  text-align: center;
}

.trust-badges-grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.trust-badge-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(212,160,23,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-badge-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold-light);
  fill: none;
  stroke-width: 1.5;
}

.trust-badge-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.7);
}

/* === CREATOR / BRAND SECTION === */
.creator-section {
  padding: 80px 0;
}

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

.creator-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 4px;
}

.creator-text h2 {
  font-size: clamp(28px, 4vw, 44px);
  margin-top: 12px;
}

.creator-text h2 .text-orange {
  color: var(--orange);
}

.creator-text .sub-head {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 8px;
}

.creator-text p {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  line-height: 1.7;
  margin-top: 16px;
}

.creator-signature {
  margin-top: 24px;
}

.creator-signature .name {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-light);
}

.creator-image {
  display: flex;
  justify-content: center;
}

.creator-image img {
  max-height: 400px;
  filter: drop-shadow(0 15px 40px rgba(212,160,23,0.2));
}

/* === TESTIMONIALS === */
.testimonials-section {
  padding: 80px 0;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-top: 12px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  gap: 20px;
}

.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #333, #555);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 24px;
  font-weight: 700;
  color: var(--gold-light);
}

.testimonial-content {
  flex: 1;
}

.testimonial-stars {
  color: var(--gold-light);
  font-size: 16px;
  letter-spacing: 2px;
}

.verified-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--green-cta);
  margin-left: 8px;
}

.testimonial-content p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-top: 8px;
}

.testimonial-name {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 12px;
  color: #fff;
}

.testimonial-location {
  font-size: 12px;
  color: var(--muted);
}

/* === INGREDIENTS === */
.ingredients-section {
  padding: 80px 0;
}

.ingredients-header {
  text-align: center;
  margin-bottom: 48px;
}

.ingredients-header h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  margin-top: 12px;
}

.ingredients-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
}

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

.ingredient-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}

.ingredient-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a2a1a, #1a1a0a);
  border: 2px solid rgba(212,160,23,0.2);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.ingredient-card h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 4px;
}

.ingredient-card p {
  font-size: 13px;
  color: var(--orange);
  font-style: italic;
}

/* === FAQ === */
.faq-section {
  padding: 80px 0;
}

.faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-top: 12px;
}

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

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color 0.2s;
}

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

.faq-question .icon {
  font-size: 24px;
  transition: transform 0.3s;
  color: var(--orange);
}

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

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

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

.faq-answer p {
  padding: 0 0 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

/* === FEATURE BENEFITS STRIP === */
.feature-strip {
  padding: 60px 0;
  text-align: center;
}

.feature-strip-inner {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.feature-strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.feature-strip-item svg {
  width: 40px;
  height: 40px;
  stroke: var(--gold-light);
  fill: none;
  stroke-width: 1.5;
}

.feature-strip-item span {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
}

/* === SHIPPING BANNER === */
.shipping-banner {
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.shipping-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.shipping-banner svg {
  width: 40px;
  height: 40px;
  stroke: var(--gold-light);
  fill: none;
  stroke-width: 1.5;
}

.shipping-banner h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}

.shipping-banner .social-proof {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  width: 100%;
}

/* === URGENCY HEADING === */
.urgency-heading {
  text-align: center;
  padding: 60px 0 20px;
}

.urgency-heading h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  color: #fff;
}

/* === MOBILE RESPONSIVE === */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-image {
    order: -1;
  }

  .hero-image img {
    max-height: 350px;
  }

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

  .formula-badges-row {
    gap: 32px;
  }

  .bonuses-content {
    grid-template-columns: 1fr;
  }

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

  .feel-great-grid {
    grid-template-columns: 1fr;
  }

  .references-list {
    columns: 1;
  }

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

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

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

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

  .header-nav a:not(.btn-header-cta) {
    display: none;
  }

  .footer-links {
    gap: 12px;
  }

  .trust-badges-grid {
    gap: 16px;
  }
}

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

  .bonus-cards {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 36px;
  }
}
