/* ============================================================
   HELIX BIO | Premium Research Peptides
   CSS Stylesheet
   ============================================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal: #1A8C8C;
  --teal-light: #22a8a8;
  --teal-dark: #126666;
  --gold: #C9A84C;
  --gold-light: #e0be6a;
  --white: #ffffff;
  --off-white: #f8fafa;
  --navy: #0e1f2f;
  --navy-mid: #162d40;
  --text: #1a2332;
  --text-muted: #6b7a8d;
  --border: rgba(26, 140, 140, 0.12);
  --shadow-soft: 0 4px 24px rgba(26, 140, 140, 0.08);
  --shadow-card: 0 8px 40px rgba(26, 140, 140, 0.10), 0 2px 12px rgba(0,0,0,0.04);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 100px;
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: clip;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; touch-action: manipulation; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; background: none; font-family: inherit; touch-action: manipulation; }

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

/* ---- Typography ---- */
.gradient-text {
  background: linear-gradient(135deg, var(--teal) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--teal);
  color: var(--white);
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(26, 140, 140, 0.25);
}
.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(26, 140, 140, 0.35);
}
.btn-primary.btn-lg { padding: 17px 40px; font-size: 16px; }
.btn-primary.btn-block { width: 100%; padding: 18px; font-size: 16px; }

/* Gold Shop Now button — nav only */
.btn-shop-now {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 26px;
  background: linear-gradient(135deg, var(--gold) 0%, #e8c45a 100%);
  color: #1a1a1a;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(201,168,76,0.40), 0 1px 0 rgba(255,255,255,0.15) inset;
  white-space: nowrap;
}
.btn-shop-now:hover {
  background: linear-gradient(135deg, #e8c45a 0%, var(--gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.50);
  color: #111;
}

/* Contact Us button — nav */
.btn-contact-nav {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.9);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
}
.btn-contact-nav:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.45);
  color: #fff;
}

/* ---- Cart Button (navbar) ---- */
.cart-btn {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.92);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}
.cart-btn:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.45);
  color: #fff;
  transform: translateY(-1px);
}
.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: var(--gold);
  color: #1a1a1a;
  font-size: 10px;
  font-weight: 800;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1);
}
.cart-badge.pop {
  transform: scale(1.4);
}
.cart-badge[data-count="0"] {
  opacity: 0;
  transform: scale(0);
}

/* ---- Cart Drawer ---- */
.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 1800;
  background: rgba(10,24,40,0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  height: 100%;
  width: 400px;
  max-width: 100vw;
  background: #fff;
  z-index: 1900;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 48px rgba(0,0,0,0.16);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
}
.cart-drawer.open { transform: translateX(0); }

/* Header */
.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px 18px;
  background: linear-gradient(135deg, #0e2a2a 0%, #1A8C8C 50%, #14404a 100%);
  flex-shrink: 0;
}
.cart-drawer-header h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cart-drawer-header h3 i { font-size: 15px; opacity: 0.85; }
.cart-drawer-close {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
  font-size: 20px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  line-height: 1;
}
.cart-drawer-close:hover { background: rgba(255,255,255,0.22); color: #fff; }

/* Body */
.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 18px 20px 12px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Empty message */
.cart-empty-msg {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 0 4px;
  gap: 8px;
}
.cart-empty-msg i { font-size: 30px; color: rgba(26,140,140,0.22); }
.cart-empty-msg p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* Selected item row */
.cart-selected-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  background: #f0fafa;
  border: 1.5px solid rgba(26,140,140,0.25);
  border-radius: 14px;
}
.cart-item-img {
  width: 48px;
  height: 58px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(26,140,140,0.18));
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1px;
}
.cart-item-variant {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 7px;
}
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 7px;
}
.qty-btn {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1.5px solid rgba(26,140,140,0.3);
  background: #fff;
  color: var(--teal);
  font-size: 15px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
}
.qty-btn:hover {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}
.qty-val {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  min-width: 22px;
  text-align: center;
}
.cart-item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
}
.cart-item-price {
  font-size: 15px;
  font-weight: 800;
  color: var(--teal);
}
.cart-item-remove {
  font-size: 11px;
  color: #bbc4cc;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.2s;
  font-family: inherit;
}
.cart-item-remove:hover { color: #e05252; }

/* Divider label above bundle cards */
.cart-offers-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 2px 0 0;
}
.cart-offers-label span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}
.cart-offers-label::before,
.cart-offers-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* Bundle offer cards in drawer */
.cart-bundle-cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cart-bundle-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px 12px 12px;
  background: #fff;
  border: 1.5px solid rgba(26,140,140,0.15);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: left;
  font-family: inherit;
  overflow: hidden;
}
.cart-bundle-card:hover {
  border-color: var(--teal);
  background: #f5fbfb;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(26,140,140,0.12);
}
.cart-bundle-card.selected {
  border-color: var(--teal);
  background: linear-gradient(135deg, rgba(26,140,140,0.06) 0%, rgba(26,140,140,0.02) 100%);
  box-shadow: 0 4px 20px rgba(26,140,140,0.14);
}
.cart-bundle-card.selected::after {
  content: '✓';
  position: absolute;
  top: 10px; right: 12px;
  width: 20px; height: 20px;
  background: var(--teal);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Popular card subtle teal tint */
.cbc--popular {
  border-color: rgba(26,140,140,0.28);
  background: rgba(26,140,140,0.02);
}
/* Best value card subtle gold tint */
.cbc--value {
  border-color: rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.02);
}
.cbc--value:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.05);
  box-shadow: 0 4px 16px rgba(201,168,76,0.12);
}
.cbc--value.selected {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(201,168,76,0.07) 0%, rgba(201,168,76,0.02) 100%);
  box-shadow: 0 4px 20px rgba(201,168,76,0.14);
}
.cbc--value.selected::after { background: var(--gold); color: #1a1a1a; }

/* Badge on bundle card */
.cbc-badge {
  position: absolute;
  top: 0; left: 12px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--teal);
  color: #fff;
  padding: 2px 8px;
  border-radius: 0 0 6px 6px;
}
.cbc-badge--gold { background: var(--gold); color: #1a1a1a; }

/* Card internals */
.cbc-left {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 6px; /* room for badge */
}
.cbc-qty-icon {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 32px;
  flex-shrink: 0;
}
.cbc-vial {
  width: 7px;
  border-radius: 2px 2px 3px 3px;
  background: linear-gradient(180deg, var(--teal-light) 0%, var(--teal-dark) 100%);
  opacity: 0.75;
}
/* Single vial */
.cart-bundle-card:nth-child(1) .cbc-vial { height: 28px; width: 9px; }
/* Triple */
.cbc-qty-icon--3 .cbc-vial { height: 24px; }
.cbc-qty-icon--3 .cbc-vial:nth-child(2) { height: 30px; }
/* Quint */
.cbc-qty-icon--5 .cbc-vial { height: 20px; }
.cbc-qty-icon--5 .cbc-vial:nth-child(2),
.cbc-qty-icon--5 .cbc-vial:nth-child(4) { height: 26px; }
.cbc-qty-icon--5 .cbc-vial:nth-child(3) { height: 30px; }

.cbc-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cbc-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}
.cbc-sub {
  font-size: 11px;
  color: var(--text-muted);
}
.cbc-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
  flex-shrink: 0;
  padding-right: 4px;
}
.cbc-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
}
.cbc--value .cbc-price { color: #a37b2a; }
.cbc-aud {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
}
.cbc-save {
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  background: var(--gold);
  padding: 2px 7px;
  border-radius: 4px;
  margin-top: 3px;
}

/* Drawer footer */
.cart-drawer-footer {
  padding: 16px 20px 22px;
  border-top: 1px solid var(--border);
  background: #fafcfc;
  flex-shrink: 0;
}
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.cart-subtotal span:first-child {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
.cart-subtotal span:last-child {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
}
.cart-checkout-btn {
  display: block;
  width: 100%;
  padding: 15px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.cart-footer-note {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 10px;
}

/* ---- Shipping Threshold Bar ---- */
.cart-shipping-threshold {
  padding: 12px 20px 10px;
  border-bottom: 1px solid rgba(26,140,140,0.08);
  background: rgba(26,140,140,0.03);
}
.cst-track {
  height: 5px;
  background: rgba(26,140,140,0.12);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 8px;
}
.cst-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal) 0%, var(--teal-light) 100%);
  border-radius: 100px;
  transition: width 0.5s cubic-bezier(0.4,0,0.2,1);
}
.cst-label {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}
.cst-label strong { color: var(--text); }
.cst-label.cst-reached {
  color: #12a05c;
  font-weight: 600;
}

/* ---- Cart Trust Seals ---- */
.cart-trust-seals {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 12px 0 8px;
}
.cts-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
}
.cts-item i { color: var(--teal); font-size: 11px; }
.cts-sep { width: 1px; height: 12px; background: var(--border); }

/* ---- Cart Payment Icons ---- */
.cart-payment-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 8px;
}
.cpi-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 4px 9px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: 10.5px;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  background: var(--off-white);
  min-width: 36px;
}
.cpi-badge--pp { color: #003087; border-color: #003087; background: #f0f4ff; }
.cpi-badge--crypto { color: #f59e0b; border-color: rgba(245,158,11,0.3); background: rgba(245,158,11,0.06); }

/* ---- Promo Code ---- */
.promo-wrap {
  margin-bottom: 14px;
}
.promo-row {
  display: flex;
  gap: 8px;
}
.promo-input {
  flex: 1;
  padding: 11px 14px;
  border: 1.5px solid rgba(26,140,140,0.22);
  border-radius: 10px;
  font-size: 13px;
  font-family: inherit;
  color: var(--text);
  background: #fff;
  outline: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.promo-input::placeholder {
  text-transform: none;
  letter-spacing: 0;
  color: #b0bec5;
}
.promo-input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26,140,140,0.1);
}
.promo-input.error {
  border-color: #e05252;
  box-shadow: 0 0 0 3px rgba(224,82,82,0.08);
}
.promo-input.success {
  border-color: #1aad6e;
  box-shadow: 0 0 0 3px rgba(26,173,110,0.1);
}
.promo-apply-btn {
  padding: 11px 18px;
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
  flex-shrink: 0;
}
.promo-apply-btn:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}
.promo-apply-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.promo-feedback {
  font-size: 12px;
  min-height: 18px;
  margin-top: 6px;
  font-weight: 500;
  padding-left: 2px;
}
.promo-feedback.error   { color: #e05252; }
.promo-feedback.success { color: #1aad6e; }

/* Applied promo tag */
.promo-applied {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(26,173,110,0.07);
  border: 1.5px solid rgba(26,173,110,0.25);
  border-radius: 10px;
  padding: 9px 12px;
  margin-bottom: 14px;
}
.promo-applied-left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.promo-applied-left i { color: #1aad6e; font-size: 13px; }
.promo-applied-left span:nth-child(2) {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.promo-applied-saving {
  font-size: 12px;
  color: #1aad6e;
  font-weight: 600;
}
.promo-remove-btn {
  background: none;
  border: none;
  color: #aab4bd;
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
  padding: 0 2px;
  transition: color 0.2s;
  flex-shrink: 0;
}
.promo-remove-btn:hover { color: #e05252; }

/* Price breakdown rows */
.cart-price-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.cart-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-price-row span:first-child {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
.cart-price-row span:last-child {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.promo-discount-row span:first-child { color: #1aad6e; }
.discount-value {
  color: #1aad6e !important;
  font-weight: 700 !important;
}
.cart-total-row span:first-child {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: var(--text) !important;
}
.cart-total-row span:last-child {
  font-size: 18px !important;
  font-weight: 800 !important;
  color: var(--text) !important;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--teal);
  border: 1.5px solid rgba(26, 140, 140, 0.35);
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
}
.btn-ghost:hover {
  background: rgba(26, 140, 140, 0.06);
  border-color: var(--teal);
  transform: translateY(-2px);
}
.btn-ghost.btn-lg { padding: 17px 40px; font-size: 16px; }

/* ---- Section Headers ---- */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--teal);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.section-eyebrow.light { color: rgba(255,255,255,0.6); }
.section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.18;
  margin-bottom: 16px;
}
.section-title.light { color: var(--white); }
.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}
.section-subtitle.light { color: rgba(255,255,255,0.72); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition), box-shadow var(--transition);
  background: linear-gradient(90deg, #0A2540 0%, #0d3358 35%, #0f5c5c 70%, #1A8C8C 100%);
  box-shadow: 0 2px 32px rgba(0,0,0,0.22), 0 1px 0 rgba(26,140,140,0.2);
}
.navbar.scrolled {
  background: linear-gradient(90deg, #071c30 0%, #0a2a4a 35%, #0b4a4a 70%, #126666 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 36px rgba(0,0,0,0.32), 0 1px 0 rgba(26,140,140,0.15);
}
.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-right: 24px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.aus-pill {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.18);
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.aus-pill:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.38);
  color: #fff;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #f4fafa;
  padding: 120px 0 80px;
}
#helixCanvas {
  position: absolute;
  top: 0;
  right: 0;
  width: 65%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 1;
}
.hero-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-content { max-width: 540px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(26,140,140,0.07);
  border: 1px solid rgba(26,140,140,0.18);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  margin-bottom: 28px;
}
.hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 460px;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.hero-disclaimer {
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
}

/* Vial Card */
.hero-visual { flex-shrink: 0; }
.vial-card {
  position: relative;
  /* Layered background: teal-tinted glass over a white base */
  background:
    linear-gradient(135deg,
      rgba(26, 140, 140, 0.10) 0%,
      rgba(201, 168, 76, 0.05) 50%,
      rgba(26, 140, 140, 0.08) 100%),
    rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 28px;
  padding: 32px 28px 28px;
  box-shadow:
    0 20px 80px rgba(26,140,140,0.22),
    0 4px 20px rgba(0,0,0,0.07),
    inset 0 1px 0 rgba(255,255,255,0.9),
    inset 0 -1px 0 rgba(26,140,140,0.08);
  text-align: center;
  width: 300px;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.vial-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.vial-img {
  height: 260px;
  width: auto;
  margin: 16px auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(26,140,140,0.18));
}
.vial-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}
.vial-spec { font-size: 13px; color: var(--text-muted); margin: 4px 0 12px; }
.vial-price {
  font-size: 24px;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 16px;
}
.vial-cta {
  display: block;
  width: 100%;
  padding: 13px;
  background: var(--teal);
  color: var(--white);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}
.vial-cta:hover, .vial-cta.confirmed {
  background: var(--teal-dark);
  transform: translateY(-1px);
}
.vial-cta.confirmed { background: #1aad6e; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--navy);
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.trust-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 180px;
}
.trust-item i {
  font-size: 18px;
  color: var(--teal-light);
  flex-shrink: 0;
}
.trust-item strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}
.trust-item span {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
}

/* ============================================================
   CREDENTIALS / AS SEEN IN BAR
   ============================================================ */
.credentials-bar {
  background: var(--white);
  border-top: 1px solid rgba(26,140,140,0.08);
  border-bottom: 1px solid rgba(26,140,140,0.08);
  padding: 20px 0;
}
.credentials-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.cred-label {
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}
.cred-items {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  flex: 1;
}
.cred-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 22px;
  flex-shrink: 0;
}
.cred-item:first-child { padding-left: 0; }
.cred-item i {
  font-size: 18px;
  color: var(--teal);
  opacity: 0.75;
  flex-shrink: 0;
}
.cred-name {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}
.cred-sub {
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
  margin-top: 1px;
}
.cred-divider {
  width: 1px;
  height: 32px;
  background: rgba(26,140,140,0.12);
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .credentials-bar { display: none; }
}

/* ============================================================
   FOOTER SOCIAL LINKS
   ============================================================ */
.footer-social {
  display: flex;
  gap: 10px;
  margin: 14px 0 12px;
}
.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  transition: var(--transition);
  text-decoration: none;
}
.footer-social-link:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
  transform: translateY(-2px);
}

/* ============================================================
   PRODUCT SECTION
   ============================================================ */
.product-section {
  padding: 100px 0;
  background: var(--white);
}
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.product-image-col { position: relative; }
.product-image-wrap {
  position: relative;
  background: linear-gradient(145deg, #f0fafa 0%, #f8fff8 100%);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}
.product-img {
  height: 320px;
  width: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 12px 40px rgba(26,140,140,0.2));
}
.product-glow {
  position: absolute;
  inset: 30%;
  background: radial-gradient(circle, rgba(26,140,140,0.1) 0%, transparent 70%);
  z-index: 0;
}
.product-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
}
.badge-green { background: rgba(26,173,110,0.1); color: #1aad6e; border: 1px solid rgba(26,173,110,0.2); }
.badge-teal { background: rgba(26,140,140,0.08); color: var(--teal); border: 1px solid rgba(26,140,140,0.18); }
.badge-gold { background: rgba(201,168,76,0.1); color: #a37b2a; border: 1px solid rgba(201,168,76,0.2); }

.product-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.product-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 10px;
}
.product-title span { color: var(--teal); }
.product-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 32px;
}
.product-price {
  font-size: 48px;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
}
.product-currency {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-muted);
}
.product-specs {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 28px;
}
.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.spec-row:last-child { border-bottom: none; }
.spec-label { color: var(--text-muted); font-weight: 500; }
.spec-value { color: var(--text); font-weight: 600; text-align: right; }
.product-actions { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
.btn-coa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
  padding: 12px;
  border: 1.5px solid rgba(26,140,140,0.25);
  border-radius: var(--radius-pill);
  transition: var(--transition);
}
.btn-coa:hover { background: rgba(26,140,140,0.05); border-color: var(--teal); }
.product-note {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.product-note i { color: var(--teal); margin-top: 2px; flex-shrink: 0; }

/* ============================================================
   BUNDLES / PRICING SECTION
   ============================================================ */
.bundles-section {
  padding: 100px 0 110px;
  background: linear-gradient(160deg, #f0fafa 0%, #fafff8 50%, #fffbf0 100%);
  position: relative;
  overflow: hidden;
}
.bundles-section::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(26,140,140,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
  padding-top: 20px;
}

/* Individual Pricing Card */
.pricing-card {
  position: relative;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(26, 140, 140, 0.18);
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(26, 140, 140, 0.08), 0 2px 12px rgba(0,0,0,0.04);
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  /* fade-up initial state: JS applies .is-visible */
  opacity: 0;
  transform: translateY(20px);
}

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

.pricing-card:hover {
  transform: translateY(-6px) scale(1.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 24px 80px rgba(26, 140, 140, 0.18), 0 4px 16px rgba(0,0,0,0.06);
}

/* Popular card floats above */
.pricing-card--popular {
  transform: translateY(-12px);
  border: 1px solid rgba(26, 140, 140, 0.35);
  box-shadow: 0 16px 60px rgba(26, 140, 140, 0.14), 0 4px 16px rgba(0,0,0,0.06);
  animation: breathingGlow 3s ease-in-out infinite;
}

.pricing-card--popular.is-visible {
  opacity: 1;
  transform: translateY(-12px);
}

.pricing-card--popular:hover {
  transform: translateY(-18px) scale(1.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

@keyframes breathingGlow {
  0%, 100% { box-shadow: 0 16px 60px rgba(26, 140, 140, 0.14), 0 4px 16px rgba(0,0,0,0.06), 0 0 0 1px rgba(26,140,140,0.20); }
  50% { box-shadow: 0 20px 70px rgba(26, 140, 140, 0.24), 0 4px 20px rgba(0,0,0,0.07), 0 0 0 2px rgba(26,140,140,0.45); }
}

/* Card Badge */
.card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  color: var(--white);
}
.card-badge--popular { background: var(--teal); }
.card-badge--gold { background: var(--gold); }

/* ---- Card Vial Images ---- */
.card-vials {
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.card-vials-inner {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

/* Shared vial image style */
.card-vial-img {
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(26,140,140,0.18));
  display: block;
}

/* qty label */
.card-vial-qty {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(26,140,140,0.08);
  border: 1px solid rgba(26,140,140,0.16);
  border-radius: var(--radius-pill);
  padding: 3px 12px;
}

/* ---- 1 Vial ---- */
.card-vials--1 .card-vials-inner {
  height: 130px;
}
.card-vials--1 .card-vial-img {
  height: 128px;
  width: auto;
}

/* ---- 3 Vials ---- */
.card-vials--3 .card-vials-inner {
  height: 140px;
  width: 160px;
}
/* back vial */
.card-vials--3 .card-vial-img--back {
  position: absolute;
  height: 110px;
  left: 0;
  bottom: 0;
  transform: rotate(-12deg) translateX(-4px);
  opacity: 0.72;
  filter: drop-shadow(0 4px 10px rgba(26,140,140,0.12));
}
/* middle/front vial */
.card-vials--3 .card-vial-img--mid {
  position: absolute;
  height: 128px;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 2;
  filter: drop-shadow(0 8px 20px rgba(26,140,140,0.22));
}
/* right vial */
.card-vials--3 .card-vial-img--front {
  position: absolute;
  height: 110px;
  right: 0;
  bottom: 0;
  transform: rotate(12deg) translateX(4px);
  opacity: 0.72;
  filter: drop-shadow(0 4px 10px rgba(26,140,140,0.12));
}

/* ---- 5 Vials ---- */
.card-vials--5 .card-vials-inner {
  height: 145px;
  width: 200px;
}
/* far-left */
.card-vials--5 .card-vial-img--b2 {
  position: absolute;
  height: 96px;
  left: 0;
  bottom: 0;
  transform: rotate(-20deg) translateX(-6px);
  opacity: 0.55;
  filter: drop-shadow(0 3px 8px rgba(26,140,140,0.10));
}
/* mid-left */
.card-vials--5 .card-vial-img--b1 {
  position: absolute;
  height: 112px;
  left: 22px;
  bottom: 0;
  transform: rotate(-10deg);
  opacity: 0.78;
  filter: drop-shadow(0 4px 12px rgba(26,140,140,0.14));
  z-index: 1;
}
/* centre */
.card-vials--5 .card-vial-img--center {
  position: absolute;
  height: 132px;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 3;
  filter: drop-shadow(0 8px 22px rgba(26,140,140,0.24));
}
/* mid-right */
.card-vials--5 .card-vial-img--f1 {
  position: absolute;
  height: 112px;
  right: 22px;
  bottom: 0;
  transform: rotate(10deg);
  opacity: 0.78;
  filter: drop-shadow(0 4px 12px rgba(26,140,140,0.14));
  z-index: 1;
}
/* far-right */
.card-vials--5 .card-vial-img--f2 {
  position: absolute;
  height: 96px;
  right: 0;
  bottom: 0;
  transform: rotate(20deg) translateX(6px);
  opacity: 0.55;
  filter: drop-shadow(0 3px 8px rgba(26,140,140,0.10));
}

/* Card Content */
.card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.card-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}
.card-price-wrap {
  margin-bottom: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.card-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
}
.card-per-unit {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.save-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 4px;
}
.save-badge--gold { background: var(--gold); }

.card-divider {
  width: 30%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  margin: 18px auto 22px;
  opacity: 0.35;
}

/* Card Features */
.card-features {
  text-align: left;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.4;
}
.check {
  color: var(--teal);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  width: 18px;
}

/* Card Button */
.card-btn {
  display: block;
  width: 100%;
  padding: 15px;
  background: var(--teal);
  color: var(--white);
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 16px rgba(26,140,140,0.22);
}
.card-btn:hover {
  background: var(--teal-dark);
  transform: scale(1.02);
  box-shadow: 0 8px 28px rgba(26,140,140,0.32);
}
.card-btn--popular {
  padding: 17px;
  font-size: 16px;
}
.card-btn.confirmed { background: #1aad6e; }

.card-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
  font-style: italic;
}

/* ============================================================
   SHIPPING STRIP
   ============================================================ */
.shipping-strip {
  padding: 72px 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.shipping-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 32px;
}
.shipping-item { text-align: center; }
.shipping-icon {
  width: 56px;
  height: 56px;
  background: rgba(26,140,140,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.shipping-icon i { font-size: 20px; color: var(--teal); }
.shipping-item h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.shipping-item p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.shipping-notice {
  text-align: center;
  font-size: 13px;
  color: var(--teal-dark);
  background: rgba(26,140,140,0.06);
  border: 1px solid rgba(26,140,140,0.14);
  border-radius: var(--radius);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.shipping-notice i { color: var(--teal); }

/* Australia-specific callout panel */
.aus-shipping-callout {
  margin-top: 44px;
  background: linear-gradient(135deg, rgba(26,140,140,0.06) 0%, rgba(26,140,140,0.03) 100%);
  border: 1.5px solid rgba(26, 140, 140, 0.22);
  border-radius: 20px;
  padding: 36px 40px;
  position: relative;
  overflow: hidden;
}
.aus-shipping-callout::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}
.aus-callout-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.aus-callout-flag {
  font-size: 32px;
  line-height: 1;
  flex-shrink: 0;
}
.aus-callout-header h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.aus-callout-header p {
  font-size: 14px;
  color: var(--text-muted);
}
.aus-callout-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
.aus-callout-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(26,140,140,0.12);
  border-radius: 14px;
  padding: 18px 20px;
}
.aus-callout-icon {
  width: 36px;
  height: 36px;
  background: rgba(26,140,140,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.aus-callout-icon i { font-size: 14px; color: var(--teal); }
.aus-callout-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}
.aus-callout-item span {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}
.aus-callout-note {
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
  padding-top: 4px;
  border-top: 1px solid rgba(26,140,140,0.1);
  padding-top: 16px;
}

/* Responsive for aus callout */
@media (max-width: 768px) {
  .aus-callout-grid { grid-template-columns: 1fr; }
  .aus-shipping-callout { padding: 28px 22px; }
  .aus-callout-header { flex-direction: column; gap: 10px; }
}

/* ============================================================
   WHY HELIX BIO
   ============================================================ */
.why-section { padding: 100px 0; background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.why-card {
  padding: 32px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  opacity: 0;
  transition: var(--transition);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.why-card:hover::before { opacity: 1; }
.why-icon {
  width: 48px;
  height: 48px;
  background: rgba(26,140,140,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.why-icon i { font-size: 20px; color: var(--teal); }
.why-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.why-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ============================================================
   SCIENCE / STATS
   ============================================================ */
.science-section {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.science-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(26,140,140,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 16px;
}
.stat-card {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  position: relative;
}
.stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: var(--white);
  display: inline;
  line-height: 1;
}
.stat-suffix {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--teal-light);
  display: inline;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 12px;
  line-height: 1.5;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-section { padding: 100px 0; background: var(--off-white); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.step-card {
  position: relative;
  padding: 40px 32px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.step-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: rgba(26,140,140,0.12);
  line-height: 1;
  margin-bottom: 20px;
}
.step-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.step-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ============================================================
   COMPLIANCE BANNER
   ============================================================ */
.compliance-banner {
  background: linear-gradient(90deg, rgba(201,168,76,0.08), rgba(26,140,140,0.06));
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 18px 0;
}
.compliance-banner .container {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.compliance-banner i { color: var(--gold); font-size: 16px; margin-top: 2px; flex-shrink: 0; }
.compliance-banner p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.compliance-banner strong { color: var(--text); }

/* ============================================================
   FAQs
   ============================================================ */
.faq-section { padding: 100px 0; background: var(--white); }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--teal); }
.faq-q i { font-size: 13px; color: var(--teal); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 18px; }
.faq-a p { font-size: 15px; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   TESTIMONIALS / REVIEWS
   ============================================================ */
.reviews-section {
  padding: 100px 0;
  background: var(--off-white);
}
.reviews-aggregate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
}
.reviews-stars-large {
  display: flex;
  gap: 4px;
  color: #F59E0B;
  font-size: 22px;
}
.reviews-agg-text {
  font-size: 15px;
  color: var(--text-muted);
}
.reviews-score {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.reviews-count {
  font-weight: 600;
  color: var(--text-muted);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 52px;
}
.review-card {
  background: var(--white);
  border: 1px solid rgba(26,140,140,0.10);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04), 0 1px 4px rgba(0,0,0,0.03);
  transition: var(--transition);
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(26,140,140,0.10), 0 2px 8px rgba(0,0,0,0.06);
  border-color: rgba(26,140,140,0.22);
}
.review-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: 0.02em;
}
.review-meta { flex: 1; }
.review-name {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin-bottom: 3px;
}
.review-title-label {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}
.review-stars {
  display: flex;
  gap: 2px;
  color: #F59E0B;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 2px;
}
.review-body {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
  position: relative;
  padding-left: 18px;
}
.review-body::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -4px;
  font-size: 36px;
  color: var(--teal);
  opacity: 0.25;
  font-family: Georgia, serif;
  line-height: 1;
}
.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(26,140,140,0.08);
}
.review-product {
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  background: rgba(26,140,140,0.07);
  padding: 4px 10px;
  border-radius: 100px;
}
.review-verified {
  font-size: 11.5px;
  color: #12a05c;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}
.reviews-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 960px) {
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-aggregate { flex-direction: column; gap: 8px; }
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--navy) 100%);
}
.newsletter-inner { text-align: center; max-width: 580px; margin: 0 auto; }
.newsletter-inner .section-eyebrow { margin-bottom: 16px; }
.newsletter-inner .section-title { margin-bottom: 16px; }
.newsletter-inner .section-subtitle { margin-bottom: 36px; }
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto 16px;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form input:focus { border-color: rgba(255,255,255,0.5); }
.newsletter-note { font-size: 12px; color: rgba(255,255,255,0.45); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0a1828;
  padding: 72px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo { height: 38px; width: auto; margin-bottom: 18px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.65; margin-bottom: 12px; }
.footer-location { font-size: 13px; color: rgba(255,255,255,0.45); display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.footer-location i { color: var(--teal-light); }
.footer-shipping-note {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  line-height: 1.65;
  border-left: 2px solid var(--teal);
  padding-left: 12px;
}
.footer-col h5 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-col a:hover { color: var(--teal-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  text-align: center;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.3); margin-bottom: 6px; }
.footer-legal { font-size: 12px !important; color: rgba(255,255,255,0.2) !important; font-style: italic; }

/* ============================================================
   FOOTER INFO MODALS
   ============================================================ */
.fmodal-overlay {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: rgba(10, 24, 40, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.fmodal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.fmodal-box {
  background: #fff;
  border-radius: 24px;
  width: 100%;
  max-width: 720px;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 80px rgba(0,0,0,0.28), 0 4px 16px rgba(26,140,140,0.1);
  transform: translateY(20px) scale(0.98);
  transition: transform 0.3s cubic-bezier(0.25,0.46,0.45,0.94);
  overflow: hidden;
}
.fmodal-overlay.open .fmodal-box {
  transform: translateY(0) scale(1);
}
.fmodal-box--narrow { max-width: 600px; }

/* Header */
.fmodal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px 20px;
  background: linear-gradient(135deg, #0e2a2a 0%, #1A8C8C 55%, #14404a 100%);
  flex-shrink: 0;
}
.fmodal-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.fmodal-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  flex-shrink: 0;
}
.fmodal-header h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.fmodal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  line-height: 1;
  flex-shrink: 0;
}
.fmodal-close:hover { background: rgba(255,255,255,0.25); color: #fff; }

/* Scrollable body */
.fmodal-body {
  flex: 1;
  overflow-y: auto;
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  scroll-behavior: smooth;
}
.fmodal-body::-webkit-scrollbar { width: 5px; }
.fmodal-body::-webkit-scrollbar-track { background: transparent; }
.fmodal-body::-webkit-scrollbar-thumb { background: rgba(26,140,140,0.25); border-radius: 10px; }

.fmodal-body h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--teal-dark);
  margin-top: 6px;
  padding-bottom: 6px;
  border-bottom: 1.5px solid rgba(26,140,140,0.12);
}
.fmodal-body p {
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.75;
}
.fmodal-updated {
  font-size: 12.5px !important;
  color: var(--text-muted) !important;
  font-style: italic;
  margin-top: -8px !important;
}

/* Hero banner strip inside modal */
.fmodal-hero-banner {
  background: linear-gradient(135deg, rgba(26,140,140,0.08) 0%, rgba(201,168,76,0.07) 100%);
  border: 1px solid rgba(26,140,140,0.14);
  border-radius: 14px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.fmodal-hero-icon {
  font-size: 28px;
  color: var(--teal);
  flex-shrink: 0;
}
.fmodal-hero-tagline {
  font-size: 16px !important;
  font-weight: 600;
  color: var(--teal-dark) !important;
  font-style: italic;
  margin: 0 !important;
  line-height: 1.4 !important;
}

/* Feature list */
.fmodal-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
}
.fmodal-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
}
.fmodal-list li i.fa-check-circle { color: var(--teal); font-size: 15px; margin-top: 2px; flex-shrink: 0; }
.fmodal-list li i.fa-times-circle { font-size: 15px; margin-top: 2px; flex-shrink: 0; }
.fmodal-red { color: #e05252 !important; }
.fmodal-dot { font-size: 8px !important; margin-top: 6px !important; }
.fmodal-dot.teal { color: var(--teal) !important; }
.fmodal-dot.gold { color: var(--gold) !important; }

/* Spec table */
.fmodal-spec-table {
  border: 1px solid rgba(26,140,140,0.14);
  border-radius: 12px;
  overflow: hidden;
}
.fmodal-spec-row {
  display: flex;
  justify-content: space-between;
  padding: 11px 18px;
  font-size: 13.5px;
  gap: 12px;
}
.fmodal-spec-row:nth-child(odd) { background: rgba(26,140,140,0.04); }
.fmodal-spec-row span:first-child { color: var(--text-muted); font-weight: 500; flex-shrink: 0; }
.fmodal-spec-row span:last-child { color: var(--text); font-weight: 600; text-align: right; }

/* Info / warning / highlight boxes */
.fmodal-disclaimer-box,
.fmodal-highlight-box {
  display: flex;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid rgba(26,140,140,0.2);
  background: rgba(26,140,140,0.06);
}
.fmodal-warning-box {
  display: flex;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.08);
}
.fmodal-disclaimer-box i,
.fmodal-highlight-box i { color: var(--teal); font-size: 18px; margin-top: 2px; flex-shrink: 0; }
.fmodal-warning-box i { color: var(--gold); font-size: 18px; margin-top: 2px; flex-shrink: 0; }
.fmodal-disclaimer-box p,
.fmodal-highlight-box p,
.fmodal-warning-box p { font-size: 13.5px !important; margin: 0 !important; line-height: 1.65 !important; }

/* Contact grid */
.fmodal-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.fmodal-contact-card {
  background: rgba(26,140,140,0.04);
  border: 1px solid rgba(26,140,140,0.14);
  border-radius: 14px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fmodal-contact-card i {
  font-size: 22px;
  color: var(--teal);
}
.fmodal-contact-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.fmodal-contact-card p {
  font-size: 13.5px !important;
  color: var(--text) !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}
.fmodal-muted { color: var(--text-muted) !important; font-size: 12.5px !important; }
.fmodal-cta-btn {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition);
}
.fmodal-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,140,140,0.3);
}

/* Mobile */
@media (max-width: 600px) {
  .fmodal-box { border-radius: 18px; }
  .fmodal-header { padding: 18px 20px 16px; }
  .fmodal-header h2 { font-size: 17px; }
  .fmodal-body { padding: 20px 20px 28px; gap: 14px; }
  .fmodal-contact-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTACT MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10, 24, 40, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  background: #ffffff;
  border-radius: 24px;
  width: 100%;
  max-width: 560px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.22), 0 0 0 1px rgba(26,140,140,0.1);
  overflow: hidden;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  max-height: 92vh;
  overflow-y: auto;
}
.modal-overlay.open .modal-box {
  transform: translateY(0) scale(1);
}

/* Modal header */
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px 0;
  gap: 16px;
}
.modal-header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.modal-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(26,140,140,0.12), rgba(201,168,76,0.1));
  border: 1px solid rgba(26,140,140,0.18);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.modal-icon i {
  font-size: 20px;
  background: linear-gradient(135deg, var(--teal), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.modal-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 2px;
}
.modal-subtitle {
  font-size: 13px;
  color: var(--text-muted);
}
.modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.05);
  border: none;
  font-size: 20px;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
  line-height: 1;
}
.modal-close:hover {
  background: rgba(0,0,0,0.1);
  color: var(--text);
}

/* Decorative top bar */
.modal-box::before {
  content: '';
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  width: 100%;
}

/* Contact Form */
.contact-form {
  padding: 24px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}
.req { color: var(--teal); }
.form-group input,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid rgba(26,140,140,0.2);
  border-radius: 12px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: #fafcfc;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  outline: none;
  resize: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #aab4bd; }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(26,140,140,0.1);
}
.form-group input.error,
.form-group textarea.error {
  border-color: #e05252;
  box-shadow: 0 0 0 3px rgba(224,82,82,0.1);
}

/* ---- Phone number with dial-code select ---- */
.phone-input-wrap {
  display: flex;
  gap: 0;
  border: 1.5px solid rgba(26,140,140,0.2);
  border-radius: 12px;
  overflow: hidden;
  background: #fafcfc;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.phone-input-wrap:focus-within {
  border-color: var(--teal);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(26,140,140,0.1);
}
.dial-code-select {
  padding: 13px 28px 13px 12px;
  border: none;
  border-right: 1.5px solid rgba(26,140,140,0.15);
  background: rgba(26,140,140,0.04);
  font-size: 13px;
  font-family: inherit;
  color: var(--text);
  cursor: pointer;
  outline: none;
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%231A8C8C' opacity='0.6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  width: 220px;
  max-width: 55%;
}
.dial-code-select:focus { outline: none; }
.phone-number-input {
  flex: 1;
  padding: 13px 16px !important;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  outline: none;
  box-shadow: none !important;
  min-width: 0;
}
.phone-number-input::placeholder { color: #aab4bd; }

.field-error {
  font-size: 12px;
  color: #e05252;
  min-height: 16px;
  display: block;
}

/* Submit button */
.contact-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(26,140,140,0.28);
  margin-top: 4px;
}
.contact-submit:hover {
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--teal) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,140,140,0.38);
}
.contact-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Success state */
.contact-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 32px 36px;
  animation: fadeInUp 0.4s ease;
}
.contact-success.show { display: flex; }
.success-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(26,173,110,0.12), rgba(26,140,140,0.08));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.success-icon i { font-size: 34px; color: #1aad6e; }
.contact-success h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
}
.contact-success p { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

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

/* Responsive modal */
@media (max-width: 600px) {
  .modal-box { border-radius: 20px; }
  .modal-header { padding: 24px 22px 0; }
  .contact-form { padding: 20px 22px 28px; }
  .contact-success { padding: 16px 22px 28px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   SCROLL ANIMATIONS (general)
   NOTE: Elements start visible. JS progressive enhancement adds animation.
   This prevents white flashes when JS is slow or images haven't loaded.
   ============================================================ */
.fade-in {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
/* Desktop only — apply hidden start state so animation works */
@media (min-width: 901px) {
  .fade-in.animate-enabled {
    opacity: 0;
    transform: translateY(28px);
  }
  .fade-in.animate-enabled.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { gap: 20px; }
  .pricing-card { padding: 32px 22px; }
  .card-price { font-size: 40px; }
}

@media (max-width: 900px) {
  .product-grid { grid-template-columns: 1fr; gap: 48px; }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
  .pricing-card--popular { transform: translateY(0); }
  .pricing-card--popular.is-visible { transform: translateY(0); }
  .pricing-card--popular:hover { transform: translateY(-6px) scale(1.04); }
  .shipping-grid { grid-template-columns: 1fr; gap: 28px; }
  .steps-grid { grid-template-columns: 1fr; }
  .hero-container { flex-direction: column; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-subtitle { max-width: 100%; }
  .hero-ctas { justify-content: center; }
  #helixCanvas { width: 100%; opacity: 0.15; }
}

@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: 66px; left: 0; right: 0; background: linear-gradient(90deg, #0A2540 0%, #0d3358 35%, #0f5c5c 70%, #1A8C8C 100%); flex-direction: column; padding: 24px; gap: 20px; border-bottom: 1px solid rgba(26,140,140,0.25); z-index: 999; }
  .nav-links.open { display: flex; }
  /* Mobile nav — white text on gradient bg */
  .nav-links a { color: rgba(255,255,255,0.9); }
  .nav-links a:hover { color: var(--gold-light); }
  /* Hide desktop-only nav items on mobile; keep Cart + Shop Now visible */
  .nav-actions .btn-contact-nav { display: none !important; }
  .nav-actions .aus-pill { display: none !important; }
  .hamburger { display: flex !important; }
  .trust-container { justify-content: flex-start; }
  .trust-item { min-width: 45%; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .newsletter-form { flex-direction: column; }
  .vial-card { width: 260px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 34px; }
  .stats-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 28px 18px; }
}

/* ============================================================
   MOBILE PERFORMANCE — prevents scroll jank & layer explosions
   ============================================================ */
@media (max-width: 900px) {
  /* Remove will-change to stop unnecessary GPU layers */
  *, *::before, *::after {
    will-change: auto !important;
  }
  /* All heavy box-shadows simplified */
  .pricing-card, .review-card, .why-card, .step-card {
    box-shadow: 0 2px 12px rgba(0,0,0,0.07) !important;
    transition: none !important;
  }
  /* Scroll performance: use contain where safe */
  .reviews-section, .bundles-section, .product-section,
  .shipping-strip, .how-section, .why-section {
    contain: layout style;
  }
  /* Prevent invisible-element flashes */
  [class*="fade"]:not(.visible):not(.is-visible) {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============================================================
   SOCIAL PROOF POPUP
   ============================================================ */
.sp-popup {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9000;
  background: var(--white);
  border: 1px solid rgba(26,140,140,0.14);
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12), 0 2px 12px rgba(0,0,0,0.06);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 300px;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.sp-popup.sp-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.sp-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12.5px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: 0.02em;
}
.sp-content { flex: 1; min-width: 0; }
.sp-name {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sp-action {
  font-size: 12px;
  color: var(--text-muted);
  margin: 2px 0;
}
.sp-time {
  font-size: 11px;
  color: var(--teal);
  font-weight: 600;
}
.sp-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 18px;
  cursor: pointer;
  padding: 0 2px;
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.sp-close:hover { opacity: 1; }
@media (max-width: 480px) {
  .sp-popup { left: 12px; right: 12px; max-width: calc(100vw - 24px); bottom: 80px; }
}

/* ============================================================
   STICKY ADD-TO-CART BAR
   ============================================================ */
.sticky-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 8000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(26,140,140,0.12);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  padding: 10px 0;
}
.sticky-bar.sticky-bar-visible { transform: translateY(0); }
.sticky-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.sticky-bar-product {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}
.sticky-bar-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 4px;
}
.sticky-bar-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.sticky-bar-price {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 2px;
}
.sticky-bar-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: #F59E0B;
}
.sticky-bar-stars span {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  margin-left: 4px;
}
.sticky-bar-cta {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 10px 28px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.sticky-bar-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26,140,140,0.35);
}
@media (max-width: 600px) {
  .sticky-bar-stars { display: none; }
  .sticky-bar-inner { padding: 0 16px; gap: 12px; }
}

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9500;
  background: rgba(14,31,47,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 16px 24px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.cookie-banner.cookie-visible { transform: translateY(0); }
.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-text {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 240px;
}
.cookie-text p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.80);
  line-height: 1.6;
  margin: 0;
}
.cookie-text a {
  color: var(--teal-light);
  text-decoration: underline;
  font-weight: 600;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn-decline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.75);
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s ease;
}
.cookie-btn-decline:hover { border-color: rgba(255,255,255,0.5); color: #fff; }
.cookie-btn-accept {
  background: var(--teal);
  border: none;
  color: #fff;
  padding: 9px 22px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s ease;
}
.cookie-btn-accept:hover {
  background: var(--teal-light);
  box-shadow: 0 4px 16px rgba(26,140,140,0.4);
}
@media (max-width: 600px) {
  .cookie-inner { gap: 14px; }
  .cookie-text { min-width: 100%; }
  .cookie-actions { width: 100%; }
  .cookie-btn-decline, .cookie-btn-accept { flex: 1; text-align: center; }
}

/* ============================================================
   BACK TO TOP BUTTON
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 8500;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(26,140,140,0.35);
  opacity: 0;
  transform: translateY(16px) scale(0.85);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.back-to-top.btt-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--teal-dark);
  box-shadow: 0 6px 24px rgba(26,140,140,0.45);
}
@media (max-width: 480px) {
  .back-to-top { bottom: 16px; right: 16px; width: 42px; height: 42px; }
}

/* ============================================================
   AGE GATE
   ============================================================ */
.age-gate-overlay {
  position: fixed;
  inset: 0;
  z-index: 99000;
  background: linear-gradient(135deg, #0a1a2a 0%, #0e2436 50%, #091824 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 1;
  transition: opacity 0.5s ease;
}
.age-gate-overlay.ag-hiding {
  opacity: 0;
  pointer-events: none;
}
/* Animated background DNA pattern */
.age-gate-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(26,140,140,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(201,168,76,0.06) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(26,140,140,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.age-gate-card {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(26,140,140,0.25);
  border-radius: 24px;
  padding: 52px 48px 48px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 32px 80px rgba(0,0,0,0.5),
    0 0 0 1px rgba(26,140,140,0.1),
    inset 0 1px 0 rgba(255,255,255,0.06);
  animation: ag-card-in 0.6s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes ag-card-in {
  from { opacity: 0; transform: scale(0.88) translateY(24px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
/* Gold top accent bar */
.age-gate-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 0 0 4px 4px;
}
.ag-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}
.ag-logo-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border-radius: 0;
  box-shadow: none;
}
.ag-logo-icon img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(26,140,140,0.35));
}
.ag-logo-text {
  text-align: left;
}
.ag-logo-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.ag-logo-sub {
  font-size: 10.5px;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  letter-spacing: 0.04em;
}
/* Age badge */
.ag-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(26,140,140,0.15) 0%, rgba(26,140,140,0.05) 100%);
  border: 2px solid rgba(26,140,140,0.4);
  margin: 0 auto 24px;
  box-shadow: 0 0 32px rgba(26,140,140,0.2);
}
.ag-badge-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: var(--teal-light);
  line-height: 1;
}
.ag-badge-plus {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  align-self: flex-start;
  margin-top: 4px;
}
.ag-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 12px;
}
.ag-title span { color: var(--teal-light); }
.ag-subtitle {
  font-size: 14.5px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin-bottom: 32px;
}
.ag-subtitle strong { color: rgba(255,255,255,0.75); font-weight: 600; }
/* Buttons */
.ag-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ag-btn-yes {
  display: block;
  width: 100%;
  padding: 16px 24px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 24px rgba(26,140,140,0.45);
  transition: all 0.2s ease;
}
.ag-btn-yes:hover {
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--teal) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(26,140,140,0.55);
}
.ag-btn-no {
  display: block;
  width: 100%;
  padding: 14px 24px;
  border-radius: 100px;
  background: transparent;
  color: rgba(255,255,255,0.45);
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid rgba(255,255,255,0.1);
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s ease;
}
.ag-btn-no:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.65);
}
/* Declined state */
.ag-declined {
  display: none;
}
.ag-declined-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}
.ag-declined-text {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}
/* Legal note */
.ag-legal {
  margin-top: 24px;
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  line-height: 1.6;
}
.ag-legal a {
  color: rgba(26,140,140,0.7);
  text-decoration: underline;
}

@media (max-width: 520px) {
  .age-gate-card { padding: 40px 24px 36px; border-radius: 20px; }
  .ag-title { font-size: 22px; }
  .ag-badge { width: 68px; height: 68px; }
  .ag-badge-num { font-size: 26px; }
}

/* ============================================================
   MINI MODAL (Age Gate Legal Links — used on index.html)
   ============================================================ */
.mini-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: rgba(8,15,30,0.82);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: mmFadeIn 0.25s ease;
}
@keyframes mmFadeIn { from { opacity:0; } to { opacity:1; } }
.mini-modal-box {
  background: #fff;
  border-radius: 16px;
  max-width: 640px;
  width: 100%;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 80px rgba(0,0,0,0.45);
  overflow: hidden;
  animation: mmSlideUp 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes mmSlideUp { from { transform: translateY(30px); opacity:0; } to { transform: translateY(0); opacity:1; } }
.mini-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: linear-gradient(135deg, #0f1f3d 0%, #1a3a5c 100%);
  flex-shrink: 0;
}
.mini-modal-title {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mini-modal-title i { color: #1A8C8C; font-size: 1.1rem; }
.mini-modal-close {
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}
.mini-modal-close:hover { background: rgba(255,255,255,0.25); }
.mini-modal-body {
  padding: 24px 26px 28px;
  overflow-y: auto;
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.7;
}
.mini-modal-body h3 {
  font-size: 0.92rem;
  font-weight: 700;
  color: #0f1f3d;
  margin: 18px 0 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  border-left: 3px solid #1A8C8C;
  padding-left: 10px;
}
.mini-modal-body h3:first-of-type { margin-top: 8px; }
.mini-modal-body p { margin: 0 0 10px; }
.mini-modal-updated {
  font-size: 0.78rem;
  color: #9ca3af;
  margin-bottom: 16px !important;
  font-style: italic;
}
.mini-modal-highlight {
  background: linear-gradient(135deg, rgba(26,140,140,0.08) 0%, rgba(26,140,140,0.04) 100%);
  border: 1px solid rgba(26,140,140,0.25);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.mini-modal-highlight i { color: #1A8C8C; font-size: 1rem; margin-top: 3px; flex-shrink: 0; }
.mini-modal-highlight p { margin: 0; font-size: 0.875rem; }
.mini-modal-list { list-style: none; padding: 0; margin: 0 0 12px; }
.mini-modal-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 5px 0;
  font-size: 0.875rem;
}
.mini-modal-list li i { color: #1A8C8C; font-size: 0.85rem; margin-top: 3px; flex-shrink: 0; }
.mini-modal-list-red li i { color: #dc2626; }
@media (max-width: 500px) {
  .mini-modal-box { max-height: 90vh; }
  .mini-modal-body { padding: 18px 18px 22px; }
}
