/* ================================================================
   ACCESIBILITATE-WEB.RO — Design Coral / Roșu / Auriu
   Fonturi: Sora (display) + Nunito Sans (body)
   WCAG 2.1 AA compliant — toate perechile de culori ≥ 4.5:1
   ================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=Nunito+Sans:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* ── TOKENI ──────────────────────────────────────────────── */
:root {
  /* Brand coral-rosu */
  --coral:        #c0392b;   /* 5.8:1 pe alb */
  --coral-dark:   #96281b;   /* 8.1:1 pe alb */
  --coral-mid:    #d44132;   /* 4.9:1 pe alb */
  --coral-light:  #fde8e6;
  --coral-pale:   #fff5f4;

  /* Auriu */
  --gold:         #b7791f;   /* 4.6:1 pe alb */
  --gold-dark:    #92610a;   /* 7.2:1 pe alb */
  --gold-light:   #fef3c7;
  --gold-pale:    #fffbeb;

  /* Neutrale calde */
  --warm-dark:    #1c1410;   /* 18:1 pe alb */
  --warm-800:     #2d1f1a;   /* 14:1 pe alb */
  --warm-700:     #44302a;   /* 9.4:1 pe alb */
  --warm-600:     #6b4c44;   /* 5.7:1 pe alb */
  --warm-400:     #a07060;   /* 4.5:1 pe alb — minim */
  --warm-200:     #e8d5cf;
  --warm-100:     #f5ece9;
  --warm-50:      #faf6f5;

  /* On-dark (pe --coral-dark sau --warm-dark) */
  --on-dark:      #ffffff;           /* 18:1 pe coral-dark */
  --on-dark-sec:  #fbd5cf;           /* 6.2:1 pe coral-dark */
  --on-dark-muted:#f4a99e;           /* 4.5:1 pe coral-dark */

  /* Accente */
  --teal:         #0f766e;   /* 6.7:1 pe alb */
  --teal-light:   #ccfbf1;
  --teal-pale:    #f0fdf9;
  --slate:        #1e3a5f;   /* 12:1 pe alb */
  --white:        #ffffff;
  --gray-100:     #f4f4f5;
  --gray-200:     #e4e4e7;
  --gray-400:     #71717a;   /* 4.8:1 pe alb */
  --gray-600:     #52525b;   /* 7.1:1 pe alb */
  --gray-800:     #27272a;   /* 13:1 pe alb */

  /* Tipografie */
  --font-display: 'Sora', system-ui, sans-serif;
  --font-body:    'Nunito Sans', system-ui, sans-serif;

  /* Forme */
  --radius-sm:  6px;
  --radius:     14px;
  --radius-lg:  22px;
  --radius-xl:  32px;
  --shadow-sm:  0 2px 8px rgba(192,57,43,.08);
  --shadow:     0 6px 24px rgba(192,57,43,.12);
  --shadow-lg:  0 16px 52px rgba(192,57,43,.16);
}

/* ── RESET & BASE ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--warm-700);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--coral-dark); color: var(--white);
  padding: .5rem 1.2rem; border-radius: var(--radius-sm);
  font-weight: 700; z-index: 9999; text-decoration: none;
  transition: top .15s;
}
.skip-link:focus { top: 1rem; }

/* ── TIPOGRAFIE ──────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--warm-dark);
  line-height: 1.15;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(1.9rem, 4.5vw, 3.2rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2.3rem); font-weight: 700; }
h3 { font-size: clamp(1.05rem, 2vw, 1.25rem); font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }
p  { color: var(--warm-600); line-height: 1.8; }
a  { color: var(--coral); text-decoration: underline; }
a:hover { color: var(--coral-dark); }
a:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; border-radius: 2px; }
strong { font-weight: 700; color: var(--warm-800); }
ul, ol { padding-left: 1.4rem; }
li { color: var(--warm-600); margin-bottom: .35rem; line-height: 1.75; }
code {
  background: var(--coral-pale); color: var(--coral-dark);
  padding: 2px 6px; border-radius: 4px; font-size: .88em;
  font-family: 'Fira Mono', monospace;
}

/* ── LAYOUT ──────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 88px 0; }
.section-sm { padding: 52px 0; }
.sr-only    { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ── TOPBAR ──────────────────────────────────────────────── */
.topbar {
  background: var(--coral-dark);
  padding: 8px 0;
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  font-size: .8rem; color: var(--on-dark-sec);
}
.topbar-left { display: flex; align-items: center; gap: 6px; }
.topbar-right { display: flex; align-items: center; gap: 16px; }
.topbar-inner a { color: var(--on-dark-sec); text-decoration: none; font-weight: 600; }
.topbar-inner a:hover { color: var(--white); text-decoration: underline; }
.topbar-inner a:focus-visible { outline: 2px solid var(--white); outline-offset: 2px; border-radius: 2px; }
.topbar-logo { height: 16px; width: auto; mix-blend-mode: screen; vertical-align: middle; margin: 0 4px; }
@media(max-width:600px){ .topbar-right { display: none; } }

/* ── NAVIGARE ────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  border-bottom: 4px solid var(--coral);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 66px;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 800; font-size: .95rem;
  color: var(--coral-dark); text-decoration: none; letter-spacing: -.02em;
}
.nav-brand-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.nav-brand-icon svg { width: 22px; height: 22px; }
.nav-brand .brand-sub { font-size: .6rem; color: var(--warm-400); font-family: var(--font-body); font-weight: 600; letter-spacing: .05em; text-transform: uppercase; display: block; line-height: 1; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  padding: 7px 12px; border-radius: var(--radius-sm);
  color: var(--warm-600); font-size: .875rem; font-weight: 600;
  text-decoration: none; transition: all .15s; white-space: nowrap;
}
.nav-links a:hover { background: var(--coral-pale); color: var(--coral); }
.nav-links a.active {
  background: var(--coral-pale); color: var(--coral-dark); font-weight: 700;
  border-bottom: 2px solid var(--coral);
}
.nav-links a:focus-visible { outline: 3px solid var(--coral); outline-offset: 2px; }
.btn-nav-cta {
  background: var(--coral-dark) !important; color: var(--white) !important;
  padding: 8px 16px !important; border-radius: var(--radius-sm) !important;
  font-weight: 700 !important; text-decoration: none !important;
  transition: background .18s, transform .18s !important;
}
.btn-nav-cta:hover { background: var(--coral) !important; transform: translateY(-1px); color: var(--white) !important; }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: 8px; color: var(--warm-700);
}
@media(max-width:940px){
  .nav-links {
    display: none; position: absolute; top: 66px; left: 0; right: 0;
    background: var(--white); flex-direction: column; align-items: stretch;
    padding: 10px 16px 16px; border-bottom: 4px solid var(--coral);
    gap: 2px; z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 14px; }
  .nav-toggle { display: flex; align-items: center; }
}

/* ── BUTOANE ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius-sm);
  font-family: var(--font-body); font-weight: 700; font-size: .93rem;
  cursor: pointer; transition: all .2s; text-decoration: none; border: none;
}
.btn:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; }
.btn-primary { background: var(--coral-dark); color: var(--white); }
.btn-primary:hover { background: var(--coral-mid); transform: translateY(-1px); box-shadow: var(--shadow); color: var(--white); text-decoration: none; }
.btn-gold { background: var(--gold-dark); color: var(--white); }
.btn-gold:hover { background: var(--gold); color: var(--white); text-decoration: none; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--coral-dark); border: 2px solid var(--coral-dark); }
.btn-outline:hover { background: var(--coral-pale); color: var(--coral-dark); 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,.24); color: var(--white); text-decoration: none; }
.btn-lg { padding: 14px 30px; font-size: 1rem; border-radius: var(--radius); }

/* ── BADGE-URI ───────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 11px; border-radius: 100px;
  font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
}
.badge-coral  { background: var(--coral-light); color: var(--coral-dark); }   /* 8.1:1 */
.badge-gold   { background: var(--gold-light);  color: var(--gold-dark);  }   /* 7.2:1 */
.badge-teal   { background: var(--teal-light);  color: var(--teal);       }   /* 6.7:1 */
.badge-warm   { background: var(--warm-100);    color: var(--warm-700);   }   /* 9.4:1 */
.badge-slate  { background: #e0e9f5;            color: var(--slate);      }   /* 12:1  */

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  background: var(--coral-dark);
  position: relative; overflow: hidden;
  padding: 84px 0 72px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,65,50,.45) 0%, transparent 65%);
  top: -200px; right: -150px;
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center;
}
@media(max-width:768px){ .hero-inner { grid-template-columns: 1fr; gap: 36px; } }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  border-radius: 100px; padding: 5px 14px;
  font-size: .78rem; color: var(--on-dark-sec); margin-bottom: 16px;
  font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
}
.hero h1 { color: var(--white); margin-bottom: 18px; }
.hero h1 em { font-style: normal; color: #fbd5cf; }
.hero-desc { font-size: 1.05rem; color: var(--on-dark-sec); margin-bottom: 32px; max-width: 520px; line-height: 1.75; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
/* Hero stats grid */
.hero-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hero-stat-card {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-lg); padding: 22px 18px;
}
.stat-num {
  font-family: var(--font-display); font-size: 2rem; font-weight: 800;
  color: var(--white); line-height: 1;
}
.stat-num em { color: #fbd5cf; font-style: normal; }
.stat-lbl { font-size: .78rem; color: var(--on-dark-sec); margin-top: 5px; line-height: 1.4; }

/* ── PAGE HERO ───────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--coral-dark) 0%, #8B1A0E 100%);
  padding: 56px 0 46px; position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 28px 28px; pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 10px; font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
.page-hero .lead { color: var(--on-dark-sec); font-size: 1rem; max-width: 680px; line-height: 1.75; }
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: .8rem; margin-bottom: 14px; 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,.85); }

/* ── CARDURI ─────────────────────────────────────────────── */
.card {
  background: var(--white); border: 1px solid var(--warm-200);
  border-radius: var(--radius-lg); padding: 28px 30px; transition: all .22s;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); border-color: var(--coral-light); }
.card-coral  { border-left: 5px solid var(--coral-dark); }
.card-gold   { border-left: 5px solid var(--gold-dark); }
.card-teal   { border-left: 5px solid var(--teal); }
.card-top-coral { border-top: 4px solid var(--coral-dark); }
.card-top-gold  { border-top: 4px solid var(--gold-dark); }
.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(240px, 1fr)); }
.card-grid-4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

/* Articol card */
.article-card {
  background: var(--white); border: 1px solid var(--warm-200);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all .22s; text-decoration: none; display: flex; flex-direction: column;
}
.article-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); text-decoration: none; }
.article-card-stripe { height: 5px; background: var(--coral-dark); }
.article-card-stripe.gold  { background: var(--gold-dark); }
.article-card-stripe.teal  { background: var(--teal); }
.article-card-stripe.slate { background: var(--slate); }
.article-card-body { padding: 22px 24px; flex: 1; display: flex; flex-direction: column; }
.article-card h3 { color: var(--warm-dark); margin-bottom: 8px; font-size: .98rem; line-height: 1.35; }
.article-card p  { color: var(--warm-600); font-size: .88rem; flex: 1; }
.article-meta { font-size: .76rem; color: var(--warm-400); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }

/* ── SECTION HEADER ──────────────────────────────────────── */
.section-header { margin-bottom: 48px; }
.section-header .badge { margin-bottom: 10px; }
.section-header h2 { margin-bottom: 10px; }
.section-header p { max-width: 620px; font-size: 1rem; color: var(--warm-600); }
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 0 auto; }
.section-header h2::after {
  content: ''; display: block; width: 48px; height: 4px;
  background: var(--coral-dark); border-radius: 2px; margin-top: 10px;
}
.section-header.centered h2::after { margin: 10px auto 0; }

/* ── BAND CORAL ──────────────────────────────────────────── */
.band-coral {
  background: linear-gradient(135deg, var(--coral-dark) 0%, #8B1A0E 100%);
  position: relative; overflow: hidden;
}
.band-coral::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 28px 28px; pointer-events: none;
}
.band-inner { position: relative; z-index: 1; }
.band-coral h2, .band-coral h3 { color: var(--white); }
.band-coral p { color: var(--on-dark-sec); }

/* ── CTA BANNER ──────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--coral-dark) 0%, #8B1A0E 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(255,255,255,.05) 1px, transparent 1px);
  background-size: 28px 28px; pointer-events: none;
}
.cta-banner::after {
  content: ''; position: absolute; right: -60px; bottom: -60px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(212,65,50,.35); 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-sec); max-width: 540px; margin: 0 auto 28px; }
@media(max-width:768px){ .cta-banner { padding: 36px 22px; } }

/* ── LAW BOX ─────────────────────────────────────────────── */
.law-box {
  background: linear-gradient(135deg, var(--coral-dark) 0%, #8B1A0E 100%);
  border-radius: var(--radius-lg); padding: 32px 30px;
  position: relative; overflow: hidden;
}
.law-box::before {
  content: '§'; position: absolute; right: 20px; top: 4px;
  font-size: 130px; font-family: var(--font-display); font-weight: 800;
  color: rgba(255,255,255,.05); line-height: 1; pointer-events: none;
}
.law-box h3 { color: var(--white); margin-bottom: 10px; }
.law-box p  { color: var(--on-dark-sec); font-size: .9rem; }
.data-row   { border-bottom: 1px solid rgba(255,255,255,.12); padding-bottom: 10px; margin-bottom: 10px; }
.data-label { font-size: .7rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 3px; }
.data-value { color: var(--white); font-weight: 700; font-size: .9rem; }
.data-value.urgent { color: #fcd34d; }

/* ── CALLOUT ─────────────────────────────────────────────── */
.callout {
  border-left: 4px solid var(--coral-mid);
  background: var(--coral-pale); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 18px; margin: 20px 0;
}
.callout p { color: var(--warm-700); }
.callout.warning { border-color: var(--gold); background: var(--gold-pale); }
.callout.danger  { border-color: var(--coral-dark); background: var(--coral-light); }
.callout.success { border-color: var(--teal); background: var(--teal-pale); }

/* ── FEATURE LIST ────────────────────────────────────────── */
.feature-list { list-style: none; padding: 0; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--warm-100);
  color: var(--warm-700);
}
.feature-list li:last-child { border-bottom: none; }
.f-icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--coral-light); color: var(--coral-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.f-icon svg { width: 12px; height: 12px; }

/* ── TABEL ───────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--warm-200); }
table { width: 100%; border-collapse: collapse; font-size: .9rem; }
thead { background: var(--coral-dark); }
thead th { padding: 12px 16px; text-align: left; font-weight: 700; color: var(--white); font-size: .8rem; letter-spacing: .03em; }
tbody td { padding: 11px 16px; border-bottom: 1px solid var(--warm-100); color: var(--warm-600); }
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover { background: var(--coral-pale); }
.check { color: var(--teal); font-weight: 700; }
.cross { color: var(--coral-dark); font-weight: 700; }
.level { padding: 3px 8px; border-radius: 100px; font-size: .68rem; font-weight: 700; }
.level-a   { background: var(--teal-light); color: var(--teal); }
.level-aa  { background: var(--coral-light); color: var(--coral-dark); }
.level-aaa { background: var(--gold-light); color: var(--gold-dark); }

/* ── STEPS ───────────────────────────────────────────────── */
.steps { display: flex; flex-direction: column; }
.step  { display: flex; gap: 18px; padding-bottom: 26px; }
.step:last-child { padding-bottom: 0; }
.step-num {
  width: 40px; height: 40px; flex-shrink: 0; border-radius: 50%;
  background: var(--coral-dark); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-family: var(--font-display); font-size: .88rem;
}
.step-line { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.step-connector { width: 2px; flex: 1; background: var(--warm-200); margin: 5px 0; }
.step:last-child .step-connector { display: none; }
.step-content { padding-top: 8px; }
.step-content h4 { margin-bottom: 4px; color: var(--warm-dark); }

/* ── ACCORDION ───────────────────────────────────────────── */
.accordion-item { border: 1px solid var(--warm-200); border-radius: var(--radius); margin-bottom: 8px; }
.accordion-btn {
  width: 100%; background: none; border: none; padding: 15px 18px;
  text-align: left; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  font-family: var(--font-body); font-size: .91rem; font-weight: 700; color: var(--warm-800);
  transition: background .15s; border-radius: var(--radius);
}
.accordion-btn:hover { background: var(--coral-pale); }
.accordion-btn[aria-expanded="true"] { background: var(--coral-pale); color: var(--coral-dark); border-radius: var(--radius) var(--radius) 0 0; }
.accordion-btn:focus-visible { outline: 3px solid var(--coral); 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 18px 16px; }
.accordion-body.open { display: block; }

/* ── STATS BAR ───────────────────────────────────────────── */
.stats-bar { background: var(--warm-50); border-top: 1px solid var(--warm-200); border-bottom: 1px solid var(--warm-200); }
.stats-row { display: flex; gap: 0; flex-wrap: wrap; }
.stat-item { flex: 1; min-width: 160px; padding: 26px 20px; border-right: 1px solid var(--warm-200); text-align: center; }
.stat-item:last-child { border-right: none; }
.stat-item .num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: var(--coral-dark); line-height: 1; }
.stat-item .lbl { font-size: .8rem; color: var(--warm-600); margin-top: 5px; line-height: 1.35; }

/* ── FOOTER ──────────────────────────────────────────────── */
footer { background: #2d1208; padding: 60px 0 28px; }
/* #2d1208 pe alb = N/A (e fundal footer). Textul pe el: */
.footer-brand h3 { font-family: var(--font-display); color: var(--white); margin-bottom: 8px; font-size: 1.1rem; }
.footer-desc { font-size: .83rem; color: #fbd5cf; line-height: 1.7; }
/* #fbd5cf pe #2d1208 = 7.8:1 — WCAG AA */
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
@media(max-width:900px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:480px){ .footer-grid { grid-template-columns: 1fr; } }
.footer-wawsome { display: flex; align-items: center; gap: 8px; margin-top: 12px; }
.footer-wawsome img { height: 18px; width: auto; mix-blend-mode: screen; }
.footer-wawsome a { color: #fbd5cf; font-size: .78rem; text-decoration: none; }
.footer-col h5 { color: var(--white); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; margin-bottom: 14px; }
.footer-col a { display: block; color: #fbd5cf; font-size: .83rem; padding: 3px 0; text-decoration: none; transition: color .15s; }
/* #fbd5cf pe #2d1208 = 7.8:1 — WCAG AA */
.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: .78rem; color: #fbd5cf; }
.footer-bottom a { color: #fbd5cf; }
@media(max-width:768px){ .footer-bottom { flex-direction: column; text-align: center; } }

/* ── 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; }

/* ── UTILS ───────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; } .mt-6 { margin-top: 24px; } .mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; } .mb-6 { margin-bottom: 24px; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media(max-width:768px){
  .section { padding: 60px 0; }
  .hero { padding: 60px 0 52px; }
  .hero-stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
}
@media(max-width:480px){
  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.45rem; }
  .card-grid-2, .card-grid-3, .card-grid-4 { grid-template-columns: 1fr; }
}
