/* ==========================================================================
   HORSEWOOD — STYLES
   Visual: Mars Men brand-led + JellyThin DR pricing/funnel mechanics.
   ========================================================================== */

/* ---------- GOOGLE FONTS ---------- */
/* Display agressivo: Anton (grotesque condensada bold)
   Body: Manrope (geometric sans neutra)
   Tech mono: Space Mono (sci-fi/lab)
   Brush script: Permanent Marker (substitui o logo grunge do label) */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Manrope:wght@400;500;600;700;800&family=Space+Mono:wght@400;700&family=Permanent+Marker&display=swap');

/* ---------- CSS VARIABLES ---------- */
:root {
  /* Cores — paleta do label do Horsewood */
  --color-primary: #FF6B1A;          /* laranja-fogo dos olhos do cavalo */
  --color-primary-dark: #B33D0B;
  --color-primary-glow: rgba(255, 107, 26, 0.35);
  --color-bg: #0A0A0A;               /* black profundo */
  --color-bg-dark: #050505;
  --color-bg-soft: #161310;          /* brown-warm do label */
  --color-bg-card: #1A1410;
  --color-white: #FFFFFF;
  --color-text: #E8E5E0;
  --color-muted: #8A8580;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-glass: rgba(255, 255, 255, 0.04);
  --color-glass-strong: rgba(255, 255, 255, 0.08);

  /* Tipografia */
  --font-display: 'Anton', 'Impact', sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --font-mono: 'Space Mono', 'Courier New', monospace;
  --font-brush: 'Permanent Marker', cursive;

  /* Layout */
  --header-height: 72px;
  --container-max: 1440px;
  --content-max: 1180px;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --radius-xl: 28px;

  /* Shadows */
  --shadow-orange: 0 10px 40px -10px var(--color-primary-glow);
  --shadow-deep: 0 30px 80px -20px rgba(0, 0, 0, 0.8);
}

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

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--color-text);
  background-color: var(--color-bg);
  /* fundo com gradiente sutil + ruído atmosférico */
  background-image:
    radial-gradient(ellipse at 20% 0%, rgba(255, 107, 26, 0.08), transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(255, 107, 26, 0.04), transparent 60%),
    linear-gradient(180deg, #0A0A0A 0%, #050505 100%);
  background-attachment: fixed;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul {
  list-style: none;
}

/* ---------- CONTAINERS ---------- */
.container,
.container-wide {
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

.container { max-width: var(--content-max); }
.container-wide { max-width: var(--container-max); }

/* ---------- UTILS ---------- */
.text-orange { color: var(--color-primary); }
.text-mono { font-family: var(--font-mono); }
.uppercase { text-transform: uppercase; letter-spacing: 0.03em; }

/* ==========================================================================
   ANNOUNCEMENT BAR
   ========================================================================== */
.announcement-bar {
  background: linear-gradient(90deg, var(--color-primary-dark) 0%, var(--color-primary) 50%, var(--color-primary-dark) 100%);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 16px;
  text-align: center;
  position: relative;
  z-index: 100;
  /* sutil shine */
  background-size: 200% 100%;
  animation: shineBar 8s linear infinite;
}

@keyframes shineBar {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.announcement-bar a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.announcement-bar .discount-bubble {
  background: #000;
  color: var(--color-primary);
  padding: 3px 10px;
  border-radius: 100px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}

.header-logo {
  font-family: var(--font-brush);
  font-size: 30px;
  color: #fff;
  letter-spacing: 0.02em;
  text-shadow: 0 0 18px rgba(255, 107, 26, 0.4);
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-logo .logo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 12px var(--color-primary);
}

.header-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.header-nav a {
  color: var(--color-text);
  transition: color 0.2s;
  position: relative;
}

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

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-primary);
  color: #000;
  padding: 10px 20px;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform 0.2s, box-shadow 0.2s;
}

.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-orange);
}

/* Hamburger */
.menu-toggle {
  display: none;
  color: #fff;
  padding: 8px;
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 100px 32px 32px;
  backdrop-filter: blur(20px);
}

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

.drawer-close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: #fff;
  padding: 8px;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-family: var(--font-display);
  font-size: 42px;
  letter-spacing: 0.02em;
}

.drawer-nav a {
  color: #fff;
  text-transform: uppercase;
  transition: color 0.2s, transform 0.2s;
  display: inline-block;
}

.drawer-nav a:hover {
  color: var(--color-primary);
  transform: translateX(8px);
}

.drawer-nav .featured {
  color: var(--color-primary);
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 80px 0 60px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(255, 107, 26, 0.15), transparent 60%),
    radial-gradient(circle at 70% 30%, rgba(120, 30, 0, 0.25), transparent 50%);
  z-index: 1;
}

/* lightning bolts decorativos no fundo (igual label) */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(115deg, transparent 30%, rgba(255, 107, 26, 0.04) 30%, rgba(255, 107, 26, 0.04) 32%, transparent 32%),
    linear-gradient(65deg, transparent 60%, rgba(255, 107, 26, 0.03) 60%, rgba(255, 107, 26, 0.03) 62%, transparent 62%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content { max-width: 640px; }

.hero-reviews {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 24px;
}

.hero-reviews .stars { color: var(--color-primary); display: inline-flex; }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.92;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: #fff;
}

.hero-title .brand {
  font-family: var(--font-brush);
  color: var(--color-primary);
  font-size: 1.15em;
  letter-spacing: 0;
  display: block;
  text-shadow: 0 0 30px rgba(255, 107, 26, 0.5);
  margin-bottom: 8px;
}

.hero-title .accent {
  color: var(--color-primary);
  position: relative;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-text);
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-subtitle strong { color: var(--color-primary); font-weight: 700; }

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

.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--color-muted);
}

.hero-trust svg { color: var(--color-primary); flex-shrink: 0; }

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

.hero-product-img {
  max-width: 480px;
  width: 100%;
  filter: drop-shadow(0 30px 60px rgba(255, 107, 26, 0.25))
          drop-shadow(0 50px 100px rgba(0, 0, 0, 0.6));
  animation: floatJar 6s ease-in-out infinite;
}

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

/* Glow ring atrás do produto */
.hero-product::before {
  content: '';
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 26, 0.25) 0%, transparent 65%);
  filter: blur(40px);
  z-index: 0;
}

.hero-product-img { position: relative; z-index: 1; }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--color-primary);
  color: #000;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 18px 32px;
  border-radius: 100px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange), 0 0 0 4px rgba(255, 107, 26, 0.15);
  background: #ff7a30;
}

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

.btn-primary svg { transition: transform 0.2s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-block {
  width: 100%;
  display: flex;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 24px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  transition: all 0.2s;
}

.btn-ghost:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* ==========================================================================
   FEATURED IN
   ========================================================================== */
.featured-in {
  padding: 48px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: rgba(0, 0, 0, 0.3);
}

.featured-in-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.featured-in-label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.featured-in-logos {
  display: flex;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
}

.featured-in-logo {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  transition: color 0.2s;
}

.featured-in-logo:hover { color: #fff; }

.featured-in-logo.serif {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 700;
}

/* ==========================================================================
   CLAIM STRIP (urgência antes de pricing)
   ========================================================================== */
.claim-strip {
  padding: 56px 0 32px;
  text-align: center;
}

.claim-strip-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
}

.claim-strip-heading .text-orange { color: var(--color-primary); }

.claim-strip-sub {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-muted);
}

/* ==========================================================================
   PRICING SECTION (BuyGoods 1 / 3 / 6 jars)
   ========================================================================== */
.pricing-section {
  padding: 32px 0 80px;
}

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

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: #fff;
  margin-bottom: 12px;
}

.section-header h2 .text-orange { color: var(--color-primary); }

.section-subhead {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
  max-width: 620px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  background: var(--color-bg-card);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, border-color 0.3s;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 26, 0.3);
}

.pricing-card.featured {
  border: 2px solid var(--color-primary);
  background: linear-gradient(180deg, rgba(255, 107, 26, 0.08) 0%, var(--color-bg-card) 30%);
  box-shadow: 0 30px 60px -20px rgba(255, 107, 26, 0.3), 0 0 0 1px rgba(255, 107, 26, 0.2);
  transform: translateY(-8px);
}

.pricing-card.featured::before {
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  height: 4px;
}

.pricing-card-label {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-muted);
  padding: 5px 10px;
  border-radius: 4px;
  border: 1px solid var(--color-border);
}

.pricing-card.featured .pricing-card-label {
  background: var(--color-primary);
  color: #000;
  border-color: var(--color-primary);
  top: -1px;
  right: 50%;
  transform: translateX(50%);
  border-radius: 0 0 6px 6px;
  padding: 6px 16px;
  font-weight: 700;
}

.pricing-qty {
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  margin-top: 20px;
  margin-bottom: 4px;
  text-align: center;
}

.pricing-card.featured .pricing-qty {
  color: var(--color-primary);
  font-size: 44px;
  margin-top: 28px;
}

.pricing-supply {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
  text-align: center;
  margin-bottom: 20px;
}

.pricing-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  margin-bottom: 16px;
  position: relative;
}

.pricing-img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
}

.pricing-card.featured .pricing-img-wrap {
  height: 220px;
}

.pricing-price {
  text-align: center;
  margin-bottom: 18px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  color: #fff;
}

.price-dollar {
  font-family: var(--font-display);
  font-size: 22px;
}

.price-big {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.pricing-card.featured .price-big { color: var(--color-primary); }

.price-per {
  font-family: var(--font-mono);
  font-size: 10px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-muted);
  text-align: left;
}

.pricing-checks {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
}

.pricing-checks .check-icon {
  width: 16px;
  height: 16px;
  fill: var(--color-primary);
  flex-shrink: 0;
}

.pricing-checks .check-disabled {
  color: var(--color-muted);
  text-decoration: line-through;
  opacity: 0.5;
}

.pricing-checks .x-icon {
  color: var(--color-muted);
  font-size: 14px;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}

.pricing-savings {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 14px;
}

.pricing-cards-img {
  max-width: 180px;
  margin: 12px auto 0;
  opacity: 0.45;
  filter: grayscale(0.3);
}

.pricing-bottom {
  margin-top: auto;
  padding-top: 16px;
  text-align: center;
  border-top: 1px dashed var(--color-border);
}

.pricing-bottom-retail {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-muted);
  margin-top: 12px;
}

.strikethrough { text-decoration: line-through; }

.pricing-bottom-total {
  font-family: var(--font-display);
  font-size: 18px;
  text-transform: uppercase;
  color: #fff;
  margin-top: 4px;
}

.pricing-bottom-shipping {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-top: 2px;
}

.pricing-bottom-shipping.free { color: var(--color-primary); font-weight: 700; }

.pricing-card .btn-primary {
  margin-top: 4px;
  font-size: 16px;
  padding: 16px 24px;
}

/* Cards icons (Visa, Master, etc) - SVG inline placeholder */
.payment-icons {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 10px 0 8px;
  opacity: 0.55;
}

.payment-icons span {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--color-border);
  padding: 4px 8px;
  border-radius: 4px;
  color: var(--color-muted);
}

/* ==========================================================================
   INGREDIENTS GRID (Mars Men style)
   ========================================================================== */
.ingredients-section {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
}

.ingredients-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(255, 107, 26, 0.05), transparent 60%);
  z-index: 0;
}

.ingredients-section > * { position: relative; z-index: 1; }

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: var(--content-max);
  margin: 48px auto 0;
}

.ingredient-card {
  position: relative;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px 20px 22px;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}

.ingredient-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at top right, rgba(255, 107, 26, 0.06), transparent 50%);
  pointer-events: none;
}

.ingredient-card:hover {
  border-color: rgba(255, 107, 26, 0.4);
  transform: translateY(-3px);
}

.ingredient-dosage {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: rgba(255, 107, 26, 0.12);
  border: 1px solid rgba(255, 107, 26, 0.3);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.ingredient-name {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.05;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}

.ingredient-desc {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-muted);
}

/* ==========================================================================
   QUALITY LOGOS
   ========================================================================== */
.quality-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px 48px;
  margin: 64px auto 0;
  max-width: 1000px;
  padding: 32px 24px;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.quality-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.quality-logo-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(255, 107, 26, 0.5);
  border-radius: 50%;
  color: var(--color-primary);
}

.quality-logo span {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text);
}

/* ==========================================================================
   EPIDEMIC / PROBLEM SECTION
   ========================================================================== */
.epidemic-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%),
    radial-gradient(ellipse at center, rgba(120, 30, 0, 0.2), transparent 70%);
}

.epidemic-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, transparent 49.5%, rgba(255, 107, 26, 0.06) 49.5%, rgba(255, 107, 26, 0.06) 50.5%, transparent 50.5%);
  background-size: 80px 80px;
  opacity: 0.4;
  pointer-events: none;
}

.epidemic-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 24px;
}

.epidemic-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.95;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.01em;
  margin-bottom: 28px;
}

.epidemic-title strong {
  color: var(--color-primary);
  font-weight: 400;
  display: block;
}

.epidemic-text p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-text);
  margin-bottom: 18px;
}

.epidemic-text strong {
  color: #fff;
  font-weight: 700;
}

.epidemic-text .highlight {
  color: var(--color-primary);
  font-weight: 700;
}

.epidemic-stat {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 24px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-top: 24px;
}

.epidemic-stat-number {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 1;
  color: var(--color-primary);
}

.epidemic-stat-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  line-height: 1.4;
}

.epidemic-image {
  position: relative;
}

.epidemic-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.7));
}

/* ==========================================================================
   SOLUTION SECTION
   ========================================================================== */
.solution-section {
  padding: 100px 0;
  background:
    linear-gradient(180deg, transparent, rgba(255, 107, 26, 0.04) 50%, transparent);
}

.solution-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
  padding: 0 24px;
}

.solution-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 14px;
}

.solution-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.95;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}

.solution-title .brand {
  font-family: var(--font-brush);
  color: var(--color-primary);
  font-size: 1.1em;
  display: block;
  text-shadow: 0 0 30px rgba(255, 107, 26, 0.4);
}

.solution-intro {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 24px;
}

.benefit-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px 18px 24px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.benefit-card:hover {
  border-color: rgba(255, 107, 26, 0.4);
  transform: translateY(-4px);
  background: rgba(255, 107, 26, 0.03);
}

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

.benefit-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 107, 26, 0.1);
  border: 1.5px solid rgba(255, 107, 26, 0.3);
  color: var(--color-primary);
}

.benefit-title {
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.1;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
}

.benefit-desc {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.4;
  color: var(--color-muted);
}

/* ==========================================================================
   HOW IT WORKS TIMELINE
   ========================================================================== */
.how-section {
  padding: 100px 0;
  position: relative;
}

.how-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
  padding: 0 24px;
}

.how-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.95;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}

.how-intro {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--color-text);
  line-height: 1.55;
}

.timeline-desktop {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

/* connecting line */
.timeline-desktop::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary) 0%, rgba(255, 107, 26, 0.3) 100%);
  z-index: 0;
}

.timeline-step {
  position: relative;
  z-index: 1;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  text-align: center;
}

.timeline-step-header {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
}

.timeline-step-day {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #000;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
  margin: 0 auto 14px;
  flex-direction: column;
  box-shadow: 0 0 30px rgba(255, 107, 26, 0.4);
}

.timeline-step-day .small {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  margin-bottom: -2px;
  font-weight: 700;
}

.timeline-step-label {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--color-primary);
  letter-spacing: 0.02em;
}

.timeline-step ul {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.timeline-step li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text);
}

.timeline-step li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  margin-top: 8px;
}

/* ==========================================================================
   GUARANTEE BANNER
   ========================================================================== */
.guarantee-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.guarantee-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(255, 107, 26, 0.12), transparent 70%);
  z-index: 0;
}

.guarantee-inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: center;
  background: var(--color-bg-card);
  border: 1.5px solid rgba(255, 107, 26, 0.3);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: 0 30px 60px -20px rgba(255, 107, 26, 0.2);
}

.guarantee-badge {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--color-primary), var(--color-primary-dark));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #000;
  font-family: var(--font-display);
  text-align: center;
  flex-shrink: 0;
  box-shadow: 0 0 40px rgba(255, 107, 26, 0.4);
  border: 4px solid #000;
}

.guarantee-badge .big {
  font-size: 48px;
  line-height: 1;
}

.guarantee-badge .small {
  font-size: 14px;
  line-height: 1;
  margin-top: 2px;
  letter-spacing: 0.05em;
}

.guarantee-badge .tiny {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.guarantee-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}

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

.guarantee-desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--color-text);
  margin-bottom: 20px;
}

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

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

.faq-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 12px;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.2;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

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

.faq-toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--color-primary);
  border-radius: 50%;
  color: var(--color-primary);
  font-family: var(--font-mono);
  font-size: 16px;
  transition: transform 0.3s;
}

.faq-item.open .faq-toggle { transform: rotate(45deg); }

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

.faq-item.open .faq-answer { max-height: 800px; }

.faq-answer-inner {
  padding-bottom: 24px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-text);
}

.faq-answer-inner p + p { margin-top: 12px; }

.faq-answer-inner strong { color: var(--color-primary); }

/* ==========================================================================
   SUPPLEMENT FACTS / LABEL
   ========================================================================== */
.label-section {
  padding: 60px 0;
  text-align: center;
}

.label-section img {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #000;
  padding: 64px 0 28px;
  border-top: 1px solid var(--color-border);
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.footer-brand {
  font-family: var(--font-brush);
  font-size: 56px;
  color: var(--color-primary);
  text-shadow: 0 0 30px rgba(255, 107, 26, 0.5);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 32px;
}

.footer-tagline sup {
  font-family: var(--font-mono);
  font-size: 10px;
  vertical-align: super;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 36px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links a {
  color: var(--color-muted);
  transition: color 0.2s;
}

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

.footer-disclaimer {
  font-family: var(--font-body);
  font-size: 11px;
  line-height: 1.55;
  color: var(--color-muted);
  max-width: 860px;
  margin: 0 auto 18px;
}

.footer-disclaimer strong { color: var(--color-text); }

.footer-copy {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--color-muted);
  margin-top: 24px;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .pricing-card.featured {
    transform: none;
    order: -1;
  }

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

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

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-content { margin: 0 auto; }

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

  .epidemic-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .timeline-desktop {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .timeline-desktop::before { display: none; }

  .guarantee-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
    padding: 36px 28px;
  }

  .guarantee-badge { margin: 0 auto; }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .header-cta { display: none; }
  .menu-toggle { display: flex; }

  .hero { min-height: auto; padding: 56px 0 40px; }

  .hero-product-img { max-width: 320px; }
  .hero-product::before { width: 320px; height: 320px; }

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

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

  .featured-in-inner {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .featured-in-logos { gap: 32px; }

  .epidemic-stat-number { font-size: 56px; }

  .timeline-step { padding: 28px 20px; }

  .footer-links { gap: 18px; }
}
