/* ===== TOKENS ===== */
:root {
  --font: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  /* === BRAND PRIMARY (Coral) === */
  --color-coral-50:   #FEF2EF;
  --color-coral-100:  #FCDFD7;
  --color-coral-300:  #F19A85;
  --color-coral-500:  #E5533D;
  --color-coral-600:  #C8472F;
  --color-coral-700:  #A03B27;
  --color-coral-900:  #5C2118;

  /* === BRAND SECONDARY (Teal) === */
  --color-teal-50:    #E6F5F0;
  --color-teal-100:   #B3DFD0;
  --color-teal-300:   #4DB896;
  --color-teal-500:   #00976D;
  --color-teal-600:   #007A57;
  --color-teal-700:   #005C42;
  --color-teal-900:   #003327;

  /* === ACCENT (Amber — energy / longevity) === */
  --color-amber-50:   #FEF7E8;
  --color-amber-300:  #F4C76B;
  --color-amber-500:  #E8A93A;
  --color-amber-700:  #B17D1C;

  /* === NEUTRALS === */
  --color-cream:      #FAF8F5;
  --color-white:      #FFFFFF;
  --color-stone-100:  #F0EDE8;
  --color-stone-300:  #C9C2B7;
  --color-stone-500:  #7A7368;
  --color-stone-700:  #3D3934;
  --color-graphite:   #1F1C19;

  /* === SEMANTIC === */
  --color-success:    #2E7D5B;
  --color-warning:    #C8851D;
  --color-danger:     #B8341E;
  --color-info:       #2B5F8C;

  /* === LEGACY ALIASES (mapped to new system for backward compat) === */
  --white: var(--color-white);
  --cream: var(--color-cream);
  --sand: var(--color-stone-100);
  --sage: var(--color-teal-500);          /* primary action / secondary brand */
  --sage-light: var(--color-teal-50);
  --sage-dark: var(--color-teal-700);
  --olive: var(--color-graphite);
  --coral: var(--color-coral-500);        /* primary brand accent */
  --warm-brown: var(--color-coral-700);
  --warm-peach: var(--color-coral-300);
  --blue-accent: var(--color-coral-600);  /* hero highlight = coral */
  --text: var(--color-graphite);
  --text-muted: var(--color-stone-500);
  --text-light: var(--color-stone-500);
  --border: var(--color-stone-300);

  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(31, 28, 25, 0.05);
  --shadow-md: 0 4px 12px rgba(31, 28, 25, 0.08);
  --shadow-lg: 0 12px 32px rgba(31, 28, 25, 0.12);
  --shadow-amber-glow: 0 0 40px rgba(232, 169, 58, 0.25);

  --container: 1280px;
  --transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== BASE ===== */
body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
}

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

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: #00976D;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}
.header--scrolled { border-color: var(--border); }

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

.header__logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.header__logo-icon { height: 77px; width: auto; }
.header__logo-text { height: 57px; width: auto; }

/* Partner early bird icon */
.partner-early__icon { width: 100px; height: 100px; object-fit: contain; margin: 0 auto 20px; display: block; }

.header__right { display: flex; align-items: center; gap: 12px; }

.lang-switch {
  display: flex; background: var(--sand); border-radius: var(--radius-pill);
  padding: 2px; gap: 1px;
}
.lang-btn {
  padding: 4px 10px; border-radius: var(--radius-pill);
  font-size: 9px; font-weight: 600; font-family: var(--font);
  color: var(--text-muted); transition: all var(--transition);
}
.lang-btn.active { background: var(--white); color: var(--text); box-shadow: var(--shadow-sm); }


.nav { display: none; gap: 32px; align-items: center; }
@media (min-width: 900px) { .nav { display: flex; } }
.nav__link {
  font-family: var(--font); font-size: 17px; font-weight: 500;
  color: rgba(255,255,255,0.85); transition: color var(--transition);
}
.nav__link:hover { color: #fff; }
.nav__link--active { color: #fff !important; text-decoration: underline; text-underline-offset: 4px; }

.mobile-toggle { display: flex; align-items: center; color: #fff; }
@media (min-width: 900px) { .mobile-toggle { display: none; } }

.mobile-nav {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 200;
  width: 90%; max-width: 400px;
  background: var(--white);
  display: flex; flex-direction: column;
  padding: 0;
  transform: translateX(100%); transition: transform 0.35s ease, visibility 0s 0.35s;
  pointer-events: none; visibility: hidden;
  overflow-y: auto;
  box-shadow: -4px 0 24px rgba(0,0,0,0.15);
  border-radius: 16px 0 0 16px;
}
.mobile-nav-overlay {
  position: fixed; inset: 0; z-index: 199;
  background: rgba(0,0,0,0.4);
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s ease, visibility 0s 0.35s;
}
.mobile-nav-overlay--open {
  opacity: 1; visibility: visible;
  transition: opacity 0.35s ease, visibility 0s 0s;
}
.mobile-nav--open { transform: translateX(0); pointer-events: all; visibility: visible; transition: transform 0.35s ease, visibility 0s 0s; }
.mobile-nav__header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; border-bottom: 1px solid var(--border);
}
.mobile-nav__close {
  background: none; border: none; color: var(--text); cursor: pointer; padding: 4px;
}
.mobile-nav__list {
  flex: 1; display: flex; flex-direction: column; padding: 16px 0;
}
.mobile-nav__link {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font); font-size: 17px; font-weight: 500; color: var(--text);
  padding: 16px 24px; border-bottom: 1px solid rgba(0,0,0,0.06);
  text-decoration: none;
}
.mobile-nav__link:active { background: var(--cream); }
.mobile-nav__arrow { color: var(--text-muted); font-size: 22px; font-weight: 300; }
.mobile-nav__footer {
  display: flex; gap: 24px; justify-content: center;
  padding: 20px 24px; border-top: 1px solid var(--border);
}
.mobile-nav__footer-link {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font); font-size: 14px; font-weight: 500; color: var(--text);
  text-decoration: none;
}
.mobile-nav__footer-link svg { color: var(--text-muted); }

/* ===== PRODUCT PILLS CAROUSEL ===== */
.product-pills {
  overflow: hidden;
  margin: 20px 0 8px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.product-pills__track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: scrollPills 25s linear infinite;
}
.product-pills:hover .product-pills__track { animation-play-state: paused; }
@keyframes scrollPills {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.product-pill {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 18px 8px 8px;
  text-decoration: none;
  transition: box-shadow 0.2s, transform 0.2s;
  white-space: nowrap;
}
.product-pill:hover { box-shadow: var(--shadow-md); transform: translateY(-1px); }
.product-pill__icon {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.product-pill__name {
  font-family: var(--font); font-size: 14px; font-weight: 600; color: var(--text);
}
.product-pill__arrow {
  font-size: 20px; color: var(--text-muted); font-weight: 300; margin-left: 4px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font); font-weight: 600; font-size: 15px;
  border-radius: var(--radius-pill); transition: all var(--transition);
  white-space: nowrap; cursor: pointer;
}
.btn--lg { padding: 16px 36px; font-size: 16px; }
.btn--md { padding: 12px 28px; }
.btn--sm { padding: 8px 20px; font-size: 14px; }

.btn--primary {
  background: var(--color-coral-500); color: var(--color-white);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: var(--color-coral-600); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.btn--secondary {
  background: var(--color-teal-500); color: var(--color-white);
}
.btn--secondary:hover { background: var(--color-teal-600); }
.btn--white { background: var(--white); color: var(--text); }
.btn--white:hover { background: var(--cream); }
.btn--glass {
  background: rgba(255,255,255,0.15); color: var(--white);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn--glass:hover { background: rgba(255,255,255,0.25); }
.btn--outline { border: 1.5px solid var(--border); color: var(--text); background: transparent; }
.btn--outline:hover { border-color: var(--text); }
.btn--dark { background: var(--olive); color: var(--white); }
.btn--dark:hover { background: #2d382b; }

.btn--header { padding: 10px 24px; }
.btn--cta-header {
  display: inline-flex; align-items: center;
  padding: 10px 22px; font-size: 14px; font-weight: 600;
  background: var(--color-coral-500); color: var(--color-white); border-radius: 50px;
  text-decoration: none; white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  font-family: var(--font);
  box-shadow: var(--shadow-sm);
}
.btn--cta-header:hover { background: var(--color-coral-600); transform: translateY(-1px); box-shadow: var(--shadow-md); }
@media (max-width: 899px) { .btn--header, .btn--cta-header { display: none; } }

/* =============================================
   HERO — hims-style rotating text
   ============================================= */
.hero-hims {
  padding: 100px 0 40px;
  background: var(--white);
}

.hero-hims__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sage-light, #E8F4F2);
  border-radius: 100px;
  padding: 6px 14px 6px 6px;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--sage, #1A7A6E);
  letter-spacing: 0.01em;
}
.hero-hims__badge-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.hero-hims__text {
  text-align: left;
  margin-bottom: 32px;
}

/* Slot machine rotator */
.hero-hims__rotator {
  position: relative;
  overflow: visible;
  margin: 0 0 8px;
  padding: 0;
}

.hero-hims__slot-wrapper {
  height: 1.15em;
  overflow: hidden;
  position: relative;
  font-family: var(--font);
  font-size: clamp(2rem, 1.4rem + 3.5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #C74400;
}

.hero-hims__slot {
  display: flex;
  flex-direction: column;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-hims__word {
  display: block;
  height: 1.15em;
  line-height: 1.15;
  white-space: nowrap;
  opacity: 0.55;
  transition: opacity 0.4s ease, color 0.4s ease;
  color: #C74400;
}

.hero-hims__word--active {
  opacity: 1;
  color: var(--color-coral-600);
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(229, 83, 61, 0.18);
}

.hero-hims__tagline {
  font-family: var(--font);
  font-size: clamp(1.8rem, 1.2rem + 3vw, 3.4rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--sage-dark);
  margin: 0;
}

/* Hero compliance disclaimer */
.hero-compliance {
  font-family: var(--font);
  font-style: italic;
  font-size: 14px;
  line-height: 1.55;
  color: var(--coral, #E5533D);
  max-width: 760px;
  margin: 24px auto 8px;
  padding: 14px 18px;
  text-align: center;
  background: rgba(229,83,61,0.06);
  border-left: 3px solid var(--coral, #E5533D);
  border-radius: 6px;
}
@media (max-width: 768px) {
  .hero-compliance { font-size: 13px; padding: 12px 14px; margin-top: 20px; }
}

.hero-hims__trust {
  text-align: left;
  font-family: var(--font);
  font-size: clamp(20px, 1.5rem + 0.5vw, 24px);
  font-weight: 700;
  color: var(--sage-dark);
  max-width: 620px;
  margin: 20px 0 48px;
  line-height: 1.4;
}
.trust-orange {
  color: var(--color-coral-600);
}

/* Large hero cards (2 side by side like hims) */
.hero-cards-lg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 767px) { .hero-cards-lg { grid-template-columns: 1fr; } }

.hero-cards-lg,
.hero-card-lg {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}
.hero-card-lg {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16/10;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 32px;
  cursor: pointer;
  transition: transform var(--transition);
  box-shadow: 0 4px 24px rgba(0,0,0,0.10), 0 1px 6px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.08);
}
.hero-card-lg:hover { transform: scale(0.98); }

.hero-card-lg img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-card-lg:first-child {
  background: #b5d8e8;
}
.hero-card-lg:last-child {
  background: #c8c8c4;
}
.hero-card-lg:last-child img {
  object-position: top center;
}
.hero-card-lg__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(20,25,30,0.7) 0%, rgba(20,25,30,0.25) 45%, transparent 70%);
  pointer-events: all;
  cursor: default;
}
.hero-card-lg__content {
  position: relative; z-index: 2; color: var(--white);
}
.hero-card-lg__title {
  font-family: var(--font);
  font-size: clamp(1.25rem, 0.8rem + 1.5vw, 1.75rem);
  font-weight: 600; line-height: 1.2;
  margin-bottom: 6px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.hero-card-lg__sub {
  font-size: 14px; opacity: 0.95; max-width: 280px; line-height: 1.5;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.hero-card-lg__arrow {
  position: absolute; bottom: 28px; right: 28px; z-index: 2;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.2); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center; color: var(--white);
}

/* Small category cards (4 in a row like hims) */
.hero-cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 767px) { .hero-cats { grid-template-columns: 1fr 1fr; } }
@media (max-width: 400px) { .hero-cats { grid-template-columns: 1fr; } }

.hero-cat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.hero-cat:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.hero-cat__text {
  flex: 1;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}
.hero-cat__text span { color: var(--sage); }
.hero-cat__icon-wrap {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--sage-light); color: var(--sage);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-cat__icon { width: 18px; height: 18px; }
.hero-cat__arrow {
  width: 16px; height: 16px; color: var(--text-light);
  flex-shrink: 0;
}

/* =============================================
   HIMS-STYLE SECTIONS
   ============================================= */

/* Full-width tinted section */
.hims-section {
  padding: 32px 0;
  text-align: center;
  overflow: hidden;
}
.hims-section--sage {
  background: linear-gradient(165deg, var(--sage) 0%, var(--sage-dark) 100%);
  color: var(--white);
}
.hims-section--warm {
  background: #C49560;
  color: var(--white);
}
.hims-section__label {
  font-family: var(--font); font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  opacity: 0.85; margin-bottom: 16px;
}
.hims-section__title {
  font-family: var(--font);
  font-size: clamp(1.6rem, 1.2rem + 2vw, 2.5rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}
.hims-section__ctas {
  display: flex; justify-content: center; gap: 12px;
  margin-top: 48px;
}

/* Feature with phone + sides */
.hims-feature {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
.hims-feature__visual {
  position: relative;
  z-index: 2;
}
.hims-feature__sides {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: -80px;
  position: relative;
  z-index: 1;
  padding: 0 20px;
}
.hims-feature__side {
  text-align: left;
  padding-top: 140px;
}
.hims-feature__side--right {
  text-align: right;
}
.hims-feature__side h3 {
  font-family: var(--font);
  font-size: 20px; font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.hims-feature__side p {
  font-size: 15px; opacity: 0.92; line-height: 1.7;
  letter-spacing: 0.005em;
}

@media (max-width: 767px) {
  .hims-feature__sides {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 24px;
    padding: 0;
  }
  .hims-feature__side { padding-top: 0; }
  .hims-feature__side--right { text-align: left; }
}

/* Split content (diet AI style) */
.hims-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  text-align: left;
}
.hims-split__desc {
  font-size: 17px; line-height: 1.7; opacity: 1;
  margin-bottom: 32px;
}
.hims-split__features {
  display: flex; flex-direction: column; gap: 14px;
}
.hims-split__feat {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.18);
  border-radius: var(--radius-md);
  backdrop-filter: blur(4px);
  transition: transform 0.3s ease, background 0.3s ease;
}
.hims-split__feat:hover {
  transform: translateX(6px);
  background: rgba(255,255,255,0.2);
}
.hims-split__feat-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.2);
  border-radius: 10px; color: var(--white);
}
.hims-split__feat-icon svg { width: 20px; height: 20px; }
.hims-split__feat span {
  font-family: var(--font);
  font-size: 15px; font-weight: 500; color: var(--white);
}
.hims-split__img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.hims-split__img img { width: 100%; height: auto; display: block; }

@media (max-width: 767px) {
  .hims-split { grid-template-columns: 1fr; gap: 40px; }
  .hims-split__img { order: -1; }
}

/* Full-width image banner (hims style CTA) */
.hims-banner {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hims-banner__bg {
  position: absolute; inset: 0; z-index: 0;
}
.hims-banner__bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 20%;
}
.hims-banner__gradient {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(12,31,63,0.85) 0%, rgba(12,31,63,0.4) 50%, transparent 100%);
}
.hims-banner__content {
  position: relative; z-index: 2;
  max-width: 520px; color: var(--white);
  padding: 40px 0;
}
.hims-banner__label {
  font-family: var(--font); font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  opacity: 0.7; margin-bottom: 16px;
}
.hims-banner__title {
  font-family: var(--font);
  font-size: clamp(2rem, 1.5rem + 3vw, 3.5rem);
  font-weight: 500; line-height: 1.1;
  letter-spacing: -0.02em; margin-bottom: 20px;
}
.hims-banner__desc {
  font-size: 17px; line-height: 1.7; opacity: 0.85;
  margin-bottom: 28px;
}
.hims-banner__checks {
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 32px;
}
.hims-banner__check {
  display: flex; align-items: flex-start; gap: 10px;
}
.hims-banner__check svg {
  width: 20px; height: 20px; flex-shrink: 0;
  margin-top: 2px; color: rgba(255,255,255,0.7);
}
.hims-banner__check span {
  font-size: 15px; font-weight: 500; opacity: 0.9;
}
.hims-banner__actions {
  display: flex; gap: 12px;
}

@media (max-width: 767px) {
  .hims-banner { min-height: 480px; }
  .hims-banner__gradient {
    background: linear-gradient(to top, rgba(12,31,63,0.9) 0%, rgba(12,31,63,0.6) 50%, rgba(12,31,63,0.3) 100%);
  }
}

/* ===== AYASCREENS ===== */
.ayascreens {
  padding: 40px 0;
  background: #0a0f14;
  color: #fff;
  overflow: hidden;
}
.ayascreens__header {
  text-align: center;
  margin-bottom: 56px;
}
.ayascreens__header .section__label {
  color: #4ade80;
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 12px;
}
.ayascreens__header .section__title {
  color: #fff;
  font-size: clamp(1.75rem, 1rem + 2.5vw, 2.75rem);
}
.ayascreens__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}
.ayascreens__text {
  display: flex; flex-direction: column; gap: 20px;
}
.ayascreens__text p {
  font-family: var(--font); font-size: 16px; line-height: 1.7;
  color: rgba(255,255,255,0.85);
}
.ayascreens__tagline {
  font-weight: 700 !important;
  color: #4ade80 !important;
  font-size: 18px !important;
  margin-top: 8px;
}
.ayascreens__visual {
  display: flex; justify-content: center; align-items: center;
}
.ayascreens__img--phone {
  width: 280px; border-radius: 28px;
  box-shadow: 0 24px 80px rgba(74,222,128,0.15), 0 4px 20px rgba(0,0,0,0.4);
}
.ayascreens__wide {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.ayascreens__wide img {
  width: 100%; height: auto; display: block;
  border-radius: var(--radius-lg);
}
@media (max-width: 767px) {
  .ayascreens { padding: 40px 0; }
  .ayascreens__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ayascreens__visual { order: -1; }
  .ayascreens__img--phone { width: 220px; }
}

/* ===== FOR WHO (side-by-side) ===== */
.for-who {
  padding: 40px 0;
  background: var(--cream);
}
.for-who__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.for-who__label {
  font-family: var(--font); font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--sage); margin-bottom: 16px;
}
.for-who__title {
  font-family: var(--font);
  font-size: clamp(1.8rem, 1.3rem + 2.5vw, 3rem);
  font-weight: 500; line-height: 1.12;
  letter-spacing: -0.02em; margin-bottom: 20px;
  color: var(--olive);
}
.for-who__desc {
  font-size: 16px; line-height: 1.7;
  color: var(--text-muted); margin-bottom: 28px;
}
.for-who__checks {
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 32px;
}
.for-who__check {
  display: flex; align-items: flex-start; gap: 10px;
}
.for-who__check svg {
  width: 20px; height: 20px; flex-shrink: 0;
  margin-top: 2px; color: var(--sage);
}
.for-who__check span {
  font-size: 15px; font-weight: 500; color: var(--text);
}
.for-who__actions {
  display: flex; gap: 12px; justify-content: center;
}
.for-who__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.for-who__photo img {
  width: 100%; height: auto; display: block;
  border-radius: var(--radius-lg);
}
@media (max-width: 767px) {
  .for-who__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .for-who__photo { order: -1; }
}

/* ===== CATEGORIES ===== */
.categories { padding: 40px 0; }
.categories .section__title { margin-bottom: 28px; }
.categories__marquee { overflow: hidden; position: relative; }
.categories__track {
  display: flex; gap: 16px; width: max-content;
  animation: scrollCats 28s linear infinite;
}
.categories__marquee:hover .categories__track { animation-play-state: paused; }
@keyframes scrollCats {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.cat-card {
  flex-shrink: 0;
  background: var(--sage-light); border-radius: 14px;
  padding: 16px 14px; text-align: center; width: 152px;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.cat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.cat-card__icon {
  width: 36px; height: 36px; margin: 0 auto 8px;
  border-radius: 10px; background: var(--white);
  display: flex; align-items: center; justify-content: center;
  color: var(--sage);
}
.cat-card__icon svg { width: 18px; height: 18px; }
.cat-card__title {
  font-family: var(--font); font-size: 13.5px; font-weight: 700; color: var(--text);
  margin-bottom: 2px;
}
.cat-card__desc {
  font-size: 12px; color: #4A433E; line-height: 1.35;
}

.cat-card:nth-child(6n+2) { background: var(--sand); }
.cat-card:nth-child(6n+2) .cat-card__icon { color: var(--warm-brown); }
.cat-card:nth-child(6n+3) { background: #F5E6E2; }
.cat-card:nth-child(6n+3) .cat-card__icon { color: var(--coral); }
.cat-card:nth-child(6n+4) { background: #E8EAE2; }
.cat-card:nth-child(6n+4) .cat-card__icon { color: var(--olive); }
.cat-card:nth-child(6n+5) { background: #E6E8F0; }
.cat-card:nth-child(6n+5) .cat-card__icon { color: #5B6B8A; }
.cat-card:nth-child(6n+6) { background: #F0E8E2; }
.cat-card:nth-child(6n+6) .cat-card__icon { color: var(--coral); }

/* ===== FEATURE SECTION (legacy — used by about page etc) ===== */
.feature {
  padding: 60px 0;
}
.feature--sage { background: var(--sage); color: var(--white); }
.feature--sage .section__label { color: rgba(255,255,255,0.7); }
.feature--sage .section__desc { color: rgba(255,255,255,0.8); }
.feature--cream { background: var(--cream); }
.feature--olive { background: var(--olive); color: var(--white); }
.feature--olive .section__label { color: rgba(255,255,255,0.7); }
.feature--olive .section__desc { color: rgba(255,255,255,0.8); }

.feature__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
@media (max-width: 767px) { .feature__grid { grid-template-columns: 1fr; gap: 40px; } }
.feature__grid--reverse .feature__img { order: -1; }
@media (max-width: 767px) { .feature__grid--reverse .feature__img { order: 0; } }

.feature__img { border-radius: var(--radius-xl); overflow: hidden; }
.feature__img img { width: 100%; height: auto; display: block; }

.section__label {
  font-family: var(--font); font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--sage); margin-bottom: 16px;
}
.section__title {
  font-family: var(--font);
  font-size: clamp(1.6rem, 1.2rem + 2vw, 2.5rem);
  font-weight: 500; line-height: 1.1; letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.section__desc {
  font-size: 18px; color: var(--text-muted); line-height: 1.7;
  margin-bottom: 32px; max-width: 480px;
}

.check-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.check-list__item { display: flex; align-items: flex-start; gap: 12px; }
.check-list__icon {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: var(--sage-light); color: var(--sage);
  display: flex; align-items: center; justify-content: center;
}
.feature--sage .check-list__icon,
.feature--olive .check-list__icon { background: rgba(255,255,255,0.15); color: var(--white); }
.check-list__icon svg { width: 14px; height: 14px; }
.check-list__text { font-size: 16px; font-weight: 500; padding-top: 3px; }

/* ===== STATS ===== */
.stats {
  padding: 32px 0; text-align: center;
}
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
@media (max-width: 767px) { .stats__grid { grid-template-columns: 1fr 1fr; } }
.stat__number {
  font-family: var(--font); font-size: clamp(2rem, 1rem + 3vw, 3.5rem);
  font-weight: 600; color: var(--sage); line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}
.stat__label { font-size: 15px; color: var(--text-muted); font-weight: 500; letter-spacing: 0.01em; }

/* ===== HOW IT WORKS ===== */
.how { padding: 40px 0; background: var(--cream); }
.how .section__label,
.how .section__title,
.how .section__desc { text-align: center; }
.how .section__desc { margin: 0 auto 32px; max-width: 520px; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 767px) { .steps { grid-template-columns: 1fr; gap: 12px; } }
.step {
  background: var(--white); border-radius: var(--radius-lg); padding: 20px 20px;
  text-align: center;
}
@media (max-width: 767px) {
  .step {
    display: flex; align-items: center; gap: 16px;
    text-align: left; padding: 16px 20px;
  }
  .step__number { margin: 0; flex-shrink: 0; }
  .step__title { margin-bottom: 4px; }
}
.step__number {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--sage); color: var(--white);
  font-family: var(--font); font-size: 18px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
}
.step__title {
  font-family: var(--font); font-size: 17px; font-weight: 600;
  margin-bottom: 6px;
}
.step__text { font-size: 14px; color: var(--text-muted); line-height: 1.5; }

/* ===== TESTIMONIALS MARQUEE ===== */
.testimonials { padding: 32px 0; background: var(--white); overflow: hidden; }
.reviews-marquee { position: relative; }
.reviews-marquee__track {
  display: flex; gap: 20px; align-items: stretch;
  flex-wrap: nowrap; justify-content: center;
  max-width: 1280px; margin: 0 auto; padding: 0 20px;
}
.review-card--big {
  flex: 1 1 0; min-width: 0; max-width: 280px;
  background: var(--sage-light); border-radius: 14px;
  padding: 16px; display: flex; flex-direction: column; justify-content: space-between;
}
.review-card__stars { color: var(--color-amber-500); font-size: 15px; letter-spacing: 1.5px; margin-bottom: 8px; }
/* Было → Стало transform block */
.review-card__transform {
  display: flex; flex-direction: column; gap: 6px;
  margin-bottom: 10px;
  padding: 10px 12px; border-radius: 8px;
  background: rgba(255,255,255,0.55);
  border-left: 3px solid var(--sage);
}
.review-card__bylo, .review-card__stalo {
  font-size: 12.5px; line-height: 1.45; color: var(--text-muted);
}
.review-card__stalo { color: var(--text); font-weight: 500; }
.bylo-label { text-transform: uppercase; letter-spacing: 0.5px; font-size: 11px; font-weight: 700; color: var(--text-muted); margin-right: 4px; }
.stalo-label { text-transform: uppercase; letter-spacing: 0.5px; font-size: 11px; font-weight: 700; color: var(--sage); margin-right: 4px; }
.review-card--big .review-card__text { font-size: 13.5px; line-height: 1.55; color: var(--text); margin-bottom: 12px; font-style: italic; }
.review-card__author { display: flex; align-items: center; gap: 10px; }
.review-card__avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--sage); color: #fff;
  font-family: var(--font); font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  overflow: hidden;
  border: 2px solid var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.review-card__avatar img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.review-card__name { font-family: var(--font); font-size: 13px; font-weight: 600; }
.review-card__role { font-size: 11.5px; color: var(--text-muted); }
.reviews-marquee__photo {
  flex-shrink: 0; width: 280px; border-radius: 16px; overflow: hidden;
}
.reviews-marquee__photo img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 767px) {
  .reviews-marquee__track { flex-wrap: wrap; gap: 16px; }
  .review-card--big { flex: 0 0 100%; max-width: 420px; padding: 18px; }
  .review-card--big .review-card__text { font-size: 14px; }
  .review-card__transform { padding: 10px 12px; }
  .review-card__bylo, .review-card__stalo { font-size: 12px; }
  .review-card__avatar { width: 64px; height: 64px; }
  .reviews-marquee__photo { width: 220px; }
}

/* ===== FAQ (compact) ===== */
.faq { padding: 32px 0; background: var(--cream); }
.faq .section__label,
.faq .section__title { text-align: center; }
.faq .section__title { margin-bottom: 24px; }

.faq__list { max-width: 960px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 12px; }
/* last-child full-width rule removed — 8 items fill 2 columns evenly */
.faq-item { background: var(--white); border-radius: var(--radius-md); overflow: hidden; align-self: start; }
.faq-item__question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  gap: 8px; padding: 12px 16px; text-align: left;
  font-family: var(--font); font-size: 14px; font-weight: 600;
}
.faq-item__icon { width: 16px; height: 16px; flex-shrink: 0; transition: transform var(--transition); }
.faq-item--open .faq-item__icon { transform: rotate(45deg); }
.faq-item__answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item--open .faq-item__answer { max-height: 400px; }
.faq-item__answer-inner {
  padding: 0 16px 12px; font-size: 13px; color: var(--text-muted); line-height: 1.55;
}
@media (max-width: 767px) {
  .faq__list { grid-template-columns: 1fr; }
  /* last-child overrides removed */
  .faq-item__question { padding: 10px 14px; font-size: 13px; }
  .faq-item__answer-inner { padding: 0 14px 10px; font-size: 12px; }
}

/* ===== CTA ===== */
.cta-section { padding: 44px 0; background: var(--color-teal-700); text-align: center; }
.cta-section .section__title { color: var(--color-white); margin-bottom: 16px; }
.cta-section .btn--primary {
  background: var(--color-amber-500); color: var(--color-graphite);
  box-shadow: var(--shadow-amber-glow);
  font-weight: 700;
}
.cta-section .btn--primary:hover {
  background: var(--color-amber-300); color: var(--color-graphite);
  transform: translateY(-2px);
}
.cta__desc { font-size: 18px; color: rgba(255,255,255,0.8); margin-bottom: 32px; }

/* ===== FOOTER ===== */
.footer { padding: 60px 0 40px; background: #F2F0ED; color: var(--text); }
.footer__grid {
  display: grid; gap: 40px; margin-bottom: 48px;
}
@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
  }
  .footer__grid > div:nth-child(2),
  .footer__grid > div:nth-child(3) {
    text-align: center;
  }
  .footer__grid > div:nth-child(2) .footer__links,
  .footer__grid > div:nth-child(3) .footer__links { align-items: center; }
  .footer__grid > div:nth-child(2) .footer__heading,
  .footer__grid > div:nth-child(3) .footer__heading { text-align: center; }
}
.footer__brand-logo { height: 112px !important; width: auto; margin-bottom: 16px; }
.footer__download-img { height: 140px; width: auto; object-fit: contain; border-radius: 10px; }
.footer__brand-text { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.footer__heading {
  font-family: var(--font); font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-light); margin-bottom: 20px;
}
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__links a, .footer__links span { font-size: 14px; color: var(--text-muted); font-weight: normal; }
.footer__links a { touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
.footer__links a:hover { color: var(--text); }
@media (hover: none) { .footer__links a:hover { color: var(--text-muted); } }

/* ===== FOOTER SOCIAL ICONS ===== */
.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.07);
  color: #555;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  text-decoration: none;
  flex-shrink: 0;
}
.footer__social-link:hover { background: var(--sage, #00976D); color: #fff; transform: translateY(-2px); }
.footer__social-link svg { display: block; }

.footer__bottom {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 24px; display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer__copy { font-size: 13px; color: var(--text-light); }
.footer__attr a { font-size: 12px; color: var(--text-light); transition: color var(--transition); }
.footer__attr a:hover { color: var(--text); }
.footer__privacy-link { font-size: 13px; color: var(--text-light); transition: color var(--transition); text-decoration: none; }
.footer__privacy-link:hover { color: var(--text); text-decoration: underline; }

/* ===== PHONE SHOWCASE ===== */
.phone-showcase {
  display: flex; justify-content: center; align-items: center;
  gap: 0; position: relative; min-height: 420px;
}
.phone-mock {
  width: 160px; border-radius: 22px; overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.15), 0 4px 12px rgba(0,0,0,0.08);
  border: 4px solid #222; background: #222;
  position: relative; z-index: 1;
  transition: transform 0.4s ease;
}
.phone-mock--front {
  transform: scale(1.08);
  z-index: 3;
}
.phone-mock--side {
  transform: rotate(-5deg) translateX(24px) scale(0.92);
  z-index: 1; opacity: 0.9;
}
.phone-mock--side.phone-mock--right {
  transform: rotate(5deg) translateX(-24px) scale(0.92);
  z-index: 1;
}
.phone-mock img {
  width: 100%; height: auto; display: block;
  border-radius: 22px;
}
@media (max-width: 767px) {
  .phone-showcase { min-height: 300px; }
  .phone-mock { width: 120px; border-radius: 16px; border-width: 3px; }
  .phone-mock img { border-radius: 13px; }
  .phone-mock--side { transform: rotate(-5deg) translateX(12px) scale(0.88); }
  .phone-mock--side.phone-mock--right { transform: rotate(5deg) translateX(-12px) scale(0.88); }
}


/* ===== AYASKINAI ===== */
.skinai {
  padding: 40px 0;
  background: #D6E6EF;
  color: var(--sage-dark);
  overflow: hidden;
}
.skinai__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.skinai__header .section__label { color: var(--sage); }
.skinai__header .section__title { color: var(--sage-dark); }
.skinai__header .section__desc { color: var(--sage-dark); opacity: 0.85; margin-left: auto; margin-right: auto; }

.skinai__showcase {
  max-width: 900px;
  margin: 0 auto 64px;
}
.skinai__gallery {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #c8d8e4;
}
.skinai__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.skinai__slide--active { opacity: 1; }
.skinai__slide img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

.skinai__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.skinai__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(15,51,71,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.skinai__dot--active {
  background: var(--sage);
  transform: scale(1.3);
}
.skinai__dot:hover { background: rgba(15,51,71,0.4); }
.skinai__dot--active:hover { background: var(--sage); }

.skinai__features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.skinai__feature {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(15,51,71,0.08);
  border-radius: var(--radius-lg);
  transition: background 0.3s ease, transform 0.3s ease;
}
.skinai__feature:hover {
  background: rgba(255,255,255,0.7);
  transform: translateY(-4px);
}
.skinai__feature-icon {
  width: 48px; height: 48px;
  margin: 0 auto 16px;
  background: rgba(42,107,138,0.12);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--sage);
}
.skinai__feature-icon svg { width: 24px; height: 24px; }
.skinai__feature-title {
  font-family: var(--font);
  font-size: 18px; font-weight: 600;
  color: var(--sage-dark);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.skinai__feature-text {
  font-size: 14px; line-height: 1.6;
  color: rgba(15,51,71,0.92);
  letter-spacing: 0.005em;
}

@media (max-width: 991px) {
  .skinai__features { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .skinai { padding: 48px 0; }
  .skinai__header { margin-bottom: 40px; }
  .skinai__showcase { margin-bottom: 48px; }
  .skinai__features { grid-template-columns: 1fr; gap: 20px; }
  .skinai__feature { padding: 24px 16px; }
}

/* ===== STORE BADGES ===== */
.store-badge {
  display: inline-block;
  height: 44px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.store-badge svg { height: 44px; width: auto; }
.store-badge:hover { transform: scale(1.05); opacity: 0.9; }
.store-badge--lg svg { height: 52px; }
.store-badges {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.store-badges--center {
  justify-content: center;
  margin-top: 32px;
}
@media (max-width: 767px) {
  .store-badge svg { height: 40px; }
  .store-badge--lg svg { height: 44px; }
}

/* ===== APP SHOWCASE ===== */
.app-showcase {
  padding: 28px 0;
  background: var(--cream);
  overflow: hidden;
}
.app-showcase .section__title { margin-bottom: 16px; }

.app-gallery-wrapper {
  position: relative;
  margin-top: 28px;
}
.app-gallery {
  overflow: hidden;
  padding-bottom: 12px;
}

.app-gallery__track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scrollApps 30s linear infinite;
}
.app-gallery:hover .app-gallery__track { animation-play-state: paused; }
@keyframes scrollApps {
  0% { transform: translateX(0); }
  100% { transform: translateX(-25%); }
}

.app-gallery__item {
  flex-shrink: 0;
  text-align: center;
}

.phone-mock--gallery {
  width: 128px;
  height: 272px;
  transform: none;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
  border: 4px solid #222;
  background: #222;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.phone-mock--gallery:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.18), 0 8px 20px rgba(0,0,0,0.1);
}
.phone-mock--gallery img {
  width: 100%; height: 100%; display: block;
  border-radius: 20px;
  object-fit: cover;
  object-position: top;
}

.app-gallery__caption {
  margin-top: 14px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}



/* Scroll indicator dots */
.app-gallery__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.app-gallery__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(15,51,71,0.15);
  border: none; padding: 0; cursor: pointer;
  transition: all 0.3s ease;
}
.app-gallery__dot--active {
  width: 24px;
  border-radius: 4px;
  background: var(--sage);
}

@media (max-width: 767px) {
  .phone-mock--gallery {
    width: 110px;
    height: 232px;
    border-width: 3px;
    border-radius: 16px;
  }
  .phone-mock--gallery img { border-radius: 13px; }
  .app-gallery__track { gap: 16px; }
  .app-gallery__caption { font-size: 12px; }

}

/* ===== SCIENCE BANNER ===== */
.science-banner {
  padding: 32px 0;
}
.science-banner__inner {
  background: var(--sage);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.science-banner__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.science-banner__img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
}
.science-banner__text h3 {
  font-family: 'Lora', 'Georgia', serif;
  font-size: clamp(1.5rem, 1rem + 2vw, 2.25rem);
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.science-banner__text p {
  font-family: 'Lora', 'Georgia', serif;
  font-size: 16px;
  line-height: 1.8;
  opacity: 0.92;
  max-width: 640px;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
.science-banner__source {
  font-family: var(--font);
  font-size: 12px;
  opacity: 0.55;
  font-style: italic;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .science-banner__inner { padding: 32px 24px; grid-template-columns: 1fr; }
  .science-banner__img { order: -1; }
}

/* ===== AYA PRODUCTS TABS ===== */
.aya-products { padding: 32px 0; }

/* Marquee tabs */
@keyframes ptabs-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ptabs-track { animation: ptabs-scroll 24s linear infinite; }
.ptabs-marquee:hover .ptabs-track { animation-play-state: paused; }
.ptabs-item {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 24px; background: transparent; border: none;
  font-family: var(--font); font-size: 13px; font-weight: 500;
  color: var(--text); cursor: pointer; white-space: nowrap;
  letter-spacing: 0.04em; text-transform: uppercase;
  border-right: 1px solid #e0e0e0; transition: color 0.2s;
  text-decoration: none;
}
.ptabs-item:hover { color: #000; }
.ptabs-item.active { color: var(--sage); font-weight: 700; }
.ptabs-item svg { opacity: 0.5; transition: opacity 0.2s; flex-shrink: 0; }
.ptabs-item:hover svg, .ptabs-item.active svg { opacity: 1; }
.ptabs-dot {
  display: inline-flex; align-items: center;
  padding: 0 20px; color: #ccc; font-size: 18px; user-select: none;
}
.products-panels-wrap { position: relative; }
.products-panel { display: none; }
.products-panel.active { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.products-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
@media (max-width: 767px) {
  .products-split { grid-template-columns: 1fr; gap: 24px; }
  .products-split__img { order: -1; }
  .products-tabs { gap: 6px; }
  .products-tab { font-size: 13px; padding: 8px 14px; }
}
.products-split__text h3 {
  font-family: var(--font); font-size: clamp(1.3rem, 1rem + 1.5vw, 1.8rem);
  font-weight: 600; margin-bottom: 12px; color: var(--text);
}
.products-split__text p {
  font-size: 16px; line-height: 1.7; color: var(--text-muted); margin-bottom: 12px;
}
.products-split__img img, .products-split__img video {
  width: 100%; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg);
}
.products-split__img--phone {
  display: flex; justify-content: center;
}
.products-split__img--phone img {
  width: auto; max-width: 260px; max-height: 420px;
  margin: 0 auto;
}
.products-features {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px;
}
.products-features span {
  font-size: 13px; font-weight: 600; padding: 6px 14px;
  background: var(--sage-light); color: var(--sage); border-radius: var(--radius-pill);
}
.products-slogan {
  font-family: var(--font); font-size: 15px; font-weight: 600;
  color: var(--sage); margin-top: 16px;
}
.products-slogan--lg {
  font-size: 18px;
  margin-top: 24px;
}

/* AyaGlow gallery */
.glow-gallery {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.glow-gallery__track {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;
}
.glow-gallery__slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
  border-radius: 0;
  box-shadow: none;
}
.glow-gallery__slide.active {
  opacity: 1;
}
.glow-gallery__dots {
  display: flex; justify-content: center; gap: 8px;
  padding: 12px 0;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
  position: absolute; bottom: 0; left: 0; right: 0;
}
.glow-dot {
  width: 10px; height: 10px;
  border-radius: 50%; border: none;
  background: var(--sage-light); cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.glow-dot.active {
  background: var(--sage);
  transform: scale(1.2);
}

/* ===== DARK MODE ===== */
[data-theme="dark"] {
  --white: #1A1A1A;
  --cream: #222222;
  --sand: #0C1F3F;
  --sage-light: #2A3532;
  --text: #D6E6EF;
  --text-muted: #A09890;
  --text-light: #4A5568;
  --border: #1a2840;
}
[data-theme="dark"] body { background: #1A1A1A; }
[data-theme="dark"] .header {
  background: rgba(26,26,26,0.92);
}
[data-theme="dark"] .step { background: #222222; }
[data-theme="dark"] .review-card--big { background: #1a2e3a; }
[data-theme="dark"] .review-card__transform { background: rgba(0,0,0,0.25); }
[data-theme="dark"] .faq-item { background: #222222; }
[data-theme="dark"] .contact__form { background: #222222; }
[data-theme="dark"] .form__input,
[data-theme="dark"] .form__textarea { background: #1A1A1A; color: #D6E6EF; border-color: #1a2840; }

[data-theme="dark"] .btn--outline { border-color: #444; color: #D6E6EF; }
[data-theme="dark"] .btn--outline:hover { border-color: #D6E6EF; }
[data-theme="dark"] .btn--white { background: #0C1F3F; color: #D6E6EF; }
[data-theme="dark"] .btn--white:hover { background: #1a2840; }
[data-theme="dark"] .lang-btn { color: #A09890; }
[data-theme="dark"] .lang-btn.active { background: #1a2840; color: #D6E6EF; box-shadow: none; }
[data-theme="dark"] .lang-switch { background: #0C1F3F; }
[data-theme="dark"] .mobile-nav { background: #1A1A1A; }
[data-theme="dark"] .about-mission__inner { background: #222222; }
[data-theme="dark"] .about-team-section { background: #2A3532; }
[data-theme="dark"] .about-team__highlight { color: #2A6B8A; border-color: #2A6B8A; }
[data-theme="dark"] .about-what__item { background: #222222; }
[data-theme="dark"] .about-why__inner { background: #2A3532; }
[data-theme="dark"] .science-banner__inner { background: #2A3532; }
[data-theme="dark"] .cat-card:nth-child(1) { background: #2A3532; }
[data-theme="dark"] .cat-card:nth-child(2) { background: #0C1F3F; }
[data-theme="dark"] .cat-card:nth-child(3) { background: #322826; }
[data-theme="dark"] .cat-card:nth-child(4) { background: #2A2C24; }
[data-theme="dark"] .cat-card:nth-child(5) { background: #262838; }
[data-theme="dark"] .cat-card:nth-child(6) { background: #302826; }

/* ===== ABOUT PAGES (legacy) ===== */
.about-full { padding: 0; }
.about-hero { padding: 140px 0 40px; }
.about-mission { padding: 0 0 60px; }
.about-mission__inner {
  max-width: 680px; margin: 0 auto; text-align: center;
  background: var(--cream); border-radius: var(--radius-xl); padding: 48px 40px;
}
.about-mission__icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--sage-light); color: var(--sage);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.about-mission__inner h3 {
  font-family: var(--font); font-size: 22px; font-weight: 600;
  margin-bottom: 16px; color: var(--text);
}
.about-mission__inner p {
  font-size: 17px; color: var(--text-muted);
  line-height: 1.7; max-width: 540px; margin: 0 auto;
}
.about-team-section { padding: 60px 0; background: var(--sage-light); }
.about-team__emoji { font-size: 36px; margin-bottom: 12px; }
.about-team__heading {
  font-family: var(--font); font-size: clamp(1.5rem, 1rem + 2vw, 2.25rem);
  font-weight: 500; line-height: 1.15; margin-bottom: 20px;
}
.about-team__text { font-size: 16px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.about-team__highlight {
  font-size: 17px; font-weight: 600; color: var(--sage-dark); line-height: 1.6;
  margin-top: 24px; padding-top: 20px; border-top: 2px solid var(--sage);
}
.about-what { padding: 80px 0; }
.about-what__heading {
  font-family: var(--font); font-size: clamp(1.5rem, 1rem + 2vw, 2.25rem);
  font-weight: 500; line-height: 1.15; margin-bottom: 40px;
}
.about-what__grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.about-what__grid .about-what__item { flex: 0 1 calc(33.333% - 14px); min-width: 260px; }
.about-what__item {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--cream); border-radius: var(--radius-lg); padding: 24px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.about-what__item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.about-what__icon {
  width: 44px; height: 44px; border-radius: var(--radius-md);
  background: var(--sage-light); color: var(--sage);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.about-what__icon svg { width: 22px; height: 22px; }
.about-what__item span { font-size: 16px; font-weight: 500; color: var(--text); padding-top: 10px; }
.about-why { padding: 0 0 80px; }
.about-why__inner {
  background: var(--sage); border-radius: var(--radius-xl);
  padding: 48px 40px; color: var(--white); text-align: center;
  max-width: 800px; margin: 0 auto;
}
.about-why__inner h3 { font-family: var(--font); font-size: 22px; font-weight: 600; margin-bottom: 16px; }
.about-why__inner p { font-size: 17px; line-height: 1.7; opacity: 0.9; max-width: 580px; margin: 0 auto 16px; }
.about-why__tagline {
  font-size: 20px; font-weight: 600; opacity: 1; margin-top: 24px;
  font-family: var(--font); letter-spacing: -0.01em;
}
@media (max-width: 767px) {
  .about-mission__inner { padding: 32px 24px; }
  .about-team-section { padding: 48px 0; }
  .about-what__grid .about-what__item { flex: 1 1 100%; min-width: 0; }
  .about-why__inner { padding: 32px 24px; }
}

/* =============================================
   SCROLL REVEAL ANIMATION SYSTEM
   ============================================= */
.reveal {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal--up { transform: translateY(40px); }
.reveal--scale { transform: scale(0.92); }
.reveal--left { transform: translateX(-40px); }
.reveal--right { transform: translateX(40px); }

.reveal.revealed {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Stagger children */
[data-reveal-stagger] > .reveal:nth-child(1) { transition-delay: 0ms; }
[data-reveal-stagger] > .reveal:nth-child(2) { transition-delay: 80ms; }
[data-reveal-stagger] > .reveal:nth-child(3) { transition-delay: 160ms; }
[data-reveal-stagger] > .reveal:nth-child(4) { transition-delay: 240ms; }
[data-reveal-stagger] > .reveal:nth-child(5) { transition-delay: 320ms; }
[data-reveal-stagger] > .reveal:nth-child(6) { transition-delay: 400ms; }

/* Legacy fade-in for other pages */
.fade-in {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal, .fade-in {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero-hims__slot { transition: none !important; }
}

/* ===== AUTH TRIGGER & DROPDOWN ===== */
.auth-trigger {
  position: relative;
  display: inline-block;
}
@media (max-width: 899px) { .auth-trigger { display: none !important; } }
.auth-dropdown {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 48px rgba(0,0,0,0.14), 0 0 0 1px rgba(0,0,0,0.04);
  padding: 8px;
  min-width: 220px;
  width: max-content;
  max-width: 360px;
  opacity: 0; pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.22s cubic-bezier(0.16,1,0.3,1), transform 0.22s cubic-bezier(0.16,1,0.3,1), min-width 0.25s ease;
  z-index: 300;
  overflow: hidden;
}
.auth-dropdown--open {
  opacity: 1; pointer-events: all; transform: translateY(0);
}
/* Expanded state when showing form */
.auth-dropdown--form {
  min-width: 320px;
  padding: 20px;
}
.auth-dropdown__btn {
  display: block; width: 100%;
  text-align: left;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 15px; font-weight: 500;
  color: var(--text);
  background: none;
  border-radius: var(--radius-sm);
  cursor: pointer; transition: background 0.15s;
}
.auth-dropdown__btn:hover {
  background: var(--sage-light);
}
.auth-dd-back {
  color: var(--text-muted); font-size: 13px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px; margin-bottom: 2px;
}
.auth-dd-roles-header {
  padding: 10px 18px 6px;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--text-muted);
}
.auth-mobile-roles {
  display: flex; flex-direction: column;
}
.auth-mobile-roles .auth-dropdown__btn {
  display: block; width: 100%; text-align: left;
  padding: 12px 0; border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.auth-mobile-roles .auth-dropdown__btn:last-child { border-bottom: none; }
.auth-step__role-label {
  font-size: 13px; color: var(--sage); font-weight: 600;
  margin-bottom: 12px;
}
/* Auth dropdown tabs (Войти / Зарегистрироваться) */
.auth-dd-tabs {
  display: flex; gap: 4px;
  padding: 6px 6px 4px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
}
.auth-dd-tab {
  flex: 1; padding: 7px 10px;
  font-family: var(--font); font-size: 13px; font-weight: 600;
  color: var(--text-muted);
  background: none; border: none; border-radius: var(--radius-sm);
  cursor: pointer; transition: background 0.15s, color 0.15s;
}
.auth-dd-tab:hover { background: var(--sage-light); color: var(--sage); }
.auth-dd-tab--active { background: var(--sage-light); color: var(--sage); }

/* Inline form inside dropdown */
.auth-dd-form {
  display: none;
  animation: authFadeSlide 0.22s cubic-bezier(0.16,1,0.3,1);
}
.auth-dd-form--active { display: block; }
@keyframes authFadeSlide {
  from { opacity: 0; transform: translateX(10px); }
  to { opacity: 1; transform: translateX(0); }
}
.auth-dd-form__header {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 14px;
}
.auth-dd-form__back {
  background: none; border: none; cursor: pointer;
  color: var(--text-muted); padding: 0 4px 0 0;
  display: flex; align-items: center; transition: color 0.15s;
}
.auth-dd-form__back:hover { color: var(--sage); }
.auth-dd-form__back svg { width: 16px; height: 16px; }
.auth-dd-form__title {
  font-family: var(--font); font-size: 15px; font-weight: 700;
  color: var(--text); flex: 1;
}
.auth-dd-form__role-tag {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--sage);
  background: var(--sage-light); border-radius: 100px;
  padding: 2px 8px;
}
.auth-dd-separator { height: 1px; background: var(--border); margin: 0 0 14px; }

/* ===== AUTH DROPDOWN PANEL ===== */
.auth-overlay {
  position: fixed; inset: 0; z-index: 1001;
  background: transparent;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s ease;
}
.auth-overlay--open {
  opacity: 1; pointer-events: all;
}
.auth-modal {
  position: fixed;
  top: 72px; right: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  width: 380px;
  max-height: calc(100vh - 96px);
  overflow-y: auto;
  box-shadow: 0 12px 48px rgba(0,0,0,0.14), 0 0 0 1px rgba(0,0,0,0.04);
  transform: translateY(-8px);
  opacity: 0;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
  z-index: 1002;
  pointer-events: none;
}
.auth-overlay--open .auth-modal {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.auth-modal__close {
  position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--cream); color: var(--text);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s; z-index: 2;
}
.auth-modal__close:hover { background: var(--sand); }

/* Auth steps */
.auth-step {
  display: none;
  animation: authFadeIn 0.25s ease;
}
.auth-step--active { display: block; }
@keyframes authFadeIn {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: translateX(0); }
}
.auth-step__title {
  font-family: var(--font);
  font-size: 1.15rem;
  font-weight: 600; line-height: 1.25;
  text-align: center; margin-bottom: 14px;
}
.auth-step__subtitle {
  text-align: center; font-size: 13px;
  color: var(--text-muted); margin-bottom: 14px;
}

/* Role grid */
.auth-roles {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  margin-bottom: 16px;
}
.auth-role {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 14px 10px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer; transition: border-color 0.2s, background 0.2s;
  text-align: center;
}
.auth-role:hover { border-color: var(--sage); background: var(--sage-light); }
.auth-role--selected { border-color: var(--sage); background: var(--sage-light); }
.auth-role__icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--sage-light); color: var(--sage);
  display: flex; align-items: center; justify-content: center;
}
.auth-role--selected .auth-role__icon { background: var(--sage); color: var(--white); }
.auth-role__icon svg { width: 18px; height: 18px; }
.auth-role__label {
  font-family: var(--font); font-size: 12px; font-weight: 600;
}

/* Auth form fields */
.auth-field {
  margin-bottom: 10px;
}
.auth-field label {
  display: block; font-size: 12px; font-weight: 600;
  color: var(--text-muted); margin-bottom: 4px;
  font-family: var(--font);
}
.auth-input {
  width: 100%; padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 14px; color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.auth-input:focus {
  outline: none; border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(92,127,123,0.1);
}
.auth-input::placeholder { color: var(--text-light); }
.auth-select {
  width: 100%; padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 14px; color: var(--text);
  -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239B9490' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 40px;
}

/* Auth buttons */
.auth-btn {
  width: 100%; padding: 11px 20px;
  font-family: var(--font); font-size: 14px; font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer; transition: background 0.2s, transform 0.1s;
}
.auth-btn:active { transform: scale(0.98); }
.auth-btn--primary {
  background: var(--color-coral-500); color: var(--color-white);
}
.auth-btn--primary:hover { background: var(--color-coral-600); }
.auth-btn--back {
  background: none; color: var(--text);
  font-size: 13px; padding: 8px 0;
  width: auto; margin-top: 4px;
}
.auth-btn--back:hover { color: var(--sage); }

/* SMS code input */
.auth-code-row {
  display: flex; gap: 8px; justify-content: center; margin-bottom: 14px;
}
.auth-code-input {
  width: 44px; height: 48px;
  text-align: center; font-size: 20px; font-weight: 600;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font);
  transition: border-color 0.2s;
}
.auth-code-input:focus {
  outline: none; border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(92,127,123,0.1);
}

/* Success */
.auth-success {
  text-align: center; padding: 16px 0;
}
.auth-success svg {
  width: 48px; height: 48px; color: var(--sage); margin-bottom: 12px;
}
.auth-success h3 {
  font-family: var(--font); font-size: 18px; font-weight: 600; margin-bottom: 6px;
}
.auth-success p {
  font-size: 13px; color: var(--text-muted);
}

@media (max-width: 480px) {
  .auth-modal {
    position: fixed; top: 0; right: 0; left: 0;
    width: 100%; max-height: 100vh;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }
  .auth-roles { gap: 6px; }
  .auth-role { padding: 12px 8px; }
  .hero-hims { padding: 96px 0 40px; }
  .hero-hims__slot-wrapper { font-size: clamp(2.2rem, 8vw, 3rem); }
  .hero-hims__tagline { font-size: clamp(2rem, 7vw, 2.5rem); }
}

/* ===== ACCENT HIGHLIGHT FOR HEADINGS ===== */
.hl-accent {
  color: var(--color-coral-500);
}
.cta-section .hl-accent {
  color: var(--color-amber-300);
}
.hims-section--sage .hl-accent {
  color: var(--color-amber-300);
}

/* ===== MOBILE RESPONSIVE (consolidated) ===== */
@media (max-width: 767px) {
  /* Hero */
  .hero-hims__tagline { font-size: clamp(1.8rem, 5vw, 2.2rem); }
  .hero-hims__trust { font-size: 16px; margin: 16px 0 32px; }

  /* Sticky buttons */
  .sticky-cta {
    right: 50%; bottom: 16px;
    transform: translateX(50%) translateY(20px);
    font-size: 13px; padding: 12px 20px;
  }
  .sticky-cta.visible { transform: translateX(50%) translateY(0); }
  .sticky-cta:hover { transform: translateX(50%) translateY(-2px); }

  /* Reviews marquee mobile */
  .testimonials { padding: 20px 0; }

  /* Footer grid: brand full-width, eco+company side by side, contacts centered */
  .footer__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;
    margin-bottom: 32px;
  }
  .footer__grid > div:first-child { grid-column: 1 / -1; }
  .footer__grid > div:nth-child(2) { grid-column: 1; text-align: center; }
  .footer__grid > div:nth-child(3) { grid-column: 2; text-align: center; }
  .footer__grid > div:nth-child(2) .footer__links,
  .footer__grid > div:nth-child(3) .footer__links { align-items: center; }
  .footer__grid > div:nth-child(2) .footer__heading,
  .footer__grid > div:nth-child(3) .footer__heading { text-align: center; }
  .footer__grid > div:nth-child(4) { grid-column: 1 / -1; text-align: center; }
  .footer__grid > div:nth-child(4) .footer__links { align-items: center; }
  .footer__grid > div:nth-child(4) .footer__heading { text-align: center; }

  /* Footer brand row */
  .footer__brand-row {
    flex-direction: column; align-items: center; gap: 0;
    position: static; min-height: unset;
  }
  .footer__download-img { width: 70px; }
  .footer__brand-info {
    width: 100%;
    display: flex; flex-direction: column; align-items: center;
    text-align: center;
  }
  .footer__brand-row .footer__brand-info {
    position: static; left: auto; transform: none; top: auto;
    width: 100%;
  }
  .footer__brand-row .footer__brand-logo { height: 164px; }
  .footer__brand-row .footer__brand-text { font-size: 13px; line-height: 1.5; }
}

/* ===== AYA AI CHAT ===== */
.aya-chat-section { padding: 32px 0; }
.aya-chat {
  max-width: 600px;
  margin: 20px auto 0;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.aya-chat__messages {
  height: 220px;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.aya-chat__msg {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  max-width: 85%;
}
.aya-chat__msg--bot { align-self: flex-start; }
.aya-chat__msg--user { align-self: flex-end; flex-direction: row-reverse; }
.aya-chat__avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--sage-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.aya-chat__msg--user .aya-chat__avatar {
  background: var(--color-coral-500); color: #fff; font-size: 13px; font-weight: 700;
}
.aya-chat__bubble {
  background: var(--cream);
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text);
}
.aya-chat__msg--user .aya-chat__bubble {
  background: var(--sage);
  color: #fff;
  border-radius: 4px;
}
.aya-chat__bubble--typing {
  display: flex; gap: 4px; align-items: center; padding: 14px 20px; border-radius: 4px;
}
.aya-chat__bubble--typing span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--sage);
  animation: chatDot 1.2s infinite;
}
.aya-chat__bubble--typing span:nth-child(2) { animation-delay: 0.2s; }
.aya-chat__bubble--typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes chatDot {
  0%, 60%, 100% { opacity: 0.3; transform: scale(0.8); }
  30% { opacity: 1; transform: scale(1.1); }
}
.aya-chat__input {
  display: flex;
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  gap: 10px;
  background: var(--white);
}
.aya-chat__input input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font);
  font-size: 15px;
  background: transparent;
  color: var(--text);
}
.aya-chat__input input::placeholder { color: var(--text-light); }
.aya-chat__input button {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--sage);
  color: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, transform 0.3s;
  flex-shrink: 0;
}
.aya-chat__input button:hover { background: var(--sage-dark); transform: scale(1.05); }
.aya-chat__input button:disabled { opacity: 0.5; cursor: not-allowed; }
.aya-chat__input button svg { width: 18px; height: 18px; }
@media (max-width: 767px) {
  .aya-chat__messages { height: 200px; padding: 12px; }
  .aya-chat__msg { max-width: 92%; }
  .aya-chat { max-width: 100%; }
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  15% { transform: scale(1.25); }
  30% { transform: scale(1); }
  45% { transform: scale(1.15); }
  60% { transform: scale(1); }
}

/* Transformation stories mobile */
@media (max-width: 767px) {
  .problem-solution + .testimonials + section [style*="grid-template-columns: 1fr 1fr 1fr"],
  section [style*="grid-template-columns:1fr 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

/* ===== Partners strip ===== */
.partners-strip {
  padding: 32px 0 28px;
  background: var(--white);
  border-top: 1px solid var(--border);
  overflow: hidden;
}
[data-theme="dark"] .partners-strip {
  background: #1A1A1A;
  border-top-color: #2a2a2a;
}
.partners-strip__label {
  text-align: center;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.partners-marquee {
  overflow: hidden;
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.partners-marquee__track {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: partnersScroll 35s linear infinite;
  width: max-content;
}
.partners-marquee__item {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 600;
  color: var(--sage);
  letter-spacing: 0.3px;
  flex-shrink: 0;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.partners-marquee__item:hover { opacity: 1; }
.partners-marquee__dot {
  color: var(--text-muted);
  font-size: 18px;
  opacity: 0.4;
  flex-shrink: 0;
}
@keyframes partnersScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 767px) {
  .partners-strip { padding: 24px 0 20px; }
  .partners-marquee__track { gap: 22px; }
  .partners-marquee__item { font-size: 15px; }
  .partners-marquee__dot { font-size: 15px; }
}

/* =============================================
   CTA SYSTEM — unified button styles
   ============================================= */

/* === PRIMARY CTA (Coral) === */
.cta-primary,
.btn.btn--primary {
  background: var(--color-coral-500);
  color: var(--color-white);
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 600;
  border: none;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cta-primary:hover,
.btn.btn--primary:hover {
  background: var(--color-coral-600);
  color: var(--color-white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-1px);
}
.cta-primary:active,
.btn.btn--primary:active {
  background: var(--color-coral-700);
  transform: translateY(0);
}
.cta-primary:disabled,
.btn.btn--primary:disabled {
  background: var(--color-stone-300);
  color: var(--color-stone-500);
  cursor: not-allowed;
  box-shadow: none;
}

/* === SECONDARY CTA (Outline) === */
.cta-secondary {
  background: transparent;
  color: var(--color-graphite);
  padding: 14px 30px;
  border: 2px solid var(--color-graphite);
  border-radius: 12px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cta-secondary:hover {
  background: var(--color-graphite);
  color: var(--color-cream);
}

/* === B2B PRIMARY (Teal) — only on partner page === */
.cta-b2b-primary {
  background: var(--color-teal-500);
  color: var(--color-white);
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 600;
  border: none;
  box-shadow: var(--shadow-md);
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.cta-b2b-primary:hover {
  background: var(--color-teal-600);
  color: var(--color-white);
  box-shadow: var(--shadow-lg);
}

/* === TERTIARY (Text link) === */
.cta-tertiary {
  color: var(--color-coral-700);
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
}
.cta-tertiary:hover {
  color: var(--color-coral-500);
}

/* === ICON BUTTON === */
.btn-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-cream);
  border: 1px solid var(--color-stone-300);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.btn-icon:hover {
  background: var(--color-stone-100);
}

/* === STICKY FLOATING CTA === */
.cta-sticky {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--color-coral-500);
  color: white;
  padding: 14px 24px;
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
  z-index: 100;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cta-sticky:hover {
  background: var(--color-coral-600);
  color: white;
}
@media (max-width: 768px) {
  .cta-sticky {
    bottom: 16px;
    right: 16px;
    left: 16px;
    border-radius: 12px;
    text-align: center;
    justify-content: center;
  }
}

/* === FOCUS STATES (accessibility) === */
.cta-primary:focus-visible,
.cta-secondary:focus-visible,
.cta-b2b-primary:focus-visible,
.cta-tertiary:focus-visible,
.btn.btn--primary:focus-visible {
  outline: 3px solid var(--color-amber-500);
  outline-offset: 2px;
}

/* === CTA-section primary stays amber gold (energy/longevity context) === */
.cta-section .btn.btn--primary,
.cta-section .cta-primary {
  background: var(--color-amber-500);
  color: var(--color-graphite);
  box-shadow: var(--shadow-amber-glow);
  font-weight: 700;
}
.cta-section .btn.btn--primary:hover,
.cta-section .cta-primary:hover {
  background: var(--color-amber-300);
  color: var(--color-graphite);
  transform: translateY(-2px);
}

/* === CTA size variants === */
.btn.btn--primary.btn--lg,
.cta-b2b-primary.btn--lg,
.cta-primary.btn--lg { padding: 18px 40px; font-size: 18px; }
.btn.btn--primary.btn--md,
.cta-b2b-primary.btn--md,
.cta-primary.btn--md { padding: 14px 28px; font-size: 16px; }
.btn.btn--primary.btn--sm,
.cta-primary.btn--sm { padding: 10px 20px; font-size: 14px; }

/* === Hero CTA group (4.1) === */
.hero-cta-group {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 768px) {
  .hero-cta-group {
    flex-direction: row;
    gap: 6px;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 28px;
  }
  .hero-cta-group .cta-primary,
  .hero-cta-group .cta-secondary {
    width: auto;
    flex: 0 1 auto;
    padding: 7px 12px;
    font-size: 11px;
    line-height: 1.2;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(229,83,61,0.18);
  }
  .hero-cta-group .cta-secondary {
    padding: 6px 11px;
    border-width: 1.5px;
    box-shadow: none;
  }
  .hero-cta-group a.cta-primary,
  .hero-cta-group a.cta-secondary {
    min-height: 0;
  }
}

/* === Sticky CTA B2B variant (4.3) === */
.cta-sticky-b2b {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--color-teal-500);
  color: white;
  padding: 14px 24px;
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
  z-index: 100;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cta-sticky-b2b:hover { background: var(--color-teal-600); color: white; }
@media (max-width: 768px) {
  .cta-sticky-b2b {
    bottom: 16px;
    right: 16px;
    left: 16px;
    border-radius: 12px;
    text-align: center;
    justify-content: center;
  }
}

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

/* === Tap targets — ensure 44x44 minimum on touch (excludes fixed-aspect SVG badges) === */
@media (max-width: 768px) {
  button, a.btn, a.cta-primary, a.cta-secondary, a.cta-b2b-primary, a.cta-b2b-secondary,
  .auth-btn, .lang-btn, .product-pill {
    min-height: 44px;
  }
}

/* === Footer mini store buttons (4.4) === */
.footer__store-mini { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.store-mini {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: var(--color-graphite);
  color: var(--color-cream);
  border-radius: 8px;
  font-size: 13px; font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
}
.store-mini:hover { background: var(--color-stone-700); color: var(--color-white); }
.store-mini svg { flex-shrink: 0; }


/* === B2B Secondary (Outline teal) — pairs with cta-b2b-primary === */
.cta-b2b-secondary {
  background: transparent;
  color: var(--color-teal-700);
  padding: 14px 30px;
  border: 2px solid var(--color-teal-500);
  border-radius: 12px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cta-b2b-secondary:hover {
  background: var(--color-teal-500);
  color: var(--color-white);
}
.cta-b2b-secondary:focus-visible {
  outline: 3px solid var(--color-amber-500);
  outline-offset: 2px;
}

/* ===== PRICING ===== */
.pricing {
  padding: 64px 0;
  background: linear-gradient(180deg, var(--cream, #FAF8F5) 0%, #fff 100%);
}
.pricing .section__label { text-align: center; color: var(--coral, #E5533D); margin-bottom: 10px; }
.pricing .section__title { text-align: center; margin-bottom: 10px; }
.pricing__sub { text-align: center; color: var(--text-muted, #6b7066); font-size: 14px; margin: 0 auto 36px; max-width: 560px; }
.pricing__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; align-items: stretch; max-width: 1180px; margin: 0 auto; }
.pricing-card { position: relative; background: #fff; border: 1.5px solid var(--stone-100, #ECE9E2); border-radius: 14px; padding: 22px 18px; display: flex; flex-direction: column; transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; }
.pricing-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg, 0 20px 40px rgba(31,28,25,0.10)); border-color: var(--stone-300, #D6D2C8); }
.pricing-card__badge { position: absolute; top: -10px; left: 50%; transform: translateX(-50%); background: var(--coral, #E5533D); color: #fff; font-size: 9.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; white-space: nowrap; box-shadow: 0 4px 12px rgba(229,83,61,0.30); }
.pricing-card__name { font-size: 11px; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase; margin-bottom: 10px; }
.pricing-card__price { font-family: var(--font); font-size: 28px; font-weight: 800; line-height: 1; letter-spacing: -0.02em; color: var(--graphite, #1F1C19); margin-bottom: 4px; }
.pricing-card__currency { font-size: 19px; font-weight: 700; margin-right: 2px; }
.pricing-card__unit { font-size: 17px; font-weight: 700; margin-left: 2px; }
.pricing-card__period { font-size: 11px; color: var(--text-muted, #6b7066); margin-bottom: 16px; line-height: 1.4; }
.pricing-card__features { list-style: none; padding: 0; margin: 0 0 16px; flex-grow: 1; }
.pricing-card__features li { position: relative; padding-left: 18px; margin-bottom: 8px; font-size: 12px; line-height: 1.45; color: var(--text, #2b2a26); }
.pricing-card__features li::before { content: "\2713"; position: absolute; left: 0; top: 0; font-weight: 700; font-size: 12px; }
.pricing-card__footer { border-top: 1px solid var(--stone-100, #ECE9E2); padding-top: 12px; margin-top: auto; }
.pricing-card__audience { font-size: 12px; font-weight: 700; margin-bottom: 4px; line-height: 1.35; }
.pricing-card__rewards { font-size: 10.5px; color: var(--text-muted, #6b7066); font-style: italic; line-height: 1.4; margin-bottom: 12px; }
.pricing-card__cta { display: block; margin-top: 12px; padding: 10px 14px; background: var(--coral, #E5533D); color: #fff; font-size: 13px; font-weight: 600; text-align: center; text-decoration: none; border-radius: 8px; transition: background 0.2s ease, transform 0.15s ease; box-shadow: 0 2px 8px rgba(229,83,61,0.20); }
.pricing-card__cta:hover { background: var(--coral-600, #C7412C); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(229,83,61,0.30); }
.pricing-card__cta:focus-visible { outline: 3px solid var(--color-amber-500, #E8A93A); outline-offset: 2px; }
.pricing-card--basic .pricing-card__name { color: var(--graphite, #1F1C19); opacity: 0.55; }
.pricing-card--basic .pricing-card__features li::before { color: var(--graphite, #1F1C19); opacity: 0.7; }
.pricing-card--basic .pricing-card__audience { color: var(--graphite, #1F1C19); }
.pricing-card--care { border-color: rgba(229,83,61,0.25); }
.pricing-card--care .pricing-card__name { color: var(--coral, #E5533D); }
.pricing-card--care .pricing-card__features li::before { color: var(--coral, #E5533D); }
.pricing-card--care .pricing-card__audience { color: var(--coral, #E5533D); }
.pricing-card--prime { border-color: var(--sage, #1A6B6B); border-width: 2px; box-shadow: 0 12px 36px rgba(26,107,107,0.12); transform: scale(1.02); }
.pricing-card--prime:hover { transform: translateY(-3px) scale(1.02); }
.pricing-card--prime .pricing-card__name { color: var(--sage, #1A6B6B); }
.pricing-card--prime .pricing-card__features li::before { color: var(--sage, #1A6B6B); }
.pricing-card--prime .pricing-card__audience { color: var(--sage, #1A6B6B); }
.pricing-card--prime .pricing-card__badge { background: var(--sage, #1A6B6B); box-shadow: 0 4px 12px rgba(26,107,107,0.30); }
.pricing-card--family { border-color: rgba(232,169,58,0.30); }
.pricing-card--family .pricing-card__name { color: #B8821C; }
.pricing-card--family .pricing-card__features li::before { color: var(--color-amber-500, #E8A93A); }
.pricing-card--family .pricing-card__audience { color: #B8821C; }
@media (max-width: 1100px) { .pricing__grid { grid-template-columns: repeat(2, 1fr); } .pricing-card--prime { transform: none; } .pricing-card--prime:hover { transform: translateY(-3px); } }
@media (max-width: 600px) { .pricing { padding: 48px 0; } .pricing__grid { grid-template-columns: 1fr; gap: 22px; max-width: 360px; } .pricing-card { padding: 20px 16px; } }

/* ========================================================
   DESIGN POLISH — Motion + Taste + Typography (Zodiak)
   ======================================================== */

/* === 1. TYPOGRAPHY — Zodiak display font === */
:root {
  --font-display: 'Zodiak', 'Georgia', serif;
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* All major headings → Zodiak */
h1, h2,
.hero-hims__slot-wrapper,
.hero-hims__tagline,
.section-title,
.hero-title,
.hims-feature__side h2,
.products-split__text h3,
.skinai-hero h2,
.science-banner__text h3,
.about-mission__inner h3,
.about-why__inner h3,
.faq-item__question,
.pricing-h2,
[class*="__title"]:not(button),
[class*="-title"]:not(button) {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

/* h3 section headings — Zodiak with slightly tighter tracking */
h3 {
  font-family: var(--font-display);
  letter-spacing: -0.015em;
}

/* === 2. MOTION — Panels fade (opacity + clip, no CLS) === */
.products-panel {
  display: none;
  opacity: 0;
}
.products-panel.active {
  display: block;
  animation: panel-reveal 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes panel-reveal {
  from {
    opacity: 0;
    clip-path: inset(8px 0 0 0);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

/* === 3. BUTTONS — tactile :active feedback === */
.btn {
  transition:
    background var(--transition-interactive),
    color var(--transition-interactive),
    box-shadow var(--transition-interactive),
    transform var(--transition-interactive);
}
.btn:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: none !important;
}
.btn--primary:active { background: var(--color-coral-700); }
.btn--secondary:active { background: var(--color-teal-700); }

/* Sticky CTA tactile */
.sticky-cta:active {
  transform: translateY(0) scale(0.97);
  box-shadow: var(--shadow-sm) !important;
}

/* === Products tabs pill style === */
.products-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 32px;
}
.products-tab {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1.5px solid #d0d0d0;
  background: transparent;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s, font-weight 0.2s;
}
.products-tab:hover {
  border-color: #aaa;
  color: var(--text);
}
.products-tab.active {
  border-color: var(--sage);
  color: var(--sage);
  font-weight: 600;
  background: transparent;
}

/* === 4. TABS — refined active indicator === */
.products-tab {
  position: relative;
  transition:
    border-color var(--transition-interactive),
    color var(--transition-interactive),
    background var(--transition-interactive);
}
.products-tab:hover {
  transform: none;
  box-shadow: none;
}
.products-tab:active {
  transform: scale(0.97);
}
.products-tab.active {
  background: transparent;
  color: var(--sage);
  border-color: var(--sage);
  box-shadow: none;
  transform: translateY(0);
}

/* === 5. PILLS — smoother hover === */
.product-pill {
  transition:
    box-shadow var(--transition-interactive),
    transform var(--transition-interactive),
    background var(--transition-interactive);
}
.product-pill:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background: var(--white);
}
.product-pill:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

/* === 6. NAV LINKS — underline slide-in === */
.nav__link {
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--sage);
  border-radius: 2px;
  transition: width var(--transition-interactive);
}
.nav__link:hover::after { width: 100%; }

/* === 7. CARDS — consistent lift on hover === */
.hero-cat:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.hims-split__feat:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* === 8. PREFERS REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
