:root {
    --navy: #141e55;
    --navy-700: #1c2a6b;
    --navy-deep: #070b3d;
    --blue: #4179d1;
    --blue-600: #2f5fb3;
    --blue-50: #f3f7fe;
    --surface: #f7f9fc;
    --hero-surface: #f4f5f7;
    --text: #1f2937;
    --muted: #64748b;
    --border: #e5e7eb;
    --white: #fff;
    --success: #15803d;
    --shadow-soft: 0 18px 70px rgba(20, 30, 85, 0.08);
    --shadow-card: 0 18px 40px -20px rgba(20, 30, 85, 0.25), 0 8px 20px rgba(15, 23, 42, 0.06);
    --container: 1280px;
    --container-wide: 1360px;
    --radius-xl: 2rem;
    --radius-lg: 1.55rem;
    --radius-md: 1rem;
    --font-sans: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-display: var(--font-sans);
  }

  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
  body {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--white);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
  }
  img { display: block; max-width: 100%; height: auto; }
  a { color: inherit; text-decoration: none; }
  button, input { font: inherit; }
  button { border: 0; background: transparent; cursor: pointer; }
  .container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
  .container-wide { width: 100%; max-width: var(--container-wide); margin: 0 auto; padding: 0 20px; }
  .section { padding: 88px 0; }
  .section--surface { background: var(--surface); }
  .section-head { max-width: 760px; margin: 0 auto 42px; text-align: center; }
  .section-head .lead a { color: var(--blue); font-weight: 800; }
  .section-head .lead a:hover { color: var(--blue-600); }
  .eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--blue-600);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
  }
  .section-title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.04;
    letter-spacing: -.045em;
    color: var(--navy);
    font-weight: 900;
  }
  .lead {
    max-width: 680px;
    margin: 18px auto 0;
    color: var(--muted);
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.75;
  }
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 13px 22px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 14px;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
    white-space: nowrap;
  }
  .btn:hover { transform: translateY(-1px); }
  .btn--primary { background: var(--navy); color: #fff; box-shadow: 0 14px 35px rgba(20, 30, 85, .18); }
  .btn--primary:hover { background: var(--navy-700); }
  .btn--white { background: #fff; color: var(--navy); box-shadow: 0 18px 35px rgba(0,0,0,.1); }
  .btn--ghost { background: rgba(255,255,255,.72); border: 1px solid #d1d5db; color: var(--navy); }
  .btn--blue { background: var(--blue); color: #fff; box-shadow: 0 12px 30px rgba(47,95,179,.22); }
  .btn--lg { min-height: 58px; padding: 17px 28px; font-size: 16px; }
  .btn--block { width: 100%; }

  :root {
    --site-chrome-height: 110px;
  }

  /* Top bar */
  .topbar { background: var(--navy); color: #fff; }
  .topbar__inner {
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    font-size: 12px;
    font-weight: 700;
  }
  .topbar a, .topbar__promo { display: inline-flex; align-items: center; gap: 8px; opacity: .9; }
  .topbar a:hover { opacity: 1; }
  .topbar__links { display: flex; align-items: center; gap: 24px; }

  /* Header */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,.92);
    border-bottom: 1px solid rgba(229,231,235,.75);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
  }
  .site-header__inner {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
  .brand img { height: 44px; width: auto; object-fit: contain; }
  .nav { display: flex; align-items: center; gap: 4px; }
  .nav__item { position: relative; }
  .nav__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 12px;
    border-radius: 999px;
    color: var(--navy);
    font-size: 14px;
    font-weight: 800;
    transition: background-color .2s ease, color .2s ease;
  }
  .nav__link:hover { background: var(--blue-50); color: var(--blue-600); }
  .nav__link.is-active { background: var(--blue-50); color: var(--blue-600); }
  .nav-overlay {
    position: fixed;
    inset: 0;
    top: var(--site-chrome-height);
    z-index: 45;
    background: rgba(15, 23, 42, 0.42);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .2s ease, visibility .2s ease;
  }
  body:has(.nav__item:hover .nav__dropdown) .nav-overlay,
  body:has(.nav__item:focus-within .nav__dropdown) .nav-overlay {
    opacity: 1;
    visibility: visible;
  }
  .nav__dropdown {
    position: absolute;
    left: 50%;
    top: 100%;
    z-index: 2;
    min-width: 270px;
    transform: translateX(-50%) translateY(12px);
    padding: 12px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(15,23,42,.12);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }
  .nav__dropdown--rich {
    min-width: 340px;
    max-width: min(380px, calc(100vw - 32px));
    padding: 10px;
  }
  .nav__item:hover .nav__dropdown, .nav__item:focus-within .nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(4px);
  }
  .nav__item:hover .nav__link .fa-chevron-down,
  .nav__item:focus-within .nav__link .fa-chevron-down {
    transform: rotate(180deg);
  }
  .nav__link .fa-chevron-down { transition: transform .2s ease; }
  .nav__item:last-child .nav__dropdown {
    left: auto;
    right: 0;
    transform: translateY(12px);
  }
  .nav__item:last-child:hover .nav__dropdown,
  .nav__item:last-child:focus-within .nav__dropdown {
    transform: translateY(4px);
  }
  .nav__dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 14px;
    color: var(--navy);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    transition: background-color .15s ease, color .15s ease;
  }
  .nav__dropdown-item:hover {
    background: #f1f5f9;
    color: var(--navy);
  }
  .nav__dropdown-item--featured {
    margin-bottom: 4px;
    background: linear-gradient(135deg, #eef2ff 0%, #e8f5f0 100%);
    border: 1px solid rgba(20, 30, 85, .06);
  }
  .nav__dropdown-item--featured:hover {
    background: linear-gradient(135deg, #e0e7ff 0%, #dcf0e8 100%);
  }
  .nav__dropdown-item--link {
    justify-content: space-between;
  }
  .nav__dropdown-thumb {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #f8fafc;
    overflow: hidden;
  }
  .nav__dropdown-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
  }
  .nav__dropdown-thumb i {
    color: #94a3b8;
    font-size: 18px;
  }
  .nav__dropdown-thumb--mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    padding: 4px;
    background: #fff;
  }
  .nav__dropdown-thumb--mosaic img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 2px;
    border-radius: 6px;
    background: #f8fafc;
  }
  .nav__dropdown-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    flex: 1 1 auto;
  }
  .nav__dropdown-label {
    min-width: 0;
    font-weight: 700;
  }
  .nav__dropdown-rx {
    flex: 0 0 auto;
    padding: 2px 6px;
    border-radius: 6px;
    background: #f1f5f9;
    color: #94a3b8;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
    line-height: 1;
  }
  .nav__dropdown-arrow {
    flex: 0 0 auto;
    margin-left: auto;
    color: #94a3b8;
    font-size: 13px;
    transition: transform .15s ease, color .15s ease;
  }
  .nav__dropdown-item:hover .nav__dropdown-arrow {
    color: var(--blue-600);
    transform: translateX(3px);
  }
  .nav__dropdown a {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
    color: #475569;
    font-size: 14px;
    font-weight: 700;
  }
  .nav__dropdown--rich a.nav__dropdown-item {
    display: flex;
    padding: 10px 12px;
  }
  .nav__dropdown:not(.nav__dropdown--rich) a:hover { background: var(--blue-50); color: var(--navy); }
  .site-header__cta { display: flex; align-items: center; gap: 12px; }
  .signin { display: inline-flex; align-items: center; gap: 8px; color: var(--navy); font-size: 14px; font-weight: 800; }
  .nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--navy);
    background: #fff;
  }

  /* Mobile Drawer */
  .mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    pointer-events: none;
  }
  .mobile-drawer.is-open {
    display: block;
    pointer-events: auto;
  }
  .mobile-drawer__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity .25s ease;
  }
  .mobile-drawer.is-open .mobile-drawer__backdrop { opacity: 1; }
  .mobile-drawer__sheet {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(420px, 92vw);
    overflow: hidden;
    border-radius: 24px 0 0 24px;
    box-shadow: -24px 0 80px rgba(15, 23, 42, 0.22);
    transform: translateX(100%);
    transition: transform .28s cubic-bezier(.4, 0, .2, 1);
  }
  .mobile-drawer.is-open .mobile-drawer__sheet { transform: translateX(0); }
  .mobile-drawer__panel {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    background: #fff;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform .24s ease, opacity .2s ease, visibility .2s ease;
  }
  .mobile-drawer__panel.is-active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
  .mobile-drawer__panel--sub.is-active { z-index: 2; }
  .mobile-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex: 0 0 auto;
    padding: 20px 20px 12px;
    border-bottom: 1px solid var(--border);
  }
  .mobile-drawer__head--sub { grid-template-columns: auto 1fr auto; }
  .mobile-drawer__title {
    flex: 1 1 auto;
    color: var(--navy);
    font-size: 18px;
    font-weight: 800;
  }
  .mobile-drawer__close,
  .mobile-drawer__back {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 14px;
    color: var(--navy);
    background: #fff;
  }
  .mobile-drawer__body {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 8px 20px 24px;
    -webkit-overflow-scrolling: touch;
  }
  .mobile-drawer__foot {
    flex: 0 0 auto;
    display: grid;
    gap: 10px;
    padding: 16px 20px 24px;
    border-top: 1px solid var(--border);
    background: #fff;
  }
  .mobile-drawer__section + .mobile-drawer__section {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
  }
  .mobile-drawer__section-label {
    margin: 0 0 12px;
    color: #94a3b8;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
  }
  .mobile-drawer__nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 4px;
  }
  .mobile-drawer__nav-row {
    display: flex;
    align-items: stretch;
    gap: 4px;
    border-radius: 14px;
    overflow: hidden;
    background: #f8fafc;
    border: 1px solid rgba(226, 232, 240, .9);
  }
  .mobile-drawer__nav-link {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 12px 14px;
    color: var(--navy);
    font-size: 16px;
    font-weight: 800;
  }
  .mobile-drawer__nav-link--simple {
    justify-content: space-between;
    gap: 12px;
    min-height: 48px;
    padding: 12px 14px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid rgba(226, 232, 240, .9);
    font-size: 15px;
    font-weight: 700;
  }
  .mobile-drawer__nav-link--simple i {
    color: #94a3b8;
    font-size: 12px;
  }
  .mobile-drawer__nav-expand {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 52px;
    border: 0;
    border-left: 1px solid rgba(226, 232, 240, .9);
    color: var(--navy);
    background: #fff;
  }
  .mobile-drawer__promo {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 18px;
    border-radius: 20px;
    background: linear-gradient(135deg, #e8f7ef 0%, #eef2ff 55%, #f8fafc 100%);
    border: 1px solid rgba(20, 30, 85, .08);
    color: var(--navy);
    box-shadow: 0 12px 32px rgba(20, 30, 85, .06);
  }
  .mobile-drawer__promo-copy { display: grid; gap: 6px; min-width: 0; }
  .mobile-drawer__promo-eyebrow {
    color: #166534;
    font-size: 12px;
    font-weight: 800;
  }
  .mobile-drawer__promo-title {
    font-size: 18px;
    line-height: 1.2;
  }
  .mobile-drawer__promo-price {
    color: #475569;
    font-size: 13px;
    font-weight: 700;
  }
  .mobile-drawer__promo-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
    padding: 10px 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--border);
    font-size: 13px;
    font-weight: 800;
    width: fit-content;
  }
  .mobile-drawer__promo-media {
    display: grid;
    place-items: center;
    width: 96px;
    height: 112px;
    flex: 0 0 auto;
  }
  .mobile-drawer__promo-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .mobile-drawer__promo-note {
    margin: 10px 0 0;
    color: #94a3b8;
    font-size: 11px;
    line-height: 1.45;
  }
  .mobile-drawer__contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
  }
  .mobile-drawer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid var(--border);
    color: var(--navy);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
  }
  .mobile-drawer__contact-item i {
    flex: 0 0 auto;
    margin-top: 2px;
    color: var(--blue-600);
    font-size: 16px;
  }
  .mobile-drawer__contact-item--static { color: #475569; }
  .mobile-drawer__view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 12px 16px;
    border-radius: 14px;
    background: linear-gradient(135deg, #eef2ff 0%, #e8f5f0 100%);
    border: 1px solid rgba(20, 30, 85, .08);
    color: var(--navy);
    font-size: 14px;
    font-weight: 800;
  }
  .mobile-drawer__products {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
  }
  .mobile-drawer__product {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--navy);
  }
  .mobile-drawer__product-thumb {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid var(--border);
    overflow: hidden;
  }
  .mobile-drawer__product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
  }
  .mobile-drawer__product-thumb i { color: #94a3b8; }
  .mobile-drawer__product-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    flex: 1 1 auto;
  }
  .mobile-drawer__product-name {
    font-size: 14px;
    font-weight: 800;
    line-height: 1.3;
  }
  .mobile-drawer__product-rx {
    flex: 0 0 auto;
    padding: 2px 6px;
    border-radius: 6px;
    background: #f1f5f9;
    color: #94a3b8;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .04em;
  }
  .mobile-drawer__product-arrow {
    flex: 0 0 auto;
    color: #94a3b8;
    font-size: 13px;
  }
  body.mobile-nav-open { overflow: hidden; }

  /* Hero */
  .hero { background: #fff; padding: 16px 12px 24px; }
  .hero-shell {
    max-width: var(--container-wide);
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: var(--hero-surface);
    padding: clamp(32px, 4vw, 64px);
    box-shadow: var(--shadow-soft);
  }
  .hero__top {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 36px;
    align-items: start;
  }
  .hero__rating {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
    color: var(--navy);
    font-size: 14px;
    font-weight: 900;
  }
  .hero__rating-stars { display: inline-flex; gap: 3px; }
  .hero__rating-line { width: 1px; height: 16px; background: #cbd5e1; }
  .hero__rating-note { color: #64748b; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; }
  .hero h1 {
    max-width: 900px;
    margin: 0;
    color: var(--navy-deep);
    font-family: var(--font-display);
    font-size: clamp(3.45rem, 8vw, 5.65rem);
    line-height: .94;
    letter-spacing: -.065em;
    font-weight: 900;
  }
  .hero__intro { padding-top: 36px; }
  .hero__intro p {
    max-width: 475px;
    margin: 0;
    color: #64748b;
    font-size: clamp(1.125rem, 2vw, 1.35rem);
    line-height: 1.65;
    font-weight: 500;
  }
  .hero__badges {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .hero__badge {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    width: 100%;
    min-width: 0;
    min-height: 38px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.72);
    border: 1px solid var(--border);
    color: #64748b;
    font-size: 12px;
    line-height: 1.25;
    font-weight: 900;
  }
  .hero__badge i { flex-shrink: 0; color: var(--blue); font-size: 13px; }
  .hero__mosaic { margin-top: 40px; display: grid; gap: 16px; }
  .hero__feature-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .hero-card {
    position: relative;
    min-height: 330px;
    overflow: hidden;
    border-radius: 28px;
    padding: 0;
    color: #fff;
    box-shadow: 0 4px 12px rgba(15,23,42,.04);
    transition: transform .22s ease, box-shadow .22s ease;
    isolation: isolate;
  }
  .hero-card:hover { transform: translateY(-4px); box-shadow: 0 28px 70px rgba(15,23,42,.16); }
  .hero-card--weight { background-color: #126b4f; }
  .hero-card--anti { background-color: #9e8fc8; }
  .hero-card__strip {
    position: absolute;
    z-index: 0;
    left: 0;
    right: 0;
    top: 42%;
    display: flex;
    gap: 8px;
    padding: 0 20px;
    opacity: .32;
    pointer-events: none;
  }
  .hero-card__pill {
    min-width: 118px;
    padding: 20px 14px;
    border-radius: 18px;
    background: rgba(255,255,255,.2);
    text-align: center;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    backdrop-filter: blur(8px);
  }
  .hero-card__pill i { display: block; margin: 0 auto 8px; font-size: 18px; }
  .hero-card__image {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .5s ease;
  }
  .hero-card--weight .hero-card__image { object-position: 85% center; }
  .hero-card--anti .hero-card__image { object-position: 80% center; }
  .hero-card:hover .hero-card__image { transform: scale(1.04); }
  .hero-card__scrim {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
  }
  .hero-card--weight .hero-card__scrim {
    background: linear-gradient(
      105deg,
      rgba(14, 82, 61, 0.92) 0%,
      rgba(18, 107, 79, 0.72) 32%,
      rgba(32, 127, 95, 0.28) 55%,
      rgba(45, 146, 112, 0.05) 72%,
      transparent 100%
    );
  }
  .hero-card--anti .hero-card__scrim {
    background: linear-gradient(
      105deg,
      rgba(110, 88, 158, 0.92) 0%,
      rgba(158, 143, 200, 0.72) 32%,
      rgba(183, 157, 202, 0.28) 55%,
      rgba(206, 178, 212, 0.05) 72%,
      transparent 100%
    );
  }
  .hero-card__content {
    position: relative;
    z-index: 3;
    min-height: 330px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .hero-card h2 {
    max-width: 230px;
    margin: 0;
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.5rem);
    line-height: 1.05;
    letter-spacing: -.04em;
    font-weight: 900;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
  }
  .hero-card__bottom { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; }
  .hero-card__bottom p {
    max-width: 215px;
    margin: 0;
    color: rgba(255,255,255,.92);
    font-size: 16px;
    line-height: 1.5;
    font-weight: 800;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.22);
  }
  .hero-card__arrow, .quick-card__arrow {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.35);
    background: rgba(255,255,255,.1);
    color: #fff;
    transition: transform .22s ease, background-color .22s ease;
  }
  .hero-card:hover .hero-card__arrow, .quick-card:hover .quick-card__arrow { transform: translateX(4px); background: rgba(255,255,255,.18); }
  .quick-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
  .quick-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 106px;
    overflow: hidden;
    border-radius: 24px;
    padding: 22px 24px;
    color: #fff;
    transition: transform .22s ease, box-shadow .22s ease;
  }
  .quick-card:hover { transform: translateY(-4px); box-shadow: 0 22px 48px rgba(15,23,42,.15); }
  .quick-card--sexual { background: linear-gradient(90deg, #c45168, #de8a72); }
  .quick-card--hair { background: linear-gradient(90deg, #6c89bd, #a9bfdf); }
  .quick-card--supplements { background: linear-gradient(90deg, #3387c8, #5cb4e7); }
  .quick-card__main { display: flex; align-items: center; gap: 16px; min-width: 0; }
  .quick-card__icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 16px; background: rgba(255,255,255,.18); backdrop-filter: blur(8px); font-size: 24px; }
  .quick-card__title { color: #fff; font-size: 20px; font-weight: 900; line-height: 1.15;  }
  .quick-card__sub { margin-top: 4px; color: rgba(255,255,255,.75); font-size: 12px; font-weight: 700; margin-left:10px; }

  /* Trust Strip */
  .trust-strip { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 24px 0; }
  .trust-strip__grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 16px; text-align: center; }
  .trust-item { padding: 12px; border-radius: 18px; transition: background-color .2s ease; }
  .trust-item:hover { background: var(--blue-50); }
  .trust-item i { display: block; margin-bottom: 12px; color: var(--blue); font-size: 24px; }
  .trust-item strong { display: block; color: var(--navy); font-size: 14px; font-weight: 900; }
  .trust-item span { display: block; margin-top: 4px; color: var(--muted); font-size: 12px; font-weight: 700; }

  /* Press */
  .press { background: #171f4c; border-bottom: 1px solid var(--border); padding: 32px 0; }
  .press__label { margin: 0 0 24px; color: #94a3b8; text-align: center; font-size: 12px; font-weight: 900; letter-spacing: .22em; text-transform: uppercase; }
  .press__logos { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 32px 48px; opacity: .75; }
  .press__logos img { height: 28px; width: auto; filter: grayscale(100%); }

  /* Included */
  .included-grid { display: grid; grid-template-columns: repeat(9, minmax(0, 1fr)); gap: 12px; }
  .included-tile {
    min-height: 138px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(15,23,42,.04);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  }
  .included-tile:hover { transform: translateY(-4px); border-color: var(--blue); box-shadow: 0 18px 40px rgba(20,30,85,.06); }
  .included-tile__icon { display: grid; place-items: center; width: 44px; height: 44px; margin-bottom: 12px; border-radius: 50%; background: var(--blue-50); color: var(--blue); transition: background-color .2s ease, color .2s ease; }
  .included-tile:hover .included-tile__icon { background: var(--blue); color: #fff; }
  .included-tile__text { color: var(--navy); font-size: 14px; font-weight: 900; line-height: 1.2; }

  /* Categories */
  .card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
  .category-card {
    position: relative;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 292px;
    padding: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(15,23,42,.04);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  }
  .category-card:hover { transform: translateY(-4px); border-color: var(--blue); box-shadow: 0 24px 56px rgba(20,30,85,.1); }
  .category-card--weight,
  .category-card--anti,
  .category-card--sexual,
  .category-card--hair,
  .category-card--supplements,
  .category-card--dark {
    color: #fff;
    border: 0;
  }
  .category-card--weight { background: linear-gradient(135deg, #0a3d2e, #126b4f, #2d9270); }
  .category-card--anti { background: linear-gradient(135deg, #3d2d5c, #6e589e, #a78bcc); }
  .category-card--sexual {
    background: radial-gradient(ellipse 130% 110% at 12% 8%, #fde68a 0%, #fb923c 32%, #ef4444 58%, #9f1239 100%);
  }
  .category-card--hair { background: linear-gradient(135deg, #1f1510, #5c4033, #a67c52); }
  .category-card--supplements { background: linear-gradient(180deg, #5bb1e1, #3a87c1); }
  .category-card--dark { background: linear-gradient(135deg, var(--navy), var(--navy-700), var(--blue)); }
  .category-card--weight .category-card__icon,
  .category-card--anti .category-card__icon,
  .category-card--sexual .category-card__icon,
  .category-card--hair .category-card__icon,
  .category-card--supplements .category-card__icon,
  .category-card--dark .category-card__icon { background: rgba(255,255,255,.15); color: #fff; }
  .category-card--weight h3,
  .category-card--anti h3,
  .category-card--sexual h3,
  .category-card--hair h3,
  .category-card--supplements h3,
  .category-card--dark h3 { color: #fff; text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35); }
  .category-card--weight p,
  .category-card--anti p,
  .category-card--sexual p,
  .category-card--hair p,
  .category-card--supplements p,
  .category-card--dark p { color: rgba(255,255,255,.88); text-shadow: 0 1px 10px rgba(0, 0, 0, 0.28); }
  .category-card--weight .category-card__cta,
  .category-card--anti .category-card__cta,
  .category-card--sexual .category-card__cta,
  .category-card--hair .category-card__cta,
  .category-card--supplements .category-card__cta,
  .category-card--dark .category-card__cta { color: #fff; text-shadow: 0 1px 8px rgba(0, 0, 0, 0.22); }
  .category-card__image {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .5s ease;
    opacity: 0.3;
  }
  .category-card:hover .category-card__image { transform: scale(1.04); }
  .category-card__scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
  }
  .category-card__content,
  .category-card__cta { position: relative; z-index: 2; }
  .category-card__content { flex: 1; }
  .category-card__icon { display: grid; place-items: center; width: 56px; height: 56px; margin-bottom: 20px; border-radius: 16px; background: rgba(255,255,255,.75); color: var(--navy); font-size: 24px; }
  .category-card h3 { margin: 0; color: #FFF; font-family: var(--font-display); font-size: 24px; line-height: 1.15; letter-spacing: -.02em; font-weight: 900; }
  .category-card p { margin: 12px 0 0; color: #FFF; font-size: 14px; line-height: 1.7; font-weight: 600; }
  .category-card__price { margin-top: 16px; color: #64748b; font-size: 14px; font-weight: 800; }
  .category-card__price strong { color: var(--navy); font-size: 18px; font-weight: 900; }
  .category-card--weight .category-card__price,
  .category-card--anti .category-card__price,
  .category-card--sexual .category-card__price,
  .category-card--hair .category-card__price,
  .category-card--supplements .category-card__price,
  .category-card--dark .category-card__price,
  .category-card--weight .category-card__price strong,
  .category-card--anti .category-card__price strong,
  .category-card--sexual .category-card__price strong,
  .category-card--hair .category-card__price strong,
  .category-card--supplements .category-card__price strong,
  .category-card--dark .category-card__price strong { color: rgba(255,255,255,.88); }
  .category-card__cta { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 32px; color: var(--navy); font-size: 14px; font-weight: 900; }
  .category-card:hover .category-card__cta i { transform: translateX(4px); }
  .category-card__cta i { transition: transform .2s ease; }

  /* GLP Feature */
  .glp-feature { background: linear-gradient(180deg, #fff, var(--blue-50)); }
  .glp-layout { display: grid; grid-template-columns: 1.04fr .96fr; gap: 64px; align-items: center; }
  .glp-copy h2 { margin: 0; color: var(--navy); font-family: var(--font-display); font-size: clamp(2.25rem, 4vw, 3.25rem); line-height: 1.04; letter-spacing: -.045em; font-weight: 900; }
  .glp-copy > p { margin: 20px 0 0; max-width: 680px; color: #64748b; font-size: 18px; line-height: 1.75; }
  .bullet-list { margin: 28px 0; display: grid; gap: 15px; }
  .bullet { display: flex; gap: 12px; color: #334155; font-weight: 700; }
  .bullet i { margin-top: 4px; color: var(--blue); }
  .price-tag { display: inline-flex; align-items: baseline; flex-wrap: wrap; gap: 12px; padding: 16px 20px; border: 1px solid var(--border); border-radius: 18px; background: #fff; box-shadow: 0 1px 3px rgba(15,23,42,.04); }
  .price-tag__old { color: #94a3b8; font-size: 14px; font-weight: 800; text-decoration: line-through; }
  .price-tag__new { color: var(--navy); font-size: 26px; font-weight: 900; }
  .price-tag__cycle { color: #64748b; font-size: 14px; font-weight: 700; }
  .glp-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

  /* Calculator */
  .calculator {
    padding: 32px;
    border-radius: 28px;
    background: radial-gradient(circle at top right, rgba(65,121,209,.35), transparent 60%), var(--navy);
    color: #fff;
    box-shadow: 0 28px 70px rgba(20,30,85,.22);
  }
  .calculator h3 { margin: 0; color: #fff; font-family: var(--font-display); font-size: 26px; line-height: 1.15; letter-spacing: -.02em; font-weight: 900; }
  .calculator__sub { margin: 10px 0 0; color: rgba(255,255,255,.7); font-size: 14px; line-height: 1.7; }
  .calculator label { display: block; margin-top: 28px; color: rgba(255,255,255,.85); font-size: 14px; font-weight: 800; }
  .calculator__slider { margin-top: 8px; }
  .calculator__weight-display { display: flex; align-items: baseline; gap: 8px; margin-bottom: 16px; }
  .calculator__weight-value {
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 4vw, 3rem);
    line-height: 1;
    letter-spacing: -.04em;
    font-weight: 900;
  }
  .calculator__weight-unit { color: rgba(255,255,255,.6); font-size: 14px; font-weight: 800; }
  .calculator__range {
    display: block;
    width: 100%;
    height: 8px;
    margin: 0;
    border-radius: 999px;
    background: rgba(255,255,255,.18);
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
  }
  .calculator__range:focus-visible { outline: 2px solid #77a7ff; outline-offset: 4px; }
  .calculator__range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  }
  .calculator__range::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  }
  .calculator__range::-moz-range-track {
    height: 8px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,.18);
  }
  .calculator__range-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    color: rgba(255,255,255,.45);
    font-size: 12px;
    font-weight: 800;
  }
  .calculator__result { margin-top: 28px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.1); }
  .calculator__num { color: #77a7ff; font-family: var(--font-display); font-size: clamp(2.75rem, 5vw, 3.75rem); line-height: 1; letter-spacing: -.04em; font-weight: 900; }
  .calculator__num small { color: rgba(255,255,255,.6); font-size: .46em; }
  .calculator__label { margin-top: 8px; color: rgba(255,255,255,.55); font-size: 12px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
  .calculator .btn { margin-top: 24px; }
  .calculator__disclaimer { margin: 20px 0 0; color: rgba(255,255,255,.45); font-size: 12px; line-height: 1.65; }

  /* Steps */
  .steps-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
  .step-card { padding: 24px; border: 1px solid var(--border); border-radius: 22px; background: #fff; box-shadow: 0 1px 3px rgba(15,23,42,.04); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
  .step-card:hover { transform: translateY(-4px); border-color: var(--blue); box-shadow: 0 18px 42px rgba(20,30,85,.06); }
  .step-card__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
  .step-card__num { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; background: var(--navy); color: #fff; font-size: 18px; font-weight: 900; }
  .step-card__top i { color: var(--blue); font-size: 24px; opacity: .88; }
  .step-card h3 { margin: 0; color: var(--navy); font-family: var(--font-display); font-size: 20px; line-height: 1.2; letter-spacing: -.02em; font-weight: 900; }
  .step-card p { margin: 12px 0 0; color: #64748b; font-size: 14px; line-height: 1.75; font-weight: 600; }

  /* Products */
  .products-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
  .product-card { overflow: hidden; border: 1px solid var(--border); border-radius: 26px; background: #fff; box-shadow: 0 1px 3px rgba(15,23,42,.04); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
  .product-card:hover { transform: translateY(-4px); border-color: var(--blue); box-shadow: 0 24px 58px rgba(20,30,85,.1); }
  .product-card__media { display: grid; place-items: center; aspect-ratio: 4/3; padding: 20px; background: var(--blue-50); }
  .product-card__media-link {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
  }
  .product-card__media-link:focus-visible { outline: 2px solid var(--blue); outline-offset: 4px; border-radius: 8px; }
  .product-card__media img { width: 100%; height: 100%; object-fit: contain; transition: transform .25s ease; }
  .product-card:hover .product-card__media img { transform: scale(1.045); }
  .product-card__body { min-height: 294px; display: flex; flex-direction: column; padding: 24px; }
  .product-card__body:has(.product-card__actions) { min-height: 340px; }
  .stock { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; color: var(--success); font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
  .stock::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--success); }
  .product-card h3 { margin: 0; color: var(--navy); font-family: var(--font-display); font-size: 20px; line-height: 1.2; letter-spacing: -.02em; font-weight: 900; }
  .product-card__title-link { color: inherit; text-decoration: none; }
  .product-card__title-link:hover { color: var(--blue); text-decoration: underline; }
  .product-card__title-link:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 4px; }
  .product-card p { flex: 1; margin: 12px 0 0; color: #64748b; font-size: 14px; line-height: 1.75; font-weight: 600; }
  .product-card__highlights { flex: 1; margin: 12px 0 0; padding: 0; list-style: none; display: grid; gap: 8px; }
  .product-card__highlights li { color: #64748b; font-size: 13px; line-height: 1.55; font-weight: 600; padding-left: 18px; position: relative; }
  .product-card__highlights li::before { content: ""; position: absolute; left: 0; top: 7px; width: 7px; height: 7px; border-radius: 50%; background: var(--blue); }
  .product-card__price { display: flex; align-items: baseline; gap: 8px; margin-top: 20px; }
  .product-card__old { color: #94a3b8; font-size: 14px; font-weight: 800; text-decoration: line-through; }
  .product-card__new { color: var(--navy); font-family: var(--font-display); font-size: 32px; line-height: 1; letter-spacing: -.04em; font-weight: 900; }
  .product-card__cycle { color: #64748b; font-size: 14px; font-weight: 700; }
  .product-card .btn { margin-top: 20px; width: 100%; }
  .product-card__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 12px; }
  .product-card__tag {
    padding: 5px 10px;
    border-radius: 999px;
    background: var(--blue-50);
    color: var(--blue-600);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
  }
  .product-card__actions { display: grid; gap: 10px; margin-top: 20px; }
  .product-card__actions .btn { margin-top: 0; width: 100%; }

  /* Homepage showcased products (compact cards) */
  .showcase-products-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    max-width: 920px;
    margin-inline: auto;
  }
  .showcase-product-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(15,23,42,.04);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  }
  .showcase-product-card:hover {
    transform: translateY(-3px);
    border-color: var(--blue);
    box-shadow: 0 18px 42px rgba(20,30,85,.08);
  }
  .showcase-product-card__media {
    display: grid;
    place-items: center;
    aspect-ratio: 16 / 9;
    padding: 14px;
    background: var(--blue-50);
  }
  .showcase-product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .25s ease;
  }
  .showcase-product-card:hover .showcase-product-card__media img { transform: scale(1.04); }
  .showcase-product-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 18px 20px 20px;
  }
  .showcase-product-card h3 {
    margin: 0;
    color: var(--navy);
    font-family: var(--font-display);
    font-size: 18px;
    line-height: 1.25;
    letter-spacing: -.02em;
    font-weight: 900;
  }
  .showcase-product-card__desc {
    margin: 8px 0 0;
    color: #64748b;
    font-size: 13px;
    line-height: 1.6;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .showcase-product-card__price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px;
    margin-top: 14px;
  }
  .showcase-product-card__old {
    color: #94a3b8;
    font-size: 13px;
    font-weight: 800;
    text-decoration: line-through;
  }
  .showcase-product-card__new {
    color: var(--navy);
    font-family: var(--font-display);
    font-size: 26px;
    line-height: 1;
    letter-spacing: -.04em;
    font-weight: 900;
  }
  .showcase-product-card__cycle {
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
  }
  .showcase-product-card__cta {
    margin-top: 14px;
    width: 100%;
    min-height: 42px;
    padding: 10px 18px;
    font-size: 13px;
  }

  /* Product list page */
  .page-hero {
    padding: 48px 0 56px;
    background: linear-gradient(135deg, #0a3d2e 0%, #126b4f 45%, #2d9270 100%);
    color: #fff;
  }
  .page-hero--weight { background: linear-gradient(135deg, #0a3d2e 0%, #126b4f 45%, #2d9270 100%); }
  .page-hero--anti { background: linear-gradient(135deg, #3d2d5c 0%, #6e589e 45%, #a78bcc 100%); }
  .page-hero--sexual {
    background: radial-gradient(ellipse 120% 100% at 15% 0%, #fde68a 0%, #fb923c 30%, #ef4444 55%, #9f1239 100%);
  }
  .page-hero--hair { background: linear-gradient(135deg, #1f1510 0%, #5c4033 45%, #a67c52 100%); }
  .page-hero--supplements { background: linear-gradient(180deg, #5bb1e1 0%, #3a87c1 55%, #2a6a9e 100%); }
  .page-hero--faq,
  .page-hero--how { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 45%, var(--blue) 100%); }
  .steps-grid--four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .steps-grid--compact { margin-top: 28px; }
  .section-head--left { text-align: left; margin-inline: 0; }
  .section-head--left .lead { margin-inline: 0; }
  .how-flow {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 40px;
    align-items: start;
  }
  .how-flow__media {
    margin: 0;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 24px 58px rgba(20,30,85,.12);
  }
  .how-flow__media img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .card-grid--compact { grid-template-columns: repeat(4, minmax(0, 1fr)); }

  /* Products catalog (/products/) */
  .products-catalog-intro {
    position: relative;
    padding-bottom: 0;
    overflow: hidden;
    background: linear-gradient(165deg, var(--blue-50) 0%, #fff 42%, var(--surface) 100%);
  }
  .products-catalog-intro__glow {
    position: absolute;
    inset: -20% -10% auto;
    height: 70%;
    pointer-events: none;
    background:
      radial-gradient(ellipse 55% 50% at 12% 30%, rgba(65, 121, 209, 0.22), transparent 70%),
      radial-gradient(ellipse 45% 40% at 88% 20%, rgba(20, 30, 85, 0.12), transparent 72%),
      radial-gradient(ellipse 40% 35% at 50% 80%, rgba(14, 165, 233, 0.1), transparent 70%);
    animation: products-intro-glow 14s ease-in-out infinite alternate;
  }
  @keyframes products-intro-glow {
    0% { transform: translate3d(0, 0, 0) scale(1); opacity: 1; }
    100% { transform: translate3d(2%, -3%, 0) scale(1.04); opacity: 0.85; }
  }
  .products-catalog-intro__inner { position: relative; z-index: 1; }
  .products-catalog-intro .section-head { margin-bottom: 0; }
  .products-perks {
    margin: 40px auto 0;
    padding: 0 0 48px 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    max-width: 1100px;
  }
  .products-perk {
    --perk-accent-a: var(--blue);
    --perk-accent-b: var(--navy-700);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    min-height: 148px;
    padding: 22px 20px 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(65, 121, 209, 0.14);
    box-shadow:
      0 1px 2px rgba(15, 23, 42, 0.04),
      0 12px 32px rgba(20, 30, 85, 0.07);
    backdrop-filter: blur(10px);
    transition:
      transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 0.28s ease,
      border-color 0.28s ease;
    animation: products-perk-in 0.65s cubic-bezier(0.22, 1, 0.36, 1) backwards;
    animation-delay: calc(0.08s + (var(--perk-i, 0) * 0.07s));
  }
  @keyframes products-perk-in {
    from {
      opacity: 0;
      transform: translateY(18px) scale(0.97);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }
  .products-perk:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(65, 121, 209, 0.32);
    box-shadow:
      0 4px 8px rgba(15, 23, 42, 0.05),
      0 22px 48px rgba(20, 30, 85, 0.14);
  }
  .products-perk__accent {
    position: absolute;
    top: 0;
    left: 18px;
    right: 18px;
    height: 4px;
    border-radius: 0 0 6px 6px;
    background: linear-gradient(90deg, var(--perk-accent-a), var(--perk-accent-b));
    box-shadow: 0 6px 18px color-mix(in srgb, var(--perk-accent-a) 45%, transparent);
    transition: left 0.28s ease, right 0.28s ease, height 0.28s ease;
  }
  .products-perk:hover .products-perk__accent {
    left: 12px;
    right: 12px;
    height: 5px;
  }
  .products-perk__icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    font-size: 22px;
    color: #fff;
    background: linear-gradient(145deg, var(--perk-accent-a) 0%, var(--perk-accent-b) 100%);
    box-shadow:
      0 10px 22px color-mix(in srgb, var(--perk-accent-b) 35%, transparent),
      inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease;
  }
  .products-perk:hover .products-perk__icon {
    transform: scale(1.08) rotate(-4deg);
    box-shadow:
      0 14px 28px color-mix(in srgb, var(--perk-accent-b) 42%, transparent),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
  .products-perk__text {
    margin: 0;
    color: var(--navy);
    font-size: 13px;
    line-height: 1.5;
    font-weight: 800;
    letter-spacing: -0.01em;
  }
  .products-perk--shipping {
    --perk-accent-a: #0ea5e9;
    --perk-accent-b: #0369a1;
  }
  .products-perk--insurance {
    --perk-accent-a: #6366f1;
    --perk-accent-b: #4338ca;
  }
  .products-perk--fees {
    --perk-accent-a: #10b981;
    --perk-accent-b: #047857;
  }
  .products-perk--consult {
    --perk-accent-a: #4179d1;
    --perk-accent-b: #141e55;
  }
  @media (prefers-reduced-motion: reduce) {
    .products-catalog-intro__glow { animation: none; }
    .products-perk { animation: none; }
    .products-perk:hover { transform: none; }
    .products-perk:hover .products-perk__icon { transform: none; }
  }
  .products-catalog-categories { padding-top: 48px; }
  .products-catalog-categories__head { margin-bottom: 32px; }
  .products-catalog-flow {
    margin: 48px 0 0;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 24px 58px rgba(20,30,85,.12);
  }
  .products-catalog-flow img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .page-hero--about,
  .page-hero--contact,
  .page-hero--policy,
  .page-hero--error { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 45%, var(--blue) 100%); }
  .page-hero--error {
    position: relative;
    overflow: hidden;
    padding: 56px 0 72px;
    text-align: center;
  }
  .page-hero--error::before,
  .page-hero--error::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
  }
  .page-hero--error::before {
    width: 460px;
    height: 460px;
    right: -140px;
    top: -120px;
    background: rgba(255,255,255,.1);
  }
  .page-hero--error::after {
    width: 320px;
    height: 320px;
    left: -80px;
    bottom: -120px;
    background: rgba(255,255,255,.06);
  }
  .page-hero--error .container { position: relative; z-index: 1; }
  .error-404-hero { margin-inline: auto; }
  .error-404-hero__code {
    margin: 0 0 8px;
    font-family: var(--font-display);
    font-size: clamp(4.5rem, 14vw, 8rem);
    line-height: .9;
    letter-spacing: -.06em;
    font-weight: 900;
    color: rgba(255,255,255,.14);
    user-select: none;
  }
  .error-404-hero__path {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin: 24px 0 0;
    padding: 14px 18px;
    border-radius: 18px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
  }
  .error-404-hero__path-label {
    color: rgba(255,255,255,.65);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
  }
  .error-404-hero__path code {
    color: #fff;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 14px;
    font-weight: 700;
    word-break: break-all;
  }
  .page-hero--error .page-hero__lead { margin-inline: auto; }
  .page-hero--error .page-hero__actions { justify-content: center; }
  .error-404-help { padding-top: 72px; }
  .pillar--link {
    position: relative;
    display: block;
    color: inherit;
  }
  .pillar--link .pillar__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-top: 18px;
    border-radius: 999px;
    background: var(--blue-50);
    color: var(--blue);
    font-size: 14px;
    transition: transform .2s ease, background-color .2s ease;
  }
  .pillar--link:hover .pillar__arrow { transform: translateX(4px); background: var(--blue); color: #fff; }
  .error-404-support { padding-top: 0; }
  .policy-layout {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 40px;
    align-items: start;
  }
  .policy-nav {
    position: sticky;
    top: 100px;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(15,23,42,.04);
  }
  .policy-nav__label {
    margin: 0 0 12px;
    color: var(--navy);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
  }
  .policy-nav ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 4px; }
  .policy-nav a {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    transition: background-color .2s ease, color .2s ease;
  }
  .policy-nav a:hover { background: var(--blue-50); color: var(--blue-600); }
  .policy-nav a.is-active { background: var(--navy); color: #fff; }
  .policy-prose {
    padding: 32px 36px;
    border: 1px solid var(--border);
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(15,23,42,.04);
    color: #475569;
    font-size: 15px;
    line-height: 1.8;
    font-weight: 500;
  }
  .policy-prose h1,
  .policy-prose h2,
  .policy-prose h3,
  .policy-prose h4 {
    margin: 28px 0 12px;
    color: var(--navy);
    font-family: var(--font-display);
    line-height: 1.25;
    letter-spacing: -.02em;
    font-weight: 900;
  }
  .policy-prose h1:first-child,
  .policy-prose h2:first-child,
  .policy-prose h3:first-child,
  .policy-prose h4:first-child { margin-top: 0; }
  .policy-prose h1 { font-size: clamp(1.5rem, 3vw, 2rem); }
  .policy-prose h2 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
  .policy-prose h3 { font-size: 1.125rem; }
  .policy-prose h4 { font-size: 1rem; }
  .policy-prose p { margin: 0 0 16px; }
  .policy-prose ul,
  .policy-prose ol { margin: 0 0 16px; padding-left: 1.35rem; }
  .policy-prose li + li { margin-top: 8px; }
  .policy-prose a { color: var(--blue); font-weight: 800; }
  .policy-prose a:hover { color: var(--blue-600); }
  .policy-prose strong { color: var(--navy); font-weight: 800; }
  .policy-prose table {
    width: 100%;
    margin: 16px 0;
    border-collapse: collapse;
    font-size: 14px;
  }
  .policy-prose th,
  .policy-prose td {
    padding: 10px 12px;
    border: 1px solid var(--border);
    text-align: left;
    vertical-align: top;
  }
  .policy-prose th { background: var(--blue-50); color: var(--navy); font-weight: 800; }
  .contact-layout {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 40px;
    align-items: start;
  }
  .contact-form-panel {
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(15,23,42,.04);
  }
  .contact-form-panel h2 {
    margin: 0 0 8px;
    color: var(--navy);
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.15;
    letter-spacing: -.03em;
    font-weight: 900;
  }
  .contact-form-panel__lead {
    margin: 0 0 28px;
    color: #64748b;
    font-size: 15px;
    line-height: 1.75;
    font-weight: 600;
  }
  .contact-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .contact-form__field { display: grid; gap: 8px; }
  .contact-form__field--full { grid-column: 1 / -1; }
  .contact-form__field label {
    color: var(--navy);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
  }
  .contact-form__field input,
  .contact-form__field textarea,
  .contact-form__field select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
    color: var(--navy);
    font-size: 15px;
    font-weight: 600;
    transition: border-color .2s ease, box-shadow .2s ease;
  }
  .contact-form__field input:focus,
  .contact-form__field textarea:focus,
  .contact-form__field select:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(59,130,246,.15);
  }
  .contact-form__field textarea {
    min-height: 160px;
    resize: vertical;
    line-height: 1.6;
  }
  .contact-form__note {
    margin: 16px 0 0;
    color: #94a3b8;
    font-size: 12px;
    line-height: 1.6;
    font-weight: 600;
  }
  .contact-form__actions { margin-top: 24px; }
  .contact-form-notice {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin: 0 0 24px;
    padding: 16px 18px;
    border-radius: 14px;
    font-size: 15px;
    line-height: 1.5;
  }
  .contact-form-notice p { margin: 0; }
  .contact-form-notice i { margin-top: 2px; font-size: 18px; flex-shrink: 0; }
  .contact-form-notice--success {
    border: 1px solid rgba(34, 197, 94, .35);
    background: rgba(34, 197, 94, .08);
    color: #166534;
  }
  .contact-form-notice--success i { color: #16a34a; }
  .contact-form-notice--error {
    border: 1px solid rgba(239, 68, 68, .35);
    background: rgba(239, 68, 68, .08);
    color: #991b1b;
  }
  .contact-form-notice--error i { color: #dc2626; }
  .contact-aside { display: grid; gap: 16px; }
  .contact-card {
    display: flex;
    gap: 16px;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(15,23,42,.04);
  }
  .contact-card__icon {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: var(--blue-50);
    color: var(--blue);
    font-size: 20px;
  }
  .contact-card h3 {
    margin: 0 0 6px;
    color: var(--navy);
    font-family: var(--font-display);
    font-size: 16px;
    line-height: 1.2;
    font-weight: 900;
  }
  .contact-card p,
  .contact-card a {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 600;
  }
  .contact-card a { color: var(--blue); font-weight: 800; }
  .contact-card a:hover { color: var(--blue-600); }
  .contact-intro { max-width: 720px; margin-bottom: 40px; }
  .contact-intro p {
    margin: 12px 0 0;
    color: #64748b;
    font-size: 17px;
    line-height: 1.8;
    font-weight: 600;
  }

  /* Blog */
  .page-hero--blog { background: linear-gradient(135deg, #1e3a5f 0%, var(--navy) 45%, var(--blue) 100%); }
  .blog-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 40px;
    align-items: start;
  }
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
  .blog-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(15,23,42,.04);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  }
  .blog-card:hover {
    transform: translateY(-4px);
    border-color: var(--blue);
    box-shadow: 0 18px 42px rgba(20,30,85,.08);
  }
  .blog-card[hidden] { display: none; }
  .blog-card__media { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--blue-50); }
  .blog-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
  .blog-card:hover .blog-card__media img { transform: scale(1.04); }
  .blog-card__body { display: flex; flex: 1; flex-direction: column; padding: 22px; }
  .blog-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #64748b;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
  }
  .blog-card__cat {
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--blue-50);
    color: var(--blue-600);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
  }
  .blog-card__cat:hover { background: var(--navy); color: #fff; }
  .blog-card__title {
    margin: 0 0 10px;
    font-family: var(--font-display);
    font-size: 20px;
    line-height: 1.25;
    letter-spacing: -.02em;
    font-weight: 900;
  }
  .blog-card__title a { color: var(--navy); }
  .blog-card__title a:hover { color: var(--blue); }
  .blog-card__excerpt {
    flex: 1;
    margin: 0 0 16px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.75;
    font-weight: 600;
  }
  .blog-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
  }
  .blog-card__link:hover { color: var(--blue-600); }
  .blog-sidebar {
    position: sticky;
    top: 100px;
    display: grid;
    gap: 20px;
  }
  .blog-sidebar__block,
  .blog-search {
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(15,23,42,.04);
  }
  .blog-sidebar__label {
    margin: 0 0 12px;
    color: var(--navy);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
  }
  .blog-sidebar__cats,
  .blog-recent { margin: 0; padding: 0; list-style: none; display: grid; gap: 6px; }
  .blog-sidebar__cats a,
  .blog-recent a {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
    color: #64748b;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    transition: background-color .2s ease, color .2s ease;
  }
  .blog-sidebar__cats a:hover,
  .blog-recent a:hover { background: var(--blue-50); color: var(--blue-600); }
  .blog-sidebar__cats a.is-active { background: var(--navy); color: #fff; }
  .blog-recent__date,
  .blog-recent a span {
    display: block;
    margin-bottom: 4px;
    color: #94a3b8;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
  }
  .blog-search label {
    display: block;
    margin-bottom: 10px;
    color: var(--navy);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
  }
  .blog-search__field {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
  }
  .blog-search__field:focus-within { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(59,130,246,.12); }
  .blog-search__field i { color: var(--blue); }
  .blog-search__field input {
    width: 100%;
    border: 0;
    padding: 0;
    background: transparent;
    color: var(--navy);
    font-size: 15px;
    font-weight: 600;
    outline: none;
  }
  .blog-search__hint { margin: 10px 0 0; color: #94a3b8; font-size: 12px; font-weight: 700; }
  .blog-empty {
    margin-top: 24px;
    padding: 24px;
    border: 1px dashed var(--border);
    border-radius: 18px;
    background: #fff;
    color: #64748b;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
  }
  .blog-empty[hidden] { display: none; }
  .blog-article__hero {
    overflow: hidden;
    margin-bottom: 24px;
    border-radius: 22px;
    aspect-ratio: 21 / 9;
    background: var(--blue-50);
  }
  .blog-article__hero img { width: 100%; height: 100%; object-fit: cover; }
  .blog-article__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
    color: #64748b;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
  }
  .blog-article__meta a {
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--blue-50);
    color: var(--blue-600);
  }
  .blog-prose { max-width: none; }
  .blog-article__main { min-width: 0; }
  .blog-main { min-width: 0; }
  .about-mission {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 48px;
    align-items: center;
  }
  .about-mission__media img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 24px 48px rgba(20,30,85,.12);
  }
  .about-mission__media--duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
  }
  .about-mission__media--duo img:last-child { margin-top: 32px; }
  .about-mission__copy p + p { margin-top: 16px; }
  .steps-grid--four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .stat-banner {
    padding: 48px 32px;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 55%, var(--blue) 100%);
    color: #fff;
    text-align: center;
  }
  .stat-banner__num {
    display: block;
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1;
    letter-spacing: -.04em;
    font-weight: 900;
  }
  .stat-banner p {
    max-width: 560px;
    margin: 16px auto 0;
    color: rgba(255,255,255,.88);
    font-size: 18px;
    line-height: 1.75;
    font-weight: 600;
  }
  .stat-banner .btn { margin-top: 28px; }
  .pillar--cta {
    display: flex;
    flex-direction: column;
    border-color: var(--blue);
    background: linear-gradient(180deg, #fff 0%, var(--blue-50) 100%);
  }
  .pillar--cta .btn { margin-top: auto; align-self: flex-start; }
  .page-hero__inner { max-width: 760px; }
  .page-hero .eyebrow { color: rgba(255,255,255,.75); }
  .page-hero h1 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    line-height: 1.02;
    letter-spacing: -.045em;
    font-weight: 900;
  }
  .page-hero__lead {
    margin: 18px 0 0;
    max-width: 620px;
    color: rgba(255,255,255,.88);
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.75;
    font-weight: 500;
  }
  .page-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
  .breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    color: rgba(255,255,255,.65);
    font-size: 13px;
    font-weight: 700;
  }
  .breadcrumbs a { color: rgba(255,255,255,.88); }
  .breadcrumbs a:hover { color: #fff; }
  .breadcrumbs [aria-current="page"] { color: #fff; }
  .breadcrumbs__sep { opacity: .5; }
  .category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
  }
  .category-tabs a {
    padding: 10px 16px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #fff;
    color: var(--navy);
    font-size: 13px;
    font-weight: 800;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease;
  }
  .category-tabs a:hover { border-color: var(--blue); color: var(--blue-600); }
  .category-tabs a.is-active {
    border-color: var(--navy);
    background: var(--navy);
    color: #fff;
  }
  .product-list-perks {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 40px;
  }
  .product-list-perk {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #fff;
    color: var(--navy);
    font-size: 14px;
    font-weight: 800;
  }
  .product-list-perk i { color: var(--blue); font-size: 18px; }

  /* Product detail page */
  .pdp-offer-bar {
    padding: 12px 0;
    margin: 0;
    background: linear-gradient(90deg, var(--navy) 0%, var(--navy-700) 50%, var(--blue) 100%);
    color: #fff;
    text-align: center;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .02em;
    border: none;
  }
  .pdp-offer-bar .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px 20px;
  }
  .pdp-offer-bar i { color: #77a7ff; }
  .pdp-offer-bar__sep { opacity: .35; }
  .pdp-breadcrumbs {
    padding: 14px 0 16px;
    margin: 0;
    background: var(--surface);
    border: none;
    box-shadow: none;
  }
  .pdp-offer-bar + .pdp-breadcrumbs {
    margin-top: 0;
    border-top: none;
  }
  .pdp-breadcrumbs .container {
    padding-top: 0;
    padding-bottom: 0;
  }
  .breadcrumbs--dark {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .01em;
  }
  .breadcrumbs--dark a { color: var(--navy); font-weight: 700; }
  .breadcrumbs--dark a:hover { color: var(--blue-600); }
  .breadcrumbs--dark [aria-current="page"] { color: #64748b; font-weight: 600; }
  .breadcrumbs--dark .breadcrumbs__sep { color: #cbd5e1; opacity: 1; font-weight: 400; }
  .pdp-buy {
    padding: 28px 0 40px;
    background: linear-gradient(180deg, var(--surface) 0%, #fff 100%);
  }
  .pdp-rating {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
    margin-bottom: 14px;
  }
  .pdp-rating__stars {
    color: #f59e0b;
    font-size: 14px;
    letter-spacing: .12em;
  }
  .pdp-rating__text {
    color: #64748b;
    font-size: 13px;
    font-weight: 800;
  }
  .pdp-buy__tagline {
    margin: 10px 0 0;
    color: #64748b;
    font-size: 16px;
    line-height: 1.65;
    font-weight: 600;
  }
  .pdp-buy__tagline strong { color: var(--navy); font-weight: 900; }
  .pdp-buy__highlights {
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
  }
  .pdp-buy__highlights li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--navy);
    font-size: 14px;
    line-height: 1.55;
    font-weight: 700;
  }
  .pdp-buy__highlights i {
    flex: 0 0 auto;
    margin-top: 2px;
    color: var(--blue);
    font-size: 16px;
  }
  .pdp-buy__guarantee {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 24px;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid #bbf7d0;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  }
  .pdp-buy__guarantee i {
    flex: 0 0 auto;
    margin-top: 2px;
    color: #16a34a;
    font-size: 22px;
  }
  .pdp-buy__guarantee strong {
    display: block;
    color: var(--navy);
    font-size: 14px;
    font-weight: 900;
  }
  .pdp-buy__guarantee span {
    display: block;
    margin-top: 4px;
    color: #64748b;
    font-size: 13px;
    line-height: 1.55;
    font-weight: 600;
  }
  .pdp-buy__micro {
    margin-top: 16px;
    color: #94a3b8;
    font-size: 12px;
    line-height: 1.55;
    font-weight: 700;
    text-align: center;
  }
  .pdp-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
  .pdp-stat {
    padding: 28px 24px;
    border-radius: 24px;
    border: 1px solid var(--border);
    background: #fff;
    text-align: center;
    box-shadow: 0 12px 32px rgba(20,30,85,.06);
  }
  .pdp-stat__num {
    display: block;
    color: var(--blue);
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1;
    letter-spacing: -.04em;
    font-weight: 900;
  }
  .pdp-stat__label {
    display: block;
    margin-top: 10px;
    color: var(--navy);
    font-size: 15px;
    font-weight: 900;
  }
  .pdp-stat p {
    margin: 8px 0 0;
    color: #64748b;
    font-size: 13px;
    line-height: 1.6;
    font-weight: 600;
  }
  .pdp-results {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
    gap: 32px;
    align-items: start;
  }
  .pdp-results__copy .bullet-list { margin-top: 24px; }
  .pdp-compare {
    border: 1px solid var(--border);
    border-radius: 28px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 18px 40px rgba(20,30,85,.06);
  }
  .pdp-compare__head {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 0;
    padding: 18px 24px;
    background: var(--navy);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
  }
  .pdp-compare__row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 0;
    padding: 16px 24px;
    border-top: 1px solid var(--border);
    font-size: 14px;
    font-weight: 700;
    color: #64748b;
  }
  .pdp-compare__row:nth-child(even) { background: var(--surface); }
  .pdp-compare__row strong { color: var(--navy); font-weight: 900; }
  .pdp-compare__nexa { color: var(--blue-600); font-weight: 900; }
  .pdp-compare__check { color: #16a34a; }
  .pdp-compare__x { color: #94a3b8; }
  .pdp-guarantee-band {
    padding: clamp(40px, 5vw, 56px);
    border-radius: 28px;
    background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 45%, #fff 100%);
    border: 1px solid #bbf7d0;
    text-align: center;
  }
  .pdp-guarantee-band i {
    display: inline-grid;
    place-items: center;
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
    border-radius: 50%;
    background: #16a34a;
    color: #fff;
    font-size: 24px;
  }
  .pdp-guarantee-band h2 {
    margin: 0;
    color: var(--navy);
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 900;
    letter-spacing: -.03em;
  }
  .pdp-guarantee-band p {
    max-width: 560px;
    margin: 14px auto 0;
    color: #64748b;
    font-size: 16px;
    line-height: 1.75;
    font-weight: 600;
  }
  .pdp-guarantee-band .btn { margin-top: 24px; }
  .pdp-funnel-cta {
    padding: 36px 32px;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 55%, var(--blue) 100%);
    color: #fff;
    text-align: center;
    box-shadow: 0 24px 48px rgba(20,30,85,.15);
  }
  .pdp-funnel-cta h2 {
    margin: 0;
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 900;
    letter-spacing: -.03em;
  }
  .pdp-funnel-cta p {
    max-width: 520px;
    margin: 12px auto 0;
    color: rgba(255,255,255,.85);
    font-size: 16px;
    line-height: 1.7;
    font-weight: 600;
  }
  .pdp-funnel-cta .btn { margin-top: 22px; }
  .pdp-funnel-cta__note {
    display: block;
    margin-top: 14px;
    color: rgba(255,255,255,.55);
    font-size: 12px;
    font-weight: 700;
  }
  .pdp-testimonials .testimonial { flex-basis: 32%; min-width: 280px; }
  .pdp-faq-cta {
    margin-top: 32px;
    padding: 28px;
    border-radius: 24px;
    background: var(--blue-50);
    border: 1px solid #bfdbfe;
    text-align: center;
  }
  .pdp-faq-cta h3 {
    margin: 0;
    color: var(--navy);
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 900;
  }
  .pdp-faq-cta p {
    margin: 10px 0 0;
    color: #64748b;
    font-size: 15px;
    font-weight: 600;
  }
  .pdp-faq-cta .btn { margin-top: 18px; }
  .pdp-buy__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
    gap: 48px;
    align-items: start;
  }
  .pdp-buy__media {
    padding: 40px;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: linear-gradient(180deg, #fff 0%, var(--blue-50) 100%);
    text-align: center;
  }
  .pdp-buy__media img {
    width: min(100%, 360px);
    height: auto;
    margin: 0 auto;
    object-fit: contain;
  }
  .pdp-buy__panel {
    position: sticky;
    top: 96px;
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 24px 48px rgba(20,30,85,.08);
  }
  .pdp-buy__panel .stock { margin-bottom: 16px; }
  .pdp-buy__panel h1 {
    margin: 0;
    color: var(--navy);
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1.1;
    letter-spacing: -.03em;
    font-weight: 900;
  }
  .pdp-buy__price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px 12px;
    margin-top: 20px;
  }
  .pdp-buy__price .product-card__old { font-size: 18px; }
  .pdp-buy__price .product-card__new { font-size: 40px; }
  .pdp-buy__note {
    margin: 12px 0 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.65;
    font-weight: 700;
  }
  .pdp-buy__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
  }
  .pdp-badge {
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--blue-50);
    color: var(--blue-600);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
  }
  .pdp-buy__actions { display: grid; gap: 12px; margin-top: 28px; }
  .pdp-buy__actions .btn { width: 100%; }
  .pdp-mechanism {
    padding: 48px 0;
    background: linear-gradient(135deg, #0a3d2e 0%, #126b4f 45%, #2d9270 100%);
    color: #fff;
  }
  .pdp-mechanism h2 {
    margin: 0 0 24px;
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.15;
    letter-spacing: -.03em;
    font-weight: 900;
  }
  .pdp-mechanism__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 32px;
  }
  .pdp-mechanism-card {
    padding: 24px;
    border-radius: 20px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
  }
  .pdp-mechanism-card h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.35;
  }
  .pdp-mechanism-card p {
    margin: 0;
    color: rgba(255,255,255,.85);
    font-size: 14px;
    line-height: 1.7;
    font-weight: 600;
  }
  .pdp-mechanism__list {
    margin: 0;
    padding: 28px 28px 28px 48px;
    border-radius: 20px;
    background: rgba(255,255,255,.08);
    list-style: disc;
  }
  .pdp-mechanism__list li {
    color: rgba(255,255,255,.92);
    font-size: 15px;
    line-height: 1.75;
    font-weight: 600;
  }
  .pdp-mechanism__list li + li { margin-top: 10px; }
  .pdp-mechanism__list strong { color: #fff; font-weight: 900; }
  .pdp-mechanism__cta { margin-top: 28px; text-align: center; }
  .pdp-details { padding: 48px 0 64px; }
  .pdp-details__head {
    margin-bottom: 28px;
    text-align: left;
  }
  .pdp-details__head .section-title { margin-inline: 0; }
  .pdp-details__head .lead { margin-inline: 0; }
  .pdp-tabs {
    border: 1px solid var(--border);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(20,30,85,.06);
    overflow: hidden;
  }
  .pdp-tabs__list {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    padding: 8px;
    border-bottom: 1px solid var(--border);
    background: var(--surface);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .pdp-tabs__list::-webkit-scrollbar { display: none; }
  .pdp-tabs__tab {
    flex: 0 0 auto;
    padding: 12px 18px;
    border: none;
    border-radius: 999px;
    background: transparent;
    color: #64748b;
    font-family: inherit;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .02em;
    white-space: nowrap;
    cursor: pointer;
    transition: background-color .2s ease, color .2s ease, box-shadow .2s ease;
  }
  .pdp-tabs__tab:hover { color: var(--navy); background: rgba(255,255,255,.7); }
  .pdp-tabs__tab.is-active,
  .pdp-tabs__tab[aria-selected="true"] {
    background: #fff;
    color: var(--navy);
    box-shadow: 0 4px 14px rgba(20,30,85,.08);
  }
  .pdp-tabs__panels { padding: clamp(24px, 4vw, 36px); }
  .pdp-tabs__panel { display: none; }
  .pdp-tabs__panel.is-active { display: block !important; }
  .pdp-tabs__panel[hidden]:not(.is-active) { display: none !important; }
  .pdp-prose h2,
  .pdp-prose h3 {
    margin: 0 0 16px;
    color: var(--navy);
    font-family: var(--font-display);
    font-weight: 900;
    letter-spacing: -.02em;
  }
  .pdp-prose h2 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); margin-top: 32px; }
  .pdp-prose h2:first-child { margin-top: 0; }
  .pdp-prose h3 { font-size: 1.0625rem; margin-top: 24px; }
  .pdp-prose h3:first-child { margin-top: 0; }
  .pdp-prose h4.product_title,
  .pdp-prose h4 {
    margin: 0 0 12px;
    color: var(--navy);
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 900;
    line-height: 1.3;
  }
  .pdp-prose p,
  .pdp-prose li {
    color: #64748b;
    font-size: 15px;
    line-height: 1.8;
    font-weight: 600;
  }
  .pdp-prose p { margin: 0 0 16px; }
  .pdp-prose p:last-child { margin-bottom: 0; }
  .pdp-prose ul { margin: 0 0 20px; padding-left: 1.25rem; }
  .pdp-prose ul li + li { margin-top: 8px; }
  .pdp-details__footnote {
    margin-top: 24px;
    color: #94a3b8;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.65;
  }
  .pdp-details__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
  }
  .pdp-related { padding-bottom: 64px; }
  .pdp-related__head { margin-bottom: 28px; }

  /* Testimonials */
  .testimonials-carousel { position: relative; }
  .testimonials-carousel__nav {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 20px;
  }
  .testimonials-carousel__btn {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: #fff;
    color: var(--navy);
    font-size: 16px;
    cursor: pointer;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease, opacity .2s ease;
  }
  .testimonials-carousel__btn:hover:not(:disabled) {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
  }
  .testimonials-carousel__btn:disabled {
    opacity: .35;
    cursor: not-allowed;
  }
  .testimonials-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    scrollbar-width: none;
  }
  .testimonials-track::-webkit-scrollbar { display: none; }
  .testimonial { flex: 0 0 31%; min-width: 31%; scroll-snap-align: start; padding: 24px; border: 1px solid var(--border); border-radius: 26px; background: #fff; box-shadow: 0 1px 3px rgba(15,23,42,.04); }
  .testimonial__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
  .testimonial__stars { color: #f59e0b; letter-spacing: 1px; }
  .testimonial__head .fa-quote-right { color: #dbeafe; font-size: 24px; }
  .testimonial__quote { min-height: 170px; margin: 0; color: #334155; font-size: 16px; line-height: 1.8; font-weight: 500; }
  .testimonial__author { display: flex; align-items: center; gap: 12px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border); }
  .testimonial__avatar { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--blue); color: #fff; font-size: 18px; font-weight: 900; }
  .testimonial__name { color: var(--navy); font-weight: 900; }
  .testimonial__location { color: #64748b; font-size: 12px; font-weight: 800; }

  /* Pillars */
  .pillars-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
  .pillars-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .pillar { padding: 24px; border: 1px solid var(--border); border-radius: 22px; background: #fff; box-shadow: 0 1px 3px rgba(15,23,42,.04); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
  .pillar:hover { transform: translateY(-4px); border-color: var(--blue); box-shadow: 0 18px 42px rgba(20,30,85,.06); }
  .pillar__icon { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 20px; border-radius: 16px; background: var(--blue-50); color: var(--blue); font-size: 22px; }
  .pillar h3 { margin: 0; color: var(--navy); font-family: var(--font-display); font-size: 20px; line-height: 1.2; letter-spacing: -.02em; font-weight: 900; }
  .pillar p { margin: 12px 0 0; color: #64748b; font-size: 14px; line-height: 1.75; font-weight: 600; }
  .center-action { margin-top: 40px; text-align: center; }

  /* FAQ */
  .faq-list { max-width: 900px; margin: 0 auto; display: grid; gap: 12px; }
  .faq { padding: 20px; border: 1px solid var(--border); border-radius: 18px; background: #fff; box-shadow: 0 1px 3px rgba(15,23,42,.04); }
  .faq[open] { border-color: var(--blue); box-shadow: 0 18px 40px rgba(20,30,85,.06); }
  .faq summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; list-style: none; color: var(--navy); font-size: 16px; font-weight: 900; }
  .faq summary::-webkit-details-marker { display: none; }
  .faq__icon { display: grid; place-items: center; flex: 0 0 auto; width: 32px; height: 32px; border-radius: 50%; background: var(--blue-50); color: var(--blue); transition: transform .2s ease, background-color .2s ease, color .2s ease; }
  .faq[open] .faq__icon { transform: rotate(45deg); background: var(--navy); color: #fff; }
  .faq p { margin: 16px 0 0; color: #64748b; font-size: 14px; line-height: 1.75; font-weight: 600; }
  .faq p a { color: var(--blue); font-weight: 800; }
  .faq p a:hover { color: var(--blue-600); }
  .faq-steps { margin: 16px 0 0; padding-left: 1.25rem; color: #64748b; font-size: 14px; line-height: 1.75; font-weight: 600; }
  .faq-steps li + li { margin-top: 8px; }
  .faq-page__groups { display: grid; gap: 32px; }
  .faq-group__title {
    margin: 0;
    color: var(--navy);
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    line-height: 1.2;
    letter-spacing: -.02em;
    font-weight: 900;
  }

  /* FAQ page */
  .page-hero--faq {
    position: relative;
    overflow: hidden;
    padding-bottom: 64px;
  }
  .page-hero--faq::before,
  .page-hero--faq::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
  }
  .page-hero--faq::before {
    width: 420px;
    height: 420px;
    right: -120px;
    top: -80px;
    background: rgba(255,255,255,.12);
    filter: blur(2px);
  }
  .page-hero--faq::after {
    width: 280px;
    height: 280px;
    left: -60px;
    bottom: -100px;
    background: rgba(65,121,209,.35);
    filter: blur(4px);
  }
  .page-hero--faq .container { position: relative; z-index: 1; }
  .page-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    max-width: 640px;
    margin-top: 32px;
  }
  .page-hero__stat {
    padding: 16px 18px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 18px;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(8px);
  }
  .page-hero__stat strong {
    display: block;
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1;
    letter-spacing: -.03em;
    font-weight: 900;
  }
  .page-hero__stat span {
    display: block;
    margin-top: 6px;
    color: rgba(255,255,255,.72);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
  }
  .faq-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 40px;
  }
  .faq-highlight {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(20,30,85,.06);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  }
  .faq-highlight:hover {
    transform: translateY(-3px);
    border-color: var(--blue);
    box-shadow: 0 20px 44px rgba(20,30,85,.1);
  }
  .faq-highlight__icon {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--blue-50);
    color: var(--blue);
    font-size: 18px;
  }
  .faq-highlight strong {
    display: block;
    color: var(--navy);
    font-size: 14px;
    font-weight: 900;
    line-height: 1.3;
  }
  .faq-highlight span {
    display: block;
    margin-top: 4px;
    color: #64748b;
    font-size: 13px;
    line-height: 1.55;
    font-weight: 600;
  }
  .faq-page {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 40px;
    align-items: start;
  }
  .faq-page__nav {
    position: sticky;
    top: 96px;
    display: grid;
    gap: 20px;
  }
  .faq-nav {
    display: grid;
    gap: 6px;
    padding: 8px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(20,30,85,.06);
  }
  .faq-nav__label {
    padding: 10px 12px 4px;
    color: #94a3b8;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
  }
  .faq-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 12px;
    color: var(--navy);
    font-size: 14px;
    font-weight: 800;
    transition: background-color .2s ease, color .2s ease;
  }
  .faq-nav a:hover { background: var(--blue-50); color: var(--blue-600); }
  .faq-nav a.is-active {
    background: var(--navy);
    color: #fff;
    box-shadow: 0 10px 24px rgba(20,30,85,.18);
  }
  .faq-nav a span {
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(255,255,255,.15);
    color: inherit;
    font-size: 11px;
    font-weight: 900;
  }
  .faq-nav a:not(.is-active) span {
    background: var(--blue-50);
    color: var(--blue-600);
  }
  .faq-help {
    padding: 22px;
    border-radius: 20px;
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-700) 55%, var(--blue) 100%);
    color: #fff;
    box-shadow: 0 20px 48px rgba(20,30,85,.2);
  }
  .faq-help i {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    margin-bottom: 14px;
    border-radius: 12px;
    background: rgba(255,255,255,.12);
    font-size: 18px;
  }
  .faq-help h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.3;
  }
  .faq-help p {
    margin: 10px 0 0;
    color: rgba(255,255,255,.78);
    font-size: 13px;
    line-height: 1.65;
    font-weight: 600;
  }
  .faq-help .btn {
    width: 100%;
    margin-top: 18px;
    justify-content: center;
  }
  .faq-group {
    scroll-margin-top: 110px;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(20,30,85,.06);
  }
  .faq-group__head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
  }
  .faq-group__icon {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    font-size: 22px;
  }
  .faq-group--general .faq-group__icon { background: var(--blue-50); color: var(--blue); }
  .faq-group--medication .faq-group__icon { background: #ecfdf5; color: #15803d; }
  .faq-group--provider .faq-group__icon { background: #ede9fe; color: #6d28d9; }
  .faq-group__meta {
    flex: 1;
    min-width: 0;
  }
  .faq-group__meta p {
    margin: 6px 0 0;
    color: #64748b;
    font-size: 13px;
    line-height: 1.55;
    font-weight: 600;
  }
  .faq-group__count {
    flex: 0 0 auto;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--surface);
    color: var(--navy);
    font-size: 12px;
    font-weight: 900;
  }
  .faq-page .faq-list { max-width: none; margin: 0; gap: 10px; }
  .faq-page .faq {
    padding: 0;
    overflow: hidden;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  }
  .faq-page .faq:not([open]):hover {
    transform: translateY(-2px);
    border-color: #cbd5e1;
    box-shadow: 0 14px 32px rgba(20,30,85,.08);
  }
  .faq-page .faq summary { padding: 18px 20px; }
  .faq-page .faq .faq__content { padding: 0 20px 20px; }
  .faq-page .faq .faq__content > :first-child { margin-top: 0; }
  .faq-page .faq .faq__content p,
  .faq-page .faq .faq__content .faq-steps { margin-top: 0; }
  .faq-page .faq .faq__content p + p,
  .faq-page .faq .faq__content p + .faq-steps,
  .faq-page .faq .faq__content .faq-steps + p { margin-top: 16px; }
  .faq-page .faq[open] summary { border-bottom: 1px solid var(--border); }
  .faq-mobile-nav {
    display: none;
    gap: 8px;
    margin-bottom: 28px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .faq-mobile-nav::-webkit-scrollbar { display: none; }
  .faq-mobile-nav a {
    flex: 0 0 auto;
    padding: 10px 16px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #fff;
    color: var(--navy);
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease;
  }
  .faq-mobile-nav a.is-active {
    border-color: var(--navy);
    background: var(--navy);
    color: #fff;
  }
  .cta-banner--weight {
    background: linear-gradient(135deg, #0a3d2e 0%, #126b4f 45%, #2d9270 100%);
    box-shadow: 0 30px 70px rgba(10,61,46,.25);
  }
  .cta-banner--weight::before { background: rgba(255,255,255,.12); }
  .cta-banner--weight::after { background: rgba(255,255,255,.08); }
  .cta-banner__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
  }
  .cta-banner__fine {
    margin: 20px 0 0;
    color: rgba(255,255,255,.72);
    font-size: 14px;
    font-weight: 700;
  }
  .cta-banner__fine a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .cta-banner__fine a:hover { color: rgba(255,255,255,.9); }
  .cta-banner__perks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 20px;
    margin-top: 24px;
    color: rgba(255,255,255,.85);
    font-size: 13px;
    font-weight: 700;
  }
  .cta-banner__perks span { display: inline-flex; align-items: center; gap: 8px; }
  .cta-banner__perks i { opacity: .9; }

  /* CTA */
  .final-cta { background: #fff; }
  .cta-banner {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    padding: clamp(56px, 7vw, 80px) 24px;
    background: linear-gradient(135deg, var(--navy), var(--navy-700), var(--blue));
    color: #fff;
    text-align: center;
    box-shadow: 0 30px 70px rgba(20,30,85,.18);
  }
  .cta-banner::before, .cta-banner::after { content: ""; position: absolute; width: 320px; height: 320px; border-radius: 50%; background: rgba(255,255,255,.15); filter: blur(10px); }
  .cta-banner::before { left: -120px; top: -120px; }
  .cta-banner::after { right: -120px; bottom: -120px; }
  .cta-banner__inner { position: relative; max-width: 760px; margin: 0 auto; z-index: 1; }
  .cta-banner h2 { margin: 0; color: #fff; font-family: var(--font-display); font-size: clamp(2.25rem, 5vw, 4rem); line-height: 1.02; letter-spacing: -.045em; font-weight: 900; }
  .cta-banner p { max-width: 650px; margin: 20px auto 0; color: rgba(255,255,255,.8); font-size: 18px; line-height: 1.75; }
  .cta-banner .btn { margin-top: 32px; }

  /* Footer */
  .site-footer { padding: 64px 0 28px; background: var(--navy); color: #fff; }
  .footer-grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 40px; }
  .footer-logo { height: 44px; width: auto; }
  .footer-brand p { max-width: 390px; margin: 20px 0 0; color: rgba(255,255,255,.65); font-size: 14px; line-height: 1.75; }
  .footer-contact { margin-top: 20px; display: grid; gap: 12px; color: rgba(255,255,255,.75); font-size: 14px; font-weight: 700; }
  .footer-contact a, .footer-contact span { display: flex; align-items: flex-start; gap: 10px; }
  .footer-col h4 { margin: 0 0 16px; color: #fff; font-size: 12px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
  .footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
  .footer-col a { color: rgba(255,255,255,.65); font-size: 14px; font-weight: 700; }
  .footer-col a:hover, .footer-contact a:hover { color: #fff; }
  .footer-disclaimer { margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.5); font-size: 12px; line-height: 1.75; }
  .footer-disclaimer p { margin: 0 0 12px; }
  .footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.5); font-size: 12px; font-weight: 700; }
  .footer-bottom__links { display: flex; gap: 20px; }
  .footer-bottom a:hover { color: #fff; }

  .mobile-sticky-cta { display: none; }

  @media (max-width: 1200px) {
    .nav { display: none; }
    .nav-overlay { display: none; }
    .nav-toggle { display: grid; }
    .included-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .trust-strip__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  }

  @media (max-width: 980px) {
    .topbar__links, .signin, .site-header__cta .btn { display: none; }
    .hero__top, .hero__feature-grid, .glp-layout, .about-mission, .contact-layout, .policy-layout { grid-template-columns: 1fr; }
    .policy-nav { position: static; }
    .blog-layout { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .blog-sidebar { position: static; }
    .contact-form__grid { grid-template-columns: 1fr; }
    .steps-grid--four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .hero__intro { padding-top: 0; }
    .hero__badges { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
    .products-perks { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .quick-grid, .card-grid, .steps-grid, .products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .steps-grid--four,
    .card-grid--compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .how-flow { grid-template-columns: 1fr; }
    .how-flow__media { order: -1; }
    .product-list-perks { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .pdp-buy__grid { grid-template-columns: 1fr; }
    .pdp-buy__panel { position: static; }
    .pdp-mechanism__grid { grid-template-columns: 1fr; }
    .pdp-tabs__tab { padding: 10px 14px; font-size: 12px; }
    .pdp-stats { grid-template-columns: 1fr; }
    .pdp-results { grid-template-columns: 1fr; }
    .pdp-compare__head,
    .pdp-compare__row { grid-template-columns: 1fr; gap: 8px; }
    .pdp-testimonials .testimonial { flex-basis: 86%; min-width: 86%; }
    .pillars-grid,
    .pillars-grid--three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .testimonial { flex-basis: 46%; min-width: 46%; }
    .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  }

  @media (max-width: 720px) {
    .section { padding: 64px 0; }
    .topbar__inner { justify-content: center; text-align: center; }
    .brand img { height: 38px; }
    .site-header__inner { height: 66px; }
    .hero { padding: 10px; }
    .hero-shell { border-radius: 24px; padding: 28px 18px; }
    .hero h1 { font-size: clamp(3.15rem, 16vw, 4.1rem); }
    .hero__rating { gap: 8px; }
    .hero__rating-note { width: 100%; }
    .hero__badges { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .products-perks { grid-template-columns: 1fr; gap: 12px; }
    .products-perk { min-height: 0; flex-direction: row; align-items: center; gap: 14px; padding: 16px 18px; }
    .products-perk__accent { left: 0; right: auto; top: 14px; bottom: 14px; width: 4px; height: auto; border-radius: 0 6px 6px 0; }
    .products-perk:hover .products-perk__accent { left: 0; right: auto; width: 5px; height: auto; }
    .products-perk__icon { width: 46px; height: 46px; font-size: 18px; flex-shrink: 0; }
    .products-catalog-flow { margin-top: 32px; border-radius: 22px; }
    .hero-card { min-height: 306px; border-radius: 24px; }
    .hero-card__content { min-height: 306px; padding: 22px; }
    .hero-card h2 { font-size: 2rem; }
    .hero-card--weight .hero-card__image { object-position: 65% center; }
    .hero-card--anti .hero-card__image { object-position: 60% center; }
    .hero-card__strip { top: 40%; opacity: .22; }
    .trust-strip__grid,
    .included-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .steps-grid,
    .steps-grid--four,
    .card-grid--compact,
    .pillars-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .quick-grid, .card-grid, .products-grid, .showcase-products-grid { grid-template-columns: 1fr; }
    .page-hero { padding: 36px 0 44px; }
    .page-hero__actions { flex-direction: column; }
    .page-hero__actions .btn { width: 100%; }
    .page-hero__stats { grid-template-columns: 1fr; max-width: 100%; }
    .faq-highlights { grid-template-columns: 1fr; }
    .faq-page { grid-template-columns: 1fr; }
    .faq-page__nav { display: none; }
    .faq-mobile-nav { display: flex; }
    .faq-group { padding: 20px; }
    .quick-card { min-height: 96px; }
    .testimonial { flex-basis: 86%; min-width: 86%; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; }
    .mobile-sticky-cta {
      display: block;
      position: fixed;
      left: 16px;
      right: 16px;
      bottom: 16px;
      z-index: 60;
      padding: 8px;
      border-radius: 999px;
      background: var(--navy);
      box-shadow: 0 28px 60px rgba(20,30,85,.3);
    }
    body { padding-bottom: 82px; }
  }