/* ============================================================
   Foundation Aminos — Home Page Component Styles
   Loaded only on the front page via functions.php
   All classes prefixed fa- per project conventions
   ============================================================ */

:root {
  --fa-blue-500:  #1954AC;
  --fa-blue-600:  #133F84;
  --fa-blue-700:  #0E2F65;
  --fa-cyan-300:  #6DD5E9;
  --fa-cyan-400:  #32B8D1;
  --fa-cyan-500:  #1B98B0;
  --fa-cyan-600:  #157A8E;
  --fa-navy-900:  #051226;
  --fa-ink-900:   #0A1628;
  --fa-slate-500: #64748B;
  --fa-slate-400: #94A3B8;
  --fa-slate-300: #CBD5E1;
  --fa-slate-200: #E2E8F0;
  --fa-slate-100: #EEF2F7;
  --fa-white:     #FFFFFF;
  --fa-success-500: #10B981;
  --fa-success-700: #047857;

  --fa-font-display: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  --fa-font-sans:    "Manrope", ui-sans-serif, system-ui, sans-serif;
  --fa-font-mono:    "JetBrains Mono", ui-monospace, monospace;

  --fa-shadow-md:    0 4px 12px -2px rgba(10,33,72,0.10), 0 2px 4px -2px rgba(10,33,72,0.06);
  --fa-ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --fa-dur-base:     180ms;
}

/* ── Body background for home page ── */
body.front-page,
body.home { background: var(--fa-navy-900) !important; }

/* ── Radial glow + dot grid overlay ── */
body.front-page::before,
body.home::before {
  content: "";
  position: fixed; top: 0; left: 0; right: 0; height: 1100px;
  background:
    radial-gradient(55% 60% at 85% 12%, rgba(50,184,209,0.32) 0%, transparent 60%),
    radial-gradient(70% 80% at 5% 95%,  rgba(25,84,172,0.42)  0%, transparent 60%);
  pointer-events: none; z-index: 0;
}

/* ── PROMO BANNER (cyan gradient — final design) ── */
.fa-promo-banner {
  background: #375EFB;
  color: #051226;
  position: relative;
  overflow: hidden;
  z-index: 49;
  box-shadow: 0 1px 0 rgba(5,18,38,0.06);
}
.fa-promo-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  height: 40px;
  display: flex; align-items: center; justify-content: center;
  gap: 12px;
  font-family: var(--fa-font-sans);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.01em;
}
.fa-promo-text  { color: #051226; }
.fa-promo-text strong { color: #051226; font-weight: 800; }
.fa-promo-divider { width: 1px; height: 14px; background: rgba(5,18,38,0.25); flex-shrink: 0; }
.fa-promo-link {
  color: #051226; font-weight: 700;
  text-decoration: none; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 4px;
}
.fa-promo-link:hover { text-decoration: underline; text-underline-offset: 3px; }
.fa-promo-close {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  width: 22px; height: 22px; border-radius: 6px;
  background: transparent; border: none; color: rgba(5,18,38,0.55);
  cursor: pointer; font-size: 14px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--fa-dur-base) var(--fa-ease-out);
}
.fa-promo-close:hover { background: rgba(5,18,38,0.10); color: #051226; }

/* ── EYEBROW ── */
.fa-eyebrow {
  font-family: var(--fa-font-sans);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--fa-cyan-300);
  margin: 0 0 16px;
  display: block;
}

/* ── HERO ── */
.fa-hero {
  max-width: 1280px; margin: 0 auto; padding: 80px 32px 0;
}
.fa-hero-lede {
  font-family: var(--fa-font-sans);
  font-size: 18px; line-height: 1.65;
  color: rgba(255,255,255,0.78);
  max-width: 48ch; margin: 0 0 32px;
}
.fa-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 0; }

/* ── BUTTONS ── */
.fa-btn {
  font-family: var(--fa-font-sans); font-weight: 600;
  border-radius: 12px; padding: 0 18px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 1px solid transparent;
  transition: all var(--fa-dur-base) var(--fa-ease-out);
  text-decoration: none; cursor: pointer; font-size: 14px;
  white-space: nowrap; line-height: 1;
}
.fa-btn i, .fa-btn svg {
  width: 16px !important; height: 16px !important; flex-shrink: 0;
  display: inline-flex !important; pointer-events: none;
}
.fa-btn-lg { height: 48px; padding: 0 24px; font-size: 15px; border-radius: 12px; }
.fa-btn-lg i, .fa-btn-lg svg { width: 18px !important; height: 18px !important; }

/* ── DARK PAGE HEADING OVERRIDES ── */
body.front-page h1, body.home h1,
body.front-page h2, body.home h2,
body.front-page h3, body.home h3 {
  color: white;
}
/* section-specific heading colour resets (verify cards, etc.) */
.fa-verify-card h3, .fa-verify-card p { color: inherit; }

.fa-btn-primary-dark { background: white; color: var(--fa-blue-500); border-color: transparent; }
.fa-btn-primary-dark:hover { background: #EAF2FE; box-shadow: var(--fa-shadow-md); color: var(--fa-blue-600); }

.fa-btn-secondary-dark { background: transparent; color: white; border-color: rgba(255,255,255,0.24); }
.fa-btn-secondary-dark:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.50); color: white; }

/* ── SECTION CONTAINER ── */
.fa-section { max-width: 1280px; margin: 0 auto; padding: 96px 32px; }
.fa-section-tight { max-width: 1280px; margin: 0 auto; padding: 64px 32px; }

/* ── EDUCATION SECTION ── */
.fa-edu-intro {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px; align-items: start;
}
.fa-edu-h2 {
  font-family: var(--fa-font-display);
  font-size: 40px; letter-spacing: -0.025em; font-weight: 600;
  line-height: 1.1; max-width: 16ch;
  margin: 0 0 20px; color: white;
}
.fa-edu-h2 em {
  font-style: normal;
  background: linear-gradient(90deg, #A4E7F4, #6DD5E9 50%, #5E97EE 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.fa-edu-body {
  font-family: var(--fa-font-sans);
  font-size: 17px; line-height: 1.7; color: rgba(255,255,255,0.72);
  max-width: 44ch; margin: 0;
}
.fa-edu-right { display: flex; flex-direction: column; gap: 0; padding-top: 14px; }
.fa-edu-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px; align-items: start;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.fa-edu-item:first-child { border-top: 1px solid rgba(255,255,255,0.40); }
.fa-edu-num {
  font-family: var(--fa-font-mono);
  font-size: 13px; font-weight: 600;
  color: var(--fa-cyan-300); letter-spacing: 0.04em;
  padding-top: 4px;
}
.fa-edu-item-h { font-family: var(--fa-font-display); font-size: 18px; font-weight: 600; letter-spacing: -0.01em; margin: 0 0 4px; color: white; }
.fa-edu-item-p { font-family: var(--fa-font-sans); font-size: 14px; color: rgba(255,255,255,0.60); line-height: 1.6; margin: 0; }

/* ── SECTION HEADING ── */
.fa-section-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 24px; }
.fa-section-head-h2 { font-family: var(--fa-font-display); font-size: 30px; letter-spacing: -0.02em; font-weight: 600; color: white; margin: 0; }
.fa-section-more { color: var(--fa-cyan-300); font-weight: 600; font-size: 14px; text-decoration: none; font-family: var(--fa-font-sans); }
.fa-section-more:hover { color: white; }

/* ── TRUST BAND ── */
.fa-trust-band {
  padding: 64px 0;
  border-top: 1px solid rgba(255,255,255,0.10);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.fa-trust-band-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 40px;
}
.fa-trust-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; }
.fa-trust-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: rgba(55,94,251,0.14); color: var(--fa-cyan-300);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fa-trust-icon svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.75; }
.fa-trust-title { font-family: var(--fa-font-display); font-weight: 600; font-size: 17px; letter-spacing: -0.01em; color: white; }
.fa-trust-sub { font-family: var(--fa-font-sans); font-size: 13px; color: rgba(255,255,255,0.60); line-height: 1.6; max-width: 26ch; margin: 0; }

/* ── HOW WE VERIFY ── */
.fa-verify-eyebrow { font-family: var(--fa-font-sans); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fa-cyan-300); margin: 0 0 14px; display: block; }
.fa-verify-h2 { font-family: var(--fa-font-display); font-size: 40px; letter-spacing: -0.02em; font-weight: 600; color: white; max-width: 18ch; margin: 0 0 48px; line-height: 1.1; }
.fa-verify-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; }
.fa-verify-step { padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.14); }
.fa-verify-num { font-family: var(--fa-font-mono); font-size: 12px; font-weight: 600; color: var(--fa-cyan-300); letter-spacing: 0.08em; margin-bottom: 10px; }
.fa-verify-h4 { font-family: var(--fa-font-display); font-size: 18px; font-weight: 600; letter-spacing: -0.01em; margin: 0 0 8px; color: white; }
.fa-verify-p { font-family: var(--fa-font-sans); font-size: 14px; color: rgba(255,255,255,0.60); line-height: 1.65; margin: 0; }

/* ── FINAL CTA ── */
.fa-cta-wrap {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 64px 0 0;
  margin-top: 48px;
}
.fa-cta-eyebrow { font-family: var(--fa-font-sans); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fa-cyan-300); margin: 0 0 12px; display: block; }
.fa-cta-h2 { font-family: var(--fa-font-display); font-size: 40px; letter-spacing: -0.02em; font-weight: 600; color: white; max-width: 22ch; margin: 0 auto 12px; line-height: 1.1; }
.fa-cta-body { font-family: var(--fa-font-sans); font-size: 16px; color: rgba(255,255,255,0.65); max-width: 52ch; margin: 0 auto 32px; line-height: 1.6; }

/* ── WOOCOMMERCE PRODUCT GRID DARK OVERRIDES (page-context selectors) ── */
body.front-page .woocommerce ul.products li.product,
body.home .woocommerce ul.products li.product {
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  margin: 0 !important; float: none !important; width: 100% !important;
  transition: background 180ms, border-color 180ms, transform 180ms !important;
}
body.front-page .woocommerce ul.products li.product:hover,
body.home .woocommerce ul.products li.product:hover {
  background: rgba(255,255,255,0.08) !important;
  border-color: rgba(255,255,255,0.20) !important;
  transform: translateY(-2px) !important;
}
body.front-page .woocommerce ul.products li.product .woocommerce-loop-product__title,
body.home .woocommerce ul.products li.product .woocommerce-loop-product__title {
  color: white !important; font-family: var(--fa-font-sans) !important;
  font-weight: 700 !important; font-size: 15px !important;
}
body.front-page .woocommerce ul.products li.product .price,
body.home .woocommerce ul.products li.product .price {
  color: white !important; font-family: var(--fa-font-display) !important;
  font-weight: 600 !important; font-size: 20px !important;
}
body.front-page .woocommerce ul.products li.product a.button,
body.home .woocommerce ul.products li.product a.button {
  background: white !important; color: var(--fa-blue-500) !important;
  border-radius: 999px !important; font-weight: 700 !important;
  font-family: var(--fa-font-sans) !important; font-size: 12px !important;
  border: none !important; box-shadow: none !important;
}
body.front-page .woocommerce ul.products li.product a.button:hover,
body.home .woocommerce ul.products li.product a.button:hover {
  background: var(--fa-blue-50) !important; color: var(--fa-blue-600) !important;
}

/* ── CARD STRUCTURE + FOOTER ROW (matches shop card, dark theme) ──
   Restructured by fa_product_loop_hooks(): link wraps img+title+vial,
   then div.fa-card-foot holds price (left) + add-to-cart (right). */
body.front-page .woocommerce ul.products li.product,
body.home .woocommerce ul.products li.product {
  display: flex !important; flex-direction: column !important; padding: 0 !important;
}
body.front-page .woocommerce ul.products li.product a.woocommerce-loop-product__link,
body.home .woocommerce ul.products li.product a.woocommerce-loop-product__link {
  display: flex !important; flex-direction: column !important; text-decoration: none !important;
}
body.front-page .woocommerce ul.products li.product img,
body.home .woocommerce ul.products li.product img {
  width: 100% !important; aspect-ratio: 1 / 1; height: auto !important;
  object-fit: cover; display: block !important; margin: 0 !important;
}
body.front-page .woocommerce ul.products li.product .woocommerce-loop-product__title,
body.home .woocommerce ul.products li.product .woocommerce-loop-product__title {
  padding: 14px 16px 2px !important; margin: 0 !important; line-height: 1.3 !important;
}
body.front-page .woocommerce ul.products li.product .fa-vial-size,
body.home .woocommerce ul.products li.product .fa-vial-size {
  display: block; font-family: var(--fa-font-sans);
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em; padding: 0 16px 12px;
}
body.front-page .woocommerce ul.products li.product .fa-card-foot,
body.home .woocommerce ul.products li.product .fa-card-foot {
  display: flex !important; align-items: center !important;
  justify-content: space-between !important; gap: 10px;
  padding: 0 16px 16px !important; margin-top: auto !important;
}
body.front-page .woocommerce ul.products li.product .fa-card-foot .price,
body.home .woocommerce ul.products li.product .fa-card-foot .price {
  margin: 0 !important; flex-shrink: 0;
}
body.front-page .woocommerce ul.products li.product .fa-card-foot a.button,
body.home .woocommerce ul.products li.product .fa-card-foot a.button {
  height: 40px !important; padding: 0 16px !important; margin: 0 !important;
  border-radius: 12px !important; white-space: nowrap;
  display: inline-flex !important; align-items: center !important; justify-content: center !important;
}
body.front-page .woocommerce ul.products li.product .fa-card-foot a.added_to_cart,
body.home .woocommerce ul.products li.product .fa-card-foot a.added_to_cart { display: none !important; }

/* ── HERO INNER STRUCTURE ── */
.fa-hero-inner {
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(0,0.9fr);
  column-gap: 64px; align-items: center;
}
.fa-hero-right { display: flex; align-items: center; justify-content: center; padding: 12px 0; }
.fa-hero-logo {
  width: 100%; max-width: 420px; height: auto; display: block;
  filter: brightness(1.7) saturate(0.5)
          drop-shadow(0 24px 60px rgba(50,184,209,0.28))
          drop-shadow(0 0 28px rgba(25,84,172,0.40));
}
.fa-hero h1 {
  font-family: var(--fa-font-display) !important;
  font-size: 56px !important; font-weight: 600 !important;
  line-height: 1.05 !important; letter-spacing: -0.02em !important;
  color: white !important; max-width: 14ch; margin: 0 0 20px !important;
}
.fa-hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #A4E7F4, #6DD5E9 50%, #5E97EE 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent !important;
}
.fa-hero-stats {
  display: flex; gap: 48px;
  margin-top: 32px; padding: 28px 0 64px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.fa-hero-stat .n {
  font-family: var(--fa-font-display);
  font-size: 32px; font-weight: 600; letter-spacing: -0.02em; color: white;
}
.fa-hero-stat .l {
  font-size: 12px; color: rgba(255,255,255,0.62); margin-top: 4px;
  text-transform: uppercase; letter-spacing: 0.10em; font-weight: 600;
  font-family: var(--fa-font-sans);
}

/* ── BUTTONS (dark page variants) ── */
.fa-btn-primary-solid { background: var(--fa-blue-500) !important; color: white !important; border-color: transparent !important; }
.fa-btn-primary-solid:hover { background: var(--fa-blue-600) !important; box-shadow: var(--fa-shadow-md); color: white !important; }
.fa-btn-ghost-light { background: transparent !important; color: white !important; border-color: rgba(255,255,255,0.24) !important; }
.fa-btn-ghost-light:hover { background: rgba(255,255,255,0.08) !important; border-color: rgba(255,255,255,0.50) !important; color: white !important; }

/* ── EDUCATION SECTION ── */
.fa-edu-section { max-width: 1280px; margin: 0 auto; padding: 80px 32px; }
.fa-edu-inner {
  display: grid !important; grid-template-columns: 1fr 1.1fr !important;
  gap: 64px; align-items: start;
}
.fa-edu-left h2 {
  font-family: var(--fa-font-display) !important;
  font-size: 36px !important; letter-spacing: -0.025em !important; font-weight: 600 !important;
  line-height: 1.15 !important; max-width: 16ch; margin: 0 !important; color: white !important;
}
.fa-edu-right { display: flex; flex-direction: column; gap: 0; }
.fa-edu-item { padding: 18px 0; border-top: 1px solid rgba(255,255,255,0.10); }
.fa-edu-item:first-child { border-top-color: rgba(255,255,255,0.30); }
.fa-edu-n {
  font-family: var(--fa-font-mono); font-size: 12px; font-weight: 600;
  color: var(--fa-cyan-300); letter-spacing: 0.04em; margin-bottom: 6px;
}
.fa-edu-title { font-family: var(--fa-font-display); font-size: 17px; font-weight: 600; letter-spacing: -0.01em; margin: 0 0 4px; color: white; }
.fa-edu-right p { font-family: var(--fa-font-sans); font-size: 14px; color: rgba(255,255,255,0.60); line-height: 1.6; margin: 0; }

/* ── PRODUCTS SECTION ── */
.fa-products-section { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.fa-section-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 20px; }
.fa-section-head h2 { font-family: var(--fa-font-display) !important; font-size: 30px !important; letter-spacing: -0.02em !important; font-weight: 600 !important; color: white !important; margin: 0 !important; }
.fa-view-all { color: var(--fa-cyan-300); font-weight: 600; font-size: 14px; text-decoration: none; font-family: var(--fa-font-sans); }
.fa-view-all:hover { color: white; }
/* Product grid — target by page context since _css_classes doesn't output on shortcode widgets in v4 */
body.front-page .woocommerce ul.products,
body.home .woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(4,1fr) !important;
  gap: 16px !important; margin: 0 !important; padding: 16px 32px 64px !important;
  max-width: 1280px; box-sizing: border-box;
  list-style: none !important;
}

/* ── TRUST BAND (alternate class names) ── */
.fa-trust-band { padding: 64px 32px; max-width: 1280px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.10); border-bottom: 1px solid rgba(255,255,255,0.10); display: grid; grid-template-columns: repeat(4,1fr); gap: 40px; }
.fa-trust-body { font-family: var(--fa-font-sans); font-size: 13px; color: rgba(255,255,255,0.60); line-height: 1.6; max-width: 26ch; margin: 0; }

/* ── VERIFY SECTION ── */
.fa-verify-section { max-width: 1280px; margin: 0 auto; padding: 72px 32px; }
.fa-verify-inner h2 { font-family: var(--fa-font-display) !important; font-size: 36px !important; letter-spacing: -0.02em !important; font-weight: 600 !important; color: white !important; max-width: 18ch; margin: 0 0 12px !important; line-height: 1.1 !important; }
.fa-verify-lede { font-family: var(--fa-font-sans); font-size: 16px; color: rgba(255,255,255,0.62); max-width: 52ch; line-height: 1.65; margin: 0 0 36px; }
.fa-verify-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; }
.fa-verify-card { padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.14); }
.fa-verify-card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(55,94,251,0.14); color: var(--fa-cyan-300);
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.fa-verify-card-icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.75; }
.fa-verify-card h3 { font-family: var(--fa-font-display); font-size: 18px; font-weight: 600; letter-spacing: -0.01em; margin: 0 0 8px; color: white; }
.fa-verify-card p { font-family: var(--fa-font-sans); font-size: 14px; color: rgba(255,255,255,0.60); line-height: 1.65; margin: 0; }

/* ── CTA SECTION ── */
.fa-cta-section { max-width: 1280px; margin: 0 auto; padding: 0 32px 80px; }
.fa-cta-inner {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 56px 0 0;
}
.fa-cta-inner h2 { font-family: var(--fa-font-display) !important; font-size: 36px !important; letter-spacing: -0.02em !important; font-weight: 600 !important; color: white !important; max-width: 22ch; margin: 0 auto 12px !important; line-height: 1.1 !important; }
.fa-cta-inner p { font-family: var(--fa-font-sans); font-size: 16px; color: rgba(255,255,255,0.65); max-width: 52ch; margin: 0 auto 28px; line-height: 1.6; }

/* ── ELEMENTOR ATOMIC ELEMENT OVERRIDES ──
   Replaces custom_css.raw which requires the atomic-custom-css experiment.
   Targeting by element_id class names applied by Elementor v4 atomic runtime.
   ── */

/* Promo bar — cyan gradient */
.promo-out {
  background: #375EFB !important;
  position: relative;
}

/* ---- Promo bar: news ticker --------------------------------
   The message is an editable Elementor paragraph (.promo-text).
   Show multiple headlines by separating them with "  •  " right
   in Elementor. Scroll speed = the animation duration below.
   ----------------------------------------------------------- */
.promo-out {
  display: block !important;
  overflow: hidden !important;
  white-space: nowrap;
  cursor: pointer;
  min-height: 24px !important;
}
.promo-out .promo-text {
  display: inline-block;
  margin: 0;
  padding-left: 100%;
  white-space: nowrap;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 24px;
  will-change: transform;
  animation: fa-promo-ticker 38s linear infinite;
}

@keyframes fa-promo-ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

@media (prefers-reduced-motion: reduce) {
  .promo-out { display: flex !important; align-items: center; justify-content: center; white-space: normal; }
  .promo-out .promo-text { padding-left: 0; white-space: normal; line-height: 1.4; animation: none; }
}

/* Seamless track (built by JS in foundation-aminos-core; the single-copy
   marquee above is the no-JS fallback). Two identical halves scroll -50%
   for a gapless loop; JS sets the duration for a constant speed. */
.fa-ticker-track {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  will-change: transform;
  animation: fa-promo-ticker-seamless 40s linear infinite;
}
.fa-ticker-track .promo-text {
  flex: 0 0 auto;
  padding-left: 0;
  padding-right: 3rem;
  margin: 0;
  animation: none;
}
@keyframes fa-promo-ticker-seamless {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Ghost button border */
.hero-btn-ghost {
  border: 1px solid rgba(255,255,255,0.28) !important;
}

/* Stats band dividers */
.stats-out {
  border-top: 1px solid rgba(255,255,255,0.10) !important;
  border-bottom: 1px solid rgba(255,255,255,0.10) !important;
}

/* Education items bottom borders */
.edu-item1,
.edu-item2 {
  border-bottom: 1px solid rgba(255,255,255,0.10) !important;
}

/* Trust band top/bottom borders */
.trust-out {
  border-top: 1px solid rgba(255,255,255,0.10) !important;
  border-bottom: 1px solid rgba(255,255,255,0.10) !important;
}

/* CTA section top border */
.cta-out {
  border-top: 1px solid rgba(255,255,255,0.10) !important;
}

/* Verify cards border */
.vc-1, .vc-2, .vc-3, .vc-4 {
  border: 1px solid rgba(255,255,255,0.08) !important;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1),
              border-color 0.3s ease,
              background-color 0.3s ease,
              box-shadow 0.3s ease !important;
  will-change: transform;
}
/* Hover: lift, cyan-accent border + glow, faint surface brighten */
.vc-1:hover, .vc-2:hover, .vc-3:hover, .vc-4:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(55,94,251,0.45) !important;
  background-color: rgba(255,255,255,0.03) !important;
  box-shadow: 0 18px 36px -14px rgba(0,0,0,0.55),
              0 0 0 1px rgba(55,94,251,0.18),
              0 0 28px -6px rgba(55,94,251,0.22) !important;
}
/* Icon tile intensifies on card hover */
.vc-1:hover .fa-verify-card-icon,
.vc-2:hover .fa-verify-card-icon,
.vc-3:hover .fa-verify-card-icon,
.vc-4:hover .fa-verify-card-icon {
  background: rgba(55,94,251,0.26);
  color: #A9B8FE;
  transition: background 0.3s ease, color 0.3s ease;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .fa-hero { padding-top: 56px; }
  .fa-hero-inner { grid-template-columns: 1fr; column-gap: 0; row-gap: 28px; }
  .fa-hero-logo { max-width: 340px; }
  .fa-hero h1 { font-size: 48px; }
  .fa-edu-inner { grid-template-columns: 1fr; gap: 24px; }
  .fa-edu-left h2 { font-size: 32px; }
  .fa-trust-band { grid-template-columns: repeat(2,1fr); gap: 36px; }
  .fa-verify-grid { grid-template-columns: repeat(2,1fr); }
  .fa-verify-inner h2 { font-size: 32px; }
  .fa-cta-inner h2 { font-size: 30px; }
  body.front-page .woocommerce ul.products, body.home .woocommerce ul.products { grid-template-columns: repeat(3,1fr) !important; padding: 16px 24px 48px !important; }
}
@media (max-width: 767px) {
  .fa-promo-inner { padding: 8px 16px; height: auto; min-height: 36px; font-size: 12px; flex-wrap: wrap; }
  .fa-promo-divider { display: none; }
  .fa-hero { padding: 40px 16px 0; }
  .fa-hero-inner { row-gap: 20px; }
  .fa-hero h1 { font-size: 36px; }
  .fa-hero-lede { font-size: 15px; }
  .fa-hero-actions { flex-direction: column; align-items: stretch; }
  .fa-hero-logo { max-width: 220px; }
  .fa-hero-stats { gap: 16px; flex-wrap: wrap; padding-bottom: 40px; }
  .fa-hero-stat .n { font-size: 22px; }
  .fa-edu-section { padding: 48px 16px; }
  .fa-edu-inner { grid-template-columns: 1fr; gap: 18px; }
  .fa-edu-left h2 { font-size: 26px; }
  .fa-trust-band { grid-template-columns: 1fr; gap: 28px; padding: 36px 16px; }
  .fa-products-section, .fa-products-wrap { padding-left: 16px; padding-right: 16px; }
  .fa-verify-section { padding: 48px 16px; }
  .fa-verify-grid { grid-template-columns: 1fr; gap: 20px; }
  .fa-verify-inner h2 { font-size: 26px; margin-bottom: 28px; }
  .fa-cta-section { padding: 40px 16px 60px; }
  .fa-cta-inner { padding: 36px 0 0; }
  .fa-cta-inner h2 { font-size: 26px; }
  .fa-cta-inner p { font-size: 14px; }
  body.front-page .woocommerce ul.products, body.home .woocommerce ul.products { grid-template-columns: repeat(2,1fr) !important; gap: 12px !important; padding: 12px 16px 40px !important; }
}

/* ----------------------------------------------------------
   Close the gap between the sticky nav and the promo bar.
   The nav lives in an Elementor shortcode widget which inherits
   Elementor's default 20px widget spacing; zero it so the promo
   bar sits flush against the nav. Scoped to the widget holding
   the nav so global widget spacing is untouched.
   ---------------------------------------------------------- */
.elementor-widget-shortcode:has(.fa-nav) {
  margin-bottom: 0 !important;
}

/* ----------------------------------------------------------
   "View all products →" link in the Popular-this-week header.
   The atomic e-button inherits Elementor's default blue fill;
   strip it back to a clean cyan text link that matches the
   section accent.
   ---------------------------------------------------------- */
.prods-link,
a.prods-link,
.prods-link.e-button-base {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  color: #375EFB !important;
  font-family: 'Manrope', sans-serif !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  text-decoration: none !important;
  transition: color 120ms ease, transform 120ms ease;
}
.prods-link:hover {
  color: #6D86FC !important;
  transform: translateX(2px);
}

/* ----------------------------------------------------------
   Research-use-only disclaimer band (hm-ruo-*) sits directly
   beneath the "Popular this week" product grid. The grid stacks
   two 64px bottom paddings (the .fa-pg-wrap wrapper + the
   ul.products rule above), which pushed the band far below the
   cards. Zero both so the band reads as part of the products
   block; the 16px top padding on .s-hm-ruo-out is the only gap.
   Applies across all breakpoints. ---------------------------- */
.fa-pg-wrap { padding-bottom: 0 !important; }
body.front-page .woocommerce ul.products,
body.home .woocommerce ul.products { padding-bottom: 0 !important; }

/* ============================================================
   MOBILE RESPONSIVE — HOME (built section by section)
   Scoped with body.home to win over Elementor atomic local
   styles. Breakpoints: mobile <=767, tablet 768-1024.
   ============================================================ */

/* ---- Section 1: Hero ---- */
@media (max-width: 767px) {
  body.home .hero-out { padding: 48px 20px 36px; }
  body.home .hero-in { flex-direction: column-reverse; gap: 32px; }
  body.home .hero-content { width: 100%; align-items: center; text-align: center; }
  body.home .hero-h1a,
  body.home .hero-h1b { font-size: 36px; }
  body.home .hero-body { font-size: 16px; }
  body.home .hero-visual { width: 100%; }
  body.home .hero-btns { justify-content: center; width: 100%; }
}

/* ---- Section 2: "Quality is at the core" trust cards ---- */
@media (max-width: 767px) {
  body.home .verify-out { padding: 48px 20px; }
  body.home .verify-in { gap: 32px; }
  body.home .verify-h2 { font-size: 24px; }
  body.home .verify-grid { gap: 12px; }
  body.home .vc-1,
  body.home .vc-2,
  body.home .vc-3,
  body.home .vc-4 { width: 100%; }
}

/* ---- Section 3 header + Section 4: CTA ---- */
@media (max-width: 767px) {
  body.home .prods-out { padding-left: 20px; padding-right: 20px; }
  body.home .prods-h { font-size: 20px; }
  body.home .cta-out { padding: 56px 20px; }
  body.home .cta-h2 { font-size: 28px; }
}

/* ---- Ticker message items (Settings → Promo Ticker) ----------------------
   JS builds one .promo-item per message inside .promo-text. A trailing bullet
   after every item gives even spacing that holds across the seamless loop,
   whatever each message says. */
.promo-text .promo-item { display: inline-block; white-space: nowrap; }
.promo-text .promo-item::after {
  content: "•";
  margin: 0 1.75rem;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
}
/* Per-item separators own the spacing now; drop the copy-level gap so the seam
   matches the internal spacing exactly. */
.fa-ticker-track .promo-text { padding-right: 0; }
/* Static (reduced-motion) fallback: no dangling separator on the last item. */
@media (prefers-reduced-motion: reduce) {
  .promo-text .promo-item:last-child::after { display: none; }
}
