@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ── Design Tokens ─────────────────────────────────────────────────── */
:root {
  --navy:       #0B2545;
  --navy-light: #1E3A5F;
  --teal:       #0EA5A0;
  --teal-dark:  #0C8A86;
  --teal-pale:  rgba(14,165,160,0.10);
  --gold:       #F59E0B;
  --bg:         #F0F4F8;
  --white:      #FFFFFF;
  --text:       #1E2A3A;
  --muted:      #64748B;
  --border:     #D1DCE8;
  --shadow:     0 4px 24px rgba(11,37,69,0.08);
  --shadow-lg:  0 12px 40px rgba(11,37,69,0.14);
  --radius:     14px;
  --radius-sm:  8px;
  --ease:       cubic-bezier(0.4,0,0.2,1);
  --dur:        0.25s;
}

/* ── Reset ─────────────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Navbar ─────────────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  padding: 0 2rem;
}
.navbar.scrolled {
  background: rgba(7,15,28,0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 11px; }
.logo-img {
  height: 48px; width: auto;
  border-radius: 6px;
  object-fit: contain;
  background: #fff;
  padding: 3px 10px;
  flex-shrink: 0;
}
.logo-img-footer {
  height: 90px;
  padding: 6px 16px;
}
.nav-links {
  display: flex; list-style: none; gap: 0.15rem; align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.78); font-size: 13px; font-weight: 500;
  padding: 6px 12px; border-radius: 6px;
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.nav-links a:hover, .nav-links a.active {
  color: #fff; background: rgba(14,165,160,0.18);
}
.nav-links a.nav-cta {
  background: var(--teal); color: #fff; font-weight: 600;
  padding: 7px 16px; margin-left: 6px;
}
.nav-links a.nav-cta:hover { background: var(--teal-dark); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.nav-mobile {
  display: none; flex-direction: column;
  background: #070F1C; padding: 0 1.5rem;
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s var(--ease), padding var(--dur) var(--ease);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.nav-mobile.open { max-height: 420px; padding: 1rem 1.5rem 1.5rem; }
.nav-mobile a {
  color: rgba(255,255,255,0.75); font-size: 14.5px; font-weight: 500;
  padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,0.06); display: block;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a.nav-cta { color: var(--teal); font-weight: 600; }

/* ── Hero ───────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(140deg, #061120 0%, #0B2545 55%, #0D3060 100%);
  position: relative; display: flex; align-items: center; overflow: hidden;
}
.hero::before {
  content: '';  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 18% 55%, rgba(14,165,160,0.14) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 15%, rgba(245,158,11,0.07) 0%, transparent 40%);
}
.hex-bg {
  position: absolute; inset: 0; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='92'%3E%3Cpolygon points='40,4 76,22 76,70 40,88 4,70 4,22' fill='none' stroke='white' stroke-width='1.5'/%3E%3C/svg%3E");
  background-size: 80px 92px;
}
.hero-content {
  position: relative; max-width: 1200px; margin: 0 auto;
  padding: 100px 2rem 80px; width: 100%;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(14,165,160,0.14); border: 1px solid rgba(14,165,160,0.3);
  color: var(--teal); font-size: 11px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px; margin-bottom: 1.5rem;
}
.eyebrow::before { content: ''; width: 6px; height: 6px; background: var(--teal); border-radius: 50%; }
.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800; line-height: 1.08; letter-spacing: -0.025em;
  color: #fff; max-width: 700px; margin-bottom: 1.25rem;
}
.hero-title em { color: var(--teal); font-style: normal; }
.hero-sub {
  font-size: 1.08rem; color: rgba(255,255,255,0.65);
  max-width: 510px; margin-bottom: 2rem; line-height: 1.75;
}
.hero-pills { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 2.5rem; }
.pill {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.13);
  color: rgba(255,255,255,0.75); font-size: 12.5px; font-weight: 500;
  padding: 5px 13px; border-radius: 100px;
}
.hero-ctas { display: flex; gap: 13px; flex-wrap: wrap; }
.scroll-hint {
  position: absolute; bottom: 2.5rem; left: 2rem;
  color: rgba(255,255,255,0.3); font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
}
.scroll-hint::after {
  content: ''; width: 40px; height: 1px;
  background: linear-gradient(to right, rgba(255,255,255,0.3), transparent);
}

/* ── Buttons ────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; font-family: inherit;
  padding: 13px 26px; border-radius: var(--radius-sm);
  border: none; cursor: pointer; letter-spacing: 0.01em;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
}
.btn-primary {
  background: var(--teal); color: #fff;
  box-shadow: 0 4px 18px rgba(14,165,160,0.38);
}
.btn-primary:hover {
  background: var(--teal-dark); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(14,165,160,0.45);
}
.btn-outline {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.28);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5); transform: translateY(-2px);
}
.btn-navy {
  background: var(--navy); color: #fff;
  box-shadow: 0 4px 16px rgba(11,37,69,0.25);
}
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); }

/* ── Section base ───────────────────────────────────────────────────── */
section { padding: 6rem 2rem; }
.container { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 0.6rem;
}
.section-title {
  font-size: clamp(1.8rem, 3.2vw, 2.7rem); font-weight: 800;
  letter-spacing: -0.022em; line-height: 1.18; color: var(--navy); margin-bottom: 0.9rem;
}
.section-sub {
  font-size: 1.02rem; color: var(--muted); max-width: 600px;
  line-height: 1.75; margin-bottom: 3rem;
}
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* ── Cards grid ─────────────────────────────────────────────────────── */
.cards-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.4rem;
}
.card {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem 1.75rem; box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.card-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, rgba(14,165,160,0.14), rgba(14,165,160,0.05));
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 1.25rem;
}
.card-title { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.card-text { font-size: 13.5px; color: var(--muted); line-height: 1.65; }
.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--teal); font-size: 13px; font-weight: 600; margin-top: 1rem;
  transition: gap var(--dur) var(--ease);
}
.card-link:hover { gap: 10px; }
.card-link::after { content: '→'; }

/* ── Stats strip ────────────────────────────────────────────────────── */
.stats-strip { background: var(--navy); padding: 4.5rem 2rem; }
.stats-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; text-align: center;
}
.stat-value {
  font-size: 3rem; font-weight: 800; color: var(--teal);
  letter-spacing: -0.04em; line-height: 1; margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em; text-transform: uppercase; line-height: 1.4;
}

/* ── Two-col feature ────────────────────────────────────────────────── */
.feature-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.feature-grid.reverse .feature-visual { order: -1; }
.feature-visual {
  background: linear-gradient(140deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 20px; padding: 3.5rem;
  display: flex; align-items: center; justify-content: center;
  min-height: 320px; position: relative; overflow: hidden;
}
.feature-visual::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 35% 50%, rgba(14,165,160,0.22), transparent 60%);
}
.world-map-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

/* ── Page hero (inner pages) ────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(140deg, #061120 0%, #0B2545 100%);
  padding: 160px 2rem 80px; text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(14,165,160,0.15), transparent 60%);
}
.page-hero .hex-bg { opacity: 0.04; }
.page-hero-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 1rem; position: relative;
}
.page-hero-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 800;
  color: #fff; letter-spacing: -0.025em; position: relative;
}
.page-hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.62); margin-top: 1.1rem;
  position: relative; max-width: 540px; margin-left: auto; margin-right: auto; line-height: 1.7;
}

/* ── Content blocks ─────────────────────────────────────────────────── */
.content-block {
  background: var(--white); border-radius: var(--radius);
  padding: 2.5rem; box-shadow: var(--shadow); border: 1px solid var(--border);
  margin-bottom: 1.75rem;
}
.content-block h2 {
  font-size: 1.3rem; font-weight: 700; color: var(--navy);
  margin-bottom: 1.1rem; display: flex; align-items: center; gap: 10px;
}
.content-block h2::before {
  content: ''; width: 4px; height: 20px;
  background: var(--teal); border-radius: 2px; flex-shrink: 0;
}
.content-block p { color: var(--muted); line-height: 1.78; margin-bottom: 1rem; }
.content-block p:last-child { margin-bottom: 0; }

.highlight-box {
  background: linear-gradient(135deg, rgba(14,165,160,0.07), rgba(14,165,160,0.02));
  border: 1px solid rgba(14,165,160,0.22); border-radius: var(--radius-sm);
  padding: 1.4rem 1.6rem; margin-top: 1rem; margin-bottom: 1.5rem;
}
.highlight-box strong { color: var(--navy); font-weight: 700; display: block; margin-bottom: 0.4rem; }
.highlight-box p { color: var(--muted); font-size: 14px; margin: 0; }

/* ── Step list ──────────────────────────────────────────────────────── */
.step-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.step-list li { display: flex; gap: 1rem; align-items: flex-start; }
.step-num {
  width: 28px; height: 28px; background: var(--teal); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; flex-shrink: 0; margin-top: 2px;
}
.step-text { color: var(--muted); line-height: 1.68; font-size: 14.5px; }

/* ── Policy list ────────────────────────────────────────────────────── */
.policy-list { list-style: none; display: flex; flex-direction: column; gap: 1.1rem; }
.policy-list li {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem 1.5rem; background: var(--bg);
  border-radius: var(--radius-sm); border-left: 3px solid var(--teal);
  font-size: 14.5px; color: var(--muted); line-height: 1.68;
}
.policy-list li::before {
  content: '✓'; color: var(--teal); font-weight: 700;
  font-size: 14px; flex-shrink: 0; margin-top: 1px;
}

/* ── Product table ──────────────────────────────────────────────────── */
.table-wrap {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); border: 1px solid var(--border); overflow: hidden;
}
.product-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.product-table th {
  background: var(--navy); color: #fff; padding: 13px 18px;
  text-align: left; font-weight: 600; font-size: 11.5px;
  letter-spacing: 0.07em; text-transform: uppercase;
}
.product-table td { padding: 12px 18px; border-bottom: 1px solid var(--border); }
.product-table tr:last-child td { border-bottom: none; }
.product-table tr:hover td { background: rgba(14,165,160,0.03); }
.cas { font-size: 11.5px; color: var(--muted); font-family: monospace; }

/* Category tags */
.tag {
  display: inline-block; font-size: 10px; font-weight: 700;
  padding: 2px 8px; border-radius: 100px; letter-spacing: 0.06em;
  text-transform: uppercase;
}
.tag-default { background: var(--teal-pale); color: var(--teal-dark); border: 1px solid rgba(14,165,160,0.2); }
.tag-oncology { background: rgba(239,68,68,0.08); color: #B91C1C; border: 1px solid rgba(239,68,68,0.2); }
.tag-cardio   { background: rgba(245,158,11,0.10); color: #B45309; border: 1px solid rgba(245,158,11,0.25); }
.tag-antivir  { background: rgba(99,102,241,0.10); color: #4338CA; border: 1px solid rgba(99,102,241,0.2); }
.tag-nervous  { background: rgba(168,85,247,0.10); color: #6D28D9; border: 1px solid rgba(168,85,247,0.2); }
.tag-ophthal  { background: rgba(6,182,212,0.10); color: #0E7490; border: 1px solid rgba(6,182,212,0.2); }
.tag-diabetes { background: rgba(34,197,94,0.10); color: #15803D; border: 1px solid rgba(34,197,94,0.2); }
.tag-asthma   { background: rgba(249,115,22,0.10); color: #C2410C; border: 1px solid rgba(249,115,22,0.2); }
.tag-antitumor { background: rgba(239,68,68,0.12); color: #9B1C1C; border: 1px solid rgba(239,68,68,0.3); }

/* ── Therapeutic Area Tabs ─────────────────────────────────────── */
.tab-bar {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 1.5rem;
}
.tab-btn {
  padding: 7px 16px; border-radius: 100px; border: 1.5px solid var(--border);
  background: var(--white); color: var(--muted); font-size: 12px; font-weight: 600;
  cursor: pointer; transition: all var(--dur) var(--ease); font-family: inherit;
  letter-spacing: 0.03em;
}
.tab-btn:hover { border-color: var(--teal); color: var(--teal); }
.tab-btn.active {
  background: var(--navy); color: #fff; border-color: var(--navy);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ── Expandable table rows ─────────────────────────────────────── */
.expandable-row { cursor: pointer; user-select: none; }
.expandable-row:hover td { background: var(--teal-pale) !important; }
.expand-icon {
  display: inline-block; margin-right: 8px;
  font-size: 9px; color: var(--teal);
  transition: transform var(--dur) var(--ease);
  vertical-align: middle;
}
.expandable-row.open .expand-icon { transform: rotate(90deg); }
.sub-row { display: none; }
.sub-row.open { display: table-row; }
.sub-row > td { background: #f4f8fc; padding: 0 !important; border-top: none !important; }
.sub-components {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 10px;
  padding: 14px 20px 18px 40px;
}
.sub-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--teal);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
}
.sub-item-name { font-size: 12px; font-weight: 600; color: var(--text); line-height: 1.45; }
.sub-item-cas  { font-size: 11px; color: var(--muted); margin-top: 5px; font-family: 'Courier New', monospace; }

/* Search bar */
.search-bar-wrap { margin-bottom: 1.5rem; }
.search-bar {
  width: 100%; padding: 13px 18px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--border); font-size: 14px; font-family: inherit;
  background: var(--white); color: var(--text); outline: none;
  transition: border-color var(--dur) var(--ease);
}
.search-bar:focus { border-color: var(--teal); }

/* ── Contact strip ──────────────────────────────────────────────────── */
.contact-strip {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  padding: 5rem 2rem; text-align: center;
}
.contact-strip h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800;
  color: #fff; margin-bottom: 0.75rem; letter-spacing: -0.022em;
}
.contact-strip p { color: rgba(255,255,255,0.82); margin-bottom: 2rem; font-size: 1.05rem; }
.contact-strip .btn {
  background: #fff; color: var(--teal-dark);
  box-shadow: 0 4px 18px rgba(0,0,0,0.18);
}
.contact-strip .btn:hover { background: #f0fffe; transform: translateY(-2px); }

/* ── Footer ─────────────────────────────────────────────────────────── */
footer { background: #060E1B; padding: 4.5rem 2rem 2rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 2rem;
}
.footer-brand p {
  font-size: 13.5px; line-height: 1.75; margin-top: 1.1rem;
  color: rgba(255,255,255,0.38);
}
.footer-col h4 {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 1.1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  color: rgba(255,255,255,0.4); font-size: 13.5px;
  transition: color var(--dur) var(--ease);
}
.footer-col ul li a:hover { color: var(--teal); }
.footer-email {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--teal); font-size: 14px; font-weight: 600; margin-top: 0.75rem;
  transition: opacity var(--dur) var(--ease);
}
.footer-email:hover { opacity: 0.8; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,0.28); flex-wrap: wrap; gap: 1rem;
}
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: var(--teal); }

/* ── Section bg variants ────────────────────────────────────────────── */
.bg-white  { background: var(--white); }
.bg-navy   { background: var(--navy); }
.bg-navy .section-title { color: #fff; }
.bg-navy .section-sub   { color: rgba(255,255,255,0.6); }

/* ── Mission/Vision cards ───────────────────────────────────────────── */
.mv-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem; margin-top: 3rem;
}
.mv-card {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem; box-shadow: var(--shadow); border: 1px solid var(--border);
  border-top: 3px solid var(--teal);
}
.mv-card-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 0.75rem;
}
.mv-card-text { font-size: 14px; color: var(--muted); line-height: 1.72; }

/* ── Disclaimer box ─────────────────────────────────────────────────── */
.disclaimer {
  background: rgba(245,158,11,0.06); border: 1px solid rgba(245,158,11,0.25);
  border-radius: var(--radius-sm); padding: 1.25rem 1.5rem;
  font-size: 12.5px; color: var(--muted); line-height: 1.65; margin-top: 2rem;
}
.disclaimer strong { color: #92400E; }

/* ── Utility & layout helpers ───────────────────────────────────────── */
.container-narrow { max-width: 860px; }
.mt-lg { margin-top: 2.5rem; }

/* Body text paragraphs (feature/about sections) */
.body-text { color: var(--muted); line-height: 1.78; margin-bottom: 1.25rem; }
.body-text strong { color: var(--navy); }

/* Motto display text inside mv-card */
.motto-text { font-size: 1.5rem; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; }

/* Compact cards grid variant */
.cards-grid-sm { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

/* Table catalogue note */
.table-note { color: var(--muted); font-size: 13px; margin-top: 1rem; text-align: center; }
.table-note a { color: var(--teal); font-weight: 600; }

/* Highlight fine-print note */
.highlight-note { font-size: 13.5px; color: var(--muted); border-top: 1px solid var(--border); padding-top: 1rem; margin-top: 0.5rem; }

/* ── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .feature-grid.reverse .feature-visual { order: 0; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-mobile { display: flex; }
}
@media (max-width: 600px) {
  section { padding: 4rem 1.25rem; }
  .page-hero { padding: 140px 1.25rem 60px; }
  .hero-content { padding: 90px 1.25rem 3rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .content-block { padding: 1.75rem; }
  .logo-img { height: 40px; padding: 2px 8px; }
}
