:root {
  --navy: #0b1f3a;
  --navy-2: #0f2a4a;
  --ink: #101826;
  --accent: #17a673;
  --accent-2: #22c58f;
  --bg: #f6f8fb;
  --card: #ffffff;
  --line: #e6eaf0;
  --muted: #5b6675;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(15, 42, 74, 0.08);
  --shadow-lg: 0 24px 60px rgba(15, 42, 74, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
h1, h2, h3, h4 { line-height: 1.2; letter-spacing: -0.01em; }
p { color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-lg { padding: 0.9rem 1.9rem; font-size: 1rem; }
.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.88rem; }
.btn-primary { background: linear-gradient(135deg, var(--accent-2), var(--accent)); color: #06251a; box-shadow: 0 10px 24px rgba(23, 166, 115, 0.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(23, 166, 115, 0.42); }
.btn-outline { border-color: rgba(255,255,255,0.5); color: white; background: transparent; }
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-ghost { color: var(--navy); background: rgba(15, 42, 74, 0.06); }
.btn-ghost:hover { background: rgba(15, 42, 74, 0.12); }

/* ---------- Nav ---------- */
.nav-toggle-checkbox { display: none; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 31, 58, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
  color: white;
}
.brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; color: white; font-weight: 700; font-size: 1.05rem; }
.brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 10px;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #06251a; font-weight: 800; font-size: 0.85rem;
}
.nav-links { display: flex; align-items: center; gap: 1.75rem; }
.nav-links a:not(.btn) { text-decoration: none; color: rgba(255,255,255,0.85); font-size: 0.94rem; font-weight: 500; }
.nav-links a:not(.btn):hover { color: white; }
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 0.4rem; }
.nav-burger span { width: 24px; height: 2px; background: white; border-radius: 2px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(1200px 600px at 15% -10%, #123a63 0%, var(--navy-2) 45%, var(--navy) 100%);
  color: white;
  padding: 5.5rem 1.5rem 6.5rem;
  overflow: hidden;
}
.hero-glow {
  position: absolute; inset: -20% -10% auto -10%; height: 60%;
  background: radial-gradient(600px 300px at 80% 0%, rgba(34, 197, 143, 0.25), transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 760px; margin: 0 auto; text-align: center; }
.eyebrow {
  display: inline-block; margin: 0 auto 1.25rem; padding: 0.4rem 0.9rem;
  border-radius: 999px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.9); letter-spacing: 0.01em;
}
.hero h1 { font-size: clamp(2.1rem, 4.2vw, 3.1rem); margin: 0 0 1.1rem; font-weight: 800; }
.hero-sub { font-size: 1.12rem; color: rgba(255,255,255,0.82); max-width: 620px; margin: 0 auto 2.2rem; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.trust-badges {
  list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem 0.9rem;
  padding: 0; margin: 0; font-size: 0.85rem; color: rgba(255,255,255,0.75);
}
.trust-badges li { padding: 0.35rem 0.85rem; border-radius: 999px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); }

/* ---------- Section heads ---------- */
.section-head { max-width: 640px; margin: 0 auto 3rem; text-align: center; }
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--navy); margin-bottom: 0.7rem; }
.section-head.light h2 { color: white; }
.section-head.light p { color: rgba(255,255,255,0.72); }

/* ---------- Features ---------- */
.features { max-width: 1180px; margin: 0 auto; padding: 6rem 1.5rem 1rem; }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.feature-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.9rem; box-shadow: var(--shadow); transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.icon-badge {
  width: 46px; height: 46px; border-radius: 12px; margin-bottom: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(23,166,115,0.14), rgba(15,42,74,0.08));
  color: var(--accent);
}
.icon-badge svg { width: 24px; height: 24px; }
.feature-card h3 { margin: 0 0 0.55rem; color: var(--navy); font-size: 1.1rem; }
.feature-card p { margin: 0; font-size: 0.95rem; }

/* ---------- Pricing comparison ---------- */
.compare { max-width: 900px; margin: 0 auto; padding: 6rem 1.5rem 1rem; text-align: center; }
.compare-table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
.compare-table { width: 100%; border-collapse: collapse; background: var(--card); font-size: 0.92rem; }
.compare-table th, .compare-table td { padding: 0.9rem 1.1rem; text-align: left; border-bottom: 1px solid var(--line); }
.compare-table th { background: var(--navy); color: white; font-weight: 600; font-size: 0.85rem; }
.compare-table th:first-child { border-top-left-radius: var(--radius); }
.compare-table th:last-child { border-top-right-radius: var(--radius); }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table td:first-child { font-weight: 600; color: var(--navy); }
.compare-table td.yes { color: #0f7a4f; }
.compare-table td.no { color: var(--muted); }
.adp-badge {
  display: inline-block; margin-top: 1.5rem; padding: 0.7rem 1.3rem; border-radius: 999px;
  background: rgba(23,166,115,0.1); border: 1px solid rgba(23,166,115,0.25);
  color: var(--navy); font-size: 0.9rem; font-weight: 500;
}

/* ---------- Portals ---------- */
.portals { max-width: 1180px; margin: 0 auto; padding: 6rem 1.5rem; }
.portal-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.4rem; }
.portal-card {
  background: linear-gradient(180deg, #ffffff, #fbfcfe);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem;
  box-shadow: var(--shadow);
}
.portal-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--accent); background: rgba(23,166,115,0.1); padding: 0.3rem 0.65rem; border-radius: 999px; margin-bottom: 0.9rem;
}
.portal-card h3 { margin: 0 0 0.5rem; color: var(--navy); font-size: 1.05rem; }
.portal-card p { margin: 0; font-size: 0.92rem; }

/* ---------- Security ---------- */
.security { background: var(--navy); padding: 6rem 1.5rem; }
.security-inner { max-width: 1080px; margin: 0 auto; }
.security-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.6rem; }
.security-item { border-left: 2px solid rgba(34, 197, 143, 0.5); padding-left: 1.1rem; }
.security-item h4 { color: white; margin: 0 0 0.4rem; font-size: 1.02rem; }
.security-item p { color: rgba(255,255,255,0.7); margin: 0; font-size: 0.92rem; }

/* ---------- CTA ---------- */
.cta { padding: 6rem 1.5rem; }
.cta-inner {
  max-width: 780px; margin: 0 auto; text-align: center;
  background: linear-gradient(135deg, #ffffff, #f0f6f3);
  border: 1px solid var(--line); border-radius: 24px; padding: 3.2rem 2rem;
  box-shadow: var(--shadow-lg);
}
.cta-inner h2 { color: var(--navy); margin: 0 0 0.8rem; font-size: clamp(1.5rem, 3vw, 2rem); }
.cta-inner p { max-width: 520px; margin: 0 auto 2rem; }
.cta .hero-actions { margin-bottom: 0; }
.cta .btn-outline { border-color: rgba(15,42,74,0.25); color: var(--navy); }
.cta .btn-outline:hover { background: rgba(15,42,74,0.06); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); border-top: 1px solid rgba(255,255,255,0.08); padding: 2.5rem 1.5rem 3rem; }
.footer-inner { max-width: 780px; margin: 0 auto; text-align: center; color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.footer-brand { display: flex; align-items: center; justify-content: center; gap: 0.6rem; color: white; font-weight: 700; margin-bottom: 1rem; }
.footer-inner a { text-decoration: none; color: rgba(255,255,255,0.85); }
.footer-inner a:hover { color: white; }
.footer-inner p { color: rgba(255,255,255,0.65); margin: 0.3rem 0; }
.footer-fine { margin-top: 1rem !important; font-size: 0.8rem; color: rgba(255,255,255,0.45) !important; }

/* ---------- Responsive ---------- */
@media (max-width: 820px) {
  .nav-burger { display: flex; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--navy-2); border-top: 1px solid rgba(255,255,255,0.08);
    max-height: 0; overflow: hidden; transition: max-height 0.25s ease;
  }
  .nav-links a { padding: 1rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-links a.btn { margin: 1rem 1.5rem; text-align: center; justify-content: center; }
  .nav-toggle-checkbox:checked ~ .site-header .nav-links,
  #nav-toggle:checked ~ .site-header .nav-links { max-height: 480px; }
}
@media (max-width: 480px) {
  .hero { padding: 4rem 1.25rem 5rem; }
  .features, .portals, .security, .cta { padding-left: 1.25rem; padding-right: 1.25rem; }
}

/* =====================================================================
   Site-wide additions: multi-page nav, page heroes, mockups, FAQ,
   how-it-works, tiers, resources, expanded footer.
   ===================================================================== */

/* ---------- Nav (wider link set) ---------- */
.nav { max-width: 1280px; gap: 0.75rem; }
.nav-links { gap: 1.15rem; }
.nav-links a:not(.btn) { font-size: 0.89rem; white-space: nowrap; }
.nav-links a.is-active:not(.btn) { color: white; position: relative; }
.nav-links a.is-active:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
  background: var(--accent-2); border-radius: 2px;
}
@media (max-width: 1180px) {
  .nav-burger { display: flex; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--navy-2); border-top: 1px solid rgba(255,255,255,0.08);
    max-height: 0; overflow: hidden; transition: max-height 0.25s ease;
  }
  .nav-links a { padding: 1rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-links a.btn { margin: 1rem 1.5rem; text-align: center; justify-content: center; }
  .nav-toggle-checkbox:checked ~ .site-header .nav-links,
  #nav-toggle:checked ~ .site-header .nav-links { max-height: 640px; }
  .nav-links a.is-active:not(.btn)::after { display: none; }
  .nav-links a.is-active:not(.btn) { color: var(--accent-2); }
}

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { max-width: 1180px; margin: 0 auto; padding: 1rem 1.5rem 0; font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.breadcrumbs a { color: rgba(255,255,255,0.75); text-decoration: none; }
.breadcrumbs a:hover { color: white; }
.breadcrumbs span[aria-hidden] { margin: 0 0.4rem; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  background: radial-gradient(1200px 600px at 15% -10%, #123a63 0%, var(--navy-2) 45%, var(--navy) 100%);
  color: white;
  padding: 3.5rem 1.5rem 4.5rem;
  overflow: hidden;
}
.page-hero-inner { position: relative; max-width: 820px; margin: 0 auto; text-align: center; }
.page-hero h1 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin: 0 0 1rem; font-weight: 800; }
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.82); max-width: 640px; margin: 0 auto 1.6rem; }
.page-hero .hero-actions { margin-bottom: 0; }

/* ---------- Prose sections (inner pages) ---------- */
.prose-section { max-width: 800px; margin: 0 auto; padding: 5rem 1.5rem 1rem; }
.prose-section h2 { color: var(--navy); font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin: 0 0 1rem; }
.prose-section h2:not(:first-child) { margin-top: 2.6rem; }
.prose-section p { font-size: 1rem; margin: 0 0 1rem; }
.prose-section ul { margin: 0 0 1.2rem; padding-left: 1.3rem; color: var(--muted); }
.prose-section li { margin-bottom: 0.5rem; }
.prose-section a.inline-link { color: var(--accent); font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(23,166,115,0.35); }
.prose-section a.inline-link:hover { border-color: var(--accent); }

/* ---------- How it works ---------- */
.steps { max-width: 1180px; margin: 0 auto; padding: 6rem 1.5rem 1rem; }
.step-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; counter-reset: step; }
.step-card { position: relative; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem 1.6rem; box-shadow: var(--shadow); }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%; margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--accent-2), var(--accent)); color: #06251a;
  font-weight: 800; font-size: 0.95rem;
}
.step-card h3 { margin: 0 0 0.5rem; color: var(--navy); font-size: 1.05rem; }
.step-card p { margin: 0; font-size: 0.92rem; }

/* ---------- UI mockup frames (illustrative, not literal screenshots) ---------- */
.mockups { max-width: 1180px; margin: 0 auto; padding: 6rem 1.5rem 1rem; }
.mockup-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; margin-bottom: 5rem; }
.mockup-row.reverse .mockup-copy { order: 2; }
.mockup-row.reverse .mockup-frame { order: 1; }
.mockup-copy .eyebrow-sm { display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.6rem; }
.mockup-copy h3 { color: var(--navy); font-size: 1.4rem; margin: 0 0 0.7rem; }
.mockup-copy p { margin: 0 0 0.9rem; }
.mockup-copy ul { margin: 0; padding-left: 1.2rem; color: var(--muted); font-size: 0.93rem; }
.mockup-copy li { margin-bottom: 0.4rem; }
.mockup-frame {
  background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.mockup-topbar { display: flex; align-items: center; gap: 0.4rem; padding: 0.65rem 0.9rem; background: #eef1f6; border-bottom: 1px solid var(--line); }
.mockup-dot { width: 9px; height: 9px; border-radius: 50%; background: #d3d9e2; }
.mockup-url { margin-left: 0.6rem; font-size: 0.72rem; color: var(--muted); background: white; border: 1px solid var(--line); border-radius: 999px; padding: 0.15rem 0.7rem; }
.mockup-body { padding: 1.1rem; font-size: 0.8rem; }
.mockup-caption { text-align: center; font-size: 0.78rem; color: var(--muted); margin: 0.6rem 0 0; }

.mui-stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; margin-bottom: 0.8rem; }
.mui-stat { background: #f6f8fb; border: 1px solid var(--line); border-radius: 10px; padding: 0.6rem 0.7rem; }
.mui-stat-label { display: block; font-size: 0.68rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em; }
.mui-stat-value { display: block; font-weight: 700; color: var(--navy); font-size: 0.95rem; margin-top: 0.15rem; }
.mui-list { border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.mui-row { display: flex; align-items: center; justify-content: space-between; padding: 0.55rem 0.8rem; border-bottom: 1px solid var(--line); background: white; }
.mui-row:last-child { border-bottom: none; }
.mui-row.head { background: #f6f8fb; font-weight: 700; color: var(--navy); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.03em; }
.mui-name { font-weight: 600; color: var(--ink); }
.mui-sub { color: var(--muted); font-size: 0.74rem; }
.mui-pill { font-size: 0.68rem; font-weight: 700; padding: 0.15rem 0.55rem; border-radius: 999px; }
.mui-pill.green { background: rgba(23,166,115,0.12); color: #0f7a4f; }
.mui-pill.gray { background: #eef1f6; color: var(--muted); }
.mui-btn { font-size: 0.72rem; font-weight: 700; color: white; background: var(--accent); border-radius: 999px; padding: 0.3rem 0.75rem; }
.mui-btn.outline { background: transparent; border: 1px solid var(--line); color: var(--navy); }
.mui-progress { height: 6px; border-radius: 999px; background: #eef1f6; overflow: hidden; margin-top: 0.3rem; }
.mui-progress > span { display: block; height: 100%; background: linear-gradient(90deg, var(--accent-2), var(--accent)); }

@media (max-width: 860px) {
  .mockup-row, .mockup-row.reverse { grid-template-columns: 1fr; }
  .mockup-row.reverse .mockup-copy, .mockup-row.reverse .mockup-frame { order: initial; }
}

/* ---------- Comparison badge row (states / coverage) ---------- */
.badge-row { list-style: none; display: flex; flex-wrap: wrap; gap: 0.6rem; padding: 0; margin: 1.2rem 0 0; }
.badge-row li { padding: 0.4rem 0.9rem; border-radius: 999px; background: rgba(23,166,115,0.1); border: 1px solid rgba(23,166,115,0.25); color: var(--navy); font-size: 0.85rem; font-weight: 600; }
.badge-row li.muted { background: #f0f2f6; border-color: var(--line); color: var(--muted); font-weight: 500; }

/* ---------- Pricing tiers (marketing) ---------- */
.tier-section { max-width: 1180px; margin: 0 auto; padding: 6rem 1.5rem 1rem; }
.tier-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.6rem; align-items: stretch; }
.tier-card-m { position: relative; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.7rem; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.tier-card-m.popular { border-color: var(--accent); box-shadow: var(--shadow-lg); }
.tier-popular-tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent-2), var(--accent)); color: #06251a;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.03em; padding: 0.3rem 0.85rem; border-radius: 999px;
}
.tier-card-m h3 { color: var(--navy); font-size: 1.2rem; margin: 0 0 0.3rem; }
.tier-card-m .tier-target { color: var(--muted); font-size: 0.88rem; margin: 0 0 1.1rem; }
.tier-card-m .tier-price-m { color: var(--navy); margin-bottom: 1.3rem; }
.tier-card-m .tier-price-m .amt { font-size: 2rem; font-weight: 800; }
.tier-card-m .tier-price-m .unit { font-size: 0.85rem; color: var(--muted); font-weight: 500; }
.tier-card-m ul { list-style: none; padding: 0; margin: 0 0 1.6rem; flex: 1; }
.tier-card-m li { display: flex; gap: 0.5rem; padding: 0.4rem 0; font-size: 0.9rem; color: var(--ink); }
.tier-card-m li::before { content: "✓"; color: var(--accent); font-weight: 800; flex-shrink: 0; }
.tier-fine { text-align: center; color: var(--muted); font-size: 0.88rem; margin-top: 2rem; }

/* ---------- FAQ (native details/summary, no JS needed) ---------- */
.faq-section { max-width: 820px; margin: 0 auto; padding: 6rem 1.5rem 1rem; }
.faq-item { background: var(--card); border: 1px solid var(--line); border-radius: 12px; margin-bottom: 0.9rem; box-shadow: var(--shadow); overflow: hidden; }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 1.15rem 1.4rem; font-weight: 650; color: var(--navy);
  font-size: 0.98rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.3rem; color: var(--accent); font-weight: 400; flex-shrink: 0; }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item .faq-a { padding: 0 1.4rem 1.3rem; margin: 0; font-size: 0.93rem; }
.faq-cat { color: var(--navy); font-size: 1.05rem; margin: 2.4rem 0 1rem; }
.faq-cat:first-child { margin-top: 0; }

/* ---------- Resources ---------- */
.resource-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.resource-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem; box-shadow: var(--shadow); }
.resource-card h3 { color: var(--navy); font-size: 1.05rem; margin: 0 0 0.6rem; }
.resource-card p { font-size: 0.92rem; margin: 0 0 0.9rem; }
.resource-card a { color: var(--accent); font-weight: 600; font-size: 0.88rem; text-decoration: none; }
.resource-card a:hover { text-decoration: underline; }
.resource-tag { display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.6rem; }

/* ---------- Expanded footer ---------- */
.site-footer { padding: 3.5rem 1.5rem 2.5rem; }
.footer-grid {
  max-width: 1180px; margin: 0 auto 2.5rem; display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr); gap: 2rem;
  text-align: left; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-grid .footer-brand { justify-content: flex-start; margin-bottom: 0.9rem; }
.footer-about p { color: rgba(255,255,255,0.65); font-size: 0.88rem; margin: 0 0 0.3rem; }
.footer-col h5 { color: white; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.05em; margin: 0 0 0.9rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a { text-decoration: none; color: rgba(255,255,255,0.72); font-size: 0.9rem; }
.footer-col a:hover { color: white; }
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); text-align: left; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}
