/* ---------------------------------------------------------
   ASCEND PEPTIDES — CLEAN PREMIUM THEME (STYLE B)
   Unified styles for Home, Shop, About, Contact
--------------------------------------------------------- */

:root {
  --blue-dark: #0d1a2d;
  --blue: #1d4ed8;
  --blue-light: #7da9ff;
  --bg: #f4f6fa;
  --card-bg: #ffffff;
  --text-main: #0d1a2d;
  --text-muted: #5b6275;
  --border-soft: #e1e4f0;
  --accent: #4e7cff;
  --danger: #b42318;
  --radius-md: 18px;
  --radius-lg: 24px;
  --shadow-soft: 0 16px 40px rgba(5, 22, 60, 0.14);
  --promo-banner-height: 0px;
  --serif: "Georgia", "Times New Roman", serif;
  --sans: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--sans);
  background: #ffffff;
  color: var(--text-main);
  line-height: 1.7;
}

body.nav-open {
  overflow: hidden;
}

html {
  background: #ffffff;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}

.container.narrow {
  max-width: 960px;
}

/* ---------------------------------------------------------
   HEADER
--------------------------------------------------------- */

.promo-banner {
  display: none;
}

.promo-popup {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1200;
  background: linear-gradient(90deg, #0d1a2d 0%, #1d4ed8 100%);
  color: #ffffff;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(5, 22, 60, 0.3);
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 520px;
  width: calc(100% - 32px);
  animation: promoSlideUp 0.4s ease;
}

.promo-popup[hidden] {
  display: none;
}

@keyframes promoSlideUp {
  from { opacity: 0; transform: translateX(-50%) translateY(30px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.promo-popup-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 16px 20px;
  flex: 1;
  text-decoration: none;
  color: #ffffff;
}

.promo-popup-inner:hover {
  text-decoration: none;
  color: #ffffff;
}

.promo-popup-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 12px 16px;
  line-height: 1;
}

.promo-popup-close:hover {
  color: #ffffff;
}

.promo-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.promo-text {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.01em;
}

.promo-countdown {
  font-family: "SFMono-Regular", "Consolas", "Liberation Mono", monospace;
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 600;
  letter-spacing: 0.06em;
  font-size: 13px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid rgba(13, 26, 45, 0.06);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
  padding-top: env(safe-area-inset-top, 0px);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 14px 0;
  gap: 18px;
  position: relative;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.mobile-menu-toggle {
  display: none;
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 15, 34, 0.45);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.mobile-only {
  display: none;
}

.logo img {
  height: 52px;
  width: auto;
}

.page-product .logo img {
  height: 46px;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
  min-width: 0;
  justify-self: center;
}

.site-nav a {
  text-decoration: none;
  color: var(--blue-dark);
  font-weight: 500;
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
  transition: color 0.18s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.16s ease-out;
}

.site-nav a:hover {
  color: var(--blue-dark);
}

.site-nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
}

.mobile-cart-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border-soft);
  background: #ffffff;
  color: var(--blue-dark);
  border-radius: 999px;
  padding: 8px 12px;
  min-height: 40px;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(7, 16, 32, 0.12);
}

.mobile-cart-trigger .cart-icon {
  width: 18px;
  height: 18px;
}

.cart-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--blue);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
}

.site-header .primary-btn {
  padding: 10px 18px;
  font-size: 0.95rem;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(7, 16, 32, 0.22);
}

/* ---------------------------------------------------------
   HERO SECTIONS
--------------------------------------------------------- */

.page-hero {
  text-align: center;
  padding: 110px 0 68px;
  background: linear-gradient(180deg, rgba(13, 26, 45, 0.08), rgba(13, 26, 45, 0));
}

.page-hero.hero-image {
  color: #ffffff;
  min-height: 520px;
  display: flex;
  align-items: center;
  text-align: center;
  background-image: linear-gradient(180deg, rgba(13, 26, 45, 0.85) 0%, rgba(13, 26, 45, 0.25) 65%), url('images/hero.png');
  background-size: cover;
  background-position: center 58%;
  background-repeat: no-repeat;
}

.page-shop {
  background: #ffffff;
}

.page-shop .page-hero {
  background: linear-gradient(90deg, #0d1a2d 0%, #1d4ed8 100%);
  color: #ffffff;
  border-radius: 32px;
  margin: 40px auto;
  padding: 70px 0 60px;
  box-shadow: 0 30px 60px rgba(9, 17, 44, 0.2);
  max-width: 1200px;
  width: calc(100% - 72px);
}

.page-shop .page-hero .eyebrow,
.page-shop .page-hero p,
.page-shop .page-hero h1 {
  color: rgba(255, 255, 255, 0.92);
}

.page-shop .page-hero .eyebrow {
  opacity: 0.8;
}

.shop-mobile-tools {
  display: none;
}

@media (min-width: 768px) {
  .page-hero.hero-image {
    background-position: center 65%;
  }
}

.page-hero.hero-image h1,
.page-hero.hero-image p,
.page-hero.hero-image .eyebrow {
  color: rgba(255, 255, 255, 0.95);
}

.page-home .page-hero + .section {
  margin-top: -18px;
}

/* Research teams split */
.research-split {
  padding: clamp(90px, 9vw, 120px) 0;
}

.research-split .container.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 48px;
  align-items: start;
}

.research-split h2 {
  font-family: var(--serif);
  margin-bottom: 16px;
}

.research-split .research-copy p {
  font-size: 1.05rem;
  line-height: 1.82;
  margin-bottom: 18px;
}

.research-split .highlight-card.checklist-plain {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.research-split .highlight-card.checklist-plain h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  margin: 0 0 12px;
}

.research-split .highlight-card.checklist-plain ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  color: var(--text-main);
}

@media (max-width: 900px) {
  .research-split {
    padding: 88px 0;
  }
  .benefits-grid {
    gap: 24px;
  }
  .brand-mark-block {
    padding: 100px 0;
  }
  .order-step-card {
    padding: 22px 22px;
    gap: 16px;
  }
}

.page-hero .eyebrow {
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--blue-dark);
  opacity: 0.8;
  margin-bottom: 6px;
}

.page-hero h1 {
  margin-top: 0;
  font-size: clamp(2.5rem, 5vw, 3.4rem);
  font-weight: 700;
  font-family: var(--serif);
  line-height: 1.15;
}

.page-hero p {
  max-width: 720px;
  margin: 10px auto 0;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-actions .button-secondary {
  border-color: rgba(255, 255, 255, 0.7);
  color: #ffffff;
}

.hero-actions .primary-btn,
.hero-actions .button-secondary {
  padding: 13px 32px;
  font-size: 1rem;
  box-shadow: 0 18px 36px rgba(7, 16, 32, 0.32);
}

.page-home .page-hero.hero-split {
  background: linear-gradient(135deg, #0b1224 0%, #0f172a 55%, #111b36 100%);
  padding: clamp(100px, 10vw, 140px) 0;
  text-align: left;
  overflow: visible;
  min-height: 75vh;
  display: flex;
  align-items: center;
  position: relative;
}

.page-home .page-hero.hero-split::before {
  content: "";
  position: absolute;
  top: -8%;
  right: -6%;
  width: clamp(360px, 40vw, 620px);
  height: clamp(320px, 36vw, 560px);
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.12), rgba(248, 250, 252, 0.08));
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 0;
  pointer-events: none;
}

.page-home .hero-split__inner {
  display: grid;
  grid-template-columns: minmax(520px, 1fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(64px, 7vw, 96px);
  padding: 0 clamp(32px, 6vw, 90px);
  overflow: visible;
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  z-index: 1;
}

.page-home .hero-subheadline {
  max-width: 600px;
  margin: 0;
  line-height: 1.85;
}

.page-home .hero-copy {
  max-width: 520px;
  padding-top: 10px;
}

.page-home .hero-copy h1 {
  line-height: 1.12;
  margin-bottom: 18px;
  color: #f8fafc;
}

.page-home .hero-copy .eyebrow {
  margin-bottom: 14px;
  color: rgba(248, 250, 252, 0.75);
}

.page-home .hero-copy p {
  color: rgba(226, 232, 240, 0.88);
}

.page-home .hero-copy a {
  color: #9ac2ff;
}

.page-home .hero-actions {
  justify-content: flex-start;
  margin-top: 34px;
}

.page-home .hero-actions .primary-btn,
.page-home .hero-actions .button-secondary {
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 16px 36px rgba(7, 16, 32, 0.22);
}

.page-home .hero-actions .primary-btn {
  padding: 10px 28px;
  border-radius: 12px;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  font-weight: 650;
  color: #ffffff;
}

.page-home .hero-actions .primary-btn:hover {
  filter: brightness(1.04);
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(7, 16, 32, 0.24);
}

.page-home .hero-actions .button-secondary {
  border-color: rgba(248, 250, 252, 0.65);
  color: #f8fafc;
  background: transparent;
}

.page-home .hero-actions .button-secondary:hover {
  background: rgba(248, 250, 252, 0.12);
}

.page-home .hero-image {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  overflow: visible;
  position: relative;
}

.page-home .hero-image::before {
  content: "";
  position: absolute;
  inset: -10% -14% -10% 6%;
  background: radial-gradient(circle at 60% 50%, rgba(242, 244, 246, 0.9) 0%, rgba(242, 244, 246, 0.0) 68%);
  filter: blur(8px);
  z-index: 0;
  pointer-events: none;
}

.page-home .hero-image img {
  width: min(620px, 48vw);
  max-width: 620px;
  margin-left: auto;
  transform: translate(10%, -8px);
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.25));
  position: relative;
  z-index: 1;
}

#trust-strip {
  background: linear-gradient(180deg, #e7ecf5 0%, #f3f6fb 100%);
  padding-top: 100px;
  padding-bottom: 100px;
}

.trust-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.trust-label {
  margin: 0 0 36px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(13, 26, 45, 0.65);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px 28px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(9, 20, 48, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.trust-item h4 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0b1324;
  margin: 0;
}

.trust-item p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(15, 23, 42, 0.7);
  max-width: 360px;
  margin: 0;
}

.trust-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(9, 20, 48, 0.14);
}

.trust-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 1px solid rgba(29, 78, 216, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.trust-icon {
  width: 36px;
  height: 36px;
  color: var(--blue);
}

@media (max-width: 900px) {
  .page-home .page-hero.hero-split {
    padding: 104px 0 96px;
    min-height: auto;
  }

  .page-home .hero-split__inner {
    grid-template-columns: 1fr;
  }

  .page-home .hero-image {
    order: 2;
    margin-top: 24px;
    justify-content: center;
  }

  .page-home .hero-image::before,
  .page-home .page-hero.hero-split::before {
    content: none;
  }

  .page-home .hero-copy {
    padding-right: 0;
  }

  .page-home .hero-image img {
    width: min(520px, 85%);
    transform: none;
  }

  .trust-container {
    max-width: 720px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .page-home .page-hero.hero-split {
    padding-top: 42px;
    padding-bottom: 34px;
    text-align: center;
  }

  .page-home .hero-split__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .page-home .hero-copy {
    display: contents;
  }

  .page-home .hero-copy .eyebrow {
    order: 0;
    margin-bottom: 8px;
  }

  .page-home .hero-copy h1 {
    order: 1;
    font-size: 2.2rem;
    line-height: 1.12;
    margin-bottom: 0.75rem;
  }

  .page-home .hero-subheadline {
    order: 2;
    font-size: 0.95rem;
    opacity: 0.85;
    margin-bottom: 0.5rem;
  }

  .page-home .hero-image {
    order: 3;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .page-home .hero-image img {
    width: min(560px, 90%);
    margin: 0.5rem auto 0.8rem;
    transform: translateY(-6px);
  }

  .page-home .hero-actions {
    order: 4;
    width: min(420px, 100%);
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-top: 0;
  }

  .page-home .hero-actions .primary-btn,
  .page-home .hero-actions .button-secondary {
    width: 100%;
    justify-content: center;
  }

  .page-home .hero-actions .primary-btn {
    min-width: 180px;
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 14px;
    white-space: nowrap;
    text-decoration: none;
  }

  .page-home .hero-actions .button-secondary {
    opacity: 0.85;
  }

  .page-home .hero-copy a {
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .page-home .floating-cart {
    opacity: 0.75;
    bottom: 10px;
  }

  .page-home .section {
    padding: 48px 0;
  }

  .page-home .section .section-heading {
    margin-bottom: 16px;
  }

  .page-home .final-cta {
    margin-top: 48px;
  }

  .page-home .final-cta-card {
    padding: 44px 22px;
  }

  .page-home #faq.section {
    padding: 56px 0;
  }
}

@media (max-width: 768px) {
  .hero .hero-image,
  .page-hero .hero-image,
  .product-hero .hero-image {
    position: relative;
    z-index: 0;
  }

  .hero .hero-image::before,
  .page-hero .hero-image::before,
  .product-hero .hero-image::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 52%;
    width: 120%;
    height: 120%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle,
      rgba(255, 255, 255, 0.22) 0%,
      rgba(255, 255, 255, 0.12) 38%,
      rgba(255, 255, 255, 0.04) 62%,
      rgba(255, 255, 255, 0) 75%);
    filter: blur(6px);
    z-index: -1;
    pointer-events: none;
  }

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

@media (max-width: 640px) {
  #trust-strip {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .trust-label {
    margin-bottom: 28px;
  }

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

@media (max-width: 600px) {
  .page-home .hero-image img {
    width: min(520px, 92%);
  }
}

/* ---------------------------------------------------------
   GENERIC SECTIONS
--------------------------------------------------------- */

.section {
  padding: clamp(80px, 10vw, 120px) 0;
  background: #ffffff;
}

.page-home .section {
  padding: clamp(64px, 8vw, 96px) 0;
}

.section.alt {
  background: linear-gradient(135deg, #f5f8ff, #eef2ff);
}

.page-home .section.highlights {
  background: linear-gradient(135deg, #f4f7ff, #e6ecff);
  color: var(--text-main);
  position: relative;
  overflow: hidden;
}

.page-home .section.highlights::after {
  content: "";
  position: absolute;
  inset: 18px 10px;
  border: 1px solid rgba(13, 26, 45, 0.06);
  border-radius: 22px;
  pointer-events: none;
}

.page-home .section.highlights .value-props-grid {
  gap: 22px;
}

.page-home .section.highlights .info-card {
  background: #ffffff;
  border-color: rgba(13, 26, 45, 0.08);
  color: var(--text-main);
  box-shadow: 0 18px 40px rgba(7, 15, 34, 0.12);
  border-radius: 18px;
}

.page-home .section.highlights .info-card h3 {
  color: #0d1a2d;
  font-weight: 700;
}

.page-home .section.highlights .info-card p {
  color: var(--text-muted);
}

.page-home #shop {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at -10% 20%, rgba(29, 78, 216, 0.12), transparent 38%),
    radial-gradient(circle at 120% 10%, rgba(78, 124, 255, 0.12), transparent 40%),
    linear-gradient(135deg, #f8fbff, #eef2ff);
}

.page-home #shop::before,
.page-home #shop::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(26px);
  opacity: 0.5;
  pointer-events: none;
}

.page-home #shop::before {
  top: -140px;
  left: -120px;
  background: radial-gradient(circle, rgba(29, 78, 216, 0.22), transparent 70%);
}

.page-home #shop::after {
  bottom: -160px;
  right: -140px;
  background: radial-gradient(circle, rgba(78, 124, 255, 0.2), transparent 70%);
}

.page-home #shop .container {
  position: relative;
}

.page-shop .section:first-of-type .container {
  padding-top: 10px;
}

.section .section-heading {
  text-align: center;
  margin-bottom: 32px;
}

.page-home .section .section-heading {
  margin-bottom: 24px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-heading h2 {
  font-size: clamp(2rem, 3vw, 2.4rem);
  letter-spacing: -0.02em;
  margin: 0;
  font-family: var(--serif);
}

.section-heading p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 720px;
  margin: 8px auto 0;
  line-height: 1.7;
}

.section-title {
  font-family: var(--serif);
  letter-spacing: -0.02em;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 10px auto 0;
  max-width: 760px;
  line-height: 1.7;
}

/* Section rhythm */
.section + .section {
  margin-top: 0;
}

.page-home .section-heading h2 {
  position: relative;
  display: inline-block;
}

.page-home .section-heading h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin: 10px auto 0;
  background: linear-gradient(90deg, #1d4ed8, #4e7cff);
  border-radius: 999px;
}

/* Why choose / benefits */
.why-choose .section-heading {
  margin-bottom: 32px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px 28px;
}

.benefit-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(13, 26, 45, 0.05);
  box-shadow: 0 10px 26px rgba(7, 15, 34, 0.05);
  padding: 48px 36px;
}

.benefit-card h3 {
  margin: 0 0 12px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue-dark);
}

.benefit-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Brand mark band */
.brand-mark-block {
  position: relative;
  overflow: hidden;
  background: #f8f9ff;
  padding: 120px 0;
}

.brand-mark-block::after {
  content: "A";
  font-family: var(--serif);
  font-size: clamp(18rem, 32vw, 26rem);
  color: #0d1a2d;
  opacity: 0.07;
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  line-height: 1;
}

.brand-mark-inner {
  position: relative;
  text-align: center;
  padding: 8px 0;
  max-width: 840px;
}

.brand-mark-inner .section-title {
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  margin-bottom: 16px;
}

.brand-mark-inner p {
  margin-top: 18px;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Final CTA */
.final-cta {
  background: #eef2ff;
  margin-top: clamp(80px, 8vw, 110px);
  text-align: center;
}

.final-cta-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 64px 32px;
  text-align: center;
  border: 1px solid rgba(77, 104, 182, 0.2);
  box-shadow: var(--shadow-soft);
}

.final-cta .primary-btn {
  margin-top: 18px;
  padding: 13px 32px;
}

/* FAQ spacing */
#faq.section {
  padding: clamp(72px, 8vw, 110px) 0;
}
.how-ordering-works {
  padding: 108px 0;
}

.how-ordering-works .section-heading {
  margin-bottom: 36px;
}

.order-steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 960px;
  margin: 0 auto;
}

.order-step-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid rgba(13, 26, 45, 0.06);
  box-shadow: 0 12px 28px rgba(7, 15, 34, 0.08);
  padding: 24px 26px;
}

.order-step-number {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d1a2d, #1d4ed8);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 10px 20px rgba(7, 15, 34, 0.2);
}

.order-step-copy h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  letter-spacing: -0.01em;
}

.order-step-copy p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---------------------------------------------------------
   PRODUCT GRIDS / SHOP PAGE
--------------------------------------------------------- */

.card-grid {
  display: grid;
  gap: 24px;
}

.card-grid.two {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card-grid.three {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card-grid.four {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.value-props .section-heading {
  margin-bottom: 44px;
}

.value-props .section-heading p {
  max-width: 700px;
}

.value-props-grid {
  align-items: stretch;
}

.value-props-grid .info-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  padding: 22px;
}

.value-props-grid .info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 52px rgba(7, 15, 34, 0.14);
}

.value-props-grid .info-card h3 {
  font-weight: 700;
  margin-bottom: 10px;
}

.value-props-grid .info-card p {
  font-size: 0.98rem;
  line-height: 1.8;
}

.products-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.product-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 16px 14px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: static;
}

.page-shop .product-card {
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: linear-gradient(180deg, #ffffff, #f8f9ff);
  box-shadow: 0 25px 45px rgba(9, 17, 44, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-shop .product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 60px rgba(9, 17, 44, 0.16);
}

.product-card-image-container {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.product-badge-new {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
  z-index: 2;
}

.page-shop .product-desc {
  color: #4d5675;
  display: block;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  transition: transform 0.25s ease;
}

.product-card h3 {
  margin: 0;
  font-size: 1.05rem;
}

.product-compounds {
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
  color: var(--text-muted);
}

.product-card .product-compounds {
  margin: -2px 0 4px;
  font-size: 0.95rem;
}

.product-detail-card .product-compounds {
  margin: 4px 0 12px;
  font-size: 1.02rem;
}

.product-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.product-card .product-subtitle,
.product-card .product-desc {
  margin: 0;
}

.product-controls {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
  align-items: end;
}

.product-controls label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  color: var(--text-main);
  font-size: 0.9rem;
}

.product-controls select,
.product-controls input {
  width: 100%;
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 1rem;
  background: #ffffff;
}

.price {
    font-weight: 600;
    margin: 0;
  }

.price-was {
    color: #6b7280;
    text-decoration: line-through;
    font-weight: 500;
    margin-right: 6px;
    display: inline-block;
  }

.price-now {
    color: #111827;
    font-weight: 700;
    display: inline-block;
  }
  
  .primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 11px 26px;
  background: linear-gradient(135deg, #0d1a2d, #1d4ed8);
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(7, 16, 32, 0.3);
  border: none;
}

.primary-btn:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 28px;
  border-radius: 999px;
  border: 1px solid rgba(13, 26, 45, 0.4);
  color: var(--blue-dark);
  text-decoration: none;
  font-weight: 600;
  background: transparent;
  cursor: pointer;
}

.floating-cart {
  display: none;
  z-index: 3000;
}

.catalog-link {
  text-align: center;
  margin-top: 24px;
}

/* ---------------------------------------------------------
   MODALS & CHECKOUT
--------------------------------------------------------- */

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(5, 12, 25, 0.55);
  transition: opacity 0.2s ease;
}

.modal[hidden] {
  display: none;
}

.age-gate[hidden] {
  display: none;
}

.modal-panel {
  width: 100%;
  max-width: 540px;
  max-height: calc(100vh - 48px);
  background: #ffffff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 30px 60px rgba(3, 12, 32, 0.25);
  position: relative;
  animation: accordion 0.35s ease;
  overflow-y: auto;
}

.modal-panel.modal-large {
  max-width: 640px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  border: none;
  background: transparent;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
}

.modal-subtext {
  margin-top: 4px;
  color: var(--text-muted);
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cart-items .cart-item-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
}

.cart-items .cart-item-row:last-of-type {
  border-bottom: none;
}

.cart-items .discount-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Cart modal summary */
.cart-summary {
  border-top: 1px solid var(--border-soft);
  padding-top: 16px;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cart-summary__row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.cart-summary__row[hidden] {
  display: none;
}

.cart-summary__hint {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
}

.cart-summary__hint[hidden] {
  display: none;
}

.cart-summary__total {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 700;
  border-top: 1px solid var(--border-soft);
  padding-top: 10px;
  margin-top: 4px;
  color: var(--text-primary, #0d1a2d);
}

/* Cart item name bold, unit price muted+small, line total larger */
.cart-item-name {
  font-weight: 700;
  font-size: 0.95rem;
  margin: 0 0 2px;
}

.cart-item-unit {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
}

.cart-item-line-total {
  font-size: 1.05rem;
  color: var(--text-primary, #0d1a2d);
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.checkout-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.payment-options h4 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.payment-buttons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.payment-buttons button {
  border: none;
  border-radius: 14px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 16px;
  min-height: 46px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  width: 100%;
}

.payment-buttons .venmo-btn {
  background-color: #008CFF;
  box-shadow: none;
}

.payment-buttons .cashapp-btn {
  background-color: #00D632;
  box-shadow: none;
}

.payment-buttons .crypto-btn {
  background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 45%, #0f172a 100%);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(29, 78, 216, 0.35), 0 0 18px rgba(59, 130, 246, 0.45);
}

.payment-buttons .venmo-btn:hover {
  background-color: #0077e0;
  transform: translateY(-1px);
}

.payment-buttons .cashapp-btn:hover {
  background-color: #00b82b;
  transform: translateY(-1px);
}

.payment-buttons .crypto-btn:hover {
  transform: translateY(-2px) scale(1.03);
  filter: brightness(1.08);
  box-shadow: 0 18px 38px rgba(29, 78, 216, 0.45), 0 0 22px rgba(59, 130, 246, 0.6);
}

.recommended-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.payment-buttons button.is-selected {
  box-shadow: 0 0 0 2px rgba(26, 20, 15, 0.15);
}

@media (max-width: 640px) {
  .payment-buttons {
    grid-template-columns: 1fr;
  }
}

.checkout-cta .primary-btn {
  font-size: 1.05rem;
  padding: 16px 18px;
}

.checkout-reassurance {
  margin: 4px 0 0;
  font-size: 0.82rem;
  color: rgba(17, 24, 39, 0.6);
  text-align: center;
  width: 100%;
  line-height: 1.2;
}

.checkout-guide {
  margin-top: 6px;
}

.checkout-guide summary {
  font-weight: 600;
}

.checkout-guide .faq-answer {
  padding: 12px 0 6px;
  color: var(--text-muted);
}

.checkout-guide {
  border: none;
  background: transparent;
  box-shadow: none;
}

.checkout-guide summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  background: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.checkout-guide summary::after {
  content: "▾";
  font-size: 0.9rem;
  color: rgba(17, 24, 39, 0.55);
  margin-left: auto;
}

.checkout-guide[open] summary {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-color: rgba(29, 78, 216, 0.35);
}

.checkout-guide[open] summary::after {
  content: "▴";
  color: var(--blue);
}

.checkout-guide .faq-answer {
  padding: 16px;
  border: 1px solid var(--border-soft);
  border-top: 0;
  border-radius: 0 0 14px 14px;
  background: #ffffff;
  color: var(--text-muted);
}

.crypto-guide {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.crypto-intro {
  margin: 0;
}

.crypto-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.crypto-step {
  display: flex;
  gap: 12px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--border-soft);
  background: #f8fafc;
  box-shadow: 0 8px 18px rgba(7, 16, 32, 0.06);
}

.crypto-step.is-highlighted {
  border-color: rgba(29, 78, 216, 0.35);
  background: rgba(29, 78, 216, 0.08);
}

.crypto-step__badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(29, 78, 216, 0.18);
  color: var(--blue);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.crypto-step__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.crypto-step__content h4 {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-main);
}

.crypto-step__content p {
  margin: 0;
  line-height: 1.5;
}

.crypto-step__button {
  align-self: flex-start;
  margin-top: 4px;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 10px 14px;
}

.crypto-helper {
  font-size: 0.78rem;
  color: rgba(17, 24, 39, 0.6);
  line-height: 1.4;
}

.crypto-footnote {
  margin: 4px 0 0;
  font-size: 0.8rem;
  color: rgba(17, 24, 39, 0.6);
}

.crypto-quick-help {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px dashed var(--border-soft);
  background: #f8fafc;
  font-size: 0.78rem;
  color: rgba(17, 24, 39, 0.65);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.crypto-quick-help p {
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 768px) {
  #checkoutModal {
    align-items: stretch;
    overscroll-behavior: contain;
  }

  #checkoutModal .modal-panel {
    min-height: 100dvh;
    height: auto;
    max-height: none;
    padding: 20px 16px 16px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  }

  #checkoutModal .checkout-header {
    position: relative;
    padding-top: env(safe-area-inset-top, 0px);
    padding-right: 56px;
  }

  #checkoutModal .checkout-close {
    position: absolute;
    top: calc(env(safe-area-inset-top, 0px) + 12px);
    right: 16px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid var(--border-soft);
    z-index: 70;
  }

  .checkout-guide summary {
    white-space: normal;
    text-overflow: unset;
    padding: 12px 14px;
    overflow: visible;
  }

  .checkout-guide .faq-answer {
    padding: 12px;
    overflow-x: hidden;
  }

  .new-to-crypto {
    width: 100%;
    max-width: 100%;
    padding: 16px;
    box-sizing: border-box;
  }

  .crypto-step {
    flex-direction: column;
    padding: 12px;
    gap: 10px;
  }

  .crypto-guide {
    gap: 16px;
  }

  .crypto-steps {
    gap: 14px;
  }

  .crypto-step__content {
    min-width: 0;
  }

  .crypto-step__content p,
  .crypto-quick-help p {
    overflow-wrap: anywhere;
    word-break: break-word;
    line-height: 1.6;
  }

  .crypto-step__button {
    align-self: stretch;
    justify-content: center;
    width: 100%;
    min-height: 44px;
    white-space: nowrap;
  }

  #checkoutModal .modal-panel,
  #checkoutModal .modal-panel * {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    will-change: auto !important;
    opacity: 1 !important;
  }
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  font-size: 0.88rem;
  color: var(--text-muted);
  gap: 6px;
}

.form-field input {
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.12);
}

.input-hint {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.input-hint--error {
  color: var(--danger);
}

.button-link {
  background: none;
  border: none;
  color: var(--blue);
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}

.order-summary {
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  padding: 20px;
  background: #f9fbff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.order-summary-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.order-summary-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.order-summary-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.92rem;
}

.order-summary-item small {
  display: block;
  color: var(--text-muted);
}

.order-summary-row,
.order-summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
}

.discount-row span:last-child {
  color: #0f7b4b;
}

.order-summary-total {
  font-size: 1.1rem;
  border-top: 1px solid var(--border-soft);
  padding-top: 8px;
}

.cart-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.full-width {
  width: 100%;
}

.muted {
  color: var(--text-muted);
}

.small {
  font-size: 0.82rem;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 15, 34, 0.48);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 80;
}

.drawer-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 380px;
  max-width: 100%;
  background: #ffffff;
  box-shadow: -16px 0 40px rgba(7, 16, 32, 0.25);
  transform: translateX(100%);
  transition: transform 0.22s ease;
  z-index: 90;
  display: flex;
  flex-direction: column;
}

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

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid var(--border-soft);
}

.cart-drawer__items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-drawer__footer {
  border-top: 1px solid var(--border-soft);
  padding: 16px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-drawer__summary {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cart-drawer__row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.cart-drawer__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.05rem;
  padding-top: 8px;
  border-top: 1px solid var(--border-soft);
}

.drawer-close {
  border: none;
  background: transparent;
  font-size: 1.4rem;
  color: var(--text-muted);
  cursor: pointer;
}

.cart-drawer__items .cart-item-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.cart-drawer__items .cart-item-controls {
  display: grid;
  gap: 6px;
  text-align: right;
}

/* Cart drawer redesigned items */
.cart-drawer-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
}

.cart-drawer-item:last-of-type {
  border-bottom: none;
}

.cart-drawer-item__img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  background: #f4f5f7;
  flex-shrink: 0;
}

.cart-drawer-item__info {
  flex: 1;
  min-width: 0;
}

.cart-drawer-item__name {
  font-weight: 600;
  font-size: 0.92rem;
  margin: 0 0 6px;
  line-height: 1.3;
}

.cart-drawer-item__qty {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cart-drawer-item__qty .qty-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.65rem;
  color: var(--text-muted);
  padding: 2px;
  line-height: 1;
}

.cart-drawer-item__qty .qty-btn:hover {
  color: var(--text-primary, #0d1a2d);
}

.cart-drawer-item__qty .qty-val {
  font-weight: 600;
  font-size: 0.92rem;
  min-width: 16px;
  text-align: center;
}

.cart-drawer-item__unit {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 2px 0 6px;
}

.cart-drawer-item__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  flex-shrink: 0;
}

.cart-drawer-item__remove {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1;
  padding: 0;
}

.cart-drawer-item__remove:hover {
  color: #dc2626;
}

.cart-drawer-item__price {
  font-size: 0.95rem;
}

.cart-drawer__hint {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
}

.cart-drawer__hint[hidden] {
  display: none;
}

.cart-drawer__row[hidden] {
  display: none;
}

/* ---------------------------------------------------------
   AGE VERIFICATION
--------------------------------------------------------- */

body.age-gate-open {
  overflow: hidden;
}

.age-gate {
  position: fixed;
  inset: 0;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 26, 45, 0.88);
  z-index: 120;
}

.age-gate__panel {
  width: 100%;
  max-width: 460px;
  padding: 36px 36px 38px;
  border-radius: 24px;
  background: linear-gradient(150deg, rgba(13, 26, 45, 0.98), rgba(30, 64, 175, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-soft);
  color: #ffffff;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.age-gate__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  color: var(--accent);
  margin: 0 0 10px;
}

.age-gate__panel h2 {
  margin: 0 0 12px;
}

.age-gate__panel p {
  margin: 0;
  line-height: 1.6;
}

.age-gate__actions {
  margin-top: 0;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.age-gate__actions .primary-btn {
  flex: 1;
  justify-content: center;
}

.age-gate__actions .button-secondary {
  flex: 1;
  justify-content: center;
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

.age-gate__note {
  margin-top: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 520px) {
  .age-gate__panel {
    padding: 28px 24px;
  }
}

/* ---------------------------------------------------------
   ABOUT PAGE
--------------------------------------------------------- */

.about-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0d1a2d, #15284f 55%, #1d3e74);
  color: #ffffff;
  padding: 68px 0 60px;
}

.about-hero::before,
.about-hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(38px);
  opacity: 0.5;
  pointer-events: none;
}

.about-hero::before {
  top: -120px;
  left: -160px;
  background: radial-gradient(circle, rgba(78, 124, 255, 0.28), transparent 70%);
}

.about-hero::after {
  bottom: -180px;
  right: -120px;
  background: radial-gradient(circle, rgba(29, 78, 216, 0.25), transparent 70%);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 36px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-hero-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.about-hero-content h1 {
  margin-top: 8px;
  font-size: clamp(2.1rem, 4vw, 2.7rem);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.about-hero-content p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.about-hero-list {
  list-style: none;
  padding: 0;
  margin: 24px auto 0;
  display: grid;
  gap: 12px;
  max-width: 540px;
  text-align: left;
}

.about-hero-list li {
  padding-left: 22px;
  position: relative;
  font-weight: 500;
}

.about-hero-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.about-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.about-hero-panel {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(15, 35, 82, 0.9), rgba(29, 78, 216, 0.85));
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
}

.hero-panel-card {
  background: rgba(7, 15, 34, 0.78);
  padding: 24px;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 8px;
}

.panel-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.panel-metrics strong {
  font-size: 1.8rem;
  display: block;
}

.panel-metrics span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.metrics-band {
  background: #f0f3ff;
  padding: 32px 0;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

.metric-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  text-align: center;
  border: 1px solid rgba(13, 26, 45, 0.08);
  box-shadow: 0 20px 45px rgba(13, 26, 45, 0.08);
}

.metric-value {
  font-size: 2rem;
  margin: 0;
  color: var(--blue-dark);
  font-weight: 700;
}

.metric-label {
  margin: 4px 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  align-items: stretch;
}

.about-column h2 {
  margin-top: 0;
}

.highlight-card {
  background: linear-gradient(160deg, #ffffff, #eef2ff);
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(77, 104, 182, 0.2);
  box-shadow: var(--shadow-soft);
}

.highlight-card ul {
  padding-left: 18px;
  margin: 12px 0 0;
  color: var(--text-main);
}

.info-card {
  background: white;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

#reviews .card-grid {
  gap: 26px;
}

#reviews .info-card {
  box-shadow: 0 18px 40px rgba(7, 15, 34, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#reviews .info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 58px rgba(7, 15, 34, 0.16);
}

#reviews .info-card p {
  font-size: 1rem;
  line-height: 1.82;
}

.timeline-steps {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  display: grid;
  gap: 18px;
}

.timeline-steps li {
  display: flex;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--border-soft);
  box-shadow: 0 20px 45px rgba(7, 15, 34, 0.08);
}

.timeline-index {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(160deg, #1d4ed8, #4e7cff);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.timeline-steps h3 {
  margin: 0 0 6px;
}

.pdp-info {
  padding-top: 56px;
  padding-bottom: 56px;
}

.pdp-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pdp-info-block {
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: var(--shadow-soft);
}

.pdp-subhead {
  margin: 0 0 8px;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.pdp-info-block p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.pdp-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 85;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--border-soft);
  box-shadow: 0 -8px 20px rgba(7, 16, 32, 0.12);
}

/* Prevent sticky bar from appearing on shop listing */
.page-shop .pdp-sticky-bar {
  display: none !important;
}

.pdp-sticky-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pdp-sticky-name {
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--blue-dark);
}

.pdp-sticky-price {
  font-size: 1rem;
}

.page-about .about-hero {
  padding: 64px 0 56px;
}

.page-about .about-hero-grid {
  gap: 28px;
  align-items: stretch;
}

.page-about .about-hero-list {
  margin: 14px 0 0;
  gap: 10px;
}

.page-about .about-hero-list li::before {
  content: "✓";
  top: 3px;
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.page-about .hero-panel-card {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-about .panel-metrics {
  gap: 14px;
  margin-top: 10px;
}

.page-about .metrics-band {
  padding: 28px 0;
}

.page-about .section {
  padding: 64px 0;
}

/* About page refinements */
.page-about .about-hero {
  padding: 72px 0 64px;
}

.page-about .about-hero-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  align-items: stretch;
}

.page-about .about-hero-content h1 {
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  letter-spacing: -0.01em;
}

.page-about .about-hero-content p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 720px;
}

.page-about .about-hero-list {
  margin: 20px 0 0;
  gap: 12px;
}

.page-about .about-hero-list li {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.page-about .about-hero-list li::before {
  content: ">";
  color: #8fb1ff;
  top: 3px;
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.page-about .about-grid {
  gap: 26px;
}

.page-about .timeline-steps {
  gap: 14px;
}

  .page-about .timeline-steps li {
    padding: 16px 18px;
    gap: 14px;
  }

  .page-about .about-hero,
  .page-about .about-hero * {
    font-family: "Times New Roman", Times, serif;
  }

  /* About hero alignment refresh */
  .page-about .about-hero-grid {
    align-items: center;
    gap: 36px;
  }

  .page-about .about-hero-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }

  .page-about .about-hero-content h1 {
    line-height: 1.2;
  }

  .page-about .about-hero-content p {
    margin-left: auto;
    margin-right: auto;
    max-width: 760px;
  }

  .page-about .about-hero-list {
    margin: 24px auto 0;
    max-width: 540px;
    text-align: left;
    gap: 12px;
  }

  .page-about .about-hero-list li {
    padding-left: 22px;
  }

  .page-about .about-hero-list li::before {
    content: "•";
    color: var(--accent);
  }

  .page-about .hero-panel-card {
    gap: 18px;
  }

  .page-about .panel-metrics {
    gap: 18px;
  }

  /* ---------------------------------------------------------
     CTA PANEL
  --------------------------------------------------------- */

  .cta-panel {
  background: linear-gradient(120deg, #0d1a2d, #1f3a68);
  color: white;
  padding: 40px 0;
}

.cta-panel .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.cta-panel h2 {
  margin: 0 0 6px;
}

.cta-panel p {
  margin: 0;
  opacity: 0.9;
}

/* ---------------------------------------------------------
   FAQ
--------------------------------------------------------- */

.faq-grid {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.section#faq .section-heading {
  margin-bottom: 36px;
}

.faq-item {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--border-soft);
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(7, 15, 34, 0.08);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-weight: 600;
  color: var(--text-main);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item .faq-answer {
  padding: 0 24px 24px;
  color: var(--text-muted);
  line-height: 1.7;
  animation: fadeInFaq 0.3s ease;
}

.faq-item[open] {
  border-color: var(--blue);
  box-shadow: 0 20px 40px rgba(7, 16, 32, 0.12);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(29, 78, 216, 0.15);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.faq-icon::after {
  content: '+';
  font-weight: 700;
}

.faq-item[open] .faq-icon {
  transform: scale(1.05);
  background: rgba(13, 26, 45, 0.8);
  color: #ffffff;
}

.faq-item[open] .faq-icon::after {
  content: '–';
}

@keyframes accordion {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInFaq {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Homepage premium overrides */
.section {
  padding: 100px 0;
}

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

.section-title {
  font-size: 38px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  color: #0f1d3a;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #5c6475;
  margin-bottom: 40px;
}

.video-container {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.video-container iframe {
  width: 100%;
  height: 500px;
}

.how-ordering-works {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 24px;
  text-align: center;
}

.how-ordering-works h2 {
  font-size: clamp(2.5rem, 4.2vw, 3.4rem);
  font-weight: 700;
  font-family: var(--serif);
  color: #0f1d3a;
  margin-bottom: 20px;
}

.how-ordering-works video {
  width: 100%;
  max-width: 900px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  display: block;
  margin: 0 auto;
}

#core-value-props,
#research-teams,
#testimonials {
  background: linear-gradient(180deg, #f6f9fc 0%, #ffffff 100%);
  padding: 120px 0;
  border-radius: 0;
}

#faq-section {
  padding: 120px 0 160px 0;
}

.faq-item {
  margin-bottom: 16px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* ---------------------------------------------------------
   ANIMATIONS
--------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  will-change: transform, opacity;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.info-card,
.highlight-card,
.metric-card,
.timeline-steps li,
.product-card,
.faq-item {
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.product-image {
  transition: transform 0.2s ease;
}

@media (hover: hover) {
  .info-card:hover,
  .highlight-card:hover,
  .metric-card:hover,
  .timeline-steps li:hover,
  .product-card:hover,
  .faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.08);
  }

  .product-card-image-container:hover .product-image {
    transform: scale(1.04);
  }

  .primary-btn,
  .button-secondary {
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  }

  .primary-btn:hover,
  .button-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
    filter: brightness(1.03);
  }
}

/* --- CONTACT PAGE IMPROVEMENTS --- */

.page-contact {
  background: radial-gradient(circle at 15% 10%, rgba(125, 169, 255, 0.12), transparent 35%),
    radial-gradient(circle at 85% 0%, rgba(125, 169, 255, 0.08), transparent 30%),
    linear-gradient(140deg, #0b1224 0%, #0d1a2d 45%, #122a55 100%);
  color: #e8f0ff;
}

.contact-hero {
  text-align: center;
  padding: 96px 0 36px;
}

.contact-title {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px;
  font-family: var(--serif);
  letter-spacing: 0.01em;
}

.contact-subtitle {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: rgba(226, 232, 240, 0.86);
  line-height: 1.75;
}

.contact-card {
  max-width: 680px;
  margin: 28px auto 24px;
  background: #ffffff;
  padding: 36px 32px;
  border-radius: 22px;
  box-shadow: 0 30px 70px rgba(5, 12, 26, 0.35);
  text-align: center;
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: #0d1b2a;
}

.contact-card__content h2 {
  margin: 0 0 10px;
  font-size: 1.6rem;
  color: #0d1b2a;
}

.contact-card__content p {
  margin: 0 auto 18px;
  color: #2c3850;
  line-height: 1.6;
  max-width: 520px;
}

.contact-card__content .primary-btn {
  border-radius: 12px;
  padding: 12px 28px;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.support-hours {
  text-align: center;
  padding: 24px 0 30px;
}

.support-hours h2 {
  font-size: 1.5rem;
  margin: 0 0 8px;
  color: #ffffff;
}

.support-hours p {
  max-width: 620px;
  margin: 6px auto;
  font-size: 1rem;
  color: rgba(226, 232, 240, 0.82);
  line-height: 1.6;
}

.contact-details {
  padding: 24px 0 90px;
}

.contact-details h2 {
  text-align: center;
  margin: 0 0 20px;
  font-size: 1.35rem;
  color: #ffffff;
}

.contact-details__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 720px;
  margin: 0 auto;
}

.contact-details__item {
  padding: 20px 22px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(226, 232, 240, 0.9);
}

.contact-details__item h3 {
  margin: 0 0 8px;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.7);
}

.contact-details__item p {
  margin: 0;
  font-size: 1rem;
  color: rgba(226, 232, 240, 0.95);
}

.contact-details__item a {
  color: inherit;
  text-decoration: none;
}

.contact-details__item a:hover,
.contact-details__item a:focus-visible {
  color: #c9ddff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 72px 0 28px;
  }

  .contact-card {
    margin: 24px 16px 20px;
    padding: 28px 24px;
  }

  .contact-card__content .primary-btn {
    width: 100%;
  }

  .contact-details__grid {
    grid-template-columns: 1fr;
  }
}

/* ---------------------------------------------------------
   FOOTER
--------------------------------------------------------- */

.site-footer {
  background: #07142f;
  color: #c9d0ea;
  padding: 26px 0;
}

.page-home .site-footer {
  padding: 20px 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-grid img {
  height: 40px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer .footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.site-footer .footer-brand img {
  max-width: 140px;
  height: auto;
  width: 100%;
}

.page-product .site-footer .footer-brand img {
  max-width: 80px;
  margin: 8px 0;
}

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }

  .footer-inner .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .page-product .site-footer .footer-brand img {
    max-width: 70px;
    margin: 6px 0;
  }
}

.footer-nav {
  display: flex;
  gap: 20px;
}

.page-home .footer-grid {
  gap: 12px;
}

.page-home .footer-nav {
  gap: 16px;
}

.footer-nav a {
  color: #d1d8f3;
  text-decoration: none;
  font-size: 0.88rem;
}

.disclaimer {
  font-size: 0.8rem;
  opacity: 0.85;
  margin-top: 6px;
}

/* ---------------------------------------------------------
   RESPONSIVE
--------------------------------------------------------- */

@media (max-width: 1100px) {
  .header-inner {
    gap: 14px;
  }
  .logo img {
    height: 48px;
  }
  .page-product .logo img {
    height: 44px;
  }
  .site-nav {
    gap: 16px;
  }
  .section {
    padding: 68px 0;
  }
}

@media (max-width: 900px) {
  .container {
    padding: 0 16px;
  }
  .header-inner {
    padding: 12px 0;
  }
  .split {
    grid-template-columns: 1fr;
  }
  .cta-panel .container {
    flex-direction: column;
    text-align: center;
  }
  .card-grid.three,
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .header-actions {
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .page-shop .page-hero {
    display: none;
  }

  .shop-mobile-tools {
    display: block;
    padding: 8px 0 2px;
  }

  .shop-search {
    display: block;
    margin-bottom: 8px;
  }

  .shop-search input {
    width: 100%;
    min-height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    padding: 8px 12px;
    font-size: 0.95rem;
    background: #ffffff;
    color: #0d1a2d;
  }

  .shop-search input::placeholder {
    color: rgba(15, 23, 42, 0.5);
  }

  .shop-chips {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
  }

  .shop-chips::-webkit-scrollbar {
    display: none;
  }

  .shop-chip {
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(13, 26, 45, 0.18);
    background: #ffffff;
    color: #0d1a2d;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
  }

  .shop-chip.is-active {
    background: #0d1a2d;
    color: #ffffff;
    border-color: #0d1a2d;
  }

  .page-shop .section {
    padding-top: 14px;
    padding-bottom: 60px;
  }

  .page-shop .section-heading {
    margin-bottom: 12px;
    text-align: left;
  }

  .page-shop .products-grid {
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .page-shop .section-subtitle {
    display: none;
  }

  .page-shop .product-card {
    padding: 14px 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .page-shop .product-card-image-container {
    margin-bottom: 10px;
  }

  .page-shop .product-image {
    max-height: 140px;
    object-fit: contain;
  }

  .page-shop .price {
    margin-top: auto;
    font-size: 0.95rem;
  }

  .page-shop .add-to-cart {
    min-height: 44px;
    padding: 10px 12px;
    font-size: 0.9rem;
    margin-top: 8px;
  }

  .page-shop .floating-cart {
    bottom: 16px;
    right: 16px;
    opacity: 0.7;
  }

  #trust-strip {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .trust-grid {
    gap: 18px;
  }

  .trust-item {
    padding: 20px 18px;
    gap: 12px;
  }

  .trust-icon-wrap {
    width: 46px;
    height: 46px;
  }

  .trust-icon {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 768px) {
  .site-header {
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    z-index: 2000;
  }
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    padding: 4px 0;
    gap: 12px;
    padding-top: calc(4px + env(safe-area-inset-top, 0px));
  }
  .logo {
    order: 2;
    flex: 1;
    display: flex;
    justify-content: center;
  }
  .logo img {
    height: 50px;
  }
  .mobile-menu-toggle {
    order: 1;
    flex: 0 0 40px;
  }
  .header-actions {
    order: 3;
    flex: 0 0 40px;
    width: 40px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header-actions .primary-btn {
    padding: 8px 12px;
    font-size: 0.9rem;
    line-height: 1;
    min-height: 40px;
  }
  .mobile-cart-trigger {
    display: inline-flex;
    gap: 0;
    width: 40px;
    height: 34px;
    padding: 0;
    min-height: 0;
    position: relative;
    border-radius: 999px;
    border: 1px solid transparent;
    box-shadow: none;
    justify-content: center;
  }
  .mobile-cart-trigger .cart-icon {
    width: 18px;
    height: 18px;
  }
  .mobile-cart-trigger .cart-badge {
    position: absolute;
    top: -4px;
    right: -2px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    font-size: 0.65rem;
    line-height: 1;
  }
  .mobile-menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 34px;
    border-radius: 12px;
    border: 1px solid rgba(13, 26, 45, 0.1);
    background: #ffffff;
    padding: 5px;
    cursor: pointer;
    box-shadow: 0 10px 16px rgba(7, 16, 32, 0.12);
    grid-column: 1;
    z-index: 1100;
  }
  .mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #0d1a2d;
    border-radius: 999px;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  body.nav-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  body.nav-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }
  body.nav-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .mobile-only {
    display: inline;
  }
  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 80%;
    max-width: 420px;
    left: auto;
    flex-direction: column;
    align-items: flex-start;
    background: #ffffff;
    border-radius: 16px 0 0 16px;
    padding: 18px 20px 32px;
    box-shadow: -18px 0 30px rgba(7, 16, 32, 0.18);
    gap: 16px;
    transition: transform 0.25s ease, opacity 0.25s ease;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    z-index: 1000;
  }
  .floating-cart {
    z-index: 1200;
  }
  .site-nav.is-open {
    transform: translateX(0) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    z-index: 1000 !important;
  }
  .site-nav a {
    font-size: 1rem;
    width: 100%;
    padding: 12px 0;
    color: #0d1a2d;
    pointer-events: auto;
  }
  .site-header .primary-btn {
    padding: 9px 14px;
    font-size: 0.9rem;
  }
  .site-nav.is-collapsed {
    max-height: none;
    overflow: visible;
    opacity: 0;
    transform: translateX(100%);
  }
  .mobile-menu-close {
    display: none;
  }
  .mobile-nav-overlay {
    opacity: 0;
    pointer-events: none;
  }
  body.nav-open .mobile-nav-overlay {
    opacity: 1;
    pointer-events: auto;
  }
  .page-hero {
    padding: 68px 0 54px;
  }
  .hero-actions {
    gap: 12px;
  }
  .section {
    padding: 60px 0;
  }
  .card-grid {
    gap: 20px;
  }
  .pdp-info-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .cart-actions {
    flex-direction: column;
  }
  .cart-actions .primary-btn,
  .cart-actions .button-secondary {
    width: 100%;
  }
  .floating-cart {
    position: fixed;
    display: none;
  }
  .floating-cart .cart-text {
    display: none;
  }
  .floating-cart .cart-ico {
    font-size: 1.2rem;
  }
  .floating-cart .cart-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    min-width: 22px;
    padding: 2px 6px;
  }
}

@media (max-width: 768px) {
  .promo-banner-inner {
    min-height: 56px;
    padding: 12px 16px;
    gap: 10px;
  }

  .promo-text {
    font-size: 14px;
  }

  .promo-countdown {
    font-size: 11px;
    padding: 4px 6px;
    flex-shrink: 0;
  }
}

@media (max-width: 640px) {
  .promo-banner-inner {
    flex-wrap: nowrap;
    gap: 12px;
    padding: 14px 18px;
    justify-content: center;
  }

  .promo-text {
    font-size: 14px;
    line-height: 1.4;
  }

  .promo-countdown {
    font-size: 11px;
    padding: 4px 8px;
    flex-shrink: 0;
  }

  .card-grid.three,
  .card-grid.two,
  .products-grid {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .product-card {
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  
  .product-card .product-desc {
    font-size: 0.85rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 8px;
  }
  
  .product-card .product-controls {
    margin-top: 4px;
    margin-bottom: 6px;
  }
  
  .product-card .price {
    margin-bottom: 8px;
  }
  
  .product-card .add-to-cart {
    margin-top: auto;
  }
  .pdp-sticky-bar {
    display: flex;
  }
  .cart-drawer {
    width: 100%;
    max-width: 100%;
    height: 80vh;
    top: auto;
    bottom: 0;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -12px 32px rgba(7, 16, 32, 0.18);
    transform: translateY(100%);
  }
  .cart-drawer.is-open {
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .page-shop .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 540px) {
  .container {
    padding: 0 14px;
  }
  .header-inner {
    gap: 10px;
  }
  .site-nav {
    gap: 8px;
  }
  .site-nav a {
    font-size: 0.86rem;
    padding: 6px 0;
  }
  .logo img {
    height: 50px;
  }
  .page-product .logo img {
    height: 40px;
  }
  .site-header .primary-btn {
    padding: 8px 12px;
    font-size: 0.88rem;
  }
}
.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

/* ------------------------------
   Product Detail Page
------------------------------ */
.page-product .page-hero {
  padding-top: 28px;
  padding-bottom: 16px;
}

.product-hero__inner {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.page-product #productDetailSection {
  padding-top: 12px;
}

.trust-strip {
  background: #111b36;
  padding: 48px 0;
}

.trust-strip__inner {
  max-width: 1100px;
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  text-align: center;
}

.trust-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.trust-strip__icon {
  width: 34px;
  height: 34px;
  color: rgba(226, 232, 240, 0.9);
}

.trust-strip__icon path,
.trust-strip__icon rect {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-strip__title {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(248, 250, 252, 0.78);
}

.trust-strip__text {
  margin: 0;
  max-width: 320px;
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(248, 250, 252, 0.84);
}

.trust-strip__text a.inline-link {
  color: #9ac2ff;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  position: relative;
  z-index: 1;
  pointer-events: auto;
  cursor: pointer;
}

.trust-strip__text a.inline-link:hover,
.trust-strip__text a.inline-link:focus-visible {
  color: #c9ddff;
  text-decoration: underline;
}

.breadcrumb {
  margin-bottom: 0.5rem;
}

.breadcrumb-link {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}

.breadcrumb-link:hover,
.breadcrumb-link:focus-visible {
  text-decoration: underline;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.product-detail-image {
  background: #ffffff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 420px;
  width: 100%;
}

.product-detail-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.product-detail-card {
  padding: 1.5rem;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.product-detail-card .product-title {
  font-size: 1.75rem;
  line-height: 1.2;
}

.product-card .product-description-main {
  display: none !important;
}

.product-detail-page .product-description-main {
  display: block !important;
  margin-top: 12px;
  color: #4b5563;
  line-height: 1.6;
}

.product-accordion {
  margin-top: 12px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  padding-top: 12px;
}

.product-accordion summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.product-accordion summary::-webkit-details-marker {
  display: none;
}

.product-accordion p {
  margin: 10px 0 0;
  color: #4b5563;
  line-height: 1.6;
}

.page-product #productTitle,
.page-product #productNameHeading {
  font-size: 36px;
  font-weight: 700;
  color: #101828;
  margin-bottom: 10px;
}

.page-product #productCategory,
.page-product #productCategoryLabel {
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #6b7280;
  font-size: 13px;
  margin-bottom: 10px;
}

.page-product #productShortDescription {
  color: #4b5563;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 25px;
}

.product-detail-card .product-subtitle {
  margin-bottom: 0.4rem;
}

.detail-controls {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  background: #f8f9fb;
  padding: 18px;
  border-radius: 10px;
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.product-meta {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid #e5e7eb;
}

.product-meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 60px;
}

.product-meta-grid h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.product-meta-grid p {
  color: #4b5563;
  line-height: 1.55;
}

.product-meta-grid > div {
  background: #ffffff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.product-link {
  color: inherit;
  text-decoration: none;
}

.product-link:hover,
.product-link:focus-visible {
  text-decoration: underline;
}

.page-product #productPrice {
  font-size: 26px;
  font-weight: 700;
  color: #111827;
  margin: 10px 0 20px;
}

#detailAddToCart {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  border-radius: 10px;
  transition: transform 0.15s ease, background-color 0.15s ease;
}

#detailAddToCart:hover {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  #detailAddToCart {
    width: 100%;
  }

  .product-detail-image {
    margin: 0 auto;
    padding: 14px;
  }

  .product-detail-card {
    padding: 1rem;
  }

  .page-product #productNameHeading {
    font-size: 1.6rem;
    margin-bottom: 6px;
  }

  .page-product #productCategoryLabel {
    margin-bottom: 6px;
  }

  .page-product #productShortDescription {
    margin-bottom: 16px;
  }

  .detail-controls {
    padding: 12px;
    gap: 12px;
    margin-bottom: 14px;
  }

  .page-product #productPrice {
    margin: 6px 0 12px;
  }

  .product-meta {
    margin-top: 1rem;
  }

  .trust-strip__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .trust-strip {
    padding: 40px 0;
  }
}

.not-found-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}

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

  .product-detail-card {
    order: 2;
  }

  .product-detail-image {
    order: 1;
    padding: 1.25rem;
  }

.product-detail-image img {
  max-width: 100%;
  max-height: 420px;
}
}

.payment-section .section-note {
  text-align: center;
  margin: 0.25rem 0;
  color: #4a4a4a;
}

.payment-grid .payment-card {
  text-align: center;
}

.payment-qr {
  width: 180px;
  max-width: 100%;
  margin: 0 auto 12px;
  display: block;
}

.payment-address {
  font-family: "Space Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  word-break: break-all;
  overflow-wrap: anywhere;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .how-ordering-works h2,
  #how-ordering-works h2,
  .section-title {
    text-align: center !important;
    margin-bottom: 12px;
  }

  .video-wrapper,
  .how-ordering-video,
  .ordering-video-container {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  /* tighten section spacing */
  .how-ordering-works,
  #how-ordering-works {
    padding-top: 10px !important;
  }
}

/* ---------------------------------------------------------
   HOME PAGE PERFORMANCE SPACING
--------------------------------------------------------- */

.page-home .page-hero.hero-split {
  padding-top: 56px;
  padding-bottom: 48px;
  min-height: auto;
}

.page-home .hero-split__inner {
  gap: clamp(24px, 4vw, 48px);
  padding: 0 clamp(16px, 4vw, 60px);
}

.page-home .hero-copy {
  padding-top: 0;
}

.page-home .hero-copy .eyebrow {
  margin-bottom: 8px;
}

.page-home .hero-copy h1 {
  margin-bottom: 12px;
}

.page-home .hero-subheadline {
  margin-bottom: 16px;
  max-width: 560px;
  line-height: 1.65;
}

.page-home .hero-image {
  margin-top: 16px;
}

.page-home .hero-actions {
  margin-top: 12px;
  margin-bottom: 0;
}

.page-home #shop.section {
  padding-top: 28px;
}

.page-home #trust-strip {
  padding-top: 70px;
  padding-bottom: 60px;
}

.page-home #trust-strip .trust-container {
  padding: 0 16px;
}

.page-home .trust-label {
  margin-bottom: 12px;
}

.page-home .trust-grid {
  gap: 18px;
}

.page-home .trust-item {
  padding: 16px;
  gap: 12px;
}

.page-home .trust-icon-wrap {
  width: 48px;
  height: 48px;
}

.page-home .trust-icon {
  width: 26px;
  height: 26px;
}

.page-home .section {
  padding-top: 32px;
  padding-bottom: 32px;
}

.page-home .section .section-heading {
  margin-bottom: 12px;
}

.page-home .section-heading p {
  margin-top: 6px;
}

.page-home .section-heading h2::after {
  margin-top: 6px;
}

.page-home .section-subtitle {
  margin-top: 8px;
}

.page-home .card-grid {
  gap: 16px;
}

.page-home .section.highlights .value-props-grid {
  gap: 14px;
}

.page-home .value-props-grid .info-card {
  padding: 16px;
}

.page-home .value-props-grid .info-card h3 {
  margin-bottom: 6px;
}

.page-home .value-props-grid .info-card p {
  line-height: 1.6;
}

.page-home #shop .product-card {
  padding: 12px;
  gap: 6px;
}

.page-home #shop .product-card h3 {
  margin-bottom: 8px;
}

.page-home #shop .section-heading {
  margin-bottom: 10px;
}

.page-home #shop .catalog-link {
  margin-top: 10px;
  margin-bottom: 0;
}

.page-home .research-split {
  padding-top: 24px;
  padding-bottom: 24px;
}

.page-home .research-split .container.split {
  gap: 24px;
}

.page-home .research-split .research-copy p {
  margin-bottom: 12px;
  max-width: 560px;
  line-height: 1.65;
}

.page-home .research-split .highlight-card.checklist-plain h3 {
  margin-bottom: 8px;
}

.page-home .research-split .highlight-card.checklist-plain ul {
  gap: 6px;
  padding-left: 16px;
}

.page-home #faq-section {
  padding-top: 48px;
  padding-bottom: 48px;
}

.page-home #faq-section .section-heading {
  margin-bottom: 12px;
}

.page-home .faq-grid {
  gap: 14px;
}

.page-home .faq-item summary {
  padding: 14px 16px;
}

.page-home .faq-item .faq-answer {
  padding: 0 16px 16px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .page-home .page-hero.hero-split {
    padding-top: 20px;
    padding-bottom: 24px;
    text-align: center;
  }

  .page-home .hero-subheadline {
    font-size: 0.9rem;
    line-height: 1.45;
    max-width: 320px;
    margin-bottom: 6px;
  }

  .page-home .hero-actions {
    order: 3;
    width: auto;
    margin: 6px auto 0;
    align-items: center;
  }

  .page-home .hero-actions .primary-btn {
    width: auto;
    max-width: 70%;
    padding: 8px 20px;
    min-height: 38px;
    display: inline-flex;
  }

  .page-home .hero-image {
    order: 4;
    margin-top: 8px;
  }

  .page-home .hero-image img {
    width: min(440px, 78%);
    margin: 4px auto 0;
    transform: none;
  }

  .page-home .section {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .page-home #trust-strip {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .page-home .card-grid {
    gap: 14px;
  }

  .page-home .value-props-grid .info-card {
    padding: 12px;
  }

  .page-home #shop .product-card {
    padding: 12px;
  }

/* Sold out product styles */
.product-card--sold-out {
  opacity: 0.7;
  position: relative;
}

.product-card--sold-out::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  pointer-events: none;
}

.product-card--sold-out .product-image {
  filter: grayscale(0.3);
}

.product-card--sold-out .add-to-cart:disabled {
  background: #9ca3af !important;
  color: #6b7280 !important;
  cursor: not-allowed !important;
  opacity: 0.8;
}

.product-card--sold-out .qty-input:disabled {
  background: #f3f4f6 !important;
  color: #9ca3af !important;
  cursor: not-allowed;
}

.product-card--sold-out:hover {
  transform: none !important;
  box-shadow: 0 25px 45px rgba(9, 17, 44, 0.12) !important;
}

  .page-home .trust-item {
    padding: 12px;
  }

  .page-home .trust-icon-wrap {
    width: 40px;
    height: 40px;
  }

  .page-home .trust-icon {
    width: 22px;
    height: 22px;
  }

  .page-home .research-split .research-copy p {
    max-width: 28rem;
    margin: 0 auto 12px;
    line-height: 1.6;
  }

  .page-home .research-split {
    padding-top: 28px;
    padding-bottom: 24px;
  }

  .page-home #research-teams {
    padding-top: 36px;
    padding-bottom: 32px;
  }

  .page-home .research-split .container.split {
    gap: 16px;
    padding: 18px;
    background: #ffffff;
    border: 1px solid var(--border-soft);
    border-radius: 16px;
  }

  .page-home .research-split h2 {
    margin-bottom: 8px;
    line-height: 1.2;
  }

  .page-home .research-split .highlight-card.checklist-plain h3 {
    margin-bottom: 6px;
  }

  .page-home .research-split .highlight-card.checklist-plain ul {
    gap: 8px;
  }

  .page-home #faq-section {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

/* ---------------------------------------------------------
   QUIZ PAGE STYLES
--------------------------------------------------------- */

.page-quiz .hero-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 1rem;
}

.page-quiz .page-hero {
  padding-bottom: 2rem;
}

.page-quiz .section {
  padding: 2rem 1rem;
  background: transparent;
  margin-top: 0;
}

/* Add top spacing when results are shown (hero is hidden) */
.page-quiz .quiz-results:not([hidden]) {
  padding-top: 1rem;
}

.page-quiz .container {
  max-width: 800px;
  padding: 0;
}

.quiz-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 1.5rem;
  position: relative;
  z-index: 1;
  overflow: visible;
  width: 100%;
}

.quiz-progress {
  margin-bottom: 2rem;
  padding: 0.5rem 0;
}

.quiz-progress__bar {
  height: 8px;
  background: var(--border-soft);
  border-radius: 4px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.quiz-progress__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  border-radius: 4px;
  transition: width 0.3s ease;
}

.quiz-progress__text {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 600;
  text-align: center;
}

.quiz-question {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  margin-bottom: 1.5rem;
}

.question-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  color: var(--text-main);
}

.question-hint {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.question-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.option-label {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border: 2px solid var(--border-soft);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s ease;
  background: var(--card-bg);
}

.option-label:hover {
  border-color: var(--blue-light);
  background: rgba(125, 169, 255, 0.05);
  transform: translateX(4px);
}

.option-label input {
  margin: 0;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  accent-color: var(--blue);
}

.option-label input:checked + .option-text {
  color: var(--blue);
  font-weight: 600;
}

.option-label input:checked ~ .option-text {
  color: var(--blue);
  font-weight: 600;
}

.option-text {
  flex: 1;
  line-height: 1.5;
  color: var(--text-main);
}

/* Quiz Option Buttons (new quiz engine) */
.quiz-question__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  color: var(--text-main);
}

.quiz-question__subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.quiz-option {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 1.25rem 1.5rem;
  border: 2px solid var(--border-soft);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s ease;
  background: var(--card-bg);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-main);
  text-align: left;
}

.quiz-option:hover {
  border-color: var(--blue-light);
  background: rgba(125, 169, 255, 0.05);
  transform: translateX(4px);
}

.quiz-option.is-selected {
  border-color: var(--blue);
  background: rgba(29, 78, 216, 0.08);
  color: var(--blue);
  font-weight: 600;
}

.quiz-options--multi .quiz-option {
  position: relative;
  padding-left: 3rem;
}

.quiz-options--multi .quiz-option::before {
  content: '';
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border: 2px solid var(--border-soft);
  border-radius: 4px;
  background: white;
  transition: all 0.2s ease;
}

.quiz-options--multi .quiz-option.is-selected::before {
  background: var(--blue);
  border-color: var(--blue);
}

.quiz-options--multi .quiz-option.is-selected::after {
  content: '✓';
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.quiz-hint {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 1rem;
  text-align: center;
}

.quiz-review {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quiz-review__item {
  padding: 1rem 1.25rem;
  background: rgba(125, 169, 255, 0.05);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--blue);
}

.quiz-review__item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.quiz-review__item p {
  margin: 0;
  color: var(--text-main);
  font-weight: 500;
}

/* Quiz Product Cards */
.quiz-results__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.quiz-product-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quiz-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(5, 22, 60, 0.12);
}

.quiz-product-card--featured {
  border: 2px solid var(--blue);
  position: relative;
}

.quiz-product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--blue);
  color: white;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.quiz-product-image {
  padding: 1.5rem;
  background: linear-gradient(135deg, #f8f9ff, #ffffff);
  display: flex;
  align-items: center;
  justify-content: center;
}

.quiz-product-image img {
  max-width: 150px;
  max-height: 150px;
  object-fit: contain;
}

.quiz-product-content {
  padding: 1.5rem;
}

.quiz-product-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.quiz-product-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.quiz-product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.quiz-product-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
}

.quiz-product-fit {
  font-size: 0.85rem;
  color: var(--blue);
  font-weight: 600;
}

.quiz-results__total {
  text-align: center;
  font-size: 1.2rem;
  padding: 1rem;
  background: rgba(125, 169, 255, 0.08);
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
}

/* Quiz Confirmation Page */
.quiz-confirmation {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem;
}

.quiz-confirmation__icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(34, 197, 94, 0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
}

.quiz-confirmation__title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.quiz-confirmation__message {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.quiz-confirmation__timeline {
  background: linear-gradient(135deg, #f8faff, #ffffff);
  border: 1px solid rgba(29, 78, 216, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  text-align: left;
}

.quiz-confirmation__step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.quiz-confirmation__step:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.quiz-confirmation__step:first-child {
  padding-top: 0;
}

.quiz-confirmation__step-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.quiz-confirmation__step span:last-child {
  font-size: 1rem;
  color: var(--text-main);
  line-height: 1.5;
  padding-top: 0.15rem;
}

.quiz-confirmation__note {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.quiz-confirmation__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.quiz-confirmation__actions .primary-btn {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

@media (max-width: 640px) {
  .quiz-confirmation {
    padding: 1rem;
  }
  
  .quiz-confirmation__icon {
    width: 64px;
    height: 64px;
    font-size: 2rem;
  }
  
  .quiz-confirmation__title {
    font-size: 1.5rem;
  }
  
  .quiz-confirmation__message {
    font-size: 1rem;
  }
  
  .quiz-confirmation__timeline {
    padding: 1rem;
  }
  
  .quiz-confirmation__step {
    gap: 0.75rem;
  }
  
  .quiz-confirmation__step-icon {
    font-size: 1.25rem;
  }
  
  .quiz-confirmation__step span:last-child {
    font-size: 0.95rem;
  }
}

/* Quiz Capture Form */
.quiz-capture[hidden] {
  display: none !important;
}

.quiz-capture {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 450px;
  padding: 2rem 0;
}

.quiz-capture__card {
  background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(5, 22, 60, 0.12), 0 8px 20px rgba(29, 78, 216, 0.08);
  padding: 3rem;
  max-width: 440px;
  width: 100%;
  text-align: center;
  border: 1px solid rgba(29, 78, 216, 0.1);
  position: relative;
  overflow: hidden;
}

.quiz-capture__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), #6366f1, var(--accent));
}

.quiz-capture__icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(29, 78, 216, 0.1), rgba(99, 102, 241, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
}

.quiz-capture__title {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.quiz-capture__subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.quiz-capture__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.quiz-capture__field {
  text-align: left;
}

.quiz-capture__field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.quiz-capture__field input {
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1.05rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  background: white;
  color: var(--text-main);
  transition: all 0.2s ease;
}

.quiz-capture__field input:hover {
  border-color: #cbd5e1;
}

.quiz-capture__field input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(29, 78, 216, 0.12);
}

.quiz-capture__field input::placeholder {
  color: #94a3b8;
}

.quiz-capture__btn {
  width: 100%;
  padding: 1.1rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 0.75rem;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), #4f46e5);
  box-shadow: 0 4px 14px rgba(29, 78, 216, 0.35);
  transition: all 0.2s ease;
}

.quiz-capture__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(29, 78, 216, 0.4);
}

.quiz-capture__btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.quiz-capture__disclaimer {
  font-size: 0.8rem;
  color: #94a3b8;
  margin-top: 1.25rem;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.quiz-capture__disclaimer::before {
  content: '🔒';
  font-size: 0.75rem;
}

.quiz-capture__trust {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
}

.quiz-capture__trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.quiz-capture__trust-item svg {
  width: 16px !important;
  height: 16px !important;
  max-width: 16px;
  max-height: 16px;
  flex-shrink: 0;
  color: #22c55e;
}

@media (max-width: 640px) {
  .quiz-capture__card {
    padding: 2rem 1.5rem;
    margin: 0 1rem;
    border-radius: 16px;
  }
  
  .quiz-capture__icon {
    width: 60px;
    height: 60px;
    font-size: 1.75rem;
  }
  
  .quiz-capture__title {
    font-size: 1.5rem;
  }
  
  .quiz-capture__subtitle {
    font-size: 0.95rem;
  }
  
  .quiz-capture__field input {
    padding: 0.875rem 1rem;
  }
  
  .quiz-capture__trust {
    flex-direction: column;
    gap: 0.75rem;
  }
}

@media (max-width: 640px) {
  .quiz-option {
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
  }
  
  .quiz-options--multi .quiz-option {
    padding-left: 2.75rem;
  }
  
  .quiz-options--multi .quiz-option::before {
    left: 1rem;
  }
  
  .quiz-options--multi .quiz-option.is-selected::after {
    left: 1rem;
  }
  
  .quiz-product-image img {
    max-width: 120px;
    max-height: 120px;
  }
  
  .quiz-product-content {
    padding: 1.25rem;
  }
  
  .quiz-product-footer {
    flex-direction: column;
    align-items: stretch;
  }
  
  .quiz-product-footer .primary-btn {
    width: 100%;
    text-align: center;
  }
}

.quiz-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.quiz-controls .primary-btn,
.quiz-controls .button-secondary {
  min-width: 140px;
  padding: 12px 24px;
}

.quiz-back-btn {
  margin-right: auto;
}

.quiz-next-btn {
  margin-left: auto;
}

.quiz-questions[hidden],
.quiz-results[hidden] {
  display: none !important;
}

.quiz-questions {
  width: 100%;
  max-width: 100%;
}

.quiz-results {
  animation: fadeIn 0.5s ease;
  width: 100%;
  max-width: 100%;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* NEW QUIZ RESULTS STRUCTURE */

/* Quiz Complete Signal */
.quiz-complete-signal {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 1rem;
}

/* Results Header (Non-Hero Style) */
.quiz-results__header {
  text-align: center;
  margin-bottom: 2rem;
}

.quiz-results__header h1 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.quiz-results__subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0;
}

/* SECTION 1: Primary Recommendation (FIRST) */
.quiz-results__primary {
  margin-bottom: 2rem;
}

.quiz-results__primary h2 {
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

/* SECTION 2: Explanation (After Primary) */
.quiz-results__explanation {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(29, 78, 216, 0.03);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--blue);
}

.explanation-sentence {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
  font-style: italic;
}

.primary-match-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(29, 78, 216, 0.15);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  max-width: 600px;
  margin: 0 auto;
  border: 2px solid rgba(29, 78, 216, 0.2);
  position: relative;
}

.primary-match-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
}

.primary-match__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--blue);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.primary-match-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(29, 78, 216, 0.25);
  border-color: rgba(29, 78, 216, 0.3);
}

.primary-match__image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.primary-match-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.primary-match__content {
  padding: 2rem;
}

.primary-match__content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--text-main);
}

.includes-line {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-weight: 500;
}

.primary-match__why {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 2rem;
}

.primary-match__cta {
  width: 100%;
  justify-content: center;
  padding: 14px 28px;
}

/* SECTION 3: Required for Reconstitution */
.quiz-results__required {
  margin-bottom: 3rem;
}

.quiz-results__required h2 {
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.required-card {
  background: rgba(29, 78, 216, 0.03);
  border: 1px solid rgba(29, 78, 216, 0.1);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.required__image {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.required__image-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.required__content {
  flex: 1;
}

.required__content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--text-main);
}

.required__description {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
}

.required__cta {
  width: 100%;
  justify-content: center;
  padding: 12px 24px;
}

/* SECTION 4: Other Research Options */
.quiz-results__secondary {
  margin-bottom: 3rem;
}

.quiz-results__secondary h2 {
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.secondary-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.secondary-option-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
}

.secondary-option__image {
  width: 100%;
  height: 120px;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: var(--radius-sm);
}

.secondary-option-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.secondary-option__content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.secondary-option__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--text-muted);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.secondary-option__badge.continuity {
  background: var(--accent);
}

.continuity-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  text-align: center;
  font-style: italic;
}

.secondary-option-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(5, 22, 60, 0.12);
}

.secondary-option-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: var(--text-main);
}

.secondary-option__why {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0 0 1rem;
  font-style: italic;
}

.secondary-option__cta {
  color: var(--blue);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s ease;
}

.secondary-option__cta:hover {
  color: var(--accent);
}

/* Final Actions Section */
.quiz-results__actions {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-soft);
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.quiz-results__actions .primary-btn,
.quiz-results__actions .button-secondary {
  min-width: 160px;
  padding: 14px 28px;
}

.recommendation-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.recommendation-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(5, 22, 60, 0.18);
}

.recommendation-card__image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.recommendation-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recommendation-card__header {
  padding: 1.5rem 1.5rem 0.75rem;
}

.recommendation-card__header h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--text-main);
  line-height: 1.3;
}

.includes-line {
  font-size: 0.85rem;
  color: var(--text-muted);
  background: var(--bg);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-md);
  margin-top: 0.5rem;
  font-weight: 500;
  display: inline-block;
}

.recommendation-card__content {
  padding: 0 1.5rem 1.5rem;
  flex: 1;
}

.why-it-fits {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-main);
  margin: 0;
  font-style: italic;
}

.recommendation-card__actions {
  padding: 0 1.5rem 1.5rem;
}

.recommendation-cta {
  width: 100%;
  justify-content: center;
  padding: 12px 20px;
  font-size: 0.95rem;
  font-weight: 600;
}

.quiz-results__promos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.promo-card {
  background: linear-gradient(135deg, rgba(29, 78, 216, 0.1), rgba(78, 124, 255, 0.1));
  border: 1px solid rgba(29, 78, 216, 0.2);
  color: var(--text-main);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.promo-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(29, 78, 216, 0.15);
}

.promo-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--blue);
}

.promo-card p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
  color: var(--text-muted);
}

.promo-card strong {
  color: var(--blue);
  font-weight: 600;
  background: rgba(29, 78, 216, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.quiz-results__why {
  max-width: 600px;
  margin: 2rem auto 3rem;
}

.why-toggle {
  width: 100%;
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-main);
}

.why-toggle:hover {
  background: var(--bg-subtle);
  border-color: var(--blue);
}

.why-toggle-icon {
  font-size: 0.8rem;
  transition: transform 0.2s ease;
}

.why-content {
  margin-top: 1rem;
  padding: 1.5rem;
  background: rgba(29, 78, 216, 0.03);
  border: 1px solid rgba(29, 78, 216, 0.1);
  border-radius: var(--radius-md);
}

.why-factors {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.why-factors li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-soft);
  position: relative;
  padding-left: 1.5rem;
}

.why-factors li:last-child {
  border-bottom: none;
}

.why-factors li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 600;
}

.why-disclaimer {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 1rem 0 0;
  font-style: italic;
}

.quiz-results__error {
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(220, 38, 38, 0.05);
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: var(--radius-md);
  margin: 2rem 0;
}

.quiz-results__error p {
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 1.5rem;
}

.quiz-results__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 3rem 0 2rem;
  flex-wrap: wrap;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .quiz-container {
    padding: 1rem;
  }

  .quiz-question {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }

  .question-header h3 {
    font-size: 1.25rem;
  }

  .option-label {
    padding: 1rem 1.25rem;
  }

  .option-label:hover {
    transform: none;
  }

  .quiz-controls {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    gap: 0.75rem;
  }

  .quiz-controls .primary-btn,
  .quiz-controls .button-secondary {
    flex: 1;
    min-width: 0;
  }

  .quiz-back-btn {
    margin-right: 0;
  }

  .quiz-next-btn {
    margin-left: 0;
  }
  
  .quiz-results__header h1 {
    font-size: 1.5rem;
  }
  
  .quiz-results__primary h2 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  
  .primary-match-card {
    max-width: none;
    margin: 0 auto 1.5rem;
  }
  
  .primary-match__content {
    padding: 1.5rem;
  }
  
  .primary-match__content h3 {
    font-size: 1.3rem;
  }
  
  .quiz-results__explanation {
    padding: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .explanation-sentence {
    font-size: 0.9rem;
  }
  
  .quiz-results__required h2 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  
  .required-card {
    padding: 1.25rem;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .required__image {
    width: 60px;
    height: 60px;
    margin: 0 auto;
  }
  
  .quiz-results__secondary h2 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  
  .secondary-options-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  
  .secondary-option-card {
    padding: 1.25rem;
  }
  
  .secondary-option-card h4 {
    font-size: 1rem;
  }
  
  .quiz-results__actions {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .quiz-results__actions .primary-btn,
  .quiz-results__actions .button-secondary {
    width: 100%;
    max-width: 300px;
  }
  
  .recommendation-card__image {
    height: 180px;
  }
  
  .recommendation-card__header {
    padding: 1.25rem 1.25rem 0.5rem;
  }
  
  .recommendation-card__header h3 {
    font-size: 1.2rem;
  }
  
  .recommendation-card__content {
    padding: 0 1.25rem 1.25rem;
  }
  
  .recommendation-card__actions {
    padding: 0 1.25rem 1.25rem;
  }
  
  .quiz-results__promos {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  
  .promo-card {
    padding: 1.25rem;
  }
  
  .quiz-results__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  
  .quiz-results__actions .primary-btn,
  .quiz-results__actions .button-secondary {
    width: 100%;
    min-width: auto;
  }
}

@media (max-width: 640px) {
  .quiz-question {
    padding: 1rem;
  }
  
  .option-label {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
  }
  
  .recommendation-card__image {
    height: 160px;
  }
  
  .primary-recommendation-card {
    border-width: 1px;
  }
  
  .secondary-card {
    padding: 1rem;
  }
  
  .secondary-card h4 {
    font-size: 0.95rem;
  }
  
  .quiz-results__promos {
    gap: 0.75rem;
  }
  
  .promo-card {
    padding: 1rem;
  }
}

/* Quiz Container properties moved above to avoid conflicts */

/* ========================================
   IMPROVED QUIZ RESULTS UI
   ======================================== */

/* Primary Match Card - Hero Style */
.primary-match-card {
  max-width: 700px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(29, 78, 216, 0.12);
  border: 2px solid rgba(29, 78, 216, 0.15);
  overflow: hidden;
  display: flex;
  flex-direction: row;
  gap: 2rem;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.primary-match-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 50px rgba(29, 78, 216, 0.18);
}

.primary-match__image {
  flex-shrink: 0;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.primary-match__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.primary-match__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.primary-match__badge {
  display: inline-block;
  background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  align-self: flex-start;
  box-shadow: 0 2px 8px rgba(29, 78, 216, 0.3);
}

.primary-match__content h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #09112c;
  margin: 0;
  line-height: 1.2;
}

.primary-match__type {
  font-size: 0.9rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin: 0;
}

.primary-match__reason,
.primary-match__description {
  font-size: 1rem;
  line-height: 1.6;
  color: #4b5563;
  margin: 0.5rem 0;
}

.primary-match__budget-notice {
  display: inline-block;
  background: #fef3c7;
  color: #92400e;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid #fde047;
}

.primary-match__price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1d4ed8;
  margin-top: 0.5rem;
}

.primary-match__cta {
  margin-top: auto;
  padding: 0.85rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
}

/* Required Card - Bacteriostatic Water */
.required-card {
  max-width: 600px;
  margin: 0 auto 2rem;
  background: #eff6ff;
  border: 2px dashed #3b82f6;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.required__image {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 8px;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.required__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.required__content {
  flex: 1;
}

.required__content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e40af;
  margin: 0 0 0.5rem;
}

.required__description {
  font-size: 0.9rem;
  color: #4b5563;
  margin: 0 0 0.75rem;
  line-height: 1.5;
}

.required__price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1d4ed8;
  margin: 0 0 1rem;
}

.required__cta {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
}

/* Secondary Options Grid */
.secondary-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.secondary-option-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.secondary-option-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #3b82f6;
}

.secondary-option__badge {
  display: inline-block;
  background: #f3f4f6;
  color: #374151;
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  align-self: flex-start;
}

.secondary-option__image {
  width: 100%;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9fafb;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.secondary-option__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.secondary-option__content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #09112c;
  margin: 0 0 0.25rem;
}

.secondary-option__type {
  font-size: 0.8rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin: 0 0 0.75rem;
}

.secondary-option__reason,
.secondary-option__description {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #4b5563;
  margin: 0 0 1rem;
  flex-grow: 1;
}

.secondary-option__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

.secondary-option__price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1d4ed8;
}

.secondary-option__cta {
  background: #1d4ed8;
  color: white;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.secondary-option__cta:hover {
  background: #1e40af;
}

/* Mobile Responsive for Primary Card */
@media (max-width: 768px) {
  .primary-match-card {
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.5rem;
  }

  .primary-match__image {
    width: 100%;
    height: 180px;
  }

  .primary-match__content h3 {
    font-size: 1.4rem;
  }

  .primary-match__price {
    font-size: 1.25rem;
  }

  .required-card {
    flex-direction: column;
    text-align: center;
  }

  .required__image {
    margin: 0 auto;
  }

  .secondary-options-grid {
    grid-template-columns: 1fr;
  }
}

/* Homepage Quiz CTA Section */
#quiz-section {
  background: var(--bg);
  padding: 0.5rem 0;
}

.quiz-cta-section {
  max-width: 600px;
  margin: 0 auto;
}

.quiz-cta-card {
  background: linear-gradient(135deg, #ffffff, #f8f9ff);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 3rem 2rem;
  text-align: center;
  border: 1px solid var(--border-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quiz-cta-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(5, 22, 60, 0.18);
}

.quiz-cta-content {
  max-width: 400px;
  margin: 0 auto;
}

.quiz-cta-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.hero-subhead {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
}

.hero-quiz-line {
  margin-top: 8px;          /* pulls it closer to subheadline */
  margin-bottom: 22px;      /* clean spacing before buttons */
  font-size: 0.95rem;       /* slightly smaller */
  font-weight: 400;         /* lighter than subheadline */
  color: rgba(255, 255, 255, 0.75); /* softer, still readable */
  line-height: 1.45;
}

.quiz-cta-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.quiz-cta-btn {
  padding: 14px 32px;
  font-size: 1.05rem;
  min-width: 180px;
  font-weight: 600;
}

/* Mobile responsiveness for quiz CTA */
@media (max-width: 768px) {
  #quiz-section {
    padding: 0.25rem 0;
  }
  
  .quiz-cta-card {
    padding: 2rem 1.5rem;
  }
  
  .quiz-cta-title {
    font-size: 1.5rem;
  }
  
  .quiz-cta-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .quiz-cta-btn {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 640px) {
  .quiz-cta-card {
    padding: 1.75rem 1.25rem;
  }
  
  .quiz-cta-title {
    font-size: 1.4rem;
  }
}

/* Active nav state */
.nav-active {
  color: var(--blue) !important;
  font-weight: 600;
}

/* ========================================
   MOBILE-FIRST QUIZ UI IMPROVEMENTS
   ======================================== */

/* Base mobile styles for quiz (375-430px screens) */
@media (max-width: 480px) {
  /* Container with consistent padding */
  .quiz-container {
    max-width: 480px;
    margin: 0 auto;
    padding: 0 16px 120px 16px; /* Extra bottom padding for sticky footer */
  }

  /* Question card mobile optimization */
  .quiz-question {
    padding: 20px 16px;
    margin-bottom: 16px;
    border-radius: 14px;
  }

  /* Question title typography */
  .question-header h3 {
    font-size: clamp(22px, 5vw, 26px);
    line-height: 1.25;
    font-weight: 700;
    margin-bottom: 20px;
  }

  .question-subtitle {
    font-size: 14px;
    line-height: 1.4;
    color: var(--text-muted);
    margin-bottom: 20px;
  }

  /* Premium option card styling */
  .option-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    min-height: 56px; /* Bigger tap target */
    border: 2px solid #e5e7eb;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: white;
    margin-bottom: 12px;
  }

  .option-label:hover {
    border-color: #93c5fd;
    background: rgba(59, 130, 246, 0.03);
    transform: none; /* Remove desktop hover transform */
  }

  .option-label.selected {
    border-color: #3b82f6;
    background: rgba(59, 130, 246, 0.08);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.15);
  }

  /* Radio/checkbox input styling */
  .option-label input[type="radio"],
  .option-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 2px 0 0 0;
    flex: 0 0 auto;
    accent-color: #3b82f6;
    cursor: pointer;
  }

  /* Option text styling */
  .option-text {
    flex: 1;
    font-size: 16px;
    line-height: 1.4;
    color: #1f2937;
  }

  .option-label.selected .option-text {
    color: #1d4ed8;
    font-weight: 600;
  }

  /* Sticky footer for buttons */
  .quiz-controls {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: white;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
    margin-top: 0;
    z-index: 100;
  }

  .quiz-controls .button-secondary,
  .quiz-controls .primary-btn {
    flex: 1;
    min-width: 0;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    text-align: center;
  }

  .quiz-back-btn {
    margin-right: 0;
  }

  .quiz-next-btn {
    margin-left: 0;
  }

  /* Progress bar mobile */
  .quiz-progress {
    margin-bottom: 20px;
  }

  .quiz-progress__text {
    font-size: 14px;
    font-weight: 600;
  }

  /* Results page mobile optimization */
  .quiz-results__header {
    margin-bottom: 20px;
    padding: 0 8px;
    margin-top: 0;
  }

  .quiz-results__header h1 {
    font-size: clamp(24px, 6vw, 28px);
    line-height: 1.2;
    margin-bottom: 8px;
  }

  .quiz-results__subtitle {
    font-size: 15px;
    line-height: 1.4;
  }

  /* Primary Match section */
  .quiz-results__primary {
    margin-bottom: 24px;
  }

  .quiz-results__primary h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    padding: 0 8px;
  }

  /* Primary Match Card mobile */
  .primary-match-card {
    flex-direction: column;
    padding: 20px 16px;
    margin: 0 0 16px 0;
    max-width: 100%;
    border-radius: 16px;
  }

  .primary-match__image {
    width: 100%;
    max-width: 200px;
    height: 200px;
    margin: 0 auto 16px;
  }

  .primary-match__content {
    text-align: center;
  }

  .primary-match__badge {
    font-size: 11px;
    padding: 6px 12px;
    border-radius: 16px;
    margin: 0 auto 12px;
  }

  .primary-match__content h3 {
    font-size: 22px;
    margin-bottom: 8px;
  }

  .primary-match__type {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .primary-match__description {
    font-size: 15px;
    line-height: 1.5;
    margin: 12px 0;
  }

  .primary-match__budget-notice {
    display: block;
    font-size: 13px;
    padding: 8px 12px;
    margin: 12px 0;
  }

  .primary-match__price {
    font-size: 28px;
    margin: 16px 0;
  }

  .primary-match__cta {
    width: 100%;
    padding: 14px 24px;
    font-size: 16px;
    border-radius: 10px;
  }

  /* Required section mobile */
  .quiz-results__required {
    margin-bottom: 24px;
  }

  .quiz-results__required h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    padding: 0 8px;
  }

  .required-card {
    flex-direction: row;
    padding: 16px;
    gap: 16px;
    max-width: 100%;
    margin: 0;
  }

  .required__image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
  }

  .required__content {
    flex: 1;
    text-align: left;
  }

  .required__content h4 {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .required__description {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 12px;
  }

  .required__price {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .required__cta {
    width: 100%;
    padding: 10px 16px;
    font-size: 14px;
    border-radius: 8px;
  }

  /* Secondary recommendations mobile */
  .quiz-results__secondary {
    margin-bottom: 24px;
  }

  .quiz-results__secondary h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    padding: 0 8px;
  }

  .secondary-options-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }

  .secondary-option-card {
    padding: 16px;
    border-radius: 14px;
  }

  .secondary-option__badge {
    font-size: 11px;
    padding: 6px 10px;
    margin-bottom: 12px;
  }

  .secondary-option__image {
    height: 140px;
    margin-bottom: 12px;
  }

  .secondary-option__content h4 {
    font-size: 18px;
    margin-bottom: 4px;
  }

  .secondary-option__type {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .secondary-option__description {
    font-size: 14px;
    line-height: 1.45;
    margin-bottom: 12px;
  }

  .secondary-option__footer {
    padding-top: 12px;
    gap: 12px;
    flex-wrap: wrap;
  }

  .secondary-option__price {
    font-size: 20px;
  }

  .secondary-option__cta {
    padding: 10px 16px;
    font-size: 14px;
    border-radius: 8px;
    flex: 1;
    min-width: 120px;
  }

  /* Results actions mobile */
  .quiz-results__actions {
    flex-direction: column;
    gap: 12px;
    margin: 20px 0 12px;
    padding-top: 16px;
  }

  .quiz-results__actions .primary-btn,
  .quiz-results__actions .button-secondary {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 14px 24px;
    font-size: 16px;
  }

  /* Prevent horizontal scroll */
  .quiz-container,
  .quiz-question,
  .quiz-results {
    max-width: 100%;
    overflow-x: hidden;
  }

  /* Ensure header doesn't overlap quiz */
  .page-quiz .page-hero {
    padding-top: 80px; /* Adjust based on header height */
  }
}

/* Tablet adjustments (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .quiz-container {
    padding: 0 24px 120px 24px;
  }

  .quiz-question {
    padding: 24px 20px;
  }

  .option-label {
    padding: 18px;
  }

  .primary-match-card {
    flex-direction: row;
    padding: 24px 20px;
  }

  .primary-match__image {
    width: 220px;
    height: 220px;
    margin: 0;
  }

  .primary-match__content {
    text-align: left;
  }

  .required-card {
    max-width: 600px;
    margin: 0 auto;
  }

  .secondary-options-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
}

/* Desktop: Remove sticky footer */
@media (min-width: 769px) {
  .quiz-controls {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    box-shadow: none;
    border-top: none;
    padding: 0;
    margin-top: 3rem;
  }

  .quiz-container {
    padding-bottom: 1.5rem;
  }
}

/* ---------------------------------------------------------
   CUSTOMER VERIFICATION CAROUSEL
--------------------------------------------------------- */

.customer-verification-section {
  background: #0d1a2d;
  padding: 40px 0;
  overflow: hidden;
}

.verification-header {
  text-align: center;
  margin-bottom: 24px;
}

.verification-header h2 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 8px 0;
}

.verification-header p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  margin: 0;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 16px;
}

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

.stat-item {
  text-align: center;
}

.stat-value {
  display: block;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
}

.stat-label {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.75rem;
  margin-top: 2px;
}

.carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
}

.carousel-track-wrapper {
  overflow: hidden;
  border-radius: 12px;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.coa-card {
  flex: 0 0 calc(100% - 16px);
  margin: 0 8px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.coa-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.coa-pdf-card {
  display: block;
  text-decoration: none;
  padding: 0;
  height: 320px;
}

.coa-pdf-embed {
  width: 100%;
  height: 100%;
  position: relative;
  pointer-events: none;
}

.coa-pdf-embed object {
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: none;
}

.pdf-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fd 100%);
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 500;
}

.coa-pdf-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  padding: 40px 20px 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.coa-pdf-card:hover .coa-pdf-overlay {
  opacity: 1;
}

.coa-pdf-label {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.coa-pdf-label::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'/%3E%3Cpolyline points='15 3 21 3 21 9'/%3E%3Cline x1='10' y1='14' x2='21' y2='3'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  border: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
  z-index: 10;
}

.carousel-btn:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

.carousel-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.carousel-btn svg {
  width: 18px;
  height: 18px;
  color: var(--blue-dark);
}

.carousel-btn-prev {
  left: 4px;
}

.carousel-btn-next {
  right: 4px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  padding: 0;
}

.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

.carousel-dot.active {
  background: #ffffff;
  transform: scale(1.2);
}

/* Tablet: 2 cards */
@media (min-width: 768px) {
  .customer-verification-section {
    padding: 50px 0;
  }

  .verification-header {
    margin-bottom: 28px;
  }

  .verification-header h2 {
    font-size: 1.75rem;
  }

  .verification-header p {
    font-size: 1rem;
  }

  .verification-stats {
    gap: 36px;
    margin-bottom: 28px;
  }

  .stat-value {
    font-size: 1.6rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .coa-card {
    flex: 0 0 calc(50% - 16px);
  }

  .coa-pdf-card {
    height: 360px;
  }

  .carousel-dots {
    margin-top: 24px;
  }
}

/* Desktop: 3 cards */
@media (min-width: 1024px) {
  .customer-verification-section {
    padding: 60px 0;
  }

  .verification-header {
    margin-bottom: 32px;
  }

  .verification-header h2 {
    font-size: 2rem;
  }

  .verification-header p {
    font-size: 1.05rem;
  }

  .verification-stats {
    gap: 48px;
    margin-bottom: 32px;
  }

  .stat-value {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }

  .carousel-container {
    padding: 0 60px;
  }

  .coa-card {
    flex: 0 0 calc(33.333% - 16px);
  }

  .coa-pdf-card {
    height: 380px;
  }

  .carousel-btn {
    width: 44px;
    height: 44px;
  }

  .carousel-btn svg {
    width: 22px;
    height: 22px;
  }

  .carousel-btn-prev {
    left: 8px;
  }

  .carousel-btn-next {
    right: 8px;
  }
}

/* ---------------------------------------------------------
   LEAD CAPTURE SYSTEM
--------------------------------------------------------- */

/* Phone Capture Step (before results) */
.phone-capture-step {
  text-align: center;
  max-width: 440px;
  margin: 0 auto;
  padding: 40px 20px;
}

.phone-capture__logo {
  margin-bottom: 24px;
}

.phone-capture__logo img {
  height: 60px;
  width: auto;
}

.phone-capture-step h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #0d1a2d;
  margin: 0 0 12px 0;
}

.phone-capture-step > p {
  font-size: 1rem;
  color: #64748b;
  margin: 0 0 32px 0;
  line-height: 1.6;
}

.phone-form {
  text-align: left;
}

.phone-form__group {
  margin-bottom: 20px;
}

.phone-form__group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0d1a2d;
  margin-bottom: 8px;
}

.phone-form__group input {
  width: 100%;
  padding: 16px;
  border: 2px solid #e1e4f0;
  border-radius: 12px;
  font-size: 1rem;
  color: #0d1a2d;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.phone-form__group input:focus {
  outline: none;
  border-color: #1d4ed8;
  box-shadow: 0 0 0 4px rgba(29, 78, 216, 0.1);
}

.phone-form__group input::placeholder {
  color: #94a3b8;
}

.phone-form__submit {
  width: 100%;
  padding: 18px;
  font-size: 1.1rem;
  margin-top: 8px;
}

.phone-form__disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: #94a3b8;
  margin-top: 16px;
}

/* Lead Capture CTA in Quiz Results (legacy - keeping for reference) */
.quiz-results__lead-capture {
  margin: 40px 0;
}

.lead-capture-cta {
  background: linear-gradient(135deg, #0d1a2d 0%, #1d4ed8 100%);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  color: #ffffff;
}

.lead-capture-cta__icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.lead-capture-cta h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: #ffffff;
}

.lead-capture-cta > p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 24px 0;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.lead-capture-cta__buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.contact-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.telegram-btn {
  background: #0088cc;
  color: #ffffff;
}

.telegram-btn:hover {
  background: #0077b5;
}

.sms-btn {
  background: #ffffff;
  color: #0d1a2d;
}

.sms-btn:hover {
  background: #f0f4f8;
}

.whatsapp-btn {
  background: #25D366;
  color: #ffffff;
}

.whatsapp-btn:hover {
  background: #1da851;
}

.lead-capture-cta__subtext {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.lead-capture-cta__subtext strong {
  color: #ffffff;
}

/* Lead Capture Modal */
.lead-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lead-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.lead-modal__content {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  max-width: 440px;
  width: 100%;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lead-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: #f3f4f6;
  border-radius: 50%;
  font-size: 1.5rem;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.lead-modal__close:hover {
  background: #e5e7eb;
  color: #0d1a2d;
}

.lead-modal__content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0d1a2d;
  margin: 0 0 8px 0;
  text-align: center;
}

.lead-modal__content > p {
  font-size: 0.95rem;
  color: #64748b;
  margin: 0 0 24px 0;
  text-align: center;
}

.lead-form__group {
  margin-bottom: 20px;
}

.lead-form__group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0d1a2d;
  margin-bottom: 6px;
}

.lead-form__group input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e1e4f0;
  border-radius: 10px;
  font-size: 1rem;
  color: #0d1a2d;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-form__group input:focus {
  outline: none;
  border-color: #1d4ed8;
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.1);
}

.lead-form__group input::placeholder {
  color: #94a3b8;
}

.lead-form__group small {
  display: block;
  font-size: 0.8rem;
  color: #64748b;
  margin-top: 6px;
}

.lead-form__submit {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  margin-top: 8px;
}

/* Lead Success Message */
.lead-success {
  text-align: center;
  padding: 20px 0;
}

.lead-success__icon {
  width: 64px;
  height: 64px;
  background: #10b981;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
}

.lead-success h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0d1a2d;
  margin: 0 0 12px 0;
}

.lead-success p {
  font-size: 1rem;
  color: #64748b;
  margin: 0 0 8px 0;
}

.lead-success__note {
  font-size: 0.875rem;
  color: #94a3b8;
  margin-bottom: 24px !important;
}

/* Mobile Responsive */
@media (max-width: 640px) {
  .lead-capture-cta {
    padding: 30px 20px;
  }

  .lead-capture-cta h3 {
    font-size: 1.5rem;
  }

  .lead-capture-cta__buttons {
    flex-direction: column;
  }

  .contact-btn {
    width: 100%;
    justify-content: center;
  }

  .lead-modal__content {
    padding: 30px 24px;
  }
}
