/* ============================================
   ELUVYA – Design System
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Lato:wght@300;400;700&display=swap');

/* ---------- Custom Properties ---------- */
:root {
  --bg-primary: #0d0c0a;
  --bg-secondary: #151311;
  --bg-tertiary: #1a1816;
  --bg-card: rgba(26, 24, 22, .55);
  --gold: #c9a96e;
  --gold-light: #d4b87a;
  --gold-bright: #e8cc8a;
  --cream: #f5f0e8;
  --cream-soft: #ebe5d9;
  --text-primary: #f5f0e8;
  --text-secondary: rgba(245, 240, 232, .7);
  --text-muted: rgba(245, 240, 232, .45);
  --border: rgba(201, 169, 110, .14);
  --border-hover: rgba(201, 169, 110, .3);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', 'Segoe UI', sans-serif;

  --section-py: clamp(4rem, 8vw, 7rem);
  --section-py-sm: clamp(2.5rem, 5vw, 4rem);
  --container-px: clamp(1.25rem, 4vw, 2.5rem);
  --container-max: 1120px;

  --ease: cubic-bezier(.25, .46, .45, .94);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --transition: .35s var(--ease);
  --transition-slow: .55s var(--ease-out);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-primary);
  background: var(--bg-primary);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

/* Subtle grain texture overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  opacity: .028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
  z-index: 9999;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.section { padding: var(--section-py) 0; }
.section--compact { padding: var(--section-py-sm) 0; }
.text-center { text-align: center; }

/* Reveal — staggered */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s var(--ease-out), transform .65s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-side {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity .65s var(--ease-out), transform .65s var(--ease-out);
}
.reveal-side.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 { font-family: var(--font-heading); line-height: 1.25; }
h1, h2 { font-weight: 500; }
h3, h4, h5 { font-weight: 400; }

.headline-xl {
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -.02em;
}
.headline-lg {
  font-size: clamp(1.65rem, 3.8vw, 2.6rem);
  letter-spacing: -.015em;
}
.headline-md {
  font-size: clamp(1.35rem, 2.8vw, 1.9rem);
}
.body-lg {
  font-size: clamp(1.02rem, 1.5vw, 1.15rem);
  color: var(--text-secondary);
}

.label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
}

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: 1rem 2.4rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg-primary);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(201, 169, 110, .2);
  position: relative;
  overflow: hidden;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 169, 110, .3);
}

/* ---------- Decorative ---------- */
.gold-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .15;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 100;
  padding: 1rem 0;
  transition: var(--transition);
  background: transparent;
}
.header.scrolled {
  background: rgba(13, 12, 10, .9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--gold-light);
}
.header__cta {
  padding: .6rem 1.5rem;
  font-size: .75rem;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  background: radial-gradient(ellipse at 70% 20%, rgba(201,169,110,.05) 0%, transparent 60%),
              var(--bg-primary);
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero__content { position: relative; z-index: 2; }
.hero__label { margin-bottom: 1.2rem; }
.hero__title { margin-bottom: 1.4rem; }
.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero__subtitle {
  margin-bottom: 2rem;
  max-width: 460px;
}
.hero__features {
  display: flex;
  gap: 1.6rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.hero__feature {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .82rem;
  color: var(--text-muted);
}
.hero__feature svg {
  width: 15px; height: 15px;
  color: var(--gold);
  flex-shrink: 0;
}
.hero__image {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}
.hero__image img {
  max-height: 560px;
  width: auto;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,.45));
  animation: floatProduct 6s ease-in-out infinite;
}

@keyframes floatProduct {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ============================================
   IDENTIFICATION
   ============================================ */
.identification {
  background: var(--bg-secondary);
}
.identification__intro {
  max-width: 560px;
  margin-bottom: 2.5rem;
}
.identification__intro .headline-lg { margin-bottom: .8rem; }
.identification__intro .body-lg { color: var(--text-muted); }

.identification__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.identification__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.8rem 1.6rem;
  transition: border-color .4s var(--ease);
}
.identification__card:hover {
  border-color: var(--border-hover);
}
.identification__card--wide {
  grid-column: 1 / -1;
  border-radius: 18px;
  padding: 2.2rem 2rem;
}
.identification__card h4 {
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: .5rem;
  color: var(--cream);
}
.identification__card p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================
   MECHANISM
   ============================================ */
.mechanism {
  background: var(--bg-primary);
}
.mechanism__header {
  max-width: 540px;
  margin-bottom: 2.5rem;
}
.mechanism__header .label { margin-bottom: .8rem; }
.mechanism__header .headline-lg { margin-bottom: .6rem; }

.mechanism__content { max-width: 720px; }
.mechanism__steps {
  display: flex;
  flex-direction: column;
  position: relative;
}
.mechanism__steps::before {
  content: '';
  position: absolute;
  left: 22px; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  opacity: .22;
}
.mechanism__step {
  display: flex;
  gap: 1.5rem;
  padding: 1.3rem 0;
  position: relative;
}
.mechanism__step-num {
  width: 44px; height: 44px; min-width: 44px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--gold-light);
  background: var(--bg-primary);
  position: relative;
  z-index: 2;
}
.mechanism__step-text h4 {
  margin-bottom: .25rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--cream);
}
.mechanism__step-text p {
  font-size: .88rem;
  color: var(--text-muted);
}

/* ============================================
   PRODUCT
   ============================================ */
.product {
  background: var(--bg-tertiary);
  position: relative;
  overflow: hidden;
}
.product .container {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}
.product__image {
  display: flex;
  justify-content: center;
}
.product__image img {
  max-height: 460px;
  width: auto;
  filter: drop-shadow(0 14px 40px rgba(0,0,0,.4));
}
.product__content .headline-lg { margin-bottom: 1rem; }
.product__content .body-lg { margin-bottom: 1.5rem; }

.product__highlights {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  margin-top: 1.2rem;
}
.product__highlight {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
}
.product__highlight-icon {
  width: 26px; min-width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(201,169,110,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.product__highlight-icon svg {
  width: 13px; height: 13px;
  color: var(--gold);
}
.product__highlight p {
  font-size: .92rem;
  color: var(--text-secondary);
}
.product__highlight strong {
  color: var(--cream);
  font-weight: 700;
}

/* ============================================
   SOFTGEL
   ============================================ */
.softgel {
  background: var(--bg-primary);
}
.softgel__wrapper {
  background: linear-gradient(160deg, rgba(201,169,110,.05) 0%, rgba(201,169,110,.01) 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: clamp(2rem, 4.5vw, 3.5rem);
  max-width: 880px;
  margin: 0 auto;
}
.softgel__header { text-align: center; }
.softgel__header .label { margin-bottom: .7rem; }
.softgel__header .headline-md { margin-bottom: .6rem; }
.softgel__header .body-lg {
  max-width: 540px;
  margin: 0 auto;
}

.softgel__benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}
.softgel__benefit {
  text-align: center;
  padding: 1.3rem .8rem;
}
.softgel__benefit-icon {
  width: 40px; height: 40px;
  margin: 0 auto .7rem;
  border-radius: 10px;
  background: rgba(201,169,110,.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.softgel__benefit-icon svg {
  width: 20px; height: 20px;
  color: var(--gold);
}
.softgel__benefit h4 {
  font-size: .92rem;
  margin-bottom: .3rem;
  color: var(--cream);
}
.softgel__benefit p {
  font-size: .82rem;
  color: var(--text-muted);
}

/* ============================================
   ACTIVES
   ============================================ */
.actives {
  background: var(--bg-secondary);
}
.actives__header {
  max-width: 500px;
  margin-bottom: 2rem;
}
.actives__header .headline-lg { margin-bottom: .6rem; }

/* Featured actives — 2 large cards */
.actives__featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}
.active-card--large {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 1.8rem;
  transition: border-color .4s var(--ease);
}
.active-card--large:hover {
  border-color: var(--border-hover);
}
.active-card__tag {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .8rem;
  display: inline-block;
}
.active-card--large h4 {
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: .5rem;
  color: var(--cream);
}
.active-card--large h4 small {
  font-weight: 300;
  font-size: .85rem;
  color: var(--text-muted);
}
.active-card--large p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Compact active list */
.actives__compact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
}
.active-compact {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  padding: 1.1rem 1.3rem;
  background: rgba(201,169,110,.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color .3s var(--ease);
}
.active-compact:hover {
  border-color: var(--border-hover);
}
.active-compact__name {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.active-compact__name svg {
  width: 14px; height: 14px;
  color: var(--gold);
  flex-shrink: 0;
}
.active-compact__name strong {
  font-size: .92rem;
  color: var(--cream);
}
.active-compact p {
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ============================================
   BENEFITS
   ============================================ */
.benefits {
  background: var(--bg-primary);
}
.benefits .headline-lg { margin-bottom: 2rem; }
.benefits__list {
  max-width: 660px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  padding: 1rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: background .3s var(--ease);
}
.benefit-item:hover {
  background: rgba(201,169,110,.04);
}
.benefit-item__check {
  width: 22px; min-width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(201,169,110,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.benefit-item__check svg {
  width: 11px; height: 11px;
  color: var(--gold);
}
.benefit-item p {
  font-size: .9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ============================================
   CREDIBILITY — INLINE SEALS
   ============================================ */
.credibility {
  background: var(--bg-tertiary);
  padding: var(--section-py-sm) 0;
}
.credibility__seals {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.credibility__seal {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.credibility__seal svg {
  width: 18px; height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}
.credibility__seal span {
  font-size: .8rem;
  font-weight: 400;
  color: var(--text-secondary);
  white-space: nowrap;
}
.credibility__divider {
  width: 1px;
  height: 16px;
  background: var(--border-hover);
}

/* ============================================
   GUARANTEE
   ============================================ */
.guarantee {
  background: var(--bg-primary);
}
.guarantee__box {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(2rem, 4vw, 3.5rem);
  border: 1px solid var(--border);
  border-radius: 20px;
}
.guarantee__icon {
  margin-bottom: 1rem;
  color: var(--gold);
}
.guarantee__icon svg {
  margin: 0 auto;
}
.guarantee__box .headline-md { margin-bottom: .8rem; }
.guarantee__box .body-lg { margin-bottom: .5rem; }
.guarantee__note {
  margin-top: .8rem;
  color: var(--gold-light);
  font-style: italic;
  font-size: .95rem;
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
  background: var(--bg-secondary);
  position: relative;
}
.pricing .label { margin-bottom: .5rem; }
.pricing .headline-lg { margin-bottom: .3rem; }

.pricing__timer {
  text-align: center;
  margin: 2rem 0;
}
.pricing__timer p {
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: .7rem;
}
.countdown {
  display: flex;
  justify-content: center;
  gap: .7rem;
}
.countdown__block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: .7rem .9rem;
  min-width: 60px;
  text-align: center;
}
.countdown__num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold-light);
  line-height: 1;
}
.countdown__label {
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
  margin-top: .25rem;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.pricing__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color .3s var(--ease);
  position: relative;
}
.pricing__card:hover {
  border-color: var(--border-hover);
}
.pricing__card--featured {
  border-color: rgba(201,169,110,.4);
  background: linear-gradient(180deg, rgba(201,169,110,.08) 0%, var(--bg-card) 100%);
  transform: scale(1.03);
}
.pricing__card--featured:hover {
  border-color: var(--gold);
}
.pricing__badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg-primary);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem 1.1rem;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing__card h4 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: .25rem;
  color: var(--cream);
}
.pricing__card .quantity {
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.pricing__card .price-from {
  font-size: .78rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: .2rem;
}
.pricing__card .price {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--gold-light);
  line-height: 1.1;
}
.pricing__card .price-installment {
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: .25rem;
  margin-bottom: 1.3rem;
}
.pricing__card .price-unit {
  font-size: .75rem;
  color: var(--gold);
  margin-bottom: 1.3rem;
  font-weight: 700;
}
.pricing__card .btn-primary {
  width: 100%;
  padding: .85rem 1.3rem;
  font-size: .78rem;
}
.pricing__card .shipping {
  font-size: .72rem;
  color: var(--text-muted);
  margin-top: .7rem;
}
.pricing__safe {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.3rem;
  margin-top: 1.8rem;
}
.pricing__safe span {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .75rem;
  color: var(--text-muted);
}
.pricing__safe svg {
  width: 13px; height: 13px;
  color: var(--gold);
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  background: var(--bg-primary);
}
.faq__header {
  max-width: 480px;
  margin-bottom: 2rem;
}
.faq__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.faq__item {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .3s var(--ease);
}
.faq__item.active {
  border-color: var(--border-hover);
}
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.3rem;
  font-size: .92rem;
  font-weight: 400;
  color: var(--cream);
  text-align: left;
  transition: color .3s var(--ease);
}
.faq__question:hover { color: var(--gold-light); }
.faq__question svg {
  width: 16px; height: 16px;
  transition: transform .35s var(--ease);
  color: var(--gold);
  flex-shrink: 0;
  margin-left: .8rem;
}
.faq__item.active .faq__question svg {
  transform: rotate(180deg);
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}
.faq__answer-inner {
  padding: 0 1.3rem 1.2rem;
  font-size: .87rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   CLOSING
   ============================================ */
.closing {
  background: var(--bg-secondary);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,169,110,.04) 0%, transparent 70%);
  pointer-events: none;
}
.closing .container { position: relative; z-index: 2; }
.closing .headline-lg { margin-bottom: .8rem; }
.closing .body-lg {
  max-width: 500px;
  margin: 0 auto 2rem;
}
.closing__signature {
  margin-top: 2rem;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-light);
  opacity: .8;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-primary);
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}
.footer__content { text-align: center; }
.footer__logo {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--gold);
  margin-bottom: .8rem;
}
.footer__disclaimer {
  font-size: .7rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 660px;
  margin: 0 auto .8rem;
}
.footer__links {
  display: flex;
  justify-content: center;
  gap: 1.3rem;
  flex-wrap: wrap;
}
.footer__links a {
  font-size: .75rem;
  color: var(--text-muted);
  transition: color .3s var(--ease);
}
.footer__links a:hover { color: var(--gold-light); }
.footer__copy {
  margin-top: 1rem;
  font-size: .7rem;
  color: var(--text-muted);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__subtitle { margin: 0 auto 2rem; }
  .hero__features { justify-content: center; }
  .hero__image { margin-top: 2rem; }
  .hero__image img { max-height: 400px; }

  .identification__intro { text-align: center; margin: 0 auto 2.5rem; }

  .product .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .product__image { order: -1; margin-bottom: 1rem; }
  .product__image img { max-height: 360px; }
  .product__highlights { align-items: center; }

  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }
  .pricing__card--featured {
    transform: none;
    order: -1;
  }
}

@media (max-width: 768px) {
  .header__cta { display: none; }
  .hero__image img { max-height: 320px; }

  .identification__grid { grid-template-columns: 1fr; }

  .mechanism__step { gap: 1rem; }
  .mechanism__step-num { width: 38px; height: 38px; min-width: 38px; font-size: .9rem; }
  .mechanism__steps::before { left: 19px; }

  .actives__featured { grid-template-columns: 1fr; }
  .actives__compact { grid-template-columns: 1fr; }

  .softgel__benefits { grid-template-columns: 1fr; }

  .credibility__divider { display: none; }
  .credibility__seals { gap: 1rem; }

  .countdown__block { min-width: 52px; padding: .5rem .7rem; }
  .countdown__num { font-size: 1.2rem; }
}

@media (max-width: 480px) {
  .hero { min-height: auto; padding: 5rem 0 2.5rem; }
  .hero__image img { max-height: 260px; }

  .softgel__wrapper { padding: 1.8rem 1.3rem; }
  .guarantee__box { padding: 1.8rem 1.3rem; }

  .credibility__seals { flex-direction: column; align-items: flex-start; padding: 0 1rem; }
}
