/* ============================================================
   COWORKINGWARSZAWA.PL – SHARED STYLESHEET
   Corporate / Neutral Design System
============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #1a2744;
  --navy-lt: #263557;
  --blue:    #2563eb;
  --blue-dk: #1d4ed8;
  --blue-lt: #eff6ff;
  --red:     #c41230;
  --slate:   #475569;
  --slate-lt:#64748b;
  --border:  #e2e8f0;
  --bg:      #f8fafc;
  --bg-alt:  #f1f5f9;
  --white:   #ffffff;
  --ink:     #0f172a;
  --success: #15803d;

  --ff: 'Inter', system-ui, sans-serif;

  --step--1: clamp(0.78rem,  2vw,  0.875rem);
  --step-0:  clamp(0.9rem,   2.5vw, 1rem);
  --step-1:  clamp(1.05rem,  3vw,  1.2rem);
  --step-2:  clamp(1.25rem,  4vw,  1.5rem);
  --step-3:  clamp(1.5rem,   5vw,  2rem);
  --step-4:  clamp(1.9rem,   6vw,  2.75rem);
  --step-5:  clamp(2.4rem,   8vw,  4rem);

  --sp-xs: 0.5rem; --sp-s: 1rem; --sp-m: 1.5rem;
  --sp-l: 2.5rem; --sp-xl: 4rem; --sp-2xl: 7rem;

  --radius: 6px;
  --radius-lg: 10px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow:    0 4px 12px rgba(0,0,0,.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,.12);
}

html { scroll-behavior: smooth; }

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 3px;
}

body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--ff);
  font-size: var(--step-0);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-underline-offset: 3px; }
a:hover { color: var(--blue-dk); }
h1,h2,h3,h4 { line-height: 1.25; font-weight: 700; letter-spacing: -.02em; }
strong { font-weight: 600; }

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--blue); color: var(--white);
  padding: .5rem 1rem; border-radius: var(--radius);
  font-weight: 600; z-index: 9999; transition: top .2s; text-decoration: none;
}
.skip-link:focus { top: 1rem; }

/* ===== LAYOUT ===== */
.container { width: 100%; max-width: 74rem; margin-inline: auto; padding-inline: var(--sp-m); }
.container--narrow { max-width: 56rem; }
.container--wide { max-width: 84rem; }
.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; }

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-top {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: .85rem;
}
.logo {
  font-size: var(--step-2); font-weight: 800;
  color: var(--navy); text-decoration: none;
  letter-spacing: -.03em; line-height: 1;
  display: flex; align-items: center; gap: .3rem;
}
.logo-dot { color: var(--red); }
.logo-sub { font-size: var(--step--1); font-weight: 400; color: var(--slate-lt); letter-spacing: .02em; }

.nav-links { display: none; list-style: none; gap: .25rem; align-items: center; }
.nav-links a {
  font-size: var(--step--1); font-weight: 500; color: var(--slate);
  text-decoration: none; padding: .4rem .7rem; border-radius: var(--radius);
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--blue); background: var(--blue-lt); }

/* Districts dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  background: none; border: none; cursor: pointer;
  font-family: var(--ff); font-size: var(--step--1); font-weight: 500;
  color: var(--slate); padding: .4rem .7rem; border-radius: var(--radius);
  display: flex; align-items: center; gap: .3rem; transition: color .15s, background .15s;
}
.nav-dropdown-toggle:hover { color: var(--blue); background: var(--blue-lt); }
.nav-dropdown-toggle[aria-expanded="true"] { color: var(--blue); background: var(--blue-lt); }
.dropdown-arrow { transition: transform .2s; font-size: .7rem; }
.nav-dropdown-toggle[aria-expanded="true"] .dropdown-arrow { transform: rotate(180deg); }

.dropdown-menu {
  display: none; position: absolute; top: calc(100% + .5rem); left: 50%;
  transform: translateX(-50%);
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: var(--sp-m); z-index: 100;
  width: 520px;
}
.dropdown-menu.open { display: block; }
.dropdown-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .25rem;
}
.dropdown-grid a {
  font-size: var(--step--1); color: var(--slate); text-decoration: none;
  padding: .4rem .6rem; border-radius: var(--radius);
  transition: color .15s, background .15s; white-space: nowrap;
}
.dropdown-grid a:hover { color: var(--blue); background: var(--blue-lt); }
.dropdown-title { font-size: var(--step--1); font-weight: 700; color: var(--navy); margin-bottom: .5rem; text-transform: uppercase; letter-spacing: .06em; }

.nav-cta { display: none; }
.nav-toggle {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: .25rem;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; flex-direction: column;
  border-top: 1px solid var(--border); padding-block: var(--sp-s);
  max-height: 70vh; overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a, .mobile-menu button.mob-section-toggle {
  padding: .55rem var(--sp-s); font-size: var(--step-0); font-weight: 500;
  color: var(--navy); text-decoration: none; border-bottom: 1px solid var(--border);
  background: none; border-left: none; border-right: none; border-top: none;
  cursor: pointer; font-family: var(--ff); text-align: left; width: 100%;
  display: flex; justify-content: space-between; align-items: center;
}
.mobile-menu a:hover, .mobile-menu button:hover { color: var(--blue); background: var(--blue-lt); }
.mobile-districts { display: none; flex-direction: column; background: var(--bg-alt); }
.mobile-districts.open { display: flex; }
.mobile-districts a { font-size: var(--step--1); padding-left: 2rem; font-weight: 400; color: var(--slate); }
.mob-cta { background: var(--red) !important; color: var(--white) !important; border-radius: var(--radius); margin: var(--sp-s); text-align: center !important; justify-content: center !important; }
.mob-cta:hover { background: #a30f28 !important; }

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-cta { display: flex; }
  .nav-toggle { display: none; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  padding: .6rem 1.4rem; border-radius: var(--radius);
  font-family: var(--ff); font-size: var(--step--1);
  font-weight: 600; cursor: pointer; border: 2px solid transparent;
  transition: all .15s; text-decoration: none; white-space: nowrap;
}
.btn--primary { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn--primary:hover { background: var(--blue-dk); border-color: var(--blue-dk); color: var(--white); }
.btn--red { background: var(--red); color: var(--white); border-color: var(--red); }
.btn--red:hover { background: #a30f28; border-color: #a30f28; color: var(--white); }
.btn--navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn--navy:hover { background: var(--navy-lt); border-color: var(--navy-lt); color: var(--white); }
.btn--outline { background: transparent; color: var(--navy); border-color: var(--border); }
.btn--outline:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-lt); }
.btn--outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn--outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.1); color: var(--white); }
.btn--sm { padding: .4rem 1rem; font-size: var(--step--1); }
.btn--lg { padding: .8rem 2rem; font-size: var(--step-0); }
.btn--xl { padding: 1rem 2.4rem; font-size: var(--step-1); }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding-block: .75rem;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  font-size: var(--step--1); color: var(--slate-lt);
}
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: .25rem; align-items: center; }
.breadcrumb li::after { content: '/'; margin-left: .25rem; color: var(--border); }
.breadcrumb li:last-child::after { display: none; }
.breadcrumb a { color: var(--slate-lt); text-decoration: none; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb [aria-current="page"] { color: var(--navy); font-weight: 500; }

/* ===== SECTION ===== */
.section { padding-block: var(--sp-xl); }
.section--alt { background: var(--bg-alt); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy h2, .section--navy h3 { color: var(--white); }
.section-label {
  display: inline-block; font-size: var(--step--1); font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--blue); margin-bottom: .4rem;
  border-left: 3px solid var(--blue); padding-left: .6rem;
}
.section-label--red { color: var(--red); border-color: var(--red); }
.section-label--white { color: rgba(255,255,255,.7); border-color: rgba(255,255,255,.4); }
.section-title { font-size: var(--step-4); margin-bottom: var(--sp-m); color: var(--navy); }
.section-lead { font-size: var(--step-1); color: var(--slate); max-width: 60ch; line-height: 1.7; margin-bottom: var(--sp-l); }

/* ===== HERO ===== */
.hero { background: var(--navy); color: var(--white); padding-block: var(--sp-xl) var(--sp-2xl); position: relative; overflow: hidden; }
.hero--district { padding-block: var(--sp-l) var(--sp-xl); }
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 80% at 100% 0%, rgba(37,99,235,.25) 0%, transparent 60%);
}
.hero-tag {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: var(--step--1); font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: rgba(255,255,255,.65);
  margin-bottom: var(--sp-s);
}
.hero h1 { font-size: var(--step-5); color: var(--white); max-width: 18ch; margin-bottom: var(--sp-m); letter-spacing: -.03em; }
.hero h1 .accent { color: #93c5fd; }
.hero-lead { font-size: var(--step-1); color: rgba(255,255,255,.85); max-width: 52ch; margin-bottom: var(--sp-l); line-height: 1.65; }
.hero-cta { display: flex; flex-wrap: wrap; gap: var(--sp-s); margin-bottom: var(--sp-2xl); }
.hero-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(9rem,1fr)); gap: var(--sp-m); padding-top: var(--sp-l); border-top: 1px solid rgba(255,255,255,.15); }
.stat-n { font-size: var(--step-4); font-weight: 800; color: #93c5fd; line-height: 1; display: block; }
.stat-l { font-size: var(--step--1); color: rgba(255,255,255,.75); margin-top: .2rem; display: block; }

/* ===== DISTRICT GRID ===== */
.district-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr)); gap: var(--sp-s); }
.district-card {
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: var(--sp-m); background: var(--white);
  text-decoration: none; color: var(--ink);
  display: flex; flex-direction: column; gap: .4rem;
  transition: box-shadow .15s, border-color .15s, transform .15s;
}
.district-card:hover { box-shadow: var(--shadow); border-color: var(--blue); transform: translateY(-2px); color: var(--ink); }
.district-card-name { font-size: var(--step-1); font-weight: 700; color: var(--navy); }
.district-card-tag { font-size: var(--step--1); color: var(--slate-lt); }
.district-card-price { font-size: var(--step--1); font-weight: 600; color: var(--blue); margin-top: auto; padding-top: .5rem; border-top: 1px solid var(--border); }
.district-card-icon { font-size: 1.5rem; margin-bottom: .25rem; }

/* ===== FEATURE CARDS ===== */
.cards { display: grid; grid-template-columns: 1fr; gap: var(--sp-m); }
@media (min-width:36rem) { .cards { grid-template-columns: repeat(2,1fr); } }
@media (min-width:60rem) { .cards { grid-template-columns: repeat(3,1fr); } }
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: var(--sp-m);
  transition: box-shadow .15s; display: flex; flex-direction: column; gap: .5rem;
}
.card:hover { box-shadow: var(--shadow); }
.card-icon { width: 2.5rem; height: 2.5rem; background: var(--blue-lt); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.card h3 { font-size: var(--step-1); color: var(--navy); }
.card p { color: var(--slate); font-size: var(--step--1); line-height: 1.7; }

/* ===== PRICE TABLE ===== */
.table-wrapper { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.price-table { width: 100%; border-collapse: collapse; font-size: var(--step--1); }
.price-table th { background: var(--navy); color: var(--white); text-align: left; padding: .85rem 1.25rem; font-size: var(--step--1); font-weight: 600; letter-spacing: .02em; }
.price-table td { padding: .8rem 1.25rem; border-bottom: 1px solid var(--border); vertical-align: top; }
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:nth-child(even) td { background: var(--bg-alt); }
.price-table td:last-child { font-weight: 600; color: var(--blue); white-space: nowrap; }

/* ===== STEPS ===== */
.steps { counter-reset: step; display: flex; flex-direction: column; gap: var(--sp-m); }
.step { display: flex; gap: var(--sp-m); background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--sp-m); }
.step-n { counter-increment: step; flex-shrink: 0; width: 2.5rem; height: 2.5rem; border-radius: 50%; background: var(--navy); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: var(--step-1); font-weight: 800; line-height: 1; }
.step-n::after { content: counter(step); }
.step-content h3 { font-size: var(--step-1); margin-bottom: .3rem; color: var(--navy); }
.step-content p { color: var(--slate); font-size: var(--step--1); }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  text-align: left; padding: var(--sp-m) var(--sp-m);
  font-family: var(--ff); font-size: var(--step-0); font-weight: 600; color: var(--navy);
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-s);
  transition: background .15s;
}
.faq-q:hover { background: var(--bg-alt); }
.faq-q[aria-expanded="true"] { background: var(--blue-lt); color: var(--blue-dk); }
.faq-icon { flex-shrink: 0; width: 1.4rem; height: 1.4rem; border: 2px solid currentColor; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform .25s; font-size: .7rem; }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; background: var(--bg-alt); }
.faq-a.open { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; padding: 0 var(--sp-m) var(--sp-m); color: var(--slate); font-size: var(--step--1); line-height: 1.8; }
.faq-a.open .faq-a-inner { padding-top: var(--sp-s); }

/* ===== INFO BOX ===== */
.info-box { background: var(--blue-lt); border-left: 4px solid var(--blue); border-radius: 0 var(--radius) var(--radius) 0; padding: var(--sp-m); margin-block: var(--sp-m); }
.info-box strong { color: var(--blue-dk); }
.info-box p { color: var(--slate); font-size: var(--step--1); margin-top: .3rem; }

/* ===== OPERATOR BOX ===== */
.operator-box {
  border: 2px solid var(--blue); border-radius: var(--radius-lg);
  padding: var(--sp-l); background: var(--white);
  display: flex; flex-direction: column; gap: var(--sp-m);
}
.operator-box h2 { font-size: var(--step-3); color: var(--navy); }
.operator-box p { color: var(--slate); font-size: var(--step-0); line-height: 1.7; max-width: 58ch; }

/* ===== CHECKLIST ===== */
.checklist { list-style: none; display: flex; flex-direction: column; }
.checklist li { display: flex; gap: .75rem; align-items: flex-start; font-size: var(--step--1); color: rgba(255,255,255,.9); padding: .55rem 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.checklist li::before { content: '✓'; color: #86efac; font-weight: 700; flex-shrink: 0; margin-top: .15rem; }

/* ===== PRICING PLANS ===== */
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-m); }
@media (min-width:48rem) { .pricing-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width:72rem) { .pricing-grid { grid-template-columns: repeat(3,1fr); } }
.plan { border: 2px solid var(--border); border-radius: var(--radius-lg); padding: var(--sp-l); background: var(--white); display: flex; flex-direction: column; gap: var(--sp-m); position: relative; }
.plan--featured { border-color: var(--blue); box-shadow: var(--shadow-lg); }
.plan-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--blue); color: var(--white); font-size: var(--step--1); font-weight: 700; padding: .25rem 1rem; border-radius: 20px; white-space: nowrap; }
.plan-name { font-size: var(--step-2); font-weight: 800; color: var(--navy); }
.plan-price { display: flex; align-items: baseline; gap: .4rem; }
.plan-price strong { font-size: var(--step-5); font-weight: 800; color: var(--blue); line-height: 1; }
.plan-price span { color: var(--slate-lt); font-size: var(--step--1); }
.plan-desc { color: var(--slate); font-size: var(--step--1); line-height: 1.7; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.plan-features li { display: flex; gap: .6rem; align-items: flex-start; font-size: var(--step--1); line-height: 1.5; }
.plan-features li::before { content: '✓'; color: var(--success); font-weight: 700; flex-shrink: 0; margin-top: .1rem; }
.plan-features li.no::before { content: '–'; color: var(--border); }
.plan-features li.no { color: var(--slate-lt); }
.plan .btn { width: 100%; margin-top: auto; }

/* ===== FORM ===== */
.form-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-m); }
@media (min-width:48rem) { .form-grid { grid-template-columns: repeat(2,1fr); } }
.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-group--full { grid-column: 1/-1; }
.form-group label { font-size: var(--step--1); font-weight: 600; color: var(--navy); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: .65rem 1rem; border: 1.5px solid var(--border);
  border-radius: var(--radius); font-family: var(--ff);
  font-size: var(--step--1); color: var(--ink);
  background: var(--bg-alt); transition: border-color .15s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,.12); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: var(--step--1); color: var(--slate-lt); margin-top: var(--sp-s); }

/* ===== ARTICLE BODY ===== */
.article-body h2 { font-size: var(--step-3); color: var(--navy); margin-top: var(--sp-l); margin-bottom: var(--sp-s); }
.article-body h3 { font-size: var(--step-2); color: var(--navy); margin-top: var(--sp-m); margin-bottom: .4rem; }
.article-body p { color: var(--slate); margin-bottom: var(--sp-s); line-height: 1.8; font-size: var(--step--1); }
.article-body ul { list-style: none; margin-bottom: var(--sp-s); }
.article-body ul li { font-size: var(--step--1); color: var(--slate); padding: .25rem 0 .25rem 1.2rem; position: relative; }
.article-body ul li::before { content: '→'; position: absolute; left: 0; color: var(--blue); font-size: .85em; }
.article-body strong { color: var(--ink); }

/* ===== DISTRICT HIGHLIGHT BOX ===== */
.district-facts {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(10rem,1fr));
  gap: var(--sp-s); margin-bottom: var(--sp-l);
}
.district-fact {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: var(--sp-s) var(--sp-m);
  border-top: 3px solid var(--blue);
}
.district-fact-label { font-size: var(--step--1); color: var(--slate-lt); font-weight: 500; }
.district-fact-value { font-size: var(--step-1); font-weight: 700; color: var(--navy); margin-top: .15rem; }

/* ===== CTA BAND ===== */
.cta-band { background: var(--navy); color: var(--white); padding-block: var(--sp-xl); text-align: center; }
.cta-band h2 { font-size: var(--step-4); color: var(--white); margin-bottom: var(--sp-s); }
.cta-band p { color: rgba(255,255,255,.8); font-size: var(--step-0); max-width: 52ch; margin-inline: auto; margin-bottom: var(--sp-m); }

/* ===== FOOTER ===== */
.site-footer { background: #0a1628; color: #8899aa; padding-block: var(--sp-l); }
.footer-inner { display: flex; flex-direction: column; gap: var(--sp-m); }
@media (min-width:48rem) { .footer-inner { flex-direction: row; align-items: flex-start; justify-content: space-between; } }
.footer-logo { font-size: var(--step-2); font-weight: 800; color: rgba(255,255,255,.85); text-decoration: none; letter-spacing: -.03em; }
.footer-logo .logo-dot { color: var(--red); }
.footer-brand p { font-size: var(--step--1); margin-top: .5rem; max-width: 28ch; line-height: 1.6; color: #8899aa; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .35rem; }
.footer-links a { color: #8899aa; text-decoration: none; font-size: var(--step--1); transition: color .15s; }
.footer-links a:hover { color: #93c5fd; }
.footer-col-title { font-size: var(--step--1); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.5); margin-bottom: .5rem; }
.footer-bottom { margin-top: var(--sp-m); padding-top: var(--sp-m); border-top: 1px solid rgba(255,255,255,.06); font-size: var(--step--1); display: flex; flex-wrap: wrap; gap: var(--sp-s); justify-content: space-between; color: #8899aa; }
.footer-bottom a { color: #8899aa; }
.footer-bottom a:hover { color: #93c5fd; }

/* ===== ANIMATIONS ===== */
@media (prefers-reduced-motion: no-preference) {
  [data-reveal] { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
  [data-reveal].revealed { opacity: 1; transform: none; }
}

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.mt-m { margin-top: var(--sp-m); }
.mt-l { margin-top: var(--sp-l); }
.mb-m { margin-bottom: var(--sp-m); }
