/* Access Relief Design System — 2026 */
/* Mobile-first, WCAG 2.1 AA compliant */

:root {
  /* Brand palette — modernised health tech greens */
  --brand: #07354b;
  --brand-light: #0a4a68;
  --brand-dark: #052a3d;
  --accent: #57bfef;
  --accent-light: #e3f5fd;
  --green: #2d8a4e;
  --green-light: #e8f5ed;
  --green-dark: #1e6b38;
  --teal: #0d9488;
  --teal-light: #ccfbf1;

  /* Neutrals */
  --bg: #f8fafb;
  --bg-alt: #f0f4f7;
  --card: #ffffff;
  --text: #1a1f2e;
  --text-secondary: #4a5568;
  --text-muted: #718096;
  --border: #e2e8f0;
  --border-light: #edf2f7;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
  --shadow: 0 4px 16px rgba(0,0,0,.06);
  --shadow-lg: 0 8px 30px rgba(0,0,0,.08);
  --shadow-xl: 0 20px 50px rgba(0,0,0,.1);

  /* Typography */
  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-mono: 'SF Mono', 'Fira Code', monospace;

  /* Spacing — compact */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;

  /* Radius */
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --ease: cubic-bezier(.4, 0, .2, 1);
  --duration: 200ms;
  --duration-slow: 400ms;

  /* Layout */
  --max-width: 1200px;
  --nav-height: 72px;
  --nav-height-scrolled: 56px;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--brand); text-decoration: none; transition: color var(--duration) var(--ease); }
a:hover { color: var(--accent); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ===== Skip Link (a11y) ===== */
.skip-link {
  position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  background: var(--brand); color: #fff; padding: 12px 24px;
  border-radius: 0 0 var(--radius) var(--radius);
  z-index: 10000; font-weight: 600; font-size: 14px;
  transition: top var(--duration) var(--ease);
}
.skip-link:focus { top: 0; }

/* ===== Navigation ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: all var(--duration-slow) var(--ease);
  height: var(--nav-height);
}
.nav.scrolled {
  height: var(--nav-height-scrolled);
  box-shadow: 0 1px 12px rgba(0,0,0,.08);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.nav-brand img {
  height: 40px; border-radius: var(--radius-sm);
  transition: height var(--duration-slow) var(--ease);
}
.nav.scrolled .nav-brand img { height: 32px; }
.nav-brand span {
  font-size: 18px; font-weight: 700; color: var(--brand);
  letter-spacing: -.5px;
}
.nav-links {
  display: flex; align-items: center; gap: 8px;
}
.nav-links a {
  padding: 8px 16px; font-size: 14px; font-weight: 500;
  color: var(--text-secondary); border-radius: var(--radius);
  transition: all var(--duration) var(--ease);
}
.nav-links a:hover { color: var(--brand); background: var(--bg-alt); }
.nav-links a.active { color: var(--brand); font-weight: 600; }
.nav-cta {
  padding: 10px 22px !important;
  background: var(--brand) !important;
  color: #fff !important;
  border-radius: var(--radius-full) !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  transition: all var(--duration) var(--ease) !important;
}
.nav-cta:hover {
  background: var(--brand-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(7,53,75,.25) !important;
}

/* Mobile menu */
.nav-toggle {
  display: none; width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border-radius: var(--radius); background: var(--bg-alt);
}
.nav-toggle span {
  display: block; width: 20px; height: 2px;
  background: var(--brand); position: relative;
  transition: background var(--duration) var(--ease);
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ''; position: absolute; left: 0; width: 100%; height: 2px;
  background: var(--brand); transition: transform var(--duration) var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: var(--nav-height); left: 0; right: 0;
    flex-direction: column; background: var(--card);
    padding: 16px 24px; gap: 4px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%); opacity: 0;
    transition: all var(--duration-slow) var(--ease);
  }
  .nav-links.open { transform: translateY(0); opacity: 1; }
  .nav-links a { padding: 14px 16px; width: 100%; font-size: 16px; border-radius: var(--radius); }
  .nav-cta { text-align: center; margin-top: 8px; }
}

/* ===== Sections ===== */
.section {
  padding: var(--space-3xl) 24px;
}
.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-2xl);
}
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--green);
  margin-bottom: var(--space-md);
}
.section-label::before {
  content: ''; display: block; width: 24px; height: 2px;
  background: var(--green); border-radius: 1px;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800; letter-spacing: -1px;
  line-height: 1.15; color: var(--brand);
  margin-bottom: var(--space-md);
}
.section-subtitle {
  font-size: 17px; color: var(--text-secondary);
  line-height: 1.7; max-width: 560px; margin: 0 auto;
}

/* ===== Hero ===== */
.hero {
  padding: calc(var(--nav-height) + 40px) 24px var(--space-2xl);
  background: linear-gradient(160deg, var(--brand) 0%, var(--brand-dark) 50%, #041e2d 100%);
  position: relative; overflow: hidden;
  min-height: 70vh; display: flex; align-items: center;
}
.hero::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(87,191,239,.12) 0%, transparent 70%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}
.hero::after {
  content: ''; position: absolute; bottom: -10%; left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(45,138,78,.08) 0%, transparent 70%);
  animation: heroGlow 10s ease-in-out infinite alternate-reverse;
}
@keyframes heroGlow { from { opacity: .5; transform: scale(1); } to { opacity: 1; transform: scale(1.1); } }

.hero-inner {
  max-width: var(--max-width); margin: 0 auto; width: 100%;
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.hero-text { color: #fff; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); backdrop-filter: blur(10px);
  padding: 8px 16px; border-radius: var(--radius-full);
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.9);
  margin-bottom: var(--space-lg);
  border: 1px solid rgba(255,255,255,.15);
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ade80; animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }
.hero h1 {
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 800; line-height: 1.08;
  letter-spacing: -2px; margin-bottom: var(--space-lg);
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--accent), #4ade80);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 18px; line-height: 1.7;
  color: rgba(255,255,255,.75);
  max-width: 500px; margin-bottom: var(--space-xl);
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual {
  display: flex; flex-direction: column; gap: 20px;
}
.hero-card {
  background: rgba(255,255,255,.08); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg); padding: 24px;
  transition: transform var(--duration-slow) var(--ease);
}
.hero-card:hover { transform: translateY(-4px); }
.hero-card-icon {
  width: 48px; height: 48px; border-radius: var(--radius);
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px;
}
.hero-card h3 { color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.hero-card p { color: rgba(255,255,255,.6); font-size: 14px; line-height: 1.5; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .hero { min-height: auto; padding-bottom: var(--space-2xl); }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; font-size: 15px; font-weight: 600;
  border-radius: var(--radius-full); font-family: var(--font);
  transition: all var(--duration) var(--ease);
  text-decoration: none; border: none; cursor: pointer;
}
.btn-primary {
  background: #fff; color: var(--brand);
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.15);
  color: var(--brand);
}
.btn-secondary {
  background: rgba(255,255,255,.12); color: #fff;
  border: 1px solid rgba(255,255,255,.25);
}
.btn-secondary:hover {
  background: rgba(255,255,255,.2);
  color: #fff;
}
.btn-brand {
  background: var(--brand); color: #fff;
}
.btn-brand:hover {
  background: var(--brand-light); color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(7,53,75,.3);
}
.btn-outline {
  background: transparent; color: var(--brand);
  border: 2px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--brand); background: var(--bg-alt);
  color: var(--brand);
}
.btn-lg { padding: 18px 36px; font-size: 16px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn svg { width: 18px; height: 18px; }

/* ===== Cards ===== */
.card {
  background: var(--card); border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: var(--space-xl);
  transition: all var(--duration-slow) var(--ease);
}
.card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--border);
  transform: translateY(-4px);
}
.card-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: var(--space-lg);
}
.card-icon.green { background: var(--green-light); }
.card-icon.blue { background: var(--accent-light); }
.card-icon.teal { background: var(--teal-light); }
.card h3 {
  font-size: 18px; font-weight: 700; color: var(--brand);
  margin-bottom: var(--space-sm); letter-spacing: -.3px;
}
.card p {
  font-size: 15px; color: var(--text-secondary); line-height: 1.7;
}

.card-grid {
  display: grid; gap: 24px;
}
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
  .card-grid.cols-3, .card-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .card-grid.cols-2, .card-grid.cols-3, .card-grid.cols-4 { grid-template-columns: 1fr; }
}

/* ===== Stats ===== */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  text-align: center; padding: var(--space-2xl) 0;
}
.stat-value {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800; color: var(--brand); letter-spacing: -1px;
  line-height: 1;
}
.stat-label {
  font-size: 14px; color: var(--text-muted); margin-top: 8px;
  font-weight: 500;
}
@media (max-width: 768px) { .stats { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (max-width: 480px) { .stats { grid-template-columns: 1fr; } }

/* ===== Pricing ===== */
.pricing-card {
  background: var(--card); border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: var(--space-xl); text-align: center;
  transition: all var(--duration-slow) var(--ease);
  position: relative;
}
.pricing-card:hover {
  box-shadow: var(--shadow-lg); transform: translateY(-4px);
  border-color: var(--border);
}
.pricing-card.featured {
  border-color: var(--brand); box-shadow: var(--shadow-lg);
  transform: scale(1.02);
}
.pricing-card.featured::before {
  content: 'Most Popular'; position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%); background: var(--brand); color: #fff;
  padding: 4px 16px; border-radius: var(--radius-full);
  font-size: 12px; font-weight: 700; letter-spacing: .5px;
}
.pricing-name { font-size: 18px; font-weight: 700; color: var(--brand); margin-bottom: 4px; }
.pricing-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }
.pricing-amount {
  font-size: 48px; font-weight: 800; color: var(--brand);
  letter-spacing: -2px; line-height: 1;
}
.pricing-amount span { font-size: 20px; font-weight: 500; color: var(--text-muted); }
.pricing-duration { font-size: 13px; color: var(--text-muted); margin: 4px 0 20px; }
.pricing-features { text-align: left; margin-bottom: 24px; }
.pricing-features li {
  padding: 8px 0; font-size: 14px; color: var(--text-secondary);
  display: flex; align-items: flex-start; gap: 10px;
  border-bottom: 1px solid var(--border-light);
}
.pricing-features li:last-child { border: none; }
.pricing-features li svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; margin-top: 2px; }

/* ===== How It Works ===== */
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  position: relative;
}
.steps::before {
  content: ''; position: absolute; top: 36px;
  left: calc(12.5% + 16px); right: calc(12.5% + 16px);
  height: 2px; background: var(--border);
}
.step { text-align: center; position: relative; }
.step-num {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--card); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 800; color: var(--brand);
  margin: 0 auto var(--space-lg);
  position: relative; z-index: 1;
  transition: all var(--duration-slow) var(--ease);
}
.step:hover .step-num {
  background: var(--brand); color: #fff; border-color: var(--brand);
  transform: scale(1.1);
}
.step h3 { font-size: 16px; font-weight: 700; color: var(--brand); margin-bottom: 6px; }
.step p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

@media (max-width: 768px) {
  .steps { grid-template-columns: 1fr; gap: 24px; }
  .steps::before { display: none; }
  .step { display: flex; align-items: center; gap: 20px; text-align: left; }
  .step-num { width: 56px; height: 56px; font-size: 20px; margin: 0; flex-shrink: 0; }
}

/* ===== Forms ===== */
.form-card {
  background: var(--card); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: var(--space-xl);
  max-width: 640px; margin: 0 auto;
}
.form-title { font-size: 24px; font-weight: 800; color: var(--brand); margin-bottom: 4px; }
.form-subtitle { font-size: 15px; color: var(--text-secondary); margin-bottom: var(--space-xl); }
.field { margin-bottom: 20px; }
.field label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--text-secondary); margin-bottom: 6px;
}
.field label .req { color: #e53e3e; }
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: 15px; font-family: var(--font);
  color: var(--text); background: var(--bg);
  transition: all var(--duration) var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--brand); background: var(--card);
  box-shadow: 0 0 0 3px rgba(7,53,75,.08);
}
.field textarea { resize: vertical; min-height: 100px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } }
.field-help { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.form-success {
  background: var(--green-light); border: 1px solid var(--green);
  border-radius: var(--radius); padding: 20px;
  text-align: center; display: none;
}
.form-success h3 { color: var(--green-dark); font-size: 18px; margin-bottom: 4px; }
.form-success p { color: var(--text-secondary); font-size: 14px; }

/* ===== Footer ===== */
.footer {
  background: var(--brand); color: rgba(255,255,255,.7);
  padding: var(--space-3xl) 24px var(--space-xl);
}
.footer-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
}
.footer-brand { }
.footer-brand img { height: 40px; margin-bottom: var(--space-md); border-radius: var(--radius-sm); }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 300px; }
.footer-col h4 {
  color: #fff; font-size: 14px; font-weight: 700;
  letter-spacing: .5px; margin-bottom: var(--space-md);
}
.footer-col a {
  display: block; color: rgba(255,255,255,.6);
  font-size: 14px; padding: 4px 0;
  transition: color var(--duration) var(--ease);
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  max-width: var(--max-width); margin: var(--space-xl) auto 0;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
}
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ===== Scroll Animations ===== */
.fade-in {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.fade-in.visible {
  opacity: 1; transform: translateY(0);
}
.fade-in-left {
  opacity: 0; transform: translateX(-24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right {
  opacity: 0; transform: translateX(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

/* Stagger children */
.stagger > * { transition-delay: calc(var(--i, 0) * 100ms); }

/* ===== Registration Popup ===== */
.popup-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.5); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity var(--duration-slow) var(--ease);
}
.popup-overlay.show { opacity: 1; pointer-events: auto; }
.popup {
  background: var(--card); border-radius: var(--radius-xl);
  padding: 40px; max-width: 440px; width: 100%;
  box-shadow: var(--shadow-xl);
  transform: translateY(20px) scale(.97);
  transition: transform var(--duration-slow) var(--ease);
  position: relative; text-align: center;
}
.popup-overlay.show .popup { transform: translateY(0) scale(1); }
.popup-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-alt); display: flex;
  align-items: center; justify-content: center;
  font-size: 18px; color: var(--text-muted);
  transition: all var(--duration) var(--ease);
  cursor: pointer; border: none;
}
.popup-close:hover { background: var(--border); color: var(--text); }
.popup h2 { font-size: 22px; font-weight: 800; color: var(--brand); margin-bottom: 8px; letter-spacing: -.5px; }
.popup p { font-size: 15px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 24px; }
.popup .btn { width: 100%; margin-bottom: 10px; }
.popup-dismiss { font-size: 13px; color: var(--text-muted); cursor: pointer; background: none; border: none; padding: 8px; }
.popup-dismiss:hover { color: var(--text-secondary); }

/* ===== Quick Actions Banner ===== */
.quick-actions {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  max-width: 800px; margin: 0 auto;
}
.quick-action {
  display: flex; align-items: center; gap: 14px;
  background: var(--card); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 20px;
  text-decoration: none; color: var(--text);
  transition: all var(--duration) var(--ease);
}
.quick-action:hover {
  border-color: var(--brand); box-shadow: var(--shadow);
  transform: translateY(-2px); color: var(--text);
}
.quick-action-icon {
  width: 44px; height: 44px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.quick-action h3 { font-size: 14px; font-weight: 700; color: var(--brand); margin-bottom: 2px; }
.quick-action p { font-size: 12px; color: var(--text-muted); }
.quick-action .badge {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .5px; color: var(--green); background: var(--green-light);
  padding: 2px 8px; border-radius: var(--radius-full); margin-top: 4px;
  display: inline-block;
}
@media (max-width: 768px) {
  .quick-actions { grid-template-columns: 1fr; }
}

/* ===== Utilities ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-0 { margin-bottom: 0; }
.hidden { display: none; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* Section backgrounds */
.bg-white { background: var(--card); }
.bg-alt { background: var(--bg-alt); }
.bg-brand {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
}

/* Divider */
.divider {
  height: 1px; background: var(--border);
  max-width: var(--max-width); margin: 0 auto;
}
