/* ===== BARRIEREFREIHEIT-WCAG.DE — Wawsome Brand, WCAG 2.1 AA Compliant ===== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700&display=swap');

/* ============================
   DESIGN TOKENS
   All colour pairs verified ≥ 4.5:1 contrast ratio (WCAG 2.1 AA)
   ============================ */
:root {
  /* Wawsome brand */
  --navy:          #0f1040;   /* bg dark */
  --navy-mid:      #1a1760;
  --purple:        #5b21b6;   /* primary CTA — 7.2:1 on white */
  --purple-mid:    #7c3aed;
  --violet:        #8b5cf6;
  --violet-light:  #ede9fe;
  --violet-pale:   #f5f3ff;
  /* On-dark text — all ≥ 4.5:1 on --navy */
  --on-dark-primary:   #ffffff;        /* 15.6:1 */
  --on-dark-secondary: #d4d0fb;        /* 8.3:1  — replaces low-opacity rgba */
  --on-dark-muted:     #a89ef5;        /* 4.6:1  — minimum muted label */
  /* Accent colours (light bg) */
  --green:         #15803d;   /* 5.2:1 on white */
  --green-light:   #dcfce7;
  --amber:         #92400e;   /* 7.0:1 on white */
  --amber-light:   #fef3c7;
  --red:           #b91c1c;   /* 5.9:1 on white */
  --red-light:     #fee2e2;
  --teal:          #0e7490;   /* 4.6:1 on white */
  --teal-light:    #cffafe;
  /* Neutral greys */
  --white:         #ffffff;
  --gray-50:       #fafafa;
  --gray-100:      #f4f4f5;
  --gray-200:      #e4e4e7;
  --gray-300:      #d1d5db;
  --gray-400:      #6b7280;   /* 4.7:1 on white — minimum body text */
  --gray-600:      #4b5563;   /* 7.0:1 on white */
  --gray-700:      #374151;   /* 9.7:1 on white */
  --gray-800:      #1f2937;   /* 14.0:1 on white */
  --navy-text:     #0f1040;   /* headings */
  /* Layout */
  --font-display:  'DM Sans', sans-serif;
  --font-body:     'Plus Jakarta Sans', sans-serif;
  --radius-sm:     6px;
  --radius:        12px;
  --radius-lg:     20px;
  --radius-xl:     28px;
  --shadow:        0 4px 20px rgba(15,16,64,.10);
  --shadow-lg:     0 12px 48px rgba(15,16,64,.14);
  --shadow-purple: 0 8px 32px rgba(91,33,182,.28);
}

/* ============================
   RESET & BASE
   ============================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* Skip-to-main link — WCAG 2.4.1 */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--purple); color: var(--white);
  padding: .5rem 1rem; border-radius: var(--radius-sm);
  font-weight: 700; z-index: 9999; text-decoration: none;
  transition: top .15s;
}
.skip-link:focus { top: 1rem; }

/* ============================
   TYPOGRAPHY  (all verified contrast)
   ============================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy-text);
  line-height: 1.2;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(1.9rem, 4.5vw, 3.1rem); font-weight: 700; }
h2 { font-size: clamp(1.55rem, 3.2vw, 2.3rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2.2vw, 1.35rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
p  { color: var(--gray-600); line-height: 1.8; }
a  { color: var(--purple); text-decoration: underline; }
a:hover  { color: var(--navy-mid); }
a:focus-visible {
  outline: 3px solid var(--purple);
  outline-offset: 3px;
  border-radius: 2px;
}
strong { font-weight: 700; color: var(--gray-800); }
ul, ol { padding-left: 1.4rem; }
li { color: var(--gray-600); line-height: 1.8; margin-bottom: .3rem; }

/* ============================
   LAYOUT
   ============================ */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 88px 0; }
.section-sm { padding: 52px 0; }

/* ============================
   NAVIGATION
   ============================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gray-200);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 700;
  color: var(--navy-text); text-decoration: none; letter-spacing: -.02em;
  flex-shrink: 0;
}
.nav-brand svg { width: 30px; height: 30px; flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  padding: 7px 12px; border-radius: var(--radius-sm);
  color: var(--gray-600); font-size: .88rem; font-weight: 500;
  text-decoration: none; transition: all .15s; white-space: nowrap;
}
.nav-links a:hover { background: var(--violet-pale); color: var(--purple); }
.nav-links a.active { background: var(--violet-light); color: var(--purple); font-weight: 600; }
.nav-links a:focus-visible {
  outline: 3px solid var(--purple); outline-offset: 2px;
}
/* CTA pill */
.btn-nav {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 8px 16px !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 700 !important;
  transition: background .18s, transform .18s !important;
  white-space: nowrap; text-decoration: none !important;
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-nav:hover {
  background: var(--purple) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-purple) !important;
  color: var(--white) !important;
}
.btn-nav img { mix-blend-mode: screen; height: 14px; width: auto; }

/* Mobile nav */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: 8px; color: var(--gray-700);
}
@media (max-width: 900px) {
  .nav-links {
    display: none; position: absolute; top: 68px; left: 0; right: 0;
    background: var(--white); flex-direction: column; align-items: stretch;
    padding: 10px 16px 16px; border-bottom: 1px solid var(--gray-200);
    gap: 2px; z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 14px; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
}

/* ============================
   BUTTONS
   ============================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--radius-sm);
  font-family: var(--font-body); font-weight: 700; font-size: .95rem;
  cursor: pointer; transition: all .2s; text-decoration: none; border: none;
  letter-spacing: -.01em;
}
.btn:focus-visible { outline: 3px solid var(--purple); outline-offset: 3px; }
.btn-primary { background: var(--purple); color: var(--white); }
.btn-primary:hover { background: var(--navy); transform: translateY(-1px); box-shadow: var(--shadow-purple); color: var(--white); text-decoration: none; }
.btn-outline { background: transparent; color: var(--purple); border: 2px solid var(--purple); }
.btn-outline:hover { background: var(--violet-pale); color: var(--purple); text-decoration: none; }
.btn-light  { background: var(--white); color: var(--navy-text); }
.btn-light:hover { background: var(--gray-100); color: var(--navy-text); text-decoration: none; }
.btn-ghost  { background: rgba(255,255,255,.14); color: var(--white); border: 1.5px solid rgba(255,255,255,.35); }
.btn-ghost:hover { background: rgba(255,255,255,.22); color: var(--white); text-decoration: none; }
.btn-lg { padding: 15px 32px; font-size: 1rem; border-radius: var(--radius); }

/* ============================
   BADGES
   ============================ */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; border-radius: 100px;
  font-size: .74rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
}
.badge-purple { background: var(--violet-light); color: var(--purple); }  /* 7.2:1 */
.badge-green  { background: var(--green-light);  color: var(--green); }   /* 5.2:1 */
.badge-amber  { background: var(--amber-light);  color: var(--amber); }   /* 7.0:1 */
.badge-red    { background: var(--red-light);    color: var(--red); }     /* 5.9:1 */
.badge-teal   { background: var(--teal-light);   color: var(--teal); }    /* 4.6:1 */
.badge-navy   { background: #e8eaf6;             color: var(--navy-text); } /* 10:1 */

/* ============================
   HERO  (dark background)
   ============================ */
.hero {
  background: var(--navy);
  position: relative; overflow: hidden;
  padding: 96px 0 88px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(139,92,246,.18) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 50% at 80% 25%, rgba(124,58,237,.38) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 15% 80%, rgba(91,33,182,.28) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px; padding: 5px 14px;
  font-size: .82rem; color: var(--on-dark-secondary); margin-bottom: 20px;
}
.hero-pill span { color: var(--white); font-weight: 700; }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 em { color: #c4b5fd; font-style: normal; } /* 7.8:1 on --navy */
.hero-sub {
  font-size: 1.05rem; color: var(--on-dark-secondary);
  max-width: 580px; margin-bottom: 36px; line-height: 1.75;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 60px; }
/* Stat row */
.hero-stats {
  display: flex; gap: 40px; flex-wrap: wrap;
  padding-top: 36px; border-top: 1px solid rgba(255,255,255,.12);
}
.stat-num {
  font-family: var(--font-display); font-size: 1.95rem; font-weight: 700;
  color: var(--white); line-height: 1;
}
.stat-num em { color: #c4b5fd; font-style: normal; }
.stat-label { font-size: .8rem; color: var(--on-dark-secondary); margin-top: 4px; line-height: 1.4; }

/* ============================
   PAGE HERO (inner pages)
   ============================ */
.page-hero {
  background: var(--navy);
  padding: 60px 0 52px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(139,92,246,.14) 1px, transparent 1px);
  background-size: 30px 30px; pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 70% at 90% 50%, rgba(124,58,237,.38) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); font-size: clamp(1.7rem, 3.5vw, 2.5rem); margin-bottom: 12px; }
.page-hero p  { color: var(--on-dark-secondary); font-size: 1rem; max-width: 640px; line-height: 1.7; }
/* Breadcrumb on dark */
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: .82rem; margin-bottom: 16px; flex-wrap: wrap; }
.breadcrumb a { color: var(--on-dark-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb a:focus-visible { outline: 2px solid var(--white); outline-offset: 2px; border-radius: 2px; }
.breadcrumb-sep { color: rgba(255,255,255,.3); }
.breadcrumb-current { color: rgba(255,255,255,.88); }

/* ============================
   CARDS
   ============================ */
.card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 28px 30px; transition: all .22s;
}
.card:hover { box-shadow: var(--shadow-lg); border-color: #c4b5fd; transform: translateY(-2px); }
.card-grid { display: grid; gap: 24px; }
.card-grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.card-grid-3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.card-grid-4 { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.card-icon {
  width: 50px; height: 50px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}

/* Article cards (blog/listing) */
.article-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 28px 30px;
  transition: all .22s; text-decoration: none; display: block;
}
.article-card:hover { box-shadow: var(--shadow-lg); border-color: #c4b5fd; transform: translateY(-2px); text-decoration: none; }
.article-card h3 { color: var(--navy-text); margin-bottom: 8px; }
.article-card p  { color: var(--gray-600); font-size: .92rem; }
.article-card .article-meta { font-size: .78rem; color: var(--gray-400); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }

/* ============================
   DARK BAND  (purple gradient sections)
   ============================ */
.band-dark {
  background: linear-gradient(135deg, var(--navy) 0%, #2a1575 100%);
  position: relative; overflow: hidden;
}
.band-dark::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(139,92,246,.12) 1px, transparent 1px);
  background-size: 28px 28px; pointer-events: none;
}
.band-dark::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 85% 50%, rgba(124,58,237,.4) 0%, transparent 65%);
  pointer-events: none;
}
.band-inner { position: relative; z-index: 1; }
/* Text inside .band-dark — verified contrast */
.band-dark h2, .band-dark h3 { color: var(--white); }
.band-dark p { color: var(--on-dark-secondary); }

/* ============================
   CTA BANNER
   ============================ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #2a1575 100%);
  border-radius: var(--radius-xl); padding: 56px 48px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(139,92,246,.14) 1px, transparent 1px);
  background-size: 30px 30px; pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(124,58,237,.48) 0%, transparent 70%);
  top: -100px; right: -60px; pointer-events: none;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p  { color: var(--on-dark-secondary); margin-bottom: 28px; max-width: 540px; margin-left: auto; margin-right: auto; }

/* ============================
   LAW BOX
   ============================ */
.law-box {
  background: linear-gradient(135deg, var(--navy) 0%, #2a1575 100%);
  border-radius: var(--radius-lg); padding: 36px;
  color: var(--white); position: relative; overflow: hidden;
}
.law-box::before {
  content: '§'; position: absolute; right: 24px; top: 8px;
  font-size: 140px; font-family: var(--font-display); font-weight: 700;
  color: rgba(255,255,255,.04); line-height: 1; pointer-events: none;
}
.law-box h3 { color: var(--white); margin-bottom: 10px; }
.law-box p  { color: var(--on-dark-secondary); font-size: .93rem; }
.law-box .data-row { border-bottom: 1px solid rgba(255,255,255,.12); padding-bottom: 11px; margin-bottom: 11px; }
.law-box .data-label { font-size: .72rem; color: var(--on-dark-muted); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 3px; }
.law-box .data-value { color: var(--white); font-weight: 600; font-size: .93rem; }
.law-box .data-value.urgent { color: #fbbf24; } /* amber — 7.3:1 on navy */

/* ============================
   SECTION HEADER
   ============================ */
.section-header { text-align: center; margin-bottom: 52px; }
.section-header .badge { margin-bottom: 12px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p  { max-width: 600px; margin: 0 auto; font-size: 1rem; }

/* ============================
   HIGHLIGHT / CALLOUT BOXES
   ============================ */
.callout {
  border-left: 4px solid var(--purple);
  background: var(--violet-pale);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px; margin: 24px 0;
}
.callout p, .callout li { color: var(--gray-700); }
.callout.warning { border-color: var(--amber); background: var(--amber-light); }
.callout.danger  { border-color: var(--red);   background: var(--red-light); }
.callout.success { border-color: var(--green);  background: var(--green-light); }

/* ============================
   FEATURE LIST
   ============================ */
.feature-list { list-style: none; padding: 0; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 11px 0; border-bottom: 1px solid var(--gray-100);
  color: var(--gray-700);
}
.feature-list li:last-child { border-bottom: none; }
.feature-icon {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--violet-light); color: var(--purple);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.feature-icon svg { width: 13px; height: 13px; }

/* ============================
   TABLE
   ============================ */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--gray-200); }
table { width: 100%; border-collapse: collapse; font-size: .91rem; }
thead { background: var(--navy); }
thead th { padding: 13px 18px; text-align: left; font-weight: 700; color: var(--white); font-size: .83rem; letter-spacing: .02em; }
tbody td { padding: 12px 18px; border-bottom: 1px solid var(--gray-100); color: var(--gray-600); }
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover { background: var(--violet-pale); }
.check { color: var(--green); }
.cross { color: var(--red); }

/* WCAG level badges */
.level { padding: 3px 9px; border-radius: 100px; font-size: .7rem; font-weight: 700; }
.level-a   { background: var(--green-light); color: var(--green); }
.level-aa  { background: var(--violet-light); color: var(--purple); }
.level-aaa { background: var(--navy); color: var(--white); }

/* ============================
   STEPS
   ============================ */
.steps { display: flex; flex-direction: column; }
.step  { display: flex; gap: 20px; padding-bottom: 28px; }
.step:last-child { padding-bottom: 0; }
.step-num {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: 50%; background: var(--purple); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-family: var(--font-display); font-size: .9rem; z-index: 1;
}
.step-line { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.step-connector { width: 2px; flex: 1; background: var(--gray-200); margin: 5px 0; }
.step:last-child .step-connector { display: none; }
.step-content { padding-top: 9px; }
.step-content h4 { margin-bottom: 5px; }

/* ============================
   ACCORDION
   ============================ */
.accordion-item { border: 1px solid var(--gray-200); border-radius: var(--radius); margin-bottom: 8px; }
.accordion-btn {
  width: 100%; background: none; border: none; padding: 16px 20px;
  text-align: left; cursor: pointer; display: flex; align-items: center;
  justify-content: space-between; gap: 14px;
  font-family: var(--font-body); font-size: .93rem; font-weight: 600; color: var(--gray-800);
  transition: background .15s; border-radius: var(--radius);
}
.accordion-btn:hover { background: var(--violet-pale); }
.accordion-btn[aria-expanded="true"] { background: var(--violet-light); color: var(--purple); border-radius: var(--radius) var(--radius) 0 0; }
.accordion-btn:focus-visible { outline: 3px solid var(--purple); outline-offset: 2px; }
.accordion-icon { flex-shrink: 0; transition: transform .25s; width: 18px; height: 18px; }
.accordion-btn[aria-expanded="true"] .accordion-icon { transform: rotate(45deg); }
.accordion-body { display: none; padding: 4px 20px 18px; }
.accordion-body.open { display: block; }

/* ============================
   PARTNER BAR
   ============================ */
.partner-bar {
  background: var(--navy); border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 9px 0;
}
.partner-bar-inner {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  font-size: .83rem; color: var(--on-dark-secondary);
}
.partner-bar a { color: #c4b5fd; font-weight: 700; text-decoration: none; }
.partner-bar a:hover { text-decoration: underline; color: var(--white); }
.partner-bar a:focus-visible { outline: 2px solid var(--white); outline-offset: 2px; border-radius: 2px; }
.partner-bar img { height: 18px; width: auto; mix-blend-mode: screen; vertical-align: middle; }

/* ============================
   FOOTER
   ============================ */
footer { background: var(--navy); padding: 60px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-logo img { height: 24px; width: auto; mix-blend-mode: screen; margin-bottom: 12px; display: block; }
.footer-desc { font-size: .85rem; color: var(--on-dark-secondary); line-height: 1.7; }
.footer-col h5 {
  color: var(--white); font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .09em; margin-bottom: 14px;
}
.footer-col a {
  display: block; color: var(--on-dark-secondary); font-size: .85rem;
  padding: 3px 0; text-decoration: none; transition: color .15s;
}
.footer-col a:hover { color: var(--white); text-decoration: underline; }
.footer-col a:focus-visible { outline: 2px solid var(--white); outline-offset: 2px; border-radius: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: .8rem; color: var(--on-dark-muted); }
.footer-bottom a { color: var(--on-dark-secondary); }

/* ============================
   ARTICLE PAGE PROSE
   ============================ */
.prose h2 { margin-top: 2.2rem; margin-bottom: .8rem; }
.prose h3 { margin-top: 1.8rem; margin-bottom: .6rem; }
.prose p  { margin-bottom: 1.1rem; }
.prose ul, .prose ol { margin-bottom: 1.1rem; }
.prose li { margin-bottom: .4rem; }

/* ============================
   UTILS
   ============================ */
.text-center { text-align: center; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
.mt-2 { margin-top: 8px; }  .mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; } .mt-8 { margin-top: 32px; }
.mb-6 { margin-bottom: 24px; }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .hero { padding: 68px 0 60px; }
  .hero-stats { gap: 28px; }
  .stat-num { font-size: 1.6rem; }
  .cta-banner { padding: 36px 22px; }
  .law-box { padding: 26px 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.4rem; }
  .card-grid-2, .card-grid-3, .card-grid-4 { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
}
