/* Neolife Design System — Shared CSS
   Used by EN pages. TR pages use inline CSS (legacy).
   Version: 2.0 | 2026-08-24
   ================================================================ */

/* ── Tokens ───────────────────────────────────────────────────── */
:root {
  --ink:     #0A2F39;
  --primary: #0D5468;
  --medium:  #1E8599;
  --warm:    #546971;
  --line:    #DDE8EB;
  --white:   #FFFFFF;
  --palest:  #EEF7F8;
  --light:   #3AB5C6;
  --cream:   #FAF4EA;
  --green:   #2E9E6E;
  --amber:   #F59E0B;
  --red:     #DC2626;
  --body-text: #1a3a45;
  --radius:  8px;
  --shadow:  0 2px 12px rgba(10,47,57,0.08);
}

/* ── Reset ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--medium); }
.display { font-family: 'DM Serif Display', Georgia, serif; font-weight: 400; }

/* ── Skip nav (accessibility) ────────────────────────────────── */
.skip-nav {
  position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden;
}
.skip-nav:focus {
  position: fixed; top: 0; left: 0; width: auto; height: auto;
  background: var(--medium); color: #fff; padding: 12px 20px; z-index: 9999;
  font-size: 14px; font-weight: 600; outline: none;
}

/* ── Header ───────────────────────────────────────────────────── */
.site-header {
  background: var(--ink);
  padding: 14px 0;
  position: sticky; top: 0; z-index: 200;
  box-shadow: 0 1px 0 rgba(255,255,255,0.08);
}
.header-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 24px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.header-logo { display: flex; align-items: center; gap: 10px; }
.header-logo img { height: 42px; width: auto; }
.header-logo .logo-text { color: var(--light); font-size: 11px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; line-height: 1.3; }

/* Desktop nav */
.header-nav { display: flex; gap: 4px; align-items: center; flex: 1; justify-content: center; }
.header-nav a {
  color: rgba(255,255,255,0.78); font-size: 14px; padding: 8px 12px; border-radius: 6px;
  transition: color 0.2s, background 0.2s; white-space: nowrap;
}
.header-nav a:hover, .header-nav a[aria-current="page"] { color: #fff; background: rgba(255,255,255,0.1); }
.header-nav a.active { color: #fff; }

/* Language switcher */
.lang-switcher { display: flex; align-items: center; gap: 4px; font-size: 13px; }
.lang-switcher a {
  color: rgba(255,255,255,0.6); padding: 5px 9px; border-radius: 5px;
  font-weight: 500; transition: all 0.2s;
}
.lang-switcher a:hover { color: #fff; background: rgba(255,255,255,0.1); }
.lang-switcher a.active { color: #fff; background: rgba(255,255,255,0.15); font-weight: 700; }
.lang-switcher .sep { color: rgba(255,255,255,0.25); }

/* Nav right */
.nav-right { display: flex; align-items: center; gap: 10px; }
.btn-cta-header {
  background: var(--medium); color: #fff !important; padding: 8px 16px;
  border-radius: 6px; font-size: 13px; font-weight: 600; white-space: nowrap;
  transition: background 0.2s;
}
.btn-cta-header:hover { background: #1a7a8e !important; color: #fff !important; }

/* Mobile hamburger */
.mobile-menu-btn {
  display: none; background: none; border: none; cursor: pointer;
  padding: 6px; color: #fff; flex-direction: column; gap: 5px;
}
.mobile-menu-btn span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; }
@media (max-width: 900px) {
  .header-nav { display: none; }
  .mobile-menu-btn { display: flex; }
}
@media (max-width: 600px) { .nav-right .lang-switcher { display: none; } }

/* Mobile nav panel */
.mobile-nav {
  display: none; position: fixed; inset: 0; background: var(--ink); z-index: 300;
  flex-direction: column; padding: 20px 24px; overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.mobile-nav-close { background: none; border: none; color: #fff; font-size: 28px; cursor: pointer; line-height: 1; }
.mobile-nav-links { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-links a {
  color: rgba(255,255,255,0.85); font-size: 17px; padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08); transition: color 0.2s;
}
.mobile-nav-links a:hover { color: var(--light); }
.mobile-nav-links .section-label { color: var(--light); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin: 20px 0 8px; }
.mobile-nav-cta { margin-top: 24px; }
.mobile-lang { display: flex; gap: 12px; margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); }
.mobile-lang a { color: rgba(255,255,255,0.6); font-size: 15px; font-weight: 600; }
.mobile-lang a.active { color: #fff; }

/* ── Mega menu ────────────────────────────────────────────────── */
.has-mega { position: relative; }
.has-mega > a, .has-mega > button {
  background: none; border: none; cursor: pointer; display: flex; align-items: center; gap: 4px;
  color: rgba(255,255,255,0.78); font-size: 14px; padding: 8px 12px; border-radius: 6px;
  transition: color 0.2s, background 0.2s; white-space: nowrap; font-family: inherit;
}
.has-mega > button:hover, .has-mega:hover > button { color: #fff; background: rgba(255,255,255,0.1); }
.has-mega .chevron { width: 14px; height: 14px; transition: transform 0.2s; }
.has-mega:hover .chevron { transform: rotate(180deg); }
.mega-dropdown {
  display: none; position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%); width: 720px;
  background: #fff; border-radius: 12px; box-shadow: 0 8px 32px rgba(10,47,57,0.18);
  padding: 28px 28px 20px; z-index: 400;
  border: 1px solid var(--line);
}
.has-mega:hover .mega-dropdown { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mega-cat-label {
  font-size: 11px; font-weight: 700; color: var(--warm); text-transform: uppercase;
  letter-spacing: 0.1em; margin-bottom: 10px;
}
.mega-links { display: flex; flex-direction: column; gap: 2px; }
.mega-links a {
  color: var(--ink); font-size: 14px; padding: 7px 10px; border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.mega-links a:hover { background: var(--palest); color: var(--primary); }
.mega-all-link {
  grid-column: 1 / -1; display: block; text-align: center; padding: 12px;
  border-top: 1px solid var(--line); margin-top: 8px; font-size: 14px;
  font-weight: 600; color: var(--primary);
}
.mega-all-link:hover { color: var(--medium); }

/* ── Breadcrumb ───────────────────────────────────────────────── */
.breadcrumb {
  max-width: 1140px; margin: 0 auto; padding: 16px 24px 0;
  font-size: 13px; color: var(--warm); display: flex; align-items: center; flex-wrap: wrap; gap: 4px;
}
.breadcrumb a { color: var(--warm); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { opacity: 0.5; }

/* ── Page hero ────────────────────────────────────────────────── */
.page-hero {
  background: var(--ink); padding: 48px 0 56px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1600&q=60') center/cover;
  opacity: 0.10;
}
.hero-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 24px;
  position: relative; z-index: 2;
}
.hero-eyebrow {
  color: var(--light); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 18px;
}
.hero-inner h1 {
  font-family: 'DM Serif Display', Georgia, serif; font-weight: 400;
  font-size: clamp(30px, 4.5vw, 52px); color: #fff;
  line-height: 1.12; max-width: 800px; margin-bottom: 22px;
}
.hero-inner .lead {
  font-size: 17px; color: rgba(255,255,255,0.78);
  max-width: 660px; margin-bottom: 36px; line-height: 1.75;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Buttons ──────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--medium); color: #fff; padding: 13px 26px;
  border-radius: var(--radius); font-size: 15px; font-weight: 600;
  transition: background 0.2s, transform 0.15s; border: none; cursor: pointer;
}
.btn-primary:hover { background: #1a7a8e; color: #fff; transform: translateY(-1px); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.10); color: #fff; padding: 13px 26px;
  border-radius: var(--radius); font-size: 15px; font-weight: 500;
  border: 1px solid rgba(255,255,255,0.25); transition: background 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.18); color: #fff; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--primary); padding: 10px 22px;
  border-radius: var(--radius); font-size: 14px; font-weight: 600;
  border: 1.5px solid var(--primary); transition: all 0.2s;
}
.btn-outline:hover { background: var(--primary); color: #fff; }

/* ── Trust strip ──────────────────────────────────────────────── */
.trust-strip {
  background: var(--palest); border-bottom: 1px solid var(--line); padding: 18px 0;
}
.trust-strip-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 24px;
  display: flex; gap: 28px; align-items: center; flex-wrap: wrap; font-size: 13px; color: var(--warm);
}
.trust-strip-inner strong { color: var(--primary); }
.trust-sep { color: var(--line); }

/* ── At a Glance box ──────────────────────────────────────────── */
.at-a-glance {
  background: var(--palest); border: 1px solid var(--line); border-radius: 10px;
  padding: 24px 28px; margin-bottom: 40px;
}
.at-a-glance h2 {
  font-size: 14px; font-weight: 700; color: var(--primary);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px;
}
.glance-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; }
@media (max-width: 640px) { .glance-grid { grid-template-columns: 1fr; } }
.glance-item { display: flex; gap: 8px; font-size: 14px; color: var(--body-text); }
.glance-item::before { content: '✓'; color: var(--medium); font-weight: 700; flex-shrink: 0; }

/* ── Page body layout ─────────────────────────────────────────── */
.page-body {
  max-width: 1140px; margin: 0 auto; padding: 56px 24px 80px;
  display: grid; grid-template-columns: 1fr 340px; gap: 64px; align-items: start;
}
@media (max-width: 900px) { .page-body { grid-template-columns: 1fr; } .sidebar { order: -1; } }

/* ── Content sections ─────────────────────────────────────────── */
.content-section { margin-bottom: 52px; }
.content-section h2 {
  font-family: 'DM Serif Display', serif; font-size: 28px; color: var(--ink);
  margin-bottom: 18px; line-height: 1.2;
}
.content-section h3 { font-size: 17px; font-weight: 600; color: var(--primary); margin: 26px 0 10px; }
.content-section h4 { font-size: 15px; font-weight: 600; color: var(--ink); margin: 18px 0 8px; }
.content-section p { font-size: 16px; line-height: 1.8; color: var(--body-text); margin-bottom: 14px; }
.content-section ul, .content-section ol { margin: 0 0 18px 22px; }
.content-section li { font-size: 16px; line-height: 1.7; margin-bottom: 7px; color: var(--body-text); }
.content-section strong { color: var(--ink); }
.content-section table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 15px; overflow-x: auto; display: block; }
.content-section th { background: var(--primary); color: #fff; padding: 11px 16px; text-align: left; font-weight: 600; white-space: nowrap; }
.content-section td { padding: 11px 16px; border-bottom: 1px solid var(--line); color: var(--body-text); }
.content-section tr:hover td { background: var(--palest); }

/* ── Card grids ───────────────────────────────────────────────── */
.types-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 14px; margin: 22px 0; }
.type-card { background: var(--palest); border: 1px solid var(--line); border-radius: 10px; padding: 20px; }
.type-card h3 { font-size: 15px; font-weight: 700; color: var(--primary); margin: 0 0 7px; }
.type-card p { font-size: 14px; color: var(--warm); margin: 0; line-height: 1.5; }

.adv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 22px 0; }
@media (max-width: 640px) { .adv-grid { grid-template-columns: 1fr; } }
.adv-item { display: flex; gap: 14px; padding: 18px; background: var(--palest); border-radius: 8px; border-left: 3px solid var(--medium); }
.adv-icon { font-size: 20px; flex-shrink: 0; }
.adv-body h4 { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.adv-body p { font-size: 14px; color: var(--warm); margin: 0; }

/* ── Process steps ────────────────────────────────────────────── */
.process-steps { margin: 22px 0; }
.step { display: flex; gap: 18px; margin-bottom: 22px; }
.step-num {
  min-width: 38px; height: 38px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; flex-shrink: 0;
}
.step-body h4 { font-size: 16px; font-weight: 600; color: var(--ink); margin-bottom: 5px; }
.step-body p { font-size: 15px; color: var(--warm); margin: 0; }

/* ── FAQ ──────────────────────────────────────────────────────── */
.faq-list { margin: 22px 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  font-size: 16px; font-weight: 600; color: var(--ink);
  padding: 18px 0; cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 12px; list-style: none; user-select: none;
}
.faq-q::-webkit-details-marker { display: none; }
details[open] .faq-q { color: var(--primary); }
.faq-q .faq-arrow { color: var(--medium); flex-shrink: 0; transition: transform 0.2s; }
details[open] .faq-q .faq-arrow { transform: rotate(180deg); }
.faq-a { font-size: 15px; color: var(--body-text); line-height: 1.75; padding-bottom: 18px; }

/* ── Sidebar ──────────────────────────────────────────────────── */
.sidebar { position: sticky; top: 80px; }
.sidebar-card { background: var(--ink); color: #fff; border-radius: 12px; padding: 28px; margin-bottom: 20px; }
.sidebar-card h3 { font-family: 'DM Serif Display', serif; font-size: 21px; margin-bottom: 10px; }
.sidebar-card p { color: rgba(255,255,255,0.72); font-size: 14px; margin-bottom: 18px; line-height: 1.6; }
.sidebar-card .btn-primary { width: 100%; justify-content: center; margin-bottom: 10px; }
.sidebar-card .tel-link { display: block; text-align: center; color: rgba(255,255,255,0.78); font-size: 17px; font-weight: 600; }
.sidebar-card .tel-link:hover { color: #fff; }
.sidebar-info { background: var(--palest); border-radius: 10px; padding: 22px; border: 1px solid var(--line); margin-bottom: 20px; }
.sidebar-info h4 { font-size: 12px; font-weight: 700; color: var(--primary); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.07em; }
.sidebar-info ul { list-style: none; padding: 0; margin: 0; }
.sidebar-info li { font-size: 14px; color: var(--warm); padding: 7px 0; border-bottom: 1px solid var(--line); display: flex; align-items: flex-start; gap: 8px; line-height: 1.4; }
.sidebar-info li:last-child { border-bottom: none; }
.sidebar-info li::before { content: '✓'; color: var(--medium); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ── Related services ─────────────────────────────────────────── */
.related-services { margin-top: 56px; padding-top: 40px; border-top: 2px solid var(--line); }
.related-services h2 { font-family: 'DM Serif Display', serif; font-size: 26px; color: var(--ink); margin-bottom: 20px; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px; }
.related-card {
  display: block; padding: 20px; background: var(--palest);
  border: 1px solid var(--line); border-radius: 10px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.related-card:hover { border-color: var(--medium); box-shadow: var(--shadow); }
.related-card h3 { font-size: 15px; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.related-card p { font-size: 13px; color: var(--warm); margin: 0; line-height: 1.4; }

/* ── Solutions hub grid ───────────────────────────────────────── */
.solutions-section { margin-bottom: 56px; }
.solutions-section h2 {
  font-family: 'DM Serif Display', serif; font-size: 28px; color: var(--ink);
  margin-bottom: 6px;
}
.solutions-section .section-desc { font-size: 16px; color: var(--warm); margin-bottom: 24px; }
.sol-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; }
.sol-card {
  display: block; padding: 22px 20px; background: var(--palest);
  border: 1px solid var(--line); border-radius: 10px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}
.sol-card:hover { border-color: var(--medium); box-shadow: var(--shadow); transform: translateY(-2px); }
.sol-card h3 { font-size: 15px; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.sol-card p { font-size: 13px; color: var(--warm); margin: 0; line-height: 1.45; }
.sol-card .sol-cta { font-size: 12px; font-weight: 600; color: var(--medium); margin-top: 12px; display: block; }

/* ── Homepage hero ────────────────────────────────────────────── */
.home-hero {
  background: var(--ink); padding: 96px 0 100px;
  position: relative; overflow: hidden;
}
.home-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1800&q=50') center/cover;
  opacity: 0.08;
}
.home-hero-inner { max-width: 1140px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }
.home-hero-inner h1 {
  font-family: 'DM Serif Display', Georgia, serif; font-weight: 400;
  font-size: clamp(36px, 5.5vw, 64px); color: #fff;
  line-height: 1.08; max-width: 820px; margin-bottom: 24px;
}
.home-hero-inner .lead {
  font-size: 18px; color: rgba(255,255,255,0.75);
  max-width: 600px; margin-bottom: 40px; line-height: 1.7;
}

/* ── Homepage featured section ────────────────────────────────── */
.featured-section { padding: 72px 0; }
.featured-inner { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section-label {
  font-size: 11px; font-weight: 700; color: var(--medium);
  text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 8px;
}
.featured-inner h2 {
  font-family: 'DM Serif Display', serif; font-size: 34px; color: var(--ink);
  margin-bottom: 8px; line-height: 1.2;
}
.featured-inner .section-desc { font-size: 17px; color: var(--warm); margin-bottom: 36px; max-width: 600px; }
.featured-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; margin-bottom: 28px; }
.feat-card {
  display: block; padding: 24px 20px; background: var(--palest);
  border: 1px solid var(--line); border-radius: 12px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}
.feat-card:hover { border-color: var(--medium); box-shadow: var(--shadow); transform: translateY(-2px); }
.feat-card h3 { font-size: 15px; font-weight: 700; color: var(--primary); margin-bottom: 7px; }
.feat-card p { font-size: 13px; color: var(--warm); margin: 0; line-height: 1.45; }
.feat-card .feat-cta { font-size: 12px; font-weight: 600; color: var(--medium); margin-top: 12px; display: block; }
.view-all-link { font-size: 15px; font-weight: 600; color: var(--primary); }
.view-all-link:hover { color: var(--medium); }

/* Alternating bg for sections */
.featured-section.alt { background: var(--palest); }
.featured-section.dark { background: var(--ink); }
.featured-section.dark h2, .featured-section.dark p, .featured-section.dark .section-label { color: #fff; }
.featured-section.dark .section-label { color: var(--light); }
.featured-section.dark .feat-card { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1); }
.featured-section.dark .feat-card h3 { color: var(--light); }
.featured-section.dark .feat-card p { color: rgba(255,255,255,0.65); }
.featured-section.dark .view-all-link { color: var(--light); }

/* ── Trust block (homepage) ───────────────────────────────────── */
.trust-block { background: var(--ink); padding: 60px 0; }
.trust-block-inner { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.trust-block-inner h2 { font-family: 'DM Serif Display', serif; font-size: 30px; color: #fff; margin-bottom: 32px; }
.trust-stats { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 24px; }
.trust-stat .num { font-family: 'DM Serif Display', serif; font-size: 40px; color: var(--light); line-height: 1; margin-bottom: 6px; }
.trust-stat .label { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.4; }

/* ── Market access section ────────────────────────────────────── */
.market-section { padding: 64px 0; background: var(--palest); }
.market-inner { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.market-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 14px; margin-top: 28px; }
.market-item { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 20px 16px; display: flex; align-items: center; gap: 12px; }
.market-flag { font-size: 28px; flex-shrink: 0; }
.market-info h4 { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.market-info p { font-size: 12px; color: var(--warm); margin: 0; }

/* ── Footer ───────────────────────────────────────────────────── */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.55); padding: 40px 24px 28px; margin-top: 80px; }
.footer-inner { max-width: 1140px; margin: 0 auto; }
.footer-cols { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 32px; }
@media (max-width: 780px) { .footer-cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-cols { grid-template-columns: 1fr; } }
.footer-brand p { font-size: 13px; line-height: 1.7; margin: 12px 0 0; max-width: 280px; }
.footer-col h4 { font-size: 11px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col li a { font-size: 13px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col li a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
  font-size: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: #fff; }

/* ── Utility ──────────────────────────────────────────────────── */
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.page-full { max-width: 1140px; margin: 0 auto; padding: 56px 24px 80px; }
.badge { display: inline-block; font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 4px; text-transform: uppercase; letter-spacing: 0.05em; }
.badge-blue { background: var(--palest); color: var(--primary); border: 1px solid var(--line); }
.badge-green { background: #E6F7EF; color: var(--green); }
.badge-amber { background: #FEF3C7; color: #92400E; }
.callout { background: var(--palest); border-left: 3px solid var(--medium); border-radius: 0 8px 8px 0; padding: 16px 20px; margin: 20px 0; font-size: 15px; color: var(--body-text); line-height: 1.7; }
.divider { border: none; border-top: 1px solid var(--line); margin: 40px 0; }
