/* ═══════════════════════════════════════════════════════════════════════
   EVOLUTION BIOLABS — DESIGN SYSTEM
   Version: 1.0.0
   Palette: Evolution Black · Signature Gold · Warm Silver
═══════════════════════════════════════════════════════════════════════ */

:root {
  --ebl-black:       #0F0E0C;
  --ebl-charcoal:    #191714;
  --ebl-charcoal-2:  #211E1A;
  --ebl-gold:        #D5A850;
  --ebl-gold-dark:   #A27837;
  --ebl-gold-pale:   #F2DFA1;
  --ebl-white:       #F7F4EE;
  --ebl-silver:      #DAD7D1;
  --ebl-grey:        #5D5B58;
  --ebl-grey-2:      #3A3835;
  --ebl-blue:        #2B679A;
  --ebl-green:       #6FA64A;

  --ebl-font-display: 'Cinzel', Georgia, serif;
  --ebl-font-body:    'Lato', system-ui, sans-serif;
  --ebl-font-mono:    'IBM Plex Mono', 'Courier New', monospace;

  --ebl-radius:       3px;
  --ebl-radius-lg:    6px;
  --ebl-transition:   240ms cubic-bezier(.4,0,.2,1);
  --ebl-shadow:       0 8px 48px rgba(0,0,0,.55);
  --ebl-shadow-gold:  0 2px 32px rgba(213,168,80,.15);
  --ebl-border-gold:  1px solid rgba(213,168,80,.25);
  --ebl-border-dim:   1px solid rgba(213,168,80,.12);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--ebl-font-body);
  background: var(--ebl-black);
  color: var(--ebl-silver);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--ebl-gold); text-decoration: none; transition: color var(--ebl-transition); }
a:hover { color: var(--ebl-gold-pale); }

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

/* ── Typography ─────────────────────────────────────────────── */
.ebl-display {
  font-family: var(--ebl-font-display);
  font-weight: 600;
  letter-spacing: .04em;
  line-height: 1.15;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ebl-font-display);
  color: var(--ebl-white);
  line-height: 1.2;
  letter-spacing: .03em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.9rem); font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 600; }
h5 { font-size: 1rem; font-weight: 600; color: var(--ebl-gold); letter-spacing: .08em; text-transform: uppercase; }

p { margin-bottom: 1.4rem; color: var(--ebl-silver); font-size: 1rem; font-weight: 300; }
p:last-child { margin-bottom: 0; }

.ebl-mono {
  font-family: var(--ebl-font-mono);
  font-size: .8rem;
  letter-spacing: .04em;
  color: var(--ebl-gold);
}

/* Gold rule dividers */
.ebl-rule {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
}
.ebl-rule::before,
.ebl-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ebl-gold-dark), transparent);
}
.ebl-rule span {
  font-family: var(--ebl-font-display);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ebl-gold);
  white-space: nowrap;
}

/* ── Layout ─────────────────────────────────────────────────── */
.ebl-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}
.ebl-container--narrow { max-width: 900px; }
.ebl-container--wide   { max-width: 1440px; }

.ebl-section {
  padding: 6rem 0;
}
.ebl-section--dark {
  background: var(--ebl-black);
}
.ebl-section--charcoal {
  background: var(--ebl-charcoal);
  border-top: var(--ebl-border-dim);
  border-bottom: var(--ebl-border-dim);
}
.ebl-section--light {
  background: var(--ebl-white);
  color: #2a2825;
}
.ebl-section--light h1,
.ebl-section--light h2,
.ebl-section--light h3,
.ebl-section--light h4 {
  color: var(--ebl-charcoal);
}
.ebl-section--light p,
.ebl-section--light li {
  color: #3a3835;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.ebl-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 2.2rem;
  font-family: var(--ebl-font-display);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: var(--ebl-radius);
  transition: all var(--ebl-transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.ebl-btn--primary {
  background: var(--ebl-gold);
  color: var(--ebl-black);
}
.ebl-btn--primary:hover {
  background: var(--ebl-gold-pale);
  color: var(--ebl-black);
  box-shadow: 0 4px 24px rgba(213,168,80,.35);
  transform: translateY(-1px);
}

.ebl-btn--outline {
  background: transparent;
  color: var(--ebl-gold);
  border: 1px solid var(--ebl-gold);
}
.ebl-btn--outline:hover {
  background: rgba(213,168,80,.08);
  color: var(--ebl-gold-pale);
  border-color: var(--ebl-gold-pale);
}

.ebl-btn--ghost {
  background: transparent;
  color: var(--ebl-silver);
  border: 1px solid var(--ebl-grey-2);
  font-family: var(--ebl-font-body);
  letter-spacing: .04em;
}
.ebl-btn--ghost:hover {
  border-color: var(--ebl-grey);
  color: var(--ebl-white);
}

.ebl-btn--sm {
  padding: .6rem 1.4rem;
  font-size: .72rem;
}

/* ── Header / Nav ────────────────────────────────────────────── */
.ebl-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(15,14,12,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: var(--ebl-border-gold);
}

.ebl-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 72px;
  max-width: 1440px;
  margin: 0 auto;
}

.ebl-header__logo img {
  height: 42px;
  width: auto;
}

.ebl-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.ebl-nav a {
  font-family: var(--ebl-font-display);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ebl-silver);
  transition: color var(--ebl-transition);
  padding: .25rem 0;
  position: relative;
}
.ebl-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--ebl-gold);
  transition: width var(--ebl-transition);
}
.ebl-nav a:hover,
.ebl-nav a.current-menu-item {
  color: var(--ebl-gold);
}
.ebl-nav a:hover::after,
.ebl-nav a.current-menu-item::after {
  width: 100%;
}

.ebl-header__actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.ebl-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  color: var(--ebl-gold);
}

.ebl-mobile-nav {
  display: none;
  background: var(--ebl-charcoal);
  border-top: var(--ebl-border-gold);
  padding: 1.5rem 2rem;
}
.ebl-mobile-nav.is-open { display: block; }
.ebl-mobile-nav ul { list-style: none; }
.ebl-mobile-nav li + li { border-top: var(--ebl-border-dim); }
.ebl-mobile-nav a {
  display: block;
  padding: 1rem 0;
  font-family: var(--ebl-font-display);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ebl-silver);
}

/* ── Compliance Banner ───────────────────────────────────────── */
.ebl-compliance-bar {
  background: var(--ebl-charcoal-2);
  border-bottom: 1px solid rgba(213,168,80,.1);
  padding: .55rem 2rem;
  text-align: center;
}
.ebl-compliance-bar p {
  font-size: .72rem;
  font-family: var(--ebl-font-mono);
  letter-spacing: .05em;
  color: var(--ebl-grey);
  margin: 0;
}
.ebl-compliance-bar strong {
  color: var(--ebl-gold-dark);
}

/* ── Hero ─────────────────────────────────────────────────────── */
.ebl-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: var(--ebl-black);
  overflow: hidden;
}

.ebl-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Geometric molecular grid background */
.ebl-hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(213,168,80,.06) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(43,103,154,.05) 0%, transparent 50%),
    radial-gradient(circle at 60% 80%, rgba(213,168,80,.04) 0%, transparent 40%);
}

.ebl-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(213,168,80,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(213,168,80,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.ebl-hero__content {
  position: relative;
  z-index: 1;
  padding: 6rem 0;
}

.ebl-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.8rem;
}
.ebl-hero__eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--ebl-gold);
}
.ebl-hero__eyebrow span {
  font-family: var(--ebl-font-mono);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ebl-gold);
}

.ebl-hero h1 {
  max-width: 780px;
  margin-bottom: 1.6rem;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
}

.ebl-hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--ebl-gold), var(--ebl-gold-pale));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ebl-hero__sub {
  max-width: 620px;
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--ebl-silver);
  margin-bottom: 2.4rem;
  line-height: 1.8;
}

.ebl-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.ebl-hero__compliance {
  font-family: var(--ebl-font-mono);
  font-size: .7rem;
  letter-spacing: .08em;
  color: var(--ebl-grey);
  padding: .7rem 1.2rem;
  border: var(--ebl-border-dim);
  border-radius: var(--ebl-radius);
  display: inline-block;
}

/* ── Trust Stats Strip ──────────────────────────────────────── */
.ebl-trust-strip {
  background: var(--ebl-charcoal);
  border-top: var(--ebl-border-gold);
  border-bottom: var(--ebl-border-gold);
  padding: 2rem 0;
}

.ebl-trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(213,168,80,.15);
}

.ebl-trust-strip__item {
  background: var(--ebl-charcoal);
  padding: 1.8rem 2rem;
  text-align: center;
}

.ebl-trust-strip__icon {
  width: 32px;
  height: 32px;
  margin: 0 auto .8rem;
  opacity: .7;
  color: var(--ebl-gold);
}

.ebl-trust-strip__label {
  font-family: var(--ebl-font-display);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ebl-gold);
  margin-bottom: .3rem;
}

.ebl-trust-strip__desc {
  font-size: .82rem;
  color: var(--ebl-grey);
  font-weight: 300;
  margin: 0;
}

/* ── Section Headers ─────────────────────────────────────────── */
.ebl-section-header {
  margin-bottom: 3.5rem;
}
.ebl-section-header--center { text-align: center; }

.ebl-section-header__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1rem;
}
.ebl-section-header__eyebrow::before,
.ebl-section-header__eyebrow::after {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--ebl-gold-dark);
}
.ebl-section-header__eyebrow span {
  font-family: var(--ebl-font-mono);
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ebl-gold);
}

.ebl-section-header h2 {
  margin-bottom: 1rem;
}

.ebl-section-header p {
  font-size: 1.05rem;
  max-width: 640px;
  font-weight: 300;
  color: var(--ebl-silver);
}
.ebl-section-header--center p {
  margin-left: auto;
  margin-right: auto;
}

/* ── Product Category Cards ──────────────────────────────────── */
.ebl-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5px;
  background: rgba(213,168,80,.12);
  border: 1px solid rgba(213,168,80,.12);
}

.ebl-category-card {
  background: var(--ebl-charcoal);
  padding: 2.8rem 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background var(--ebl-transition);
  position: relative;
  overflow: hidden;
}

.ebl-category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--ebl-gold-dark), transparent);
  opacity: 0;
  transition: opacity var(--ebl-transition);
}

.ebl-category-card:hover {
  background: var(--ebl-charcoal-2);
}
.ebl-category-card:hover::before {
  opacity: 1;
}

.ebl-category-card__icon {
  width: 48px;
  height: 48px;
  color: var(--ebl-gold);
  opacity: .7;
}

.ebl-category-card__sku {
  font-family: var(--ebl-font-mono);
  font-size: .65rem;
  letter-spacing: .12em;
  color: var(--ebl-grey);
  text-transform: uppercase;
}

.ebl-category-card h3 {
  font-size: 1.15rem;
  color: var(--ebl-white);
  margin: 0;
}

.ebl-category-card p {
  font-size: .88rem;
  color: var(--ebl-grey);
  font-weight: 300;
  margin: 0;
  line-height: 1.6;
  flex: 1;
}

.ebl-category-card__footer {
  margin-top: auto;
  padding-top: 1.4rem;
  border-top: var(--ebl-border-dim);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ebl-category-card__count {
  font-family: var(--ebl-font-mono);
  font-size: .7rem;
  color: var(--ebl-grey);
}

/* ── How It Works ───────────────────────────────────────────── */
.ebl-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.ebl-steps::before {
  content: '';
  position: absolute;
  top: 2.4rem;
  left: calc(12.5% + 1.5rem);
  right: calc(12.5% + 1.5rem);
  height: 1px;
  background: linear-gradient(90deg, var(--ebl-gold-dark), rgba(213,168,80,.2), var(--ebl-gold-dark));
}

.ebl-step {
  padding: 0 2rem;
  text-align: center;
  position: relative;
}

.ebl-step__num {
  width: 48px;
  height: 48px;
  border: 1px solid var(--ebl-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.8rem;
  font-family: var(--ebl-font-display);
  font-size: .9rem;
  font-weight: 600;
  color: var(--ebl-gold);
  background: var(--ebl-black);
  position: relative;
  z-index: 1;
}

.ebl-step h4 {
  font-size: 1rem;
  margin-bottom: .8rem;
  color: var(--ebl-white);
}

.ebl-step p {
  font-size: .85rem;
  color: var(--ebl-grey);
  font-weight: 300;
  margin: 0;
}

/* ── Documentation Block ─────────────────────────────────────── */
.ebl-doc-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: rgba(213,168,80,.08);
  border: var(--ebl-border-gold);
  border-radius: var(--ebl-radius-lg);
  overflow: hidden;
}

.ebl-doc-block__left {
  padding: 3.5rem;
  background: var(--ebl-charcoal);
  border-right: var(--ebl-border-dim);
}

.ebl-doc-block__right {
  padding: 3.5rem;
  background: var(--ebl-black);
}

.ebl-doc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ebl-doc-list li {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  font-size: .9rem;
  font-weight: 300;
  color: var(--ebl-silver);
}

.ebl-doc-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--ebl-gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: .65rem;
}

/* ── FAQ Accordion ──────────────────────────────────────────── */
.ebl-faq {
  border-top: var(--ebl-border-dim);
}

.ebl-faq__item {
  border-bottom: var(--ebl-border-dim);
}

.ebl-faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.6rem 0;
  cursor: pointer;
  font-family: var(--ebl-font-display);
  font-size: .95rem;
  font-weight: 600;
  color: var(--ebl-white);
  letter-spacing: .02em;
  transition: color var(--ebl-transition);
  user-select: none;
}

.ebl-faq__q:hover { color: var(--ebl-gold); }

.ebl-faq__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--ebl-gold);
  transition: transform var(--ebl-transition);
}

.ebl-faq__item.is-open .ebl-faq__icon {
  transform: rotate(45deg);
}

.ebl-faq__a {
  display: none;
  padding: 0 0 1.6rem;
  font-size: .9rem;
  font-weight: 300;
  color: var(--ebl-grey);
  line-height: 1.8;
}

.ebl-faq__item.is-open .ebl-faq__a {
  display: block;
}

/* ── Company Identity Block ──────────────────────────────────── */
.ebl-identity-card {
  background: var(--ebl-charcoal);
  border: var(--ebl-border-gold);
  border-radius: var(--ebl-radius-lg);
  padding: 2.5rem;
}

.ebl-identity-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.8rem;
  padding-bottom: 1.4rem;
  border-bottom: var(--ebl-border-dim);
}

.ebl-identity-card__header img {
  height: 36px;
}

.ebl-identity-table {
  width: 100%;
  border-collapse: collapse;
}

.ebl-identity-table tr {
  border-bottom: var(--ebl-border-dim);
}

.ebl-identity-table td {
  padding: .9rem 0;
  font-size: .88rem;
}

.ebl-identity-table td:first-child {
  color: var(--ebl-grey);
  font-family: var(--ebl-font-mono);
  font-size: .75rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  width: 40%;
  padding-right: 1rem;
}

.ebl-identity-table td:last-child {
  color: var(--ebl-silver);
  font-weight: 300;
}

/* ── Contact / Form ──────────────────────────────────────────── */
.ebl-form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.ebl-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.ebl-form__field {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.ebl-form__label {
  font-family: var(--ebl-font-mono);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ebl-grey);
}

.ebl-form__label span {
  color: var(--ebl-gold-dark);
  margin-left: .2rem;
}

.ebl-form input,
.ebl-form select,
.ebl-form textarea {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--ebl-grey-2);
  border-radius: var(--ebl-radius);
  padding: .85rem 1.1rem;
  font-family: var(--ebl-font-body);
  font-size: .9rem;
  color: var(--ebl-silver);
  width: 100%;
  transition: border-color var(--ebl-transition), background var(--ebl-transition);
  appearance: none;
}

.ebl-form input:focus,
.ebl-form select:focus,
.ebl-form textarea:focus {
  outline: none;
  border-color: var(--ebl-gold-dark);
  background: rgba(213,168,80,.04);
}

.ebl-form textarea { min-height: 140px; resize: vertical; }

.ebl-form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  cursor: pointer;
}

.ebl-form__checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: .1rem;
  accent-color: var(--ebl-gold);
  cursor: pointer;
}

.ebl-form__checkbox-label {
  font-size: .82rem;
  color: var(--ebl-grey);
  font-weight: 300;
  line-height: 1.6;
}

/* ── Doc Request Modal ─────────────────────────────────────────── */
.ebl-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,.8);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.ebl-modal-overlay.is-open {
  display: flex;
}

.ebl-modal {
  background: var(--ebl-charcoal);
  border: var(--ebl-border-gold);
  border-radius: var(--ebl-radius-lg);
  max-width: 580px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--ebl-shadow);
}

.ebl-modal__header {
  padding: 2rem 2.4rem 1.4rem;
  border-bottom: var(--ebl-border-dim);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.ebl-modal__title {
  font-family: var(--ebl-font-display);
  font-size: 1.1rem;
  color: var(--ebl-white);
  font-weight: 600;
  letter-spacing: .03em;
}

.ebl-modal__close {
  background: none;
  border: none;
  color: var(--ebl-grey);
  cursor: pointer;
  padding: .25rem;
  transition: color var(--ebl-transition);
  line-height: 1;
  font-size: 1.4rem;
}
.ebl-modal__close:hover { color: var(--ebl-white); }

.ebl-modal__body {
  padding: 2rem 2.4rem;
}

.ebl-modal__footer {
  padding: 1.4rem 2.4rem 2rem;
  border-top: var(--ebl-border-dim);
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

/* ── Compliance Declaration (Checkout) ────────────────────────── */
.ebl-checkout-declaration {
  background: var(--ebl-charcoal-2);
  border: 1px solid rgba(213,168,80,.2);
  border-radius: var(--ebl-radius);
  padding: 1.5rem 1.8rem;
  margin: 1.5rem 0;
}

.ebl-checkout-declaration__title {
  font-family: var(--ebl-font-display);
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ebl-gold);
  margin-bottom: 1rem;
}

.ebl-checkout-declaration .ebl-form__checkbox + .ebl-form__checkbox {
  margin-top: .8rem;
}

/* ── Product Spec Table ──────────────────────────────────────── */
.ebl-spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}

.ebl-spec-table th {
  font-family: var(--ebl-font-mono);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ebl-grey);
  text-align: left;
  padding: .8rem 1rem;
  border-bottom: 1px solid rgba(213,168,80,.2);
  font-weight: 500;
}

.ebl-spec-table td {
  padding: .9rem 1rem;
  border-bottom: var(--ebl-border-dim);
  color: var(--ebl-silver);
  font-weight: 300;
}

.ebl-spec-table tr:last-child td { border-bottom: none; }

.ebl-spec-table td:first-child {
  color: var(--ebl-grey);
  font-family: var(--ebl-font-mono);
  font-size: .78rem;
  letter-spacing: .04em;
}

.ebl-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .25rem .65rem;
  border-radius: 2px;
  font-family: var(--ebl-font-mono);
  font-size: .65rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 500;
}

.ebl-badge--research {
  background: rgba(213,168,80,.12);
  color: var(--ebl-gold);
  border: 1px solid rgba(213,168,80,.25);
}

.ebl-badge--lyophilised {
  background: rgba(43,103,154,.12);
  color: #7aadcf;
  border: 1px solid rgba(43,103,154,.25);
}

.ebl-badge--solution {
  background: rgba(111,166,74,.12);
  color: #9fd47a;
  border: 1px solid rgba(111,166,74,.25);
}

.ebl-badge--b2b {
  background: rgba(93,91,88,.2);
  color: var(--ebl-silver);
  border: 1px solid rgba(93,91,88,.3);
}

.ebl-badge--review {
  background: rgba(180,80,60,.12);
  color: #d4836c;
  border: 1px solid rgba(180,80,60,.25);
}

/* ── Testimonials / Trust ────────────────────────────────────── */
.ebl-trust-pillars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5px;
  background: rgba(213,168,80,.1);
}

.ebl-trust-pillar {
  background: var(--ebl-charcoal);
  padding: 2.4rem 1.8rem;
  text-align: center;
  transition: background var(--ebl-transition);
}

.ebl-trust-pillar:hover {
  background: rgba(213,168,80,.05);
}

.ebl-trust-pillar__icon {
  width: 36px;
  height: 36px;
  color: var(--ebl-gold);
  margin: 0 auto 1.2rem;
  opacity: .7;
}

.ebl-trust-pillar h4 {
  font-size: .85rem;
  letter-spacing: .06em;
  color: var(--ebl-white);
  margin-bottom: .5rem;
}

.ebl-trust-pillar p {
  font-size: .8rem;
  color: var(--ebl-grey);
  font-weight: 300;
  margin: 0;
  line-height: 1.6;
}

/* ── Footer ──────────────────────────────────────────────────── */
.ebl-footer {
  background: var(--ebl-charcoal);
  border-top: var(--ebl-border-gold);
  padding: 5rem 0 0;
}

.ebl-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3.5rem;
}

.ebl-footer__brand img {
  height: 38px;
  margin-bottom: 1.5rem;
}

.ebl-footer__brand p {
  font-size: .85rem;
  color: var(--ebl-grey);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 1.4rem;
}

.ebl-footer__col-title {
  font-family: var(--ebl-font-mono);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ebl-gold);
  margin-bottom: 1.4rem;
}

.ebl-footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.ebl-footer__links a {
  font-size: .85rem;
  color: var(--ebl-grey);
  font-weight: 300;
  transition: color var(--ebl-transition);
}
.ebl-footer__links a:hover { color: var(--ebl-silver); }

.ebl-footer__bottom {
  border-top: var(--ebl-border-dim);
  padding: 1.8rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.ebl-footer__legal {
  font-size: .75rem;
  color: var(--ebl-grey);
  font-weight: 300;
}

.ebl-footer__compliance {
  font-family: var(--ebl-font-mono);
  font-size: .68rem;
  color: var(--ebl-grey);
  letter-spacing: .04em;
  text-align: right;
}

/* ── Utility ─────────────────────────────────────────────────── */
.ebl-text-gold { color: var(--ebl-gold); }
.ebl-text-grey { color: var(--ebl-grey); }
.ebl-text-white { color: var(--ebl-white); }
.ebl-text-mono {
  font-family: var(--ebl-font-mono);
  font-size: .8rem;
  letter-spacing: .06em;
}

.ebl-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.ebl-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.ebl-spacer-sm { height: 1.5rem; }
.ebl-spacer    { height: 3rem; }
.ebl-spacer-lg { height: 5rem; }

.ebl-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(213,168,80,.2), transparent);
  margin: 3rem 0;
}

/* ── Animations ─────────────────────────────────────────────── */
@keyframes eblFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes eblFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.ebl-animate {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
}
.ebl-animate.in-view {
  opacity: 1;
  transform: none;
}

/* Staggered children */
.ebl-stagger > *:nth-child(1) { transition-delay: .05s; }
.ebl-stagger > *:nth-child(2) { transition-delay: .12s; }
.ebl-stagger > *:nth-child(3) { transition-delay: .19s; }
.ebl-stagger > *:nth-child(4) { transition-delay: .26s; }
.ebl-stagger > *:nth-child(5) { transition-delay: .33s; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .ebl-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .ebl-trust-pillars {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .ebl-nav,
  .ebl-header__actions .ebl-btn { display: none; }
  .ebl-mobile-toggle { display: flex; }
  .ebl-steps { grid-template-columns: 1fr 1fr; }
  .ebl-steps::before { display: none; }
  .ebl-doc-block { grid-template-columns: 1fr; }
  .ebl-doc-block__left { border-right: none; border-bottom: var(--ebl-border-dim); }
  .ebl-trust-strip__grid { grid-template-columns: 1fr 1fr; }
  .ebl-form__row { grid-template-columns: 1fr; }
  .ebl-grid-2,
  .ebl-grid-3 { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .ebl-section { padding: 4rem 0; }
  .ebl-hero { min-height: auto; padding: 2rem 0; }
  .ebl-steps { grid-template-columns: 1fr; }
  .ebl-trust-strip__grid { grid-template-columns: 1fr; }
  .ebl-trust-pillars { grid-template-columns: 1fr 1fr; }
  .ebl-footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .ebl-footer__bottom { flex-direction: column; text-align: center; }
  .ebl-footer__compliance { text-align: center; }
  .ebl-category-grid { grid-template-columns: 1fr; }
}

/* ── Scrollbar (Webkit) ─────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--ebl-black); }
::-webkit-scrollbar-thumb {
  background: var(--ebl-grey-2);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: var(--ebl-gold-dark); }

/* ── Selection ──────────────────────────────────────────────── */
::selection {
  background: rgba(213,168,80,.25);
  color: var(--ebl-white);
}

/* ═══════════════════════════════════════════════
   CONTACT FORM
═══════════════════════════════════════════════ */
.ebl-contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.ebl-form-group { display: flex; flex-direction: column; gap: .4rem; }
.ebl-form-group label {
  font-family: var(--ebl-mono);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ebl-gold);
}
.ebl-form-group input,
.ebl-form-group select,
.ebl-form-group textarea {
  background: var(--ebl-charcoal);
  border: 1px solid rgba(213,168,80,0.2);
  color: var(--ebl-white);
  font-family: var(--ebl-body);
  font-size: .9rem;
  padding: .75rem 1rem;
  border-radius: 2px;
  outline: none;
  transition: border-color .3s;
  width: 100%;
}
.ebl-form-group input:focus,
.ebl-form-group select:focus,
.ebl-form-group textarea:focus {
  border-color: var(--ebl-gold);
}
.ebl-form-group select option { background: var(--ebl-charcoal); }
.ebl-form-group--check label {
  flex-direction: row;
  align-items: flex-start;
  gap: .6rem;
  font-family: var(--ebl-body);
  font-size: .82rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ebl-grey);
  cursor: pointer;
}
.ebl-form-group--check input[type="checkbox"] {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--ebl-gold);
}

/* ═══════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
═══════════════════════════════════════════════ */
.ebl-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: .6rem;
  background: #25D366;
  color: #fff;
  font-family: var(--ebl-body);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: .7rem 1.2rem .7rem .9rem;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.ebl-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
  color: #fff;
}
.ebl-whatsapp svg { width: 22px; height: 22px; flex-shrink: 0; }
@media (max-width: 600px) {
  .ebl-whatsapp span { display: none; }
  .ebl-whatsapp { padding: .8rem; border-radius: 50%; }
}

/* ═══════════════════════════════════════════════
   HERO DNA GRAPHIC
═══════════════════════════════════════════════ */
.ebl-hero { position: relative; min-height: 88vh; display: flex; align-items: center; overflow: hidden; }
.ebl-hero__bg { position: absolute; inset: 0; z-index: 0; }
.ebl-hero__dna {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  width: 38%;
  max-width: 480px;
  opacity: 0.55;
  pointer-events: none;
}
.ebl-hero__dna img { width: 100%; height: auto; }
.ebl-hero__content { position: relative; z-index: 2; padding-top: 6rem; padding-bottom: 6rem; max-width: 60%; }
.ebl-hero__compliance {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: 2rem;
  font-family: var(--ebl-mono);
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ebl-muted);
}
.ebl-hero__compliance svg { flex-shrink: 0; color: var(--ebl-gold); opacity: 0.7; }

@media (max-width: 768px) {
  .ebl-hero__content { max-width: 100%; padding-top: 4rem; padding-bottom: 4rem; }
  .ebl-hero__dna { opacity: 0.2; right: -10%; width: 70%; }
}

/* ═══════════════════════════════════════════════
   POLICY PAGE CONTENT STYLES
═══════════════════════════════════════════════ */
.ebl-policy-content h2, .ebl-policy-content h3 {
  font-family: var(--ebl-font-display);
  color: var(--ebl-white);
  margin: 2rem 0 .8rem;
  font-size: 1.1rem;
}
.ebl-policy-content p { margin-bottom: 1rem; }
.ebl-policy-content ul, .ebl-policy-content ol {
  margin: 0 0 1rem 1.5rem;
}
.ebl-policy-content li { margin-bottom: .4rem; }
.ebl-policy-content a { color: var(--ebl-gold); }
