/* ── RESET & BASE ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: #F2F0EA; color: #1a1a1a; font-size: 15px; line-height: 1.6; overflow-x: hidden; }
img { display: block; max-width: 100%; animation: fadeIn 0.8s ease-out forwards; opacity: 0; }
@keyframes fadeIn { to { opacity: 1; } }
h1, h2, h3, h4, h5, h6, p, button, a, .btn { animation: fadeInText 0.8s ease-out 1.1s forwards; opacity: 0; }
.hero__title, .hero__actions { opacity: 1; animation: none; }
@keyframes fadeInText { to { opacity: 1; } }
@keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-20px); } }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── VARIABLES ────────────────────────────────────────── */
:root {
  --cream: #F2F0EA;
  --dark: #1a1a1a;
  --green-dark: #1C2B22;
  --muted: #666666;
  --border: #E0DDD6;
  --white: #ffffff;
  --aod: #D4845A;
  --bpc: #4A7C6F;
  --mots: #5B8DB8;
  --reta: #C4707A;
  --tb: #7B6BA8;
  --radius: 16px;
}

/* ── CONTAINER ────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.section { padding: 140px 0; }

/* ── BUTTONS ──────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: 20px; font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 500; letter-spacing: 0.02em; transition: all 0.2s ease; cursor: pointer; }
.btn-dark { background: #1a1a1a; color: #fff; border: 1.5px solid #1a1a1a; }
.btn-dark:hover { background: #333; }
.btn-outline { background: transparent; color: #1a1a1a; border: 1.5px solid #1a1a1a; }
.btn-outline:hover { background: #1a1a1a; color: #fff; }
.btn-outline-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.5); }
.btn-outline-light:hover { background: rgba(255,255,255,0.1); }
.btn-light { background: #ffffff; color: #1a1a1a; border: 1.5px solid #ffffff; }
.btn-light:hover { background: #f0f0f0; border-color: #f0f0f0; }

/* ── SECTION LABELS ───────────────────────────────────── */
.section-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.section-title { font-family: 'Inter', sans-serif; font-size: clamp(52px, 5.5vw, 80px); font-weight: 800; line-height: 1.05; color: var(--dark); letter-spacing: -0.03em; }
.section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; }
.section-link { font-size: 13px; color: var(--muted); text-decoration: underline; text-underline-offset: 3px; white-space: nowrap; margin-bottom: 8px; }

/* ── NAV ──────────────────────────────────────────────── */
.nav { position: sticky; top: 12px; left: 24px; right: 24px; z-index: 100; background: rgba(50, 60, 70, 0.85); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 16px; margin: 0 24px; box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2); transition: all 0.3s ease; width: calc(100% - 96px); }
.nav.scrolled { position: fixed; top: 12px; left: 24px; right: 24px; background: rgba(50, 60, 70, 0.75); backdrop-filter: blur(10px); border-radius: 16px; border: 1px solid rgba(255, 255, 255, 0.1); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2); width: calc(100% - 48px); }
.nav.scrolled .nav__links a { color: #ffffff; }
.nav.scrolled .nav__icon { color: #ffffff; }
.nav.scrolled .btn-dark { background: #ffffff; color: #1a1a1a; border-color: #ffffff; }
.nav__inner { max-width: 1200px; margin: 0 auto; padding: 10px 48px; height: auto; min-height: 60px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 40px; }
.nav__logo img { height: 84px; width: auto; }
.nav__links { display: flex; gap: 32px; justify-self: center; }
.nav__links a { font-size: 13px; color: #ffffff; transition: opacity 0.2s; }
.nav__links a:hover { opacity: 0.6; }
.nav__right { display: flex; align-items: center; gap: 16px; margin-left: auto; }
.nav__icon { color: #ffffff; width: 20px; height: 20px; display: flex; align-items: center; }
.nav__icon svg { width: 18px; height: 18px; }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; }
.nav__hamburger span { display: block; width: 22px; height: 1.5px; background: var(--dark); }
.nav__mobile { display: none; flex-direction: column; background: #ffffff; border-bottom: 1px solid var(--border); padding: 24px 48px; gap: 20px; }
.nav__mobile a { font-size: 15px; color: var(--dark); }
.nav__mobile.open { display: flex; }

/* ── HERO ─────────────────────────────────────────────── */
.hero { min-height: 100vh; background: #ffffff; display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; margin-top: -80px; padding-top: 80px; }
.hero::before { display: none; }
.hero__inner { max-width: 100%; margin: 0 auto; padding: 0; width: 100%; z-index: 10; position: absolute; top: 0; left: 0; right: 0; bottom: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.hero__image-wrap { position: absolute; top: 0; left: 0; right: 0; bottom: 0; display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; z-index: 1; }
.hero__vial { display: block; width: 100%; height: 100%; object-fit: cover; }
.hero__content { max-width: 700px; text-align: center; position: relative; z-index: 2; }
.hero__eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: #ffffff; margin-bottom: 20px; text-shadow: 0 2px 8px rgba(0,0,0,0.3); }
.hero__title { font-family: 'Inter', sans-serif; font-size: clamp(48px, 8vw, 100px); font-weight: 900; line-height: 1.0; color: #ffffff; margin-bottom: 48px; letter-spacing: -0.03em; animation: float 3s ease-in-out infinite !important; opacity: 1 !important; }
.hero__subtitle { font-size: 15px; color: rgba(255,255,255,0.95); line-height: 1.7; margin-bottom: 36px; max-width: 100%; text-shadow: 0 1px 4px rgba(0,0,0,0.2); }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ── TRUST STRIP ──────────────────────────────────────── */
.trust-strip { background: linear-gradient(180deg, #1E3A54 0%, #152C42 40%, #0D1F30 75%, #080F1A 100%); padding: 32px 0; overflow: hidden; }
.trust-strip__content { display: flex; gap: 48px; animation: scrollText 30s linear infinite; white-space: nowrap; }
.trust-strip__content span { color: #ffffff; font-size: 14px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; }
@keyframes scrollText { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }

/* ── CATEGORIES ───────────────────────────────────────── */
.categories { padding: 120px 0; background: #ffffff; }
.categories__grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 12px; }
.categories__grid .cat-card:nth-child(3),
.categories__grid .cat-card:nth-child(4),
.categories__grid .cat-card:nth-child(5) { grid-column: span 2; }
.categories__grid { grid-template-columns: repeat(6, 1fr); }
.cat-card:nth-child(1) { grid-column: span 3; }
.cat-card:nth-child(2) { grid-column: span 3; }
.cat-card:nth-child(3) { grid-column: span 2; }
.cat-card:nth-child(4) { grid-column: span 2; }
.cat-card:nth-child(5) { grid-column: span 2; }

.cat-card { border-radius: var(--radius); padding: 32px; min-height: 220px; display: flex; align-items: flex-end; justify-content: space-between; position: relative; overflow: hidden; cursor: pointer; transition: transform 0.2s; }
.cat-card:hover { transform: translateY(-2px); }
.cat-card__vial { position: absolute; right: 24px; top: 50%; transform: translateY(-50%); height: 160px; width: auto; object-fit: contain; opacity: 0.9; }
.cat-card > div { position: relative; z-index: 1; max-width: 55%; }
.cat-card__number { font-size: 11px; letter-spacing: 0.15em; color: rgba(255,255,255,0.6); margin-bottom: 8px; }
.cat-card__title { font-family: 'Inter', sans-serif; font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 8px; line-height: 1.2; letter-spacing: -0.01em; }
.cat-card__desc { font-size: 12px; color: rgba(255,255,255,0.75); line-height: 1.5; margin-bottom: 16px; }
.cat-card__link { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.9); }

.cat-card--weight { background: #2D7D7D; }
.cat-card--skin { background: #C4622D; }
.cat-card--mind { background: #1C2B4A; }
.cat-card--recovery { background: #3D5A3E; }
.cat-card--muscle { background: #8B4513; }

/* ── PRODUCTS ─────────────────────────────────────────── */
.products { padding: 140px 0; background: #ffffff; position: relative; }
.products::after { content: '→'; position: absolute; right: 48px; top: 50%; transform: translateY(-50%); font-size: 32px; color: rgba(26,26,26,0.3); font-weight: 800; animation: bounce 2s infinite; pointer-events: none; }
@keyframes bounce { 0%, 100% { transform: translateY(-50%) translateX(0); } 50% { transform: translateY(-50%) translateX(8px); } }
.products__layout { display: grid; grid-template-columns: 1fr; gap: 24px; margin-bottom: 60px; align-items: start; }
.products__intro-body { font-size: 14px; color: var(--muted); line-height: 1.7; }
.products__row { display: flex; gap: 20px; overflow-x: auto; overflow-y: hidden; -webkit-overflow-scrolling: touch; scroll-behavior: smooth; padding-bottom: 12px; width: 100%; }
.products__row--grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; overflow: visible; padding-bottom: 0; }

.product-card { border-radius: 20px; overflow: hidden; border: 1px solid rgba(0,0,0,0.07); transition: transform 0.2s, box-shadow 0.2s; display: flex; flex-direction: column; flex: 0 0 calc(33.333% - 15px); }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.1); }
.product-card__top { padding: 20px 20px 0; }
.product-card__name { font-family: 'Inter', sans-serif; font-size: 32px; font-weight: 800; color: var(--dark); letter-spacing: -0.02em; line-height: 1.05; margin-bottom: 4px; }
.product-card__type { font-size: 10px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); }
.product-card__img-wrap { flex: 1; padding: 0; display: flex; align-items: center; justify-content: center; min-height: 300px; }
.product-card__img { height: 100%; width: 100%; object-fit: cover; }
.product-card__footer { display: grid; grid-template-columns: 1fr 1fr; }
.product-card__price-block { background: var(--green-dark); padding: 16px 20px; display: flex; flex-direction: column; justify-content: center; gap: 2px; }
.product-card__from { font-size: 9px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.product-card__price { font-size: 17px; font-weight: 700; color: #fff; }
.product-card__btn { background: var(--white); padding: 16px 12px; display: flex; align-items: center; justify-content: center; gap: 7px; font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--dark); border: none; cursor: pointer; transition: background 0.2s; }
.product-card__btn:hover { background: #f0ede6; }
.product-card__btn svg { width: 15px; height: 15px; flex-shrink: 0; }

/* ── SHOP FILTERS ─────────────────────────────────────── */
.shop__filters { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; padding: 0 20px; }
.shop__filter-btn { padding: 10px 16px; border: 1px solid var(--border); border-radius: 100px; font-size: 12px; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); background: transparent; transition: all 0.2s; cursor: pointer; }
.shop__filter-btn:hover { border-color: var(--dark); color: var(--dark); }
.shop__filter-btn.active { background: var(--dark); color: #fff; border-color: var(--dark); }

/* ── PARTNER SECTION ──────────────────────────────────── */
.partner-section { padding: 100px 0; background: #ffffff; }
.partner-content { text-align: left; max-width: 100%; display: flex; flex-direction: column; gap: 32px; }
.partner-title { font-family: 'Inter', sans-serif; font-size: clamp(48px, 5.5vw, 72px); font-weight: 800; line-height: 1.05; color: var(--dark); letter-spacing: -0.03em; }
.partner-subtitle { font-size: 16px; color: var(--muted); line-height: 1.7; max-width: 700px; }

/* ── CONTACT MODAL ────────────────────────────────────── */
.contact-modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); z-index: 500; opacity: 0; pointer-events: none; visibility: hidden; transition: opacity 0.3s, visibility 0.3s; }
.contact-modal-overlay.open { opacity: 1; pointer-events: all; visibility: visible; }
.contact-modal { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.95); background: #fff; border-radius: 24px; z-index: 510; width: 90%; max-width: 540px; padding: 56px 48px; box-shadow: 0 25px 80px rgba(0,0,0,0.25); opacity: 0; pointer-events: none; visibility: hidden; transition: all 0.3s ease; }
.contact-modal.open { opacity: 1; pointer-events: all; visibility: visible; transform: translate(-50%, -50%) scale(1); }
.contact-modal__close { position: absolute; top: 24px; right: 24px; width: 40px; height: 40px; font-size: 28px; color: var(--muted); background: transparent; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: color 0.2s; }
.contact-modal__close:hover { color: var(--dark); }
.contact-modal__title { font-family: 'Inter', sans-serif; font-size: 36px; font-weight: 800; margin-bottom: 16px; letter-spacing: -0.02em; color: var(--dark); }
.contact-modal__subtitle { font-size: 15px; color: var(--muted); margin-bottom: 40px; line-height: 1.7; }
.contact-form__group { margin-bottom: 24px; }
.contact-form__group label { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.contact-form__group input, .contact-form__group textarea { width: 100%; padding: 14px 18px; border: 1.5px solid var(--border); border-radius: 12px; font-size: 15px; font-family: inherit; background: #ffffff; color: var(--dark); transition: all 0.2s ease; }
.contact-form__group input::placeholder, .contact-form__group textarea::placeholder { color: rgba(102, 102, 102, 0.5); }
.contact-form__group input:focus, .contact-form__group textarea:focus { outline: none; border-color: var(--dark); background: #fafaf8; box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.05); }
.contact-form__btn { width: 100%; padding: 16px 24px; margin-top: 12px; font-weight: 600; letter-spacing: 0.05em; }

/* ── FOOTER PARTNER SECTION ───────────────────────────── */
.footer__partner { padding-top: 80px; padding-bottom: 80px; border-top: 1px solid rgba(255,255,255,0.15); margin-top: 80px; }
.footer__partner-title { font-family: 'Inter', sans-serif; font-size: 32px; font-weight: 800; margin-bottom: 16px; letter-spacing: -0.02em; color: #fff; }
.footer__partner-subtitle { font-size: 15px; color: rgba(255,255,255,0.8); margin-bottom: 40px; line-height: 1.7; max-width: 600px; }
.footer__partner-form { display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 18px; align-items: flex-end; }
.footer__partner-group { display: flex; flex-direction: column; }
.footer__partner-group input { width: 100%; padding: 14px 18px; border: 1.5px solid rgba(255,255,255,0.25); border-radius: 12px; font-size: 15px; font-family: inherit; background: rgba(255,255,255,0.08); color: #fff; transition: all 0.2s ease; backdrop-filter: blur(10px); }
.footer__partner-group input::placeholder { color: rgba(255,255,255,0.5); }
.footer__partner-group input:focus { outline: none; background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.5); box-shadow: 0 0 0 3px rgba(255,255,255,0.08); }
.footer__partner-form .btn { white-space: nowrap; font-weight: 600; letter-spacing: 0.05em; }

@media (max-width: 900px) {
  .footer__partner-form { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .footer__partner-form { grid-template-columns: 1fr; }
  .footer__partner-form .btn { width: 100%; }
}

/* ── PURITY ───────────────────────────────────────────── */
.purity-hero { width: 100%; overflow: hidden; height: 100%; min-height: 400px; }

.purity-hero__image { width: 100%; height: 100%; object-fit: cover; display: block; }

.purity { padding: 120px 48px; background: #ffffff; }

.purity__content-wrap { max-width: 1200px; width: 100%; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.purity__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.purity__heading {
  font-family: 'Inter', sans-serif;
  font-size: clamp(52px, 5.5vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin-bottom: 28px;
}

.purity__rule {
  width: 220px;
  border: none;
  border-top: 1px dashed #bbb;
  margin-bottom: 28px;
}

.purity__body { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 36px; max-width: 460px; }

.purity__stats { display: flex; align-items: center; margin-bottom: 40px; }

.purity__stat { padding: 0 28px; display: flex; flex-direction: column; gap: 5px; }
.purity__stat:first-child { padding-left: 0; }

.purity__stat-val { font-family: 'Inter', sans-serif; font-size: 36px; font-weight: 800; color: var(--dark); line-height: 1; display: block; }
.purity__stat-label { font-size: 10px; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; color: var(--muted); display: block; }
.purity__stat-sep { width: 1px; height: 44px; background: var(--border); flex-shrink: 0; }

.purity__actions { display: flex; gap: 12px; }

/* ── QUALITY ──────────────────────────────────────────── */
.quality { background: #ffffff; padding: 140px 0; }
.quality__heading { font-family: 'Inter', sans-serif; font-size: clamp(52px, 5.5vw, 80px); font-weight: 800; line-height: 1.05; max-width: 700px; margin-bottom: 48px; letter-spacing: -0.03em; }
.quality__layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: flex-start; }
.quality__tabs-nav { display: flex; gap: 0; border-bottom: 1px solid var(--border); margin-bottom: 40px; }
.quality__tab { padding: 12px 20px; font-size: 12px; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); border-bottom: 2px solid transparent; margin-bottom: -1px; transition: all 0.2s; background: none; }
.quality__tab.active { color: var(--dark); border-bottom-color: var(--dark); }
.quality__panel { display: none; }
.quality__panel.active { display: block; }
.quality__panel-title { font-family: 'Inter', sans-serif; font-size: 36px; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.02em; }
.quality__panel-sub { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.quality__panel-body { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 24px; }
.quality__panel-link { font-size: 13px; color: var(--dark); text-decoration: underline; text-underline-offset: 3px; display: inline-block; margin-bottom: 20px; }
.quality__badge { font-size: 11px; background: #f0ede6; padding: 8px 16px; border-radius: 100px; color: var(--muted); }
.quality__image-wrap { position: relative; display: flex; align-items: flex-start; justify-content: center; background: transparent; border-radius: var(--radius); padding: 0; min-height: auto; }
.quality__vial { height: 100%; width: auto; object-fit: contain; }
.quality__purity-badge { position: absolute; bottom: 24px; right: 24px; background: var(--dark); color: #fff; font-size: 11px; font-weight: 500; padding: 10px 16px; border-radius: 8px; line-height: 1.4; text-align: center; }

/* ── FAQ ──────────────────────────────────────────────── */
.faq { background: #ffffff; padding: 140px 0; }
.faq__layout { display: grid; grid-template-columns: 1fr; gap: 60px; }
.faq__left { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.faq__heading { grid-column: 1 / -1; font-family: 'Inter', sans-serif; font-size: clamp(52px, 5.5vw, 80px); font-weight: 800; line-height: 1.05; margin-bottom: 0; letter-spacing: -0.03em; }
.faq__item { border: 1px solid rgba(0, 0, 0, 0.1); border-radius: 12px; padding: 28px; background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08); }
.faq__btn { width: 100%; display: flex; align-items: flex-start; justify-content: space-between; padding: 0; gap: 20px; text-align: left; background: transparent; }
.faq__q { font-size: 15px; font-weight: 600; color: var(--dark); line-height: 1.5; flex: 1; }
.faq__icon { flex-shrink: 0; width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.faq__icon svg { width: 12px; height: 12px; transition: transform 0.3s; }
.faq__item.open .faq__icon svg { transform: rotate(45deg); }
.faq__answer { display: none; padding: 16px 0 0; margin-top: 16px; border-top: 1px solid var(--border); }
.faq__item.open .faq__answer { display: block; }
.faq__answer p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.faq__cats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.faq__cat-card { border-radius: 12px; padding: 20px; min-height: 120px; display: flex; flex-direction: column; justify-content: flex-end; position: relative; overflow: hidden; cursor: pointer; }
.faq__cat-vial { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); height: 80px; width: auto; object-fit: contain; opacity: 0.85; }
.faq__cat-sub { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 4px; }
.faq__cat-title { font-size: 14px; font-weight: 600; color: #fff; line-height: 1.3; }
.faq__cat-card--weight { background: #2D7D7D; }
.faq__cat-card--skin { background: #C4622D; }
.faq__cat-card--mind { background: #1C2B4A; }
.faq__cat-card--recovery { background: #3D5A3E; }
.faq__cat-card--muscle { background: #8B4513; grid-column: span 2; }

/* ── CTA ──────────────────────────────────────────────── */
.cta-wrap { padding: 0 24px 80px; }
.cta { background: url('../images/landscape-resize.png') center/cover no-repeat; border-radius: 24px; overflow: hidden; position: relative; }
.cta::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 100%); z-index: 1; }
.cta__inner { position: relative; z-index: 2; }
.cta__inner { padding: 100px 80px; text-align: center; }
.cta__title { font-family: 'Inter', sans-serif; font-size: clamp(52px, 5.5vw, 80px); font-weight: 800; color: #ffffff; line-height: 1.05; margin-bottom: 20px; letter-spacing: -0.03em; }
.cta__sub { font-size: 15px; color: #ffffff; max-width: 480px; margin: 0 auto 36px; line-height: 1.6; }
.cta__actions { display: flex; gap: 12px; justify-content: center; }

/* ── FOOTER ───────────────────────────────────────────── */
.footer { background: linear-gradient(180deg, #1E3A54 0%, #152C42 40%, #0D1F30 75%, #080F1A 100%); color: #fff; padding-top: 80px; overflow: hidden; }
.footer__inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.footer__top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer__brand img { height: 80px; width: auto; filter: brightness(0) invert(1); margin-bottom: 20px; object-fit: contain; }
.footer__tagline { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); line-height: 1.8; }
.footer__col-head { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.footer__links li { margin-bottom: 12px; }
.footer__links a { font-size: 13px; color: rgba(255,255,255,0.75); transition: color 0.2s; }
.footer__links a:hover { color: #fff; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; padding: 24px 0; }
.footer__copy { font-size: 12px; color: rgba(255,255,255,0.4); }
.footer__legal-links { display: flex; gap: 24px; }
.footer__legal-links a { font-size: 12px; color: rgba(255,255,255,0.4); }
.footer__watermark { text-align: center; overflow: hidden; line-height: 0.85; margin-top: 20px; }
.footer__watermark div { font-size: clamp(80px, 15vw, 200px); font-weight: 900; color: rgba(255,255,255,0.06); font-family: 'Inter', sans-serif; letter-spacing: 3px; user-select: none; }

/* ── CART DRAWER ──────────────────────────────────────── */
.overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 200; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer { position: fixed; right: 0; top: 0; bottom: 0; width: 400px; background: #fff; z-index: 300; transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1); display: flex; flex-direction: column; }
.cart-drawer.open { transform: translateX(0); }
.cart-drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 24px 32px; border-bottom: 1px solid var(--border); }
.cart-drawer__title { font-family: 'Inter', sans-serif; font-size: 22px; font-weight: 800; letter-spacing: -0.01em; }
.cart-drawer__close { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; }
.cart-drawer__close svg { width: 18px; height: 18px; }
.cart-drawer__body { flex: 1; padding: 32px; display: flex; align-items: center; justify-content: center; }
.cart-empty { text-align: center; }
.cart-empty__icon { width: 48px; height: 48px; margin: 0 auto 16px; opacity: 0.3; }
.cart-empty p { font-size: 14px; color: var(--muted); line-height: 1.6; max-width: 200px; margin: 0 auto; }

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .nav__inner { padding: 0 24px; gap: 16px; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .hero__inner { flex-direction: column; padding: 60px 24px; text-align: center; }
  .hero__title { font-size: 52px; }
  .hero__image-wrap { flex: 0 0 auto; }
  .hero__vial { width: 220px; }
  .hero__actions { justify-content: center; gap: 8px; flex-wrap: wrap; }
  .btn { padding: 10px 20px; font-size: 12px; }
  .categories__grid { grid-template-columns: 1fr 1fr; }
  .cat-card:nth-child(1),
  .cat-card:nth-child(2),
  .cat-card:nth-child(3),
  .cat-card:nth-child(4),
  .cat-card:nth-child(5) { grid-column: span 1; }
  .products__layout { grid-template-columns: 1fr; gap: 20px; }
  .products__row { overflow-x: auto; scroll-behavior: smooth; }
  .products__row--grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .product-card { padding: 16px; }
  .purity { padding: 60px 24px; }
  .purity__grid { grid-template-columns: 1fr; }
  .purity__image-side { min-height: 320px; }
  .purity__content { padding: 32px 20px; }
  .purity__heading { font-size: 48px; line-height: 1.2; }
  .quality__layout { grid-template-columns: 1fr; }
  .quality__left { margin-bottom: 32px; }
  .faq__layout { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__inner { padding: 0 24px; }
  .cta { margin: 0 12px; }
  .cta__title { font-size: 36px; }
  .cta__inner { padding: 60px 32px; }
  .section-title { font-size: 36px; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .container { padding: 0 16px; }
  .nav__inner { padding: 0 16px; height: 56px; grid-template-columns: 1fr auto; }
  .nav__right { gap: 12px; }
  .btn { padding: 10px 16px; font-size: 11px; }
  .nav__icon { width: 18px; height: 18px; }
  .nav__icon svg { width: 16px; height: 16px; }
  .footer__legal-links { flex-wrap: wrap; gap: 16px; }
}

@media (max-width: 600px) {
  .section { padding: 40px 0; }
  .container { padding: 0 16px; }
  .hero { min-height: 80vh; }
  .hero__inner { padding: 40px 16px; }
  .hero__title { font-size: 32px; margin-bottom: 16px; }
  .hero__subtitle { font-size: 14px; margin-bottom: 24px; }
  .hero__actions { flex-direction: column; }
  .btn { width: 100%; padding: 14px 16px; font-size: 12px; }
  .nav__inner { padding: 0 12px; height: 52px; }
  .nav__logo img { height: 24px; width: auto; max-width: 100%; }
  .nav__right { gap: 8px; }
  .nav__hamburger { gap: 4px; }
  .nav__hamburger span { width: 20px; }
  .nav__mobile { padding: 16px 24px; gap: 12px; }
  .nav__mobile a { font-size: 13px; padding: 10px 0; }
  .categories__grid { grid-template-columns: 1fr; }
  .cat-card { min-height: 240px; padding: 20px; }
  .categories .cat-card { min-height: 280px; padding: 20px; }
  .categories .cat-card:nth-child(1),
  .categories .cat-card:nth-child(2) { min-height: 280px; }
  .cat-card__title { font-size: 16px; }
  .cat-card__vial { height: 120px; opacity: 0.7; }
  .cat-card > div { max-width: 100%; }
  .product-card { padding: 12px; }
  .product-card__name { font-size: 14px; }
  .product-card__price { font-size: 16px; }
  .product-card__btn { padding: 10px; font-size: 11px; }
  .products__row--grid { grid-template-columns: 1fr; gap: 12px; }
  .section-title { font-size: 28px; }
  .section-eyebrow { font-size: 10px; }
  .purity { padding: 40px 16px; }
  .purity__content { padding: 20px 0; }
  .purity__heading { font-size: 32px; }
  .purity__body { font-size: 13px; }
  .purity__stats { flex-direction: column; gap: 12px; }
  .quality__heading { font-size: 28px; }
  .quality__tabs-nav { gap: 8px; }
  .quality__tab { padding: 8px 12px; font-size: 12px; }
  .faq__heading { font-size: 28px; }
  .faq__cats { grid-template-columns: 1fr; gap: 12px; }
  .faq__cat-card { min-height: 100px; padding: 16px; }
  .faq__cat-card--muscle { grid-column: span 1; }
  .footer { padding-top: 40px; }
  .footer__inner { padding: 0 16px; }
  .footer__top { grid-template-columns: 1fr; gap: 24px; padding-bottom: 40px; }
  .footer__brand img { height: 20px; }
  .footer__col-head { margin-bottom: 12px; }
  .footer__links li { margin-bottom: 8px; }
  .footer__links a { font-size: 12px; }
  .footer__bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
  .footer__copy { font-size: 11px; }
  .footer__legal-links { flex-direction: column; gap: 8px; }
  .footer__legal-links a { font-size: 11px; }
  .footer__watermark { margin-top: 32px; }
  .cta-wrap { padding: 0 12px 40px; }
  .cta { border-radius: 12px; }
  .cta__inner { padding: 40px 20px; }
  .cta__title { font-size: 24px; margin-bottom: 16px; }
  .cta__sub { font-size: 13px; margin-bottom: 24px; }
  .cta__actions { flex-direction: column; gap: 8px; }
  .contact-modal { width: 95%; max-width: 400px; padding: 32px 24px; }
  .contact-modal__title { font-size: 24px; }
  .contact-form__group { margin-bottom: 16px; }
  .contact-form__group input,
  .contact-form__group textarea { padding: 12px 14px; font-size: 14px; height: 42px; }
  .contact-form__btn { padding: 14px 20px; }
  .cart-drawer { width: 100%; }
  .cart-drawer__head { padding: 16px 20px; }
  .cart-drawer__title { font-size: 18px; }
  .cart-drawer__body { padding: 20px; }
  .cart-empty__icon { width: 40px; }
  .cart-empty p { font-size: 13px; max-width: 180px; }
}

/* ── CATEGORIES SECTION OVERRIDES ────────────────────── */
.categories .container {
  max-width: 95%;
  width: 95%;
  padding: 0;
}

/* Card sizing */
.categories .cat-card { min-height: 340px; padding: 36px; }
.categories .cat-card:nth-child(1),
.categories .cat-card:nth-child(2) { min-height: 420px; }

/* Vial sits top-right, clear of text */
.categories .cat-card__vial {
  height: 200px;
  top: 32px;
  transform: none;
}

/* Text content limited to left 50% so vial doesn't clash */
.categories .cat-card > div { max-width: 50%; }
