/* ==========================================================================
   PT MANDAR ITC SOLUTIONS — Design System
   Palette drawn from company logo: deep navy, healthcare blue, brand green, gold
   Type: Plus Jakarta Sans (display) + Inter (body/UI)
   ========================================================================== */

:root {
  /* Color tokens */
  --navy-950: #081b30;
  --navy-900: #0a2540;
  --navy-800: #123256;
  --navy-700: #1a4270;
  --blue-600: #1d63b5;
  --blue-500: #2879d6;
  --blue-100: #e4eefb;
  --green-600: #4c9a2a;
  --green-500: #63b23c;
  --gold-500: #f2a93b;
  --gold-600: #d98f22;

  --white: #ffffff;
  --gray-50: #f6f8fb;
  --gray-100: #edf1f6;
  --gray-200: #dfe5ed;
  --gray-300: #c4cddb;
  --gray-400: #8b97a8;
  --gray-600: #526073;
  --gray-700: #374151;
  --gray-900: #101826;

  /* Type */
  --font-display: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  /* Layout */
  --max-width: 1180px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(10, 37, 64, 0.06), 0 1px 3px rgba(10, 37, 64, 0.08);
  --shadow-md: 0 4px 14px rgba(10, 37, 64, 0.08), 0 2px 4px rgba(10, 37, 64, 0.06);
  --shadow-lg: 0 20px 40px rgba(10, 37, 64, 0.12);

  --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy-900);
  line-height: 1.18;
  margin: 0 0 0.5em 0;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 4.2vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3vw, 2.35rem); font-weight: 700; }
h3 { font-size: 1.28rem; font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; }

p { margin: 0 0 1em 0; color: var(--gray-700); }
a { color: var(--blue-600); text-decoration: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 88px 0; }
@media (max-width: 768px) { section { padding: 56px 0; } }

.section-tight { padding: 56px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--gold-500);
  display: inline-block;
}

.section-header { max-width: 680px; margin-bottom: 48px; }
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-header p { font-size: 1.08rem; color: var(--gray-600); }

.lede { font-size: 1.12rem; color: var(--gray-600); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold-500);
  color: var(--navy-950);
}
.btn-primary:hover { background: var(--gold-600); transform: translateY(-1px); }
.btn-secondary {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-outline-navy {
  background: transparent;
  border-color: var(--navy-900);
  color: var(--navy-900);
}
.btn-outline-navy:hover { background: var(--navy-900); color: var(--white); }
.btn-block { width: 100%; }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.94);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--gray-200);
}
.nav-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 34px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gray-700);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--navy-900); border-color: var(--gold-500); }
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-cta .btn { padding: 10px 20px; font-size: 0.88rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy-900);
  margin: 5px 0;
  transition: all var(--transition);
}

@media (max-width: 920px) {
  .nav-links { display: none; }
  .nav-cta .btn-desktop-only { display: none; }
  .nav-toggle { display: block; }
  .site-header.open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 8px 24px 20px;
    gap: 0;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    list-style: none;
    margin: 0;
  }
  .site-header.open .nav-links li { width: 100%; }
  .site-header.open .nav-links a {
    display: block;
    width: 100%;
    text-align: left;
    padding: 14px 4px;
    border-bottom: 1px solid var(--gray-100);
  }
  .site-header.open .nav-links li:last-child a { border-bottom: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(155deg, var(--navy-950) 0%, var(--navy-900) 46%, var(--navy-800) 100%);
  color: var(--white);
  overflow: hidden;
  padding: 108px 0 96px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 82% 18%, rgba(242,169,59,0.14), transparent 42%),
    radial-gradient(circle at 8% 92%, rgba(76,154,42,0.16), transparent 45%);
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 760px; }
.hero .eyebrow { color: var(--gold-500); }
.hero .eyebrow::before { background: var(--gold-500); }
.hero h1 { color: var(--white); }
.hero .lede { color: rgba(255,255,255,0.82); font-size: 1.18rem; max-width: 640px; }
.hero-sub { color: rgba(255,255,255,0.62); font-size: 0.98rem; max-width: 600px; margin-top: -8px; }

.page-hero {
  background: linear-gradient(155deg, var(--navy-950) 0%, var(--navy-900) 60%, var(--navy-800) 100%);
  color: var(--white);
  padding: 76px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 88% 10%, rgba(242,169,59,0.13), transparent 42%);
}
.page-hero-inner { position: relative; max-width: 700px; }
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero .lede { color: rgba(255,255,255,0.8); margin-bottom: 0; }
.page-hero .eyebrow { color: var(--gold-500); }
.page-hero .eyebrow::before { background: var(--gold-500); }

/* ---------- Capability strip ---------- */
.capability-strip {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 56px;
  padding-top: 28px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
}
.capability-strip span {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.02em;
  position: relative;
  padding-left: 16px;
}
.capability-strip span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
}

/* ---------- Cards ---------- */
.grid {
  display: grid;
  gap: 24px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 30px 28px;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--gray-300); }
.card .icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--blue-600);
}
.card h3 { margin-bottom: 8px; font-size: 1.12rem; }
.card p { margin-bottom: 0; font-size: 0.95rem; }
.card ul { margin: 12px 0 0; padding-left: 18px; color: var(--gray-600); font-size: 0.92rem; }
.card ul li { margin-bottom: 4px; }

.card-navy {
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: var(--white);
}
.card-navy h3, .card-navy h4 { color: var(--white); }
.card-navy p { color: rgba(255,255,255,0.72); }
.card-navy .icon { background: rgba(255,255,255,0.1); color: var(--gold-500); }

/* ---------- Service category blocks ---------- */
.service-block { margin-bottom: 64px; }
.service-block:last-child { margin-bottom: 0; }
.service-block-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-200);
}
.service-block-head .tag {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  color: var(--white);
  background: var(--blue-600);
  padding: 5px 12px;
  border-radius: 4px;
}
.service-block-head h2 { margin: 0; font-size: 1.5rem; }

/* ---------- Process / How We Work ---------- */
.process-list { display: flex; flex-direction: column; }
.process-step {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--gray-200);
}
.process-step:last-child { border-bottom: 1px solid var(--gray-200); }
.process-step .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--gray-300);
}
.process-step h3 { margin-bottom: 6px; }
.process-step p { margin-bottom: 0; }
@media (max-width: 620px) { .process-step { grid-template-columns: 50px 1fr; } .process-step .num { font-size: 1.2rem; } }

/* ---------- Ecosystem stack diagram (signature element) ---------- */
.stack-diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 20px 0 6px;
  position: relative;
}
.stack-node {
  width: 100%;
  max-width: 420px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy-900);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1;
}
.stack-node .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-500);
  flex-shrink: 0;
}
.stack-node small {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--gray-600);
  font-size: 0.82rem;
  margin-top: 2px;
}
.stack-connector {
  width: 2px;
  height: 30px;
  background: repeating-linear-gradient(180deg, var(--blue-500) 0 6px, transparent 6px 12px);
}

/* ---------- Timeline (Experience) ---------- */
.exp-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 700px) { .exp-grid { grid-template-columns: 1fr; } }
.exp-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 26px;
  background: var(--gray-50);
}
.exp-card .exp-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 10px;
}
.exp-card h3 { margin-bottom: 6px; font-size: 1.05rem; }
.exp-card p { margin-bottom: 0; font-size: 0.93rem; }

/* ---------- Sector / logo strip ---------- */
.sector-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.sector-pill {
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 10px 20px;
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy-800);
  background: var(--gray-50);
}

/* ---------- Why Mandar ---------- */
.why-row {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--gray-200);
}
.why-row:last-child { border-bottom: 1px solid var(--gray-200); }
.why-row .idx { font-family: var(--font-display); font-weight: 700; color: var(--gray-300); font-size: 1.1rem; }
.why-row h3 { margin-bottom: 4px; font-size: 1.05rem; }
.why-row p { margin-bottom: 0; }

/* ---------- Company info / legal ---------- */
.legal-table { width: 100%; border-collapse: collapse; }
.legal-table tr { border-top: 1px solid var(--gray-200); }
.legal-table tr:last-child { border-bottom: 1px solid var(--gray-200); }
.legal-table th, .legal-table td { text-align: left; padding: 16px 12px; vertical-align: top; }
.legal-table th {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--gray-600);
  font-size: 0.86rem;
  width: 42%;
}
.legal-table td { font-weight: 600; color: var(--navy-900); }

.kbli-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 20px;
}
@media (max-width: 820px) { .kbli-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .kbli-grid { grid-template-columns: 1fr; } }
.kbli-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
}
.kbli-code {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--blue-600);
  font-size: 0.82rem;
  flex-shrink: 0;
  padding-top: 1px;
}
.kbli-item span.name { font-size: 0.88rem; color: var(--gray-700); }

/* ---------- Stat strip (non-card credibility row) ---------- */
.stat-strip {
  display: flex;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.stat-item {
  flex: 1;
  padding: 36px 20px;
  text-align: center;
  border-left: 1px solid var(--gray-200);
}
.stat-item:first-child { border-left: none; }
.stat-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.9rem;
  color: var(--navy-900);
  line-height: 1.1;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-top: 8px;
}
@media (max-width: 700px) {
  .stat-strip { flex-wrap: wrap; }
  .stat-item { flex: 0 0 50%; border-left: none; border-top: 1px solid var(--gray-200); }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--gray-200); }
}

/* ---------- Feature / service / industry rows (non-card list pattern) ---------- */
.row-list { display: flex; flex-direction: column; }
.feature-row {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-top: 1px solid var(--gray-200);
  align-items: flex-start;
}
.row-list .feature-row:last-child { border-bottom: 1px solid var(--gray-200); }
.feature-row .icon-inline {
  width: 46px; height: 46px; border-radius: 10px;
  background: var(--blue-100); color: var(--blue-600);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feature-row h4 { margin-bottom: 5px; font-size: 1.02rem; }
.feature-row p { margin-bottom: 0; font-size: 0.93rem; }

.service-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  padding: 32px 0;
  border-top: 1px solid var(--gray-200);
  align-items: flex-start;
}
.row-list .service-row:last-child { border-bottom: 1px solid var(--gray-200); }
.service-row .icon-inline {
  width: 50px; height: 50px; border-radius: 12px;
  background: var(--navy-900); color: var(--gold-500);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.service-row-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.service-row h3 { margin-bottom: 6px; }
.service-row p { margin-bottom: 10px; font-size: 0.96rem; }
.service-row ul { margin: 6px 0 0; padding-left: 18px; color: var(--gray-600); font-size: 0.9rem; columns: 2; column-gap: 24px; }
.service-row ul li { margin-bottom: 5px; break-inside: avoid; }
@media (max-width: 620px) { .service-row ul { columns: 1; } }

.industry-row {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 22px;
  padding: 30px 0;
  border-top: 1px solid var(--gray-200);
  align-items: center;
}
.row-list .industry-row:last-child { border-bottom: 1px solid var(--gray-200); }
.industry-row .icon-inline {
  width: 50px; height: 50px; border-radius: 12px;
  background: var(--blue-100); color: var(--blue-600);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.industry-row h3 { margin-bottom: 5px; font-size: 1.08rem; display: flex; align-items: center; gap: 10px; }
.industry-row p { margin-bottom: 0; font-size: 0.93rem; }
.industry-row .chip {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green-600);
  background: rgba(76,154,42,0.1);
  padding: 3px 9px;
  border-radius: 999px;
}
.industry-row .arrow { color: var(--gray-400); flex-shrink: 0; }
@media (max-width: 620px) {
  .industry-row { grid-template-columns: 44px 1fr; }
  .industry-row .arrow { display: none; }
}


.cta-band {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242,169,59,0.18), transparent 70%);
}
.cta-band h2 { color: var(--white); margin-bottom: 8px; font-size: 1.6rem; }
.cta-band p { color: rgba(255,255,255,0.75); margin-bottom: 0; }
.cta-band .btn-row { flex-shrink: 0; }
@media (max-width: 760px) { .cta-band { flex-direction: column; align-items: flex-start; padding: 40px 28px; } }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-item { display: flex; gap: 16px; margin-bottom: 26px; }
.contact-item .icon-box {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--blue-100); color: var(--blue-600);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item h4 { margin-bottom: 3px; font-size: 0.98rem; }
.contact-item p { margin-bottom: 0; font-size: 0.94rem; }
.map-box {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  height: 320px;
}
.map-box iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Download card (Company Profile page) ---------- */
.download-card {
  border: 1.5px dashed var(--gray-300);
  border-radius: var(--radius-md);
  padding: 40px;
  text-align: center;
  background: var(--gray-50);
}
.download-card .icon-lg {
  width: 60px; height: 60px; border-radius: 14px;
  background: var(--navy-900); color: var(--gold-500);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,0.7); padding: 64px 0 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { height: 32px; margin-bottom: 14px; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.9rem; max-width: 280px; }
.footer-sub { font-family: var(--font-display); font-weight: 600; color: var(--gold-500); font-size: 0.78rem; margin-top: 4px; }
.footer-col h4 { color: var(--white); font-size: 0.85rem; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.65); font-size: 0.92rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.45);
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.badge-ghost {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gray-600);
  background: var(--gray-100);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
@media (max-width: 820px) { .two-col { grid-template-columns: 1fr; gap: 32px; } }
.bg-gray { background: var(--gray-50); }

/* Progressive enhancement: content is visible by default (no-JS, SEO crawlers).
   JS adds .fade-pending just before observing, then swaps to .in-view on scroll. */
.fade-up.fade-pending {
  opacity: 0;
  transform: translateY(16px);
}
.fade-up {
  transition: opacity 600ms ease, transform 600ms ease;
}
.fade-up.in-view { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .fade-up.fade-pending { opacity: 1; transform: none; transition: none; }
}
