/* ===================================================================
   Austex Pharma — modernized recreation
   Design system + components + page styles
   =================================================================== */

/* ---------- Tokens ---------- */
:root {
  --brand:        #103178;
  --brand-dark:   #0c2862;
  --brand-deep:   #081d49;
  --accent:       #ff9923;
  --accent-dark:  #e07d10;
  --ink:          #15203a;
  --ink-soft:     #4f5c75;
  --ink-faint:    #8a93ab;
  --line:         #e4e8f1;
  --bg:           #ffffff;
  --bg-soft:      #f0f2f5;
  --bg-mint:      #e9f0fb;
  --navy:         #0a1c4d;

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 26px;
  --shadow-sm: 0 2px 10px rgba(10, 24, 64, .07);
  --shadow:    0 14px 40px rgba(10, 24, 64, .12);
  --shadow-lg: 0 30px 70px rgba(10, 24, 64, .18);

  --maxw: 1200px;
  --header-h: 78px;

  --font-head: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4, h5 { font-family: var(--font-head); font-weight: 700; line-height: 1.18; color: var(--ink); }
input, select, textarea { font-family: inherit; font-size: 1rem; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 92px 0; }
.section--soft { background: var(--bg-soft); }
.section--mint { background: var(--bg-mint); }
.section--tight { padding: 64px 0; }
.center { text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700;
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--brand);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--accent); border-radius: 2px; }
.eyebrow.is-center { justify-content: center; }

.section-title { font-size: clamp(1.85rem, 3.4vw, 2.8rem); margin: 14px 0 0; letter-spacing: -.02em; }
.section-lead { color: var(--ink-soft); font-size: 1.05rem; margin-top: 16px; max-width: 620px; }
.section-lead.is-center { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-weight: 700; font-size: .95rem;
  padding: 14px 28px; border-radius: 999px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(135deg, #103178, #2350a8);
  color: #fff; box-shadow: 0 12px 26px rgba(16, 49, 120,.32);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 34px rgba(16, 49, 120,.42); }
.btn-outline { background: transparent; color: var(--brand-dark); box-shadow: inset 0 0 0 2px var(--line); }
.btn-outline:hover { box-shadow: inset 0 0 0 2px var(--brand); color: var(--brand); transform: translateY(-2px); }
.btn-ghost { color: var(--brand-dark); padding: 10px 0; }
.btn-ghost:hover { color: var(--brand); }
.btn-light { background: #fff; color: var(--brand-dark); }
.btn-light:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(4px); }
.btn-lg { padding: 17px 34px; font-size: 1rem; }

/* ===================================================================
   Promo bar
   =================================================================== */
.promo {
  background: linear-gradient(90deg, var(--brand-deep), var(--brand-dark));
  color: #d6f3f0; font-size: .85rem; position: relative; z-index: 60;
}
.promo .container { display: flex; align-items: center; justify-content: center; gap: 12px; min-height: 42px; padding: 7px 48px; text-align: center; }
.promo strong { color: #fff; font-family: var(--font-head); }
.promo .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex: none; box-shadow: 0 0 0 0 rgba(255,153,35,.7); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 9px rgba(255,153,35,0); } 100% { box-shadow: 0 0 0 0 rgba(255,153,35,0); } }
.promo-close { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); color: #9fd8d3; font-size: 1.2rem; line-height: 1; padding: 4px; }
.promo-close:hover { color: #fff; }

/* ===================================================================
   Header
   =================================================================== */
#site-header { display: contents; }
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: var(--header-h); }

.brand { display: flex; align-items: center; gap: 11px; flex: none; }
.brand-logo { height: 46px; width: auto; display: block; }
.brand-logo.failed { display: none; }
.brand-fallback { display: none; align-items: center; gap: 10px; }
.brand-logo.failed ~ .brand-fallback { display: flex; }
.brand-mark {
  width: 44px; height: 44px; border-radius: 13px; flex: none;
  background: linear-gradient(135deg, #103178, #2350a8);
  display: grid; place-items: center; color: #fff;
  font-family: var(--font-head); font-weight: 800; font-size: 1.3rem;
}
.brand-name { font-family: var(--font-head); font-weight: 800; font-size: 1.22rem; letter-spacing: -.02em; line-height: 1.1; }
.brand-name span { color: var(--brand); }
.site-footer .brand-name { color: #fff; }
.site-footer .brand-name span { color: var(--accent); }

/* nav */
.main-nav { display: flex; align-items: center; gap: 2px; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 5px; white-space: nowrap;
  font-family: var(--font-head); font-weight: 600; font-size: .93rem;
  padding: 10px 12px; border-radius: 10px; color: var(--ink);
  transition: color .15s ease, background .15s ease;
}
.nav-link:hover, .nav-item:hover .nav-link { color: var(--brand); background: var(--bg-soft); }
.nav-link.active { color: var(--brand); }
.nav-link .caret { width: 9px; transition: transform .2s ease; opacity: .6; }
.nav-item:hover .caret { transform: rotate(180deg); }

/* dropdown — continuous hover bridge, no gap that drops :hover */
.dropdown {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(10px);
  padding-top: 14px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown-inner {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 10px; min-width: 252px;
}
.dropdown a {
  display: flex; align-items: center; gap: 11px;
  padding: 11px 13px; border-radius: 10px; font-size: .9rem; font-weight: 600;
  color: var(--ink-soft); transition: background .14s ease, color .14s ease;
}
.dropdown a:hover { background: var(--bg-mint); color: var(--brand-dark); }
.dropdown a .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex: none; }

/* mega menu */
.dropdown.is-mega { left: auto; right: 0; transform: translateY(10px); }
.nav-item:hover .dropdown.is-mega,
.nav-item:focus-within .dropdown.is-mega { transform: translateY(0); }
.megamenu { display: grid; grid-template-columns: 1.7fr .85fr; gap: 14px; width: 680px; }
.mega-head { grid-column: 1 / -1; display: flex; justify-content: space-between; align-items: baseline;
  padding: 4px 8px 8px; border-bottom: 1px solid var(--line); margin-bottom: 4px; }
.mega-head b { font-family: var(--font-head); font-size: .95rem; }
.mega-head a { font-size: .8rem; font-weight: 700; color: var(--brand); }
.mega-cats { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.mega-cat { display: flex; align-items: center; gap: 12px; padding: 9px 11px; border-radius: 11px; transition: background .14s ease; }
.mega-cat:hover { background: var(--bg-mint); }
.mega-cat .m-ic {
  width: 40px; height: 40px; border-radius: 11px; flex: none;
  background: var(--bg-mint); color: var(--brand);
  display: grid; place-items: center; transition: .14s;
}
.mega-cat:hover .m-ic { background: linear-gradient(135deg, #103178, #2350a8); color: #fff; }
.mega-cat b { font-family: var(--font-head); font-size: .87rem; color: var(--ink); display: block; line-height: 1.25; }
.mega-cat small { font-size: .74rem; color: var(--ink-faint); }
.mega-promo {
  border-radius: 14px; padding: 22px; color: #fff; overflow: hidden; position: relative;
  background: linear-gradient(155deg, var(--brand), var(--brand-deep));
  display: flex; flex-direction: column; justify-content: center; gap: 7px;
}
.mega-promo::after { content: ""; position: absolute; right: -30px; bottom: -30px;
  width: 110px; height: 110px; border-radius: 50%; background: rgba(255,255,255,.08); }
.mega-promo .tag { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); font-weight: 700; }
.mega-promo h4 { color: #fff; font-size: 1.1rem; line-height: 1.25; }
.mega-promo p { font-size: .8rem; color: #d3ddf4; }
.mega-promo .btn { margin-top: 8px; align-self: flex-start; }

.header-cta { display: flex; align-items: center; gap: 12px; flex: none; }
.header-search {
  display: flex; align-items: center; gap: 9px;
  background: var(--bg-soft); border: 1px solid var(--line);
  padding: 9px 13px; border-radius: 11px;
  color: var(--ink-faint); font-size: .86rem; font-weight: 500;
  transition: border-color .15s ease, color .15s ease, background .15s ease;
}
.header-search:hover { border-color: var(--brand); color: var(--brand-dark); background: #fff; }
.header-search .hs-text { white-space: nowrap; }
.header-search kbd {
  font-family: var(--font-head); font-size: .68rem; font-weight: 700;
  background: #fff; border: 1px solid var(--line); border-radius: 6px;
  padding: 2px 6px; color: var(--ink-faint);
}
.header-divider { width: 1px; height: 30px; background: var(--line); }
.header-phone { display: flex; align-items: center; gap: 10px; }
.header-phone .ic {
  width: 38px; height: 38px; border-radius: 11px; flex: none;
  background: var(--bg-mint); display: grid; place-items: center; color: var(--brand);
}
.header-phone small { display: block; font-size: .68rem; color: var(--ink-faint); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.header-phone b { font-family: var(--font-head); font-size: .92rem; color: var(--ink); }

.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 11px; background: var(--bg-soft); }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); margin: 4px auto; border-radius: 2px; transition: .2s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* mobile drawer */
.mobile-nav {
  position: fixed; inset: 0 0 0 auto; width: min(380px, 88vw);
  background: #fff; z-index: 80; padding: 24px;
  transform: translateX(100%); transition: transform .3s cubic-bezier(.4,0,.2,1);
  overflow-y: auto; box-shadow: var(--shadow-lg);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-backdrop { position: fixed; inset: 0; background: rgba(8,18,52,.5); z-index: 70; opacity: 0; visibility: hidden; transition: .25s; }
.mobile-backdrop.open { opacity: 1; visibility: visible; }
.mobile-nav .m-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.mobile-nav .m-close { font-size: 1.6rem; color: var(--ink-soft); width: 40px; height: 40px; }
.m-group { border-bottom: 1px solid var(--line); }
.m-group > button, .m-group > a {
  display: flex; justify-content: space-between; align-items: center; width: 100%;
  padding: 15px 4px; font-family: var(--font-head); font-weight: 600; font-size: 1rem; color: var(--ink);
}
.m-group > button .caret { transition: transform .2s; opacity: .5; }
.m-group.open > button .caret { transform: rotate(180deg); }
.m-sub { display: none; padding: 0 4px 12px; }
.m-group.open .m-sub { display: block; }
.m-sub a { display: block; padding: 9px 14px; color: var(--ink-soft); font-size: .92rem; border-left: 2px solid var(--line); }
.m-sub a:hover { color: var(--brand); border-color: var(--accent); }
.mobile-nav .btn { width: 100%; justify-content: center; margin-top: 20px; }

/* ===================================================================
   Hero — home
   =================================================================== */
.hero { position: relative; background: var(--navy); color: #fff; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(620px 420px at 12% 8%, rgba(16,49,120,.55), transparent 60%),
    radial-gradient(560px 480px at 92% 92%, rgba(255,153,35,.42), transparent 60%);
}
.hero-grid {
  position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px;
  align-items: center; padding: 80px 0 90px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  padding: 8px 16px; border-radius: 999px; font-size: .8rem; font-weight: 600;
  color: #c6d2ef; backdrop-filter: blur(6px);
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.hero h1 {
  color: #fff; font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -.03em;
  margin: 22px 0 0;
}
.hero h1 .grad {
  background: linear-gradient(120deg, #ffc680, #ff9923);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lead { color: #b3bedb; font-size: 1.12rem; margin: 22px 0 32px; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 30px; margin-top: 44px; }
.hero-stats .num { font-family: var(--font-head); font-weight: 800; font-size: 1.9rem; color: #fff; }
.hero-stats .num span { color: var(--accent); }
.hero-stats small { color: #8a95b4; font-size: .82rem; }

/* hero slider visual */
.hero-visual { position: relative; }
.hero-slider {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(160deg, #16336f, #0a1c4d);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: var(--shadow-lg); aspect-ratio: 4 / 3.4;
}
.hero-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity .8s ease;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px;
}
.hero-slide.active { opacity: 1; }
.hero-slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; padding: 30px; }
.hero-slide .cap { position: relative; }
.hero-slide .cap b { font-family: var(--font-head); font-size: 1.35rem; color: #fff; display: block; }
.hero-slide .cap span { color: #a6b2d2; font-size: .9rem; }
.hero-dots { position: absolute; bottom: 16px; right: 20px; display: flex; gap: 7px; z-index: 3; }
.hero-dots button { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.3); transition: .2s; }
.hero-dots button.active { background: var(--accent); width: 22px; border-radius: 5px; }
.hero-float {
  position: absolute; background: #fff; color: var(--ink); border-radius: 14px;
  padding: 13px 17px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 11px;
}
.hero-float .ic { width: 38px; height: 38px; border-radius: 10px; background: var(--bg-mint); display: grid; place-items: center; color: var(--brand); flex: none; }
.hero-float small { font-size: .7rem; color: var(--ink-faint); display: block; }
.hero-float b { font-family: var(--font-head); font-size: .9rem; }
.hero-float.tl { top: 26px; left: -28px; }
.hero-float.br { bottom: 30px; left: -34px; }

/* ===================================================================
   Page hero (interior)
   =================================================================== */
.page-hero {
  position: relative; background: var(--navy); color: #fff; overflow: hidden;
  padding: 64px 0 70px;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(500px 360px at 88% 0%, rgba(16,49,120,.5), transparent 62%),
    radial-gradient(420px 340px at 0% 100%, rgba(255,153,35,.32), transparent 60%);
}
.page-hero .container { position: relative; }
.breadcrumb { display: flex; gap: 8px; font-size: .85rem; color: #8791af; margin-bottom: 16px; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: #5d757b; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -.025em; max-width: 860px; }
.page-hero p { color: #aab4d2; margin-top: 14px; max-width: 620px; }

/* ===================================================================
   Prose / content
   =================================================================== */
.prose p { color: var(--ink-soft); margin-bottom: 18px; }
.prose p:last-child { margin-bottom: 0; }
.prose h2 { font-size: 1.7rem; margin: 12px 0 18px; letter-spacing: -.02em; }
.prose h3 { font-size: 1.28rem; margin: 30px 0 14px; color: var(--brand-dark); }
.prose strong { color: var(--ink); }
ul.ticks { margin: 8px 0 22px; display: grid; gap: 11px; }
ul.ticks li { display: flex; gap: 12px; color: var(--ink-soft); }
ul.ticks li::before {
  content: "✓"; flex: none; width: 23px; height: 23px; border-radius: 7px;
  background: var(--bg-mint); color: var(--accent-dark); font-weight: 800; font-size: .78rem;
  display: grid; place-items: center; margin-top: 3px;
}
.quote-block {
  border-left: 4px solid var(--accent); background: var(--bg-mint);
  padding: 22px 26px; border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-head); font-size: 1.15rem; font-style: italic; color: var(--brand-deep);
  margin: 8px 0 28px;
}
.quote-block cite { display: block; font-style: normal; font-size: .9rem; color: var(--ink-soft); margin-top: 8px; font-weight: 600; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.is-narrow { gap: 44px; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; }
.split-media .frame {
  position: absolute; inset: 18px -18px -18px 18px; border-radius: var(--radius-lg);
  border: 2px solid var(--accent); z-index: -1;
}

/* ===================================================================
   Cards
   =================================================================== */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card .card-ic {
  width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center;
  background: linear-gradient(135deg, #103178, #2350a8); color: #fff;
  margin-bottom: 18px;
}
.card h3 { font-size: 1.18rem; margin-bottom: 9px; }
.card p { color: var(--ink-soft); font-size: .95rem; }
.card .card-link { display: inline-flex; gap: 6px; margin-top: 16px; color: var(--brand); font-weight: 700; font-family: var(--font-head); font-size: .9rem; }
.card .card-link .arrow { transition: transform .2s; }
.card:hover .card-link .arrow { transform: translateX(4px); }

/* quick-action cards (Adverse / CSR / Business) */
.action-card {
  display: flex; gap: 18px; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; transition: transform .2s ease, box-shadow .2s ease;
}
.action-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.action-card .ic {
  width: 60px; height: 60px; border-radius: 16px; flex: none; display: grid; place-items: center;
  background: var(--bg-mint); color: var(--brand);
}
.action-card h4 { font-size: 1.08rem; }
.action-card p { font-size: .86rem; color: var(--ink-soft); }
.action-card .arrow { margin-left: auto; color: var(--brand); flex: none; transition: transform .2s; }
.action-card:hover .arrow { transform: translateX(5px); }

/* stat band */
.stat-band { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.stat {
  text-align: center; padding: 36px 20px; border-radius: var(--radius);
  background: #fff; border: 1px solid var(--line);
}
.stat .num { font-family: var(--font-head); font-weight: 800; font-size: 3rem; letter-spacing: -.03em;
  background: linear-gradient(135deg, #103178, #2350a8);
  -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .label { color: var(--ink-soft); font-weight: 600; font-family: var(--font-head); }

/* value chips */
.chip-row { display: flex; flex-wrap: wrap; gap: 12px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 17px; font-size: .88rem; font-weight: 600; color: var(--ink-soft);
}
.chip .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }

/* ===================================================================
   Product cards / shop
   =================================================================== */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.product-thumb {
  position: relative; aspect-ratio: 1; background: var(--bg-soft);
  display: grid; place-items: center; padding: 22px; overflow: hidden;
}
.product-thumb img { width: 100%; height: 100%; object-fit: contain; transition: transform .3s ease; }
.product-card:hover .product-thumb img { transform: scale(1.06); }
.product-cat-tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(255,255,255,.92); color: var(--brand-dark);
  font-size: .66rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px;
}
.product-body { padding: 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-body h3 { font-size: 1rem; line-height: 1.35; }
.product-body .comp { font-size: .8rem; color: var(--ink-faint); }
.product-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto; padding-top: 13px; border-top: 1px solid var(--line);
}
.product-rx {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .68rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  color: var(--ink-faint);
}
.product-rx::before { content: "℞"; font-size: .92rem; color: var(--brand); }
.product-view {
  display: inline-flex; align-items: center; gap: 5px;
  color: var(--brand); font-weight: 700; font-family: var(--font-head); font-size: .84rem;
}
.product-view .arrow { transition: transform .2s ease; }
.product-card:hover .product-view .arrow { transform: translateX(4px); }

/* category tiles */
.cat-tile {
  position: relative; display: flex; flex-direction: column; gap: 6px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; transition: transform .2s ease, box-shadow .2s ease;
  overflow: hidden;
}
.cat-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.cat-tile .ic { width: 54px; height: 54px; border-radius: 14px; background: var(--bg-mint); color: var(--brand); display: grid; place-items: center; margin-bottom: 12px; }
.cat-tile h3 { font-size: 1.12rem; }
.cat-tile .count { font-size: .82rem; color: var(--ink-faint); }
.cat-tile .go { margin-top: 14px; color: var(--brand); font-weight: 700; font-family: var(--font-head); font-size: .86rem; display: inline-flex; gap: 6px; }
.cat-tile::after {
  content: ""; position: absolute; right: -40px; bottom: -40px; width: 130px; height: 130px;
  border-radius: 50%; background: var(--bg-mint); z-index: 0; transition: transform .3s ease;
}
.cat-tile:hover::after { transform: scale(1.4); }
.cat-tile > * { position: relative; z-index: 1; }

/* shop layout */
.shop-layout { display: grid; grid-template-columns: 250px 1fr; gap: 40px; align-items: start; }
.shop-side { position: sticky; top: calc(var(--header-h) + 20px); display: grid; gap: 22px; }
.side-box { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.side-box h4 { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 14px; }
.side-cat-list a { display: flex; justify-content: space-between; padding: 9px 0; font-size: .92rem; color: var(--ink-soft); border-bottom: 1px solid var(--line); }
.side-cat-list a:last-child { border-bottom: none; }
.side-cat-list a:hover, .side-cat-list a.active { color: var(--brand); font-weight: 600; }
.side-cat-list a b { color: var(--ink-faint); font-size: .8rem; font-weight: 600; }
.shop-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; flex-wrap: wrap; gap: 14px; }
.shop-toolbar .count-txt { color: var(--ink-soft); font-size: .92rem; }
.shop-toolbar select { padding: 10px 16px; border-radius: 10px; border: 1px solid var(--line); color: var(--ink-soft); background: #fff; }
.empty-state { text-align: center; padding: 80px 20px; color: var(--ink-soft); }
.empty-state .ic { width: 80px; height: 80px; border-radius: 50%; background: var(--bg-mint); display: grid; place-items: center; margin: 0 auto 18px; color: var(--brand); }

/* product detail */
.pd-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: start; }
.pd-gallery { background: var(--bg-soft); border-radius: var(--radius-lg); padding: 40px; position: sticky; top: calc(var(--header-h) + 20px); }
.pd-gallery img { width: 100%; object-fit: contain; aspect-ratio: 1; }
.pd-cat { color: var(--brand); font-weight: 700; font-family: var(--font-head); font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; }
.pd-title { font-size: clamp(1.6rem, 3vw, 2.3rem); margin: 10px 0 14px; letter-spacing: -.02em; }
.pd-price { font-family: var(--font-head); font-weight: 800; font-size: 2rem; color: var(--brand-dark); }
.pd-price span { font-size: 1rem; }
.pd-comp { background: var(--bg-mint); border-radius: var(--radius); padding: 18px 22px; margin: 22px 0; }
.pd-comp small { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); font-weight: 700; }
.pd-comp p { font-family: var(--font-head); font-weight: 600; color: var(--brand-deep); margin-top: 4px; }
.pd-actions { display: flex; gap: 12px; margin: 24px 0; flex-wrap: wrap; }
.pd-tabs { margin-top: 14px; }
.pd-tab-head { display: flex; gap: 6px; border-bottom: 1px solid var(--line); margin-bottom: 20px; }
.pd-tab-head button {
  padding: 12px 18px; font-family: var(--font-head); font-weight: 700; font-size: .92rem;
  color: var(--ink-faint); border-bottom: 2px solid transparent; margin-bottom: -1px;
}
.pd-tab-head button.active { color: var(--brand); border-color: var(--brand); }
.pd-tab-panel { display: none; }
.pd-tab-panel.active { display: block; }
.pd-tab-panel p { color: var(--ink-soft); }
.pd-info-table { width: 100%; border-collapse: collapse; }
.pd-info-table td { padding: 12px 14px; border: 1px solid var(--line); font-size: .92rem; }
.pd-info-table td:first-child { background: var(--bg-soft); font-weight: 600; width: 38%; color: var(--ink); }
.pd-info-table td:last-child { color: var(--ink-soft); }
.pd-note { font-size: .82rem; color: var(--ink-faint); margin-top: 18px; }

/* ===================================================================
   Forms
   =================================================================== */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 38px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .88rem; margin-bottom: 7px; }
.field label .req { color: #e0533b; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: 11px;
  background: var(--bg-soft); color: var(--ink); transition: border-color .15s ease, background .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand); background: #fff;
  box-shadow: 0 0 0 4px rgba(16,49,120,.1);
}
.field textarea { resize: vertical; min-height: 120px; }
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.check {
  display: flex; align-items: center; gap: 10px; padding: 12px 15px;
  border: 1px solid var(--line); border-radius: 11px; background: var(--bg-soft);
  font-size: .9rem; cursor: pointer; transition: .15s;
}
.check:hover { border-color: var(--brand); }
.check input { width: auto; }
.form-note { font-size: .82rem; color: var(--ink-faint); background: var(--bg-soft); padding: 14px 16px; border-radius: 11px; border-left: 3px solid var(--accent); margin-top: 6px; }
.form-disclaimer { font-size: .8rem; color: var(--ink-faint); margin-top: 14px; text-align: center; }

/* contact info cards */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: start; }
.info-list { display: grid; gap: 14px; }
.info-item { display: flex; gap: 15px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }
.info-item .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--bg-mint); color: var(--brand); display: grid; place-items: center; flex: none; }
.info-item small { font-size: .74rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-faint); font-weight: 700; }
.info-item b { font-family: var(--font-head); display: block; }
.info-item span { font-size: .9rem; color: var(--ink-soft); }
a.info-item { transition: border-color .16s ease, transform .16s ease, box-shadow .16s ease; }
a.info-item:hover { border-color: var(--brand); transform: translateX(4px); box-shadow: var(--shadow-sm); }
.office-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.office-card .tag { font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--brand); }
.office-card p { font-size: .92rem; color: var(--ink-soft); margin-top: 6px; }
.office-link { display: inline-flex; align-items: center; gap: 5px; margin-top: 12px;
  color: var(--brand); font-weight: 700; font-family: var(--font-head); font-size: .84rem; }
.office-link:hover { color: var(--brand-dark); }

/* jobs */
.job-card {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 26px; transition: transform .2s ease, box-shadow .2s ease;
}
.job-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.job-card .j-ic { width: 50px; height: 50px; border-radius: 13px; background: var(--bg-mint); color: var(--brand); display: grid; place-items: center; flex: none; }
.job-card h3 { font-size: 1.1rem; }
.job-card .j-meta { display: flex; gap: 16px; font-size: .85rem; color: var(--ink-soft); margin-top: 3px; }
.job-card .j-meta span { display: inline-flex; align-items: center; gap: 5px; }
.job-card .j-type { background: var(--bg-mint); color: var(--brand-dark); font-weight: 700; font-size: .76rem; padding: 6px 13px; border-radius: 999px; }
.job-card .btn { margin-left: auto; }

/* partners */
.partner-strip { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.partner-logo {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  height: 92px; width: 160px; display: grid; place-items: center; padding: 18px;
  transition: .2s; filter: grayscale(1); opacity: .7;
}
.partner-logo:hover { filter: grayscale(0); opacity: 1; transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.partner-logo img { max-height: 100%; max-width: 100%; object-fit: contain; }

/* gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-grid img { border-radius: var(--radius); aspect-ratio: 4/3; object-fit: cover; width: 100%; box-shadow: var(--shadow-sm); transition: transform .25s ease; }
.gallery-grid a:hover img { transform: scale(1.03); }

/* CTA band */
.cta-band { position: relative; background: var(--navy); color: #fff; overflow: hidden; border-radius: var(--radius-lg); padding: 56px; }
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(440px 300px at 90% 10%, rgba(255,153,35,.4), transparent 60%),
              radial-gradient(420px 320px at 5% 100%, rgba(16,49,120,.5), transparent 60%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.4rem); }
.cta-band p { color: #aab4d2; margin: 12px 0 24px; max-width: 540px; }

/* ===================================================================
   Footer
   =================================================================== */
.site-footer { background: var(--navy); color: #9aa6c4; padding-top: 70px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; }
.footer-brand .brand-name { color: #fff; }
.footer-brand p { font-size: .9rem; margin: 16px 0; max-width: 280px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  background: rgba(255,255,255,.07); color: #ccd5ec; transition: .18s;
}
.footer-social a:hover { background: var(--brand); color: #fff; transform: translateY(-3px); }
.footer-col h5 { color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { font-size: .9rem; transition: color .15s ease; }
.footer-col a:hover { color: var(--accent); }
.footer-contact-item { display: flex; gap: 11px; margin-bottom: 16px; }
.footer-contact-item .ic { width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,.07); display: grid; place-items: center; color: var(--accent); flex: none; }
.footer-contact-item small { font-size: .76rem; color: #767f9d; }
.footer-contact-item b { color: #fff; font-family: var(--font-head); font-size: .9rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding: 24px 0;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: .82rem; color: #767f9d;
}
.footer-bottom a:hover { color: var(--accent); }

/* back to top */
.to-top {
  position: fixed; right: 24px; bottom: 24px; width: 48px; height: 48px;
  border-radius: 13px; background: var(--brand); color: #fff;
  display: grid; place-items: center; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(12px); transition: .25s; z-index: 40;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--brand-dark); }

/* toast */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--navy); color: #fff; padding: 13px 22px; border-radius: 999px;
  font-size: .9rem; font-weight: 600; box-shadow: var(--shadow-lg); z-index: 90;
  opacity: 0; visibility: hidden; transition: .3s; display: flex; align-items: center; gap: 9px;
}
.toast.show { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.toast .ic { color: var(--accent); }

/* ===================================================================
   Spotlight search
   =================================================================== */
.spotlight-backdrop {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(8, 18, 52, .5); backdrop-filter: blur(5px);
  display: flex; align-items: flex-start; justify-content: center;
  padding: 11vh 20px 20px;
  opacity: 0; visibility: hidden; transition: opacity .2s ease;
}
.spotlight-backdrop.open { opacity: 1; visibility: visible; }
.spotlight {
  width: min(620px, 100%); background: #fff; border-radius: 20px;
  box-shadow: var(--shadow-lg); overflow: hidden;
  transform: scale(.97) translateY(-10px); transition: transform .22s ease;
}
.spotlight-backdrop.open .spotlight { transform: none; }
.spotlight-top { display: flex; align-items: center; gap: 13px; padding: 18px 20px; border-bottom: 1px solid var(--line); }
.spotlight-top > svg { color: var(--brand); flex: none; }
.spotlight-input { flex: 1; border: none; outline: none; background: none; font-size: 1.12rem; color: var(--ink); font-family: var(--font-body); }
.spotlight-input::placeholder { color: var(--ink-faint); }
.spotlight-esc {
  font-family: var(--font-head); font-size: .68rem; font-weight: 700; color: var(--ink-faint);
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: 6px; padding: 4px 8px; flex: none;
}
.spotlight-results { max-height: 54vh; overflow-y: auto; padding: 8px; }
.spotlight-group { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); font-weight: 700; padding: 13px 12px 6px; }
.spotlight-item { display: flex; align-items: center; gap: 13px; padding: 10px 12px; border-radius: 12px; cursor: pointer; }
.spotlight-item.active { background: var(--bg-mint); }
.spotlight-item .si-ic {
  width: 40px; height: 40px; border-radius: 10px; flex: none; overflow: hidden;
  background: var(--bg-soft); display: grid; place-items: center; color: var(--brand);
}
.spotlight-item .si-ic img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.spotlight-item .si-text { min-width: 0; flex: 1; }
.spotlight-item b { font-family: var(--font-head); font-size: .93rem; color: var(--ink); display: block;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.spotlight-item small { font-size: .78rem; color: var(--ink-faint); display: block;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.spotlight-item .si-go { color: var(--ink-faint); flex: none; opacity: 0; transition: .15s; }
.spotlight-item.active .si-go { opacity: 1; }
.spotlight-empty { padding: 46px 20px; text-align: center; color: var(--ink-faint); }
.spotlight-empty .se-ic { width: 60px; height: 60px; border-radius: 50%; background: var(--bg-soft); display: grid; place-items: center; margin: 0 auto 14px; color: var(--ink-faint); }
.spotlight-foot { display: flex; gap: 18px; padding: 12px 20px; border-top: 1px solid var(--line); font-size: .74rem; color: var(--ink-faint); }
.spotlight-foot span { display: inline-flex; align-items: center; gap: 6px; }
.spotlight-foot kbd { font-family: var(--font-head); font-weight: 700; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 5px; padding: 1px 6px; }

/* ===================================================================
   Incentive calculator
   =================================================================== */
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: start; }
.calc-result {
  background: var(--navy); color: #fff; border-radius: var(--radius-lg); padding: 34px;
  position: sticky; top: calc(var(--header-h) + 20px); overflow: hidden;
}
.calc-result::before { content: ""; position: absolute; inset: 0;
  background: radial-gradient(320px 240px at 100% 0%, rgba(255,153,35,.34), transparent 62%); }
.calc-result > * { position: relative; }
.calc-result .lbl { font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: #8791af; font-weight: 700; }
.calc-big { font-family: var(--font-head); font-weight: 800; font-size: 3.1rem; letter-spacing: -.03em; line-height: 1.1; margin: 4px 0; }
.calc-big span { background: linear-gradient(120deg, #ffc680, #ff9923); -webkit-background-clip: text; background-clip: text; color: transparent; }
.calc-meter { height: 12px; border-radius: 999px; background: rgba(255,255,255,.12); overflow: hidden; margin: 16px 0 8px; }
.calc-meter span { display: block; height: 100%; border-radius: 999px; width: 0;
  background: linear-gradient(90deg, var(--brand), var(--accent)); transition: width .7s cubic-bezier(.4,0,.2,1); }
.calc-badge { display: inline-block; padding: 7px 15px; border-radius: 999px; font-size: .82rem;
  font-weight: 700; font-family: var(--font-head); background: rgba(255,153,35,.16); color: var(--accent); }
.calc-rows { margin-top: 22px; }
.calc-row { display: flex; justify-content: space-between; align-items: center; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.09); font-size: .92rem; }
.calc-row:last-child { border-bottom: none; }
.calc-row span { color: #9aa6c4; }
.calc-row b { color: #fff; font-family: var(--font-head); font-size: 1rem; }
.calc-row b.payout { color: var(--accent); font-size: 1.2rem; }
.slab-table { width: 100%; border-collapse: collapse; }
.slab-table th, .slab-table td { padding: 12px 15px; border: 1px solid var(--line); font-size: .9rem; text-align: left; }
.slab-table th { background: var(--bg-soft); font-family: var(--font-head); }
.slab-table tr.hit td { background: var(--bg-mint); font-weight: 700; color: var(--brand-deep); }

/* ===================================================================
   Scroll reveal
   =================================================================== */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ===================================================================
   Responsive
   =================================================================== */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-float.tl, .hero-float.br { left: auto; right: 14px; }
  .hero-float.tl { top: 14px; } .hero-float.br { bottom: 14px; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-side { position: static; grid-template-columns: 1fr 1fr; display: grid; }
  .pd-grid { grid-template-columns: 1fr; gap: 32px; }
  .pd-gallery { position: static; }
}
@media (max-width: 900px) {
  .main-nav, .header-phone, .header-divider,
  .header-search .hs-text, .header-search kbd { display: none; }
  .header-search { padding: 10px; }
  .nav-toggle { display: block; }
  .calc-grid { grid-template-columns: 1fr; }
  .calc-result { position: static; }
  .section { padding: 64px 0; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .split-media .frame { display: none; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-band { padding: 38px 28px; }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4, .product-grid, .stat-band, .gallery-grid,
  .form-row, .check-grid, .shop-side { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .form-card { padding: 24px; }
  .section-title { font-size: 1.7rem; }
  .promo .container { padding: 7px 36px; font-size: .78rem; }
}
