/* =========================================================================
   AESTX SYSTEMS — DESIGN SYSTEM v3
   Forschungspeptide-Shop · clean, hell, pharmazeutisch-präzise
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. TOKENS
   ------------------------------------------------------------------------- */
:root {
  /* Marke */
  --ax-black:        #1a1a1a;
  --ax-ink:          #14171a;   /* tiefes Schwarz für Headlines */
  --ax-cyan:         #4EC5E0;
  --ax-blue:         #185FA5;
  --ax-gold:         #C9A46E;

  /* Neutral */
  --ax-surface:      #f9f9f8;
  --ax-surface-2:    #f3f4f3;
  --ax-white:        #ffffff;
  --ax-text:         #2a2f35;
  --ax-text-muted:   #646b73;
  --ax-text-soft:    #8b9199;
  --ax-border:       #e6e8ea;
  --ax-border-soft:  #eef0f1;

  /* Verläufe */
  --ax-gradient:        linear-gradient(135deg, #4EC5E0 0%, #185FA5 100%);
  --ax-gradient-hover:  linear-gradient(135deg, #5fd0e8 0%, #1d6fbe 100%);
  --ax-hero-bg:         linear-gradient(165deg, #ffffff 0%, #f4fafd 55%, #eef6fb 100%);

  /* Radius */
  --ax-r-sm:   8px;
  --ax-r:      12px;
  --ax-r-lg:   18px;
  --ax-r-pill: 999px;

  /* Schatten */
  --ax-shadow-xs:  0 1px 2px rgba(20,23,26,.04);
  --ax-shadow-sm:  0 2px 8px rgba(20,23,26,.05);
  --ax-shadow:     0 6px 20px rgba(20,23,26,.07);
  --ax-shadow-lg:  0 16px 40px rgba(24,95,165,.13);
  --ax-shadow-cyan:0 10px 28px rgba(78,197,224,.22);

  /* Typo */
  --ax-font-display: 'Space Grotesk', 'Segoe UI', system-ui, sans-serif;
  --ax-font-body:    'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;

  /* Layout */
  --ax-maxw:     1280px;
  --ax-maxw-narrow: 920px;
  --ax-gutter:   24px;
  --ax-transition: all .22s cubic-bezier(.4,0,.2,1);
}

/* -------------------------------------------------------------------------
   2. BASIS / RESET (sanft, überschreibt Parent gezielt)
   ------------------------------------------------------------------------- */
body.aestx,
body {
  font-family: var(--ax-font-body);
  color: var(--ax-text);
  background: var(--ax-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.aestx h1, .aestx h2, .aestx h3, .aestx h4,
.ax-section h1, .ax-section h2, .ax-section h3 {
  font-family: var(--ax-font-display);
  color: var(--ax-ink);
  letter-spacing: -.02em;
  line-height: 1.12;
  font-weight: 700;
}

.ax-container {
  max-width: var(--ax-maxw);
  margin-inline: auto;
  padding-inline: var(--ax-gutter);
  width: 100%;
}

.ax-container--narrow { max-width: var(--ax-maxw-narrow); }

a { color: var(--ax-blue); text-decoration: none; }
a:hover { color: var(--ax-cyan); }

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

*:focus-visible {
  outline: 2px solid var(--ax-cyan);
  outline-offset: 2px;
  border-radius: 3px;
}

/* -------------------------------------------------------------------------
   3. BUTTONS
   ------------------------------------------------------------------------- */
.ax-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: var(--ax-r-sm);
  font-family: var(--ax-font-body);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  line-height: 1;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: var(--ax-transition);
  white-space: nowrap;
}
.ax-btn svg { width: 18px; height: 18px; }

.ax-btn--primary {
  background: var(--ax-gradient);
  color: #fff;
  box-shadow: var(--ax-shadow-sm);
}
.ax-btn--primary:hover {
  background: var(--ax-gradient-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--ax-shadow-cyan);
}

.ax-btn--outline {
  background: transparent;
  border-color: var(--ax-border);
  color: var(--ax-ink);
}
.ax-btn--outline:hover {
  border-color: var(--ax-cyan);
  color: var(--ax-blue);
  background: #f4fafd;
}

.ax-btn--ghost {
  background: var(--ax-white);
  border-color: var(--ax-border);
  color: var(--ax-ink);
  box-shadow: var(--ax-shadow-xs);
}
.ax-btn--ghost:hover {
  border-color: var(--ax-cyan);
  color: var(--ax-blue);
}

.ax-btn--sm { padding: 10px 18px; font-size: .85rem; }
.ax-btn--block { width: 100%; }

/* -------------------------------------------------------------------------
   4. TOPBAR
   ------------------------------------------------------------------------- */
.ax-topbar {
  background: var(--ax-ink);
  color: rgba(255,255,255,.82);
  font-size: .8rem;
  letter-spacing: .01em;
}
.ax-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 9px 0;
  text-align: center;
  flex-wrap: wrap;
}
.ax-topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.ax-topbar__item svg { width: 14px; height: 14px; color: var(--ax-cyan); flex-shrink: 0; }
.ax-topbar strong { color: #fff; font-weight: 600; }

/* -------------------------------------------------------------------------
   5. HEADER
   ------------------------------------------------------------------------- */
.ax-header {
  background: var(--ax-white);
  border-bottom: 1px solid var(--ax-border-soft);
}
.ax-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
  position: relative;
}
.ax-logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.ax-logo img { height: 42px; width: auto; display: block; }

/* primäre Navigation */
.ax-nav { display: flex; align-items: center; }
.ax-nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.ax-nav__item { position: static; }
.ax-nav__item--narrow { position: relative; }
.ax-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  font-size: .92rem;
  font-weight: 500;
  color: var(--ax-text);
  border-radius: var(--ax-r-sm);
  transition: var(--ax-transition);
  cursor: pointer;
}
.ax-nav__link:hover,
.ax-nav__item:hover > .ax-nav__link {
  color: var(--ax-blue);
  background: var(--ax-surface);
}
.ax-nav__link svg.ax-caret {
  width: 13px; height: 13px;
  transition: transform .2s ease;
  color: var(--ax-text-soft);
}
.ax-nav__item:hover .ax-caret { transform: rotate(180deg); }

/* Header-Aktionen rechts */
.ax-header__actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.ax-iconbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: var(--ax-r-sm);
  color: var(--ax-ink);
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: var(--ax-transition);
  position: relative;
}
.ax-iconbtn:hover { background: var(--ax-surface); color: var(--ax-blue); }
.ax-iconbtn svg { width: 21px; height: 21px; }
.ax-cart-count {
  position: absolute;
  top: 4px; right: 3px;
  min-width: 17px; height: 17px;
  padding: 0 4px;
  background: var(--ax-gradient);
  color: #fff;
  font-size: .66rem;
  font-weight: 700;
  border-radius: var(--ax-r-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Burger (mobil) */
.ax-burger {
  display: none;
  width: 42px; height: 42px;
  align-items: center;
  justify-content: center;
  border: 0; background: transparent;
  cursor: pointer;
  color: var(--ax-ink);
}
.ax-burger svg { width: 24px; height: 24px; }

/* -------------------------------------------------------------------------
   6. MEGA-MENÜ (Desktop)
   ------------------------------------------------------------------------- */
.ax-mega {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--ax-white);
  border: 1px solid var(--ax-border);
  border-radius: var(--ax-r-lg);
  box-shadow: var(--ax-shadow-lg);
  padding: 26px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 200;
}
/* unsichtbare Hover-Bruecke schliesst die Luecke Trigger<->Menue */
.ax-mega::before {
  content: '';
  position: absolute;
  top: -22px;
  left: 0;
  right: 0;
  height: 22px;
}
.ax-nav__item:hover > .ax-mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.ax-mega--6 { width: min(1100px, 92vw); }
.ax-mega--4 { width: min(820px, 90vw); }
.ax-mega--tools { width: 320px; left: 0; transform: translateY(8px); }
.ax-nav__item:hover > .ax-mega--tools { transform: translateY(0); }

.ax-mega__grid {
  display: grid;
  gap: 12px 28px;
}
.ax-mega--6 .ax-mega__grid { grid-template-columns: repeat(3, 1fr); }
.ax-mega--4 .ax-mega__grid { grid-template-columns: repeat(2, 1fr); }

.ax-mega__col-title {
  font-family: var(--ax-font-display);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--ax-blue);
  margin: 0 0 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ax-border-soft);
}
.ax-mega__col { padding: 6px 0; }
.ax-mega__links { list-style: none; margin: 0; padding: 0; }
.ax-mega__links li { margin-bottom: 2px; }
.ax-mega__links a {
  display: block;
  padding: 6px 10px;
  font-size: .88rem;
  color: var(--ax-text);
  border-radius: 6px;
  transition: var(--ax-transition);
}
.ax-mega__links a:hover {
  background: var(--ax-surface);
  color: var(--ax-blue);
  padding-left: 14px;
}

/* Tools-Dropdown (einfache Liste) */
.ax-mega--tools .ax-mega__links a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  font-size: .9rem;
}
.ax-mega--tools .ax-mega__links a svg { width: 17px; height: 17px; color: var(--ax-cyan); }

/* -------------------------------------------------------------------------
   7. MOBILE NAV (Off-Canvas)
   ------------------------------------------------------------------------- */
.ax-mobile-nav {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(380px, 88vw);
  background: var(--ax-white);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(20,23,26,.16);
  overflow-y: auto;
}
.ax-mobile-nav.is-open { transform: translateX(0); }
.ax-mobile-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--ax-border-soft);
}
.ax-mobile-nav__head img { height: 34px; }
.ax-mobile-nav__close {
  width: 40px; height: 40px;
  border: 0; background: var(--ax-surface);
  border-radius: var(--ax-r-sm);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ax-ink);
}
.ax-mobile-nav__close svg { width: 22px; height: 22px; }
.ax-mobile-nav__body { padding: 12px; }

.ax-macc__item { border-bottom: 1px solid var(--ax-border-soft); }
.ax-macc__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 12px;
  background: transparent;
  border: 0;
  font-family: var(--ax-font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ax-ink);
  cursor: pointer;
  text-align: left;
}
.ax-macc__head svg { width: 18px; height: 18px; color: var(--ax-text-soft); transition: transform .2s; }
.ax-macc__item.is-open .ax-macc__head svg { transform: rotate(180deg); }
.ax-macc__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.ax-macc__item.is-open .ax-macc__panel { max-height: 1500px; }
.ax-macc__sub { padding: 0 12px 12px; }
.ax-macc__group-title {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--ax-blue);
  margin: 12px 0 6px;
}
.ax-macc__sub a {
  display: block;
  padding: 9px 10px;
  font-size: .92rem;
  color: var(--ax-text);
  border-radius: 6px;
}
.ax-macc__sub a:hover { background: var(--ax-surface); color: var(--ax-blue); }

.ax-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20,23,26,.45);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.ax-mobile-overlay.is-open { opacity: 1; visibility: visible; }

body.ax-nav-open { overflow: hidden; }

/* -------------------------------------------------------------------------
   8. FOOTER
   ------------------------------------------------------------------------- */
.ax-footer {
  background: var(--ax-ink);
  color: rgba(255,255,255,.66);
  padding: 56px 0 0;
  margin-top: 64px;
}
.ax-footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.ax-footer__brand img { height: 38px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.ax-footer__brand p {
  font-size: .88rem;
  line-height: 1.65;
  color: rgba(255,255,255,.55);
  max-width: 320px;
  margin: 0 0 18px;
}
.ax-footer__usps { list-style: none; margin: 0; padding: 0; }
.ax-footer__usps li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .82rem;
  margin-bottom: 8px;
  color: rgba(255,255,255,.7);
}
.ax-footer__usps svg { width: 15px; height: 15px; color: var(--ax-cyan); flex-shrink: 0; }

.ax-footer__col h4 {
  font-family: var(--ax-font-display);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 16px;
}
.ax-footer__col ul { list-style: none; margin: 0; padding: 0; }
.ax-footer__col li { margin-bottom: 9px; }
.ax-footer__col a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.ax-footer__col a:hover { color: var(--ax-cyan); }

.ax-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  flex-wrap: wrap;
}
.ax-footer__bottom p { margin: 0; font-size: .8rem; color: rgba(255,255,255,.45); }
.ax-footer__disclaimer {
  background: rgba(255,255,255,.04);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 16px 0;
}
.ax-footer__disclaimer p {
  margin: 0;
  font-size: .76rem;
  line-height: 1.6;
  color: rgba(255,255,255,.4);
  text-align: center;
}

/* -------------------------------------------------------------------------
   9. RESPONSIVE
   ------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .ax-footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .ax-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .ax-nav { display: none; }
  .ax-burger { display: inline-flex; }
  .ax-header__inner { padding: 14px 0; }
  .ax-logo img { height: 36px; }
}

@media (max-width: 640px) {
  .ax-topbar__inner { gap: 14px; font-size: .72rem; padding: 8px 0; }
  .ax-footer__top { grid-template-columns: 1fr; gap: 28px; }
  .ax-footer { padding-top: 44px; margin-top: 48px; }
  .ax-footer__bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* =========================================================================
   AESTX SYSTEMS — HOMEPAGE SECTIONS
   ========================================================================= */

/* Section-Grundlagen */
.ax-section { padding: 64px 0; }
.ax-section__head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.ax-section__head h2 { font-size: 2rem; margin: 0 0 12px; }
.ax-section__head p { color: var(--ax-text-muted); font-size: 1.02rem; line-height: 1.6; margin: 0; }
.ax-section__foot { text-align: center; margin-top: 36px; }

/* ---------- HERO ---------- */
.ax-hero {
  background: var(--ax-hero-bg);
  padding: 64px 0 72px;
  position: relative;
  overflow: hidden;
}
.ax-hero::before {
  content: '';
  position: absolute;
  top: -10%; right: -5%;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(78,197,224,.10) 0%, transparent 70%);
  pointer-events: none;
}
.ax-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.ax-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(78,197,224,.12);
  color: var(--ax-blue);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .03em;
  padding: 7px 14px;
  border-radius: var(--ax-r-pill);
  margin-bottom: 20px;
}
.ax-hero__badge svg { width: 15px; height: 15px; }
.ax-hero__title {
  font-size: 2.85rem;
  line-height: 1.08;
  margin: 0 0 18px;
}
.ax-hero__sub {
  font-size: 1.06rem;
  line-height: 1.6;
  color: var(--ax-text-muted);
  margin: 0 0 24px;
  max-width: 520px;
}
.ax-hero__usps { list-style: none; margin: 0 0 30px; padding: 0; }
.ax-hero__usps li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .96rem;
  color: var(--ax-text);
  margin-bottom: 10px;
}
.ax-hero__usps svg { width: 18px; height: 18px; color: var(--ax-cyan); flex-shrink: 0; }
.ax-hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero-Produktkarte */
.ax-hero__right { display: flex; justify-content: center; }
.ax-hero__card {
  background: var(--ax-ink);
  border-radius: var(--ax-r-lg);
  padding: 28px;
  width: 100%;
  max-width: 380px;
  box-shadow: var(--ax-shadow-lg);
  position: relative;
}
.ax-hero__card-flag {
  position: absolute;
  top: -14px; left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--ax-gold);
  color: #2a2009;
  font-size: .76rem;
  font-weight: 700;
  padding: 7px 13px;
  border-radius: var(--ax-r-pill);
  box-shadow: var(--ax-shadow);
}
.ax-hero__card-flag svg { width: 14px; height: 14px; }
.ax-hero__card-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.7);
  font-size: .85rem;
  margin: 14px 0 16px;
}
.ax-hero__card-rating strong { color: #fff; font-size: 1rem; }
.ax-stars { display: inline-flex; gap: 1px; }
.ax-stars svg { width: 15px; height: 15px; color: var(--ax-gold); fill: var(--ax-gold); }
.ax-hero__card-title {
  color: #fff;
  font-size: 1.55rem;
  margin: 0 0 6px;
}
.ax-hero__card-price {
  color: rgba(255,255,255,.7);
  font-size: .95rem;
  margin: 0 0 18px;
}
.ax-hero__card-price strong { color: #fff; font-size: 1.5rem; }
.ax-hero__card-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 12px;
  font-size: .78rem;
  color: rgba(255,255,255,.55);
}
.ax-hero__card-secure svg { width: 14px; height: 14px; }

/* ---------- KATEGORIE-SCHNELLZUGRIFF ---------- */
.ax-quickcats { padding-top: 56px; }
.ax-quickcats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ax-quickcat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  background: var(--ax-white);
  border: 1px solid var(--ax-border);
  border-radius: var(--ax-r);
  transition: var(--ax-transition);
}
.ax-quickcat:hover {
  border-color: var(--ax-cyan);
  box-shadow: var(--ax-shadow);
  transform: translateY(-2px);
}
.ax-quickcat__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: var(--ax-r-sm);
  background: rgba(78,197,224,.1);
  color: var(--ax-blue);
  flex-shrink: 0;
}
.ax-quickcat__icon svg { width: 22px; height: 22px; }
.ax-quickcat__label {
  flex: 1;
  font-family: var(--ax-font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ax-ink);
}
.ax-quickcat__arrow { color: var(--ax-text-soft); transition: var(--ax-transition); }
.ax-quickcat__arrow svg { width: 18px; height: 18px; }
.ax-quickcat:hover .ax-quickcat__arrow { color: var(--ax-cyan); transform: translateX(3px); }

/* ---------- TRUST-BAR ---------- */
.ax-trustbar { background: var(--ax-surface); padding: 36px 0; }
.ax-trustbar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.ax-trust { display: flex; align-items: center; gap: 14px; }
.ax-trust svg { width: 30px; height: 30px; color: var(--ax-cyan); flex-shrink: 0; }
.ax-trust strong { display: block; font-size: .98rem; color: var(--ax-ink); font-family: var(--ax-font-display); }
.ax-trust span { font-size: .82rem; color: var(--ax-text-muted); }

/* ---------- PRODUKT-GRID / CARDS ---------- */
.ax-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.ax-pcard {
  background: var(--ax-white);
  border: 1px solid var(--ax-border);
  border-radius: var(--ax-r);
  overflow: hidden;
  transition: var(--ax-transition);
  display: flex;
  flex-direction: column;
}
.ax-pcard:hover {
  border-color: var(--ax-cyan);
  box-shadow: var(--ax-shadow);
  transform: translateY(-3px);
}
.ax-pcard__img {
  display: block;
  background: #fafbfc;
  padding: 18px;
  text-align: center;
}
.ax-pcard__img img { display: inline-block; max-height: 200px; width: auto; mix-blend-mode: multiply; }
.ax-pcard__body { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.ax-pcard__purity {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .74rem;
  font-weight: 600;
  color: var(--ax-cyan);
  margin-bottom: 8px;
}
.ax-pcard__purity svg { width: 13px; height: 13px; }
.ax-pcard__name {
  font-size: 1.05rem;
  margin: 0 0 10px;
  line-height: 1.25;
}
.ax-pcard__name a { color: var(--ax-ink); }
.ax-pcard__name a:hover { color: var(--ax-blue); }
.ax-pcard__price {
  font-family: var(--ax-font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ax-blue);
  margin-bottom: 14px;
  margin-top: auto;
}
.ax-pcard__price del { color: var(--ax-text-soft); font-weight: 400; font-size: .9rem; margin-right: 6px; }
.ax-pcard__price ins { text-decoration: none; }

/* ---------- TOOLS-TEASER ---------- */
.ax-tools-teaser { background: var(--ax-surface); }
.ax-tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ax-toolcard {
  background: var(--ax-white);
  border: 1px solid var(--ax-border);
  border-radius: var(--ax-r);
  padding: 26px 22px;
  transition: var(--ax-transition);
  display: block;
}
.ax-toolcard:hover {
  border-color: var(--ax-cyan);
  box-shadow: var(--ax-shadow);
  transform: translateY(-3px);
}
.ax-toolcard__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px; height: 50px;
  border-radius: var(--ax-r-sm);
  background: rgba(78,197,224,.1);
  color: var(--ax-blue);
  margin-bottom: 16px;
}
.ax-toolcard__icon svg { width: 24px; height: 24px; }
.ax-toolcard h3 { font-size: 1.1rem; margin: 0 0 8px; }
.ax-toolcard p { font-size: .88rem; color: var(--ax-text-muted); line-height: 1.5; margin: 0; }
.ax-toolcard--feature {
  background: var(--ax-ink);
  border-color: var(--ax-ink);
}
.ax-toolcard--feature h3 { color: #fff; }
.ax-toolcard--feature p { color: rgba(255,255,255,.6); }
.ax-toolcard--feature .ax-toolcard__icon { background: rgba(78,197,224,.2); color: var(--ax-cyan); }

/* ---------- LAB / COA ---------- */
.ax-lab { padding: 0; }
.ax-lab__inner {
  background: linear-gradient(135deg, #185FA5 0%, #4EC5E0 100%);
  border-radius: var(--ax-r-lg);
  padding: 56px 48px;
  text-align: center;
  color: #fff;
  margin: 64px 0;
}
.ax-lab__badge {
  display: inline-block;
  background: rgba(255,255,255,.18);
  color: #fff;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: var(--ax-r-pill);
  margin-bottom: 18px;
}
.ax-lab__inner h2 { color: #fff; font-size: 2.1rem; margin: 0 0 16px; }
.ax-lab__tags { color: rgba(255,255,255,.85); font-size: .95rem; line-height: 1.7; max-width: 720px; margin: 0 auto 22px; }
.ax-lab__usps { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; margin-bottom: 28px; }
.ax-lab__usps span { display: inline-flex; align-items: center; gap: 8px; font-size: .92rem; font-weight: 500; }
.ax-lab__usps svg { width: 18px; height: 18px; }
.ax-lab__inner .ax-btn--primary { background: #fff; color: var(--ax-blue); }
.ax-lab__inner .ax-btn--primary:hover { background: #f0f9ff; color: var(--ax-blue); }

/* ---------- FINAL CTA ---------- */
.ax-finalcta { text-align: center; }
.ax-finalcta h2 { font-size: 2rem; margin: 0 0 14px; }
.ax-finalcta p { color: var(--ax-text-muted); font-size: 1.05rem; line-height: 1.6; margin: 0 auto 28px; max-width: 560px; }
.ax-finalcta__btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- RESPONSIVE (Homepage) ---------- */
@media (max-width: 1024px) {
  .ax-hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .ax-hero__right { justify-content: flex-start; }
  .ax-product-grid { grid-template-columns: repeat(2, 1fr); }
  .ax-tools-grid { grid-template-columns: repeat(2, 1fr); }
  .ax-quickcats__grid { grid-template-columns: repeat(2, 1fr); }
  .ax-trustbar__grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}
@media (max-width: 640px) {
  .ax-section { padding: 48px 0; }
  .ax-hero { padding: 44px 0 52px; }
  .ax-hero__title { font-size: 2.1rem; }
  .ax-section__head h2 { font-size: 1.6rem; }
  .ax-product-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .ax-tools-grid { grid-template-columns: 1fr; }
  .ax-quickcats__grid { grid-template-columns: 1fr; }
  .ax-trustbar__grid { grid-template-columns: 1fr; }
  .ax-lab__inner { padding: 40px 24px; margin: 48px 0; }
  .ax-lab__inner h2 { font-size: 1.6rem; }
  .ax-hero__cta .ax-btn, .ax-finalcta__btns .ax-btn { width: 100%; }
}
