@import url('https://fonts.googleapis.com/css2?family=Syne:wght@700;800&family=Cabinet+Grotesk:wght@400;500;700;800;900&display=swap');

/* ══════════════════════════════
   CSS VARIABLES
══════════════════════════════ */
:root {
  --orange:      #FF6B00;
  --orange-dark: #E66000;
  --dark:        #1A1A1A;
  --dark2:       #111111;
  --border:      #242424;
  --border-mid:  #2a2a2a;
  --text-muted:  #666;
  --text-dim:    #888;
  --text-faint:  #555;
  --light-bg:    #F5F4F0;
  --white:       #ffffff;
  --bs-modal-border-radius: 0 !important;
  --bs-modal-inner-border-radius: 0 !important;
}

/* ══════════════════════════════
   BASE
══════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Cabinet Grotesk', sans-serif;
  margin: 0;
  padding: 0;
  background: var(--light-bg);
  color: var(--dark);
}
/* ── Custom scrollbar ── */
::-webkit-scrollbar       { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: #FF6B00; border-radius: 0; }
::-webkit-scrollbar-thumb:hover { background: #e55f00; }
::-webkit-scrollbar-corner { background: #0a0a0a; }

body {
  scrollbar-width: thin;
  scrollbar-color: #FF6B00 #0a0a0a;
}
/* ══════════════════════════════
   MODAL
══════════════════════════════ */
.modal-content { border-radius: 0 !important; }

#loginModal .modal-content,
#signupModal .modal-content {
  border-radius: 0 !important;
  border: 1px solid #1A1A1A !important;
  overflow: hidden;
  box-shadow: 8px 8px 0 rgba(0,0,0,0.15) !important;
}

#loginModal .modal-header,
#signupModal .modal-header {
  position: relative;
  padding: 28px 32px 24px !important;
}
#loginModal .modal-header::after,
#signupModal .modal-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 32px;
  width: 40px; height: 3px;
  background: var(--orange);
}
#loginModal .modal-title,
#signupModal .modal-title {
  font-family: 'Syne', sans-serif !important;
  font-size: 24px !important;
  font-weight: 800 !important;
  letter-spacing: -0.5px;
}
#loginModal .modal-body,
#signupModal .modal-body  { padding: 28px 32px !important; }
#loginModal .modal-footer,
#signupModal .modal-footer { padding: 0 32px 24px !important; }

/* ══════════════════════════════
   FORM LABELS
══════════════════════════════ */
.form-label {
  font-size: 10px !important;
  letter-spacing: 1.8px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  color: #1A1A1A !important;
  margin-bottom: 8px !important;
  display: block !important;
}
/* Cursor glow на картках */
.plan-card,
.pricing-card,
.fw-card,
.rv,
.skill,
.chart-card {
    position: relative;
    overflow: hidden;
}

.plan-card::after,
.pricing-card::after,
.fw-card::after,
.rv::after,
.skill::after,
.chart-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle 200px at var(--glow-x, 50%) var(--glow-y, 50%),
        rgba(255,107,0,0.07) 0%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 5;
}

.plan-card.glow-active::after,
.pricing-card.glow-active::after,
.fw-card.glow-active::after,
.rv.glow-active::after,
.skill.glow-active::after,
.chart-card.glow-active::after {
    opacity: 1;
}
/* ══════════════════════════════
   INPUTS
══════════════════════════════ */
.custom-field,
.form-control {
  border-radius: 0 !important;
  border: 1.5px solid #E0E0E0 !important;
  height: 46px !important;
  padding: 0 14px !important;
  font-size: 14px !important;
  background: #FAFAFA !important;
  color: #1A1A1A !important;
  transition: border-color 0.2s, background 0.2s !important;
  box-shadow: none !important;
}
.custom-field:focus,
.form-control:focus {
  border-color: var(--orange) !important;
  background: #fff !important;
  box-shadow: none !important;
  outline: none !important;
}

/* ══════════════════════════════
   intlTelInput
══════════════════════════════ */
.iti { width: 100% !important; display: block !important; }
.iti input,
.iti input[type=tel] {
  width: 100% !important;
  height: 46px !important;
  border: 1.5px solid #E0E0E0 !important;
  border-radius: 0 !important;
  background: #FAFAFA !important;
  font-size: 14px !important;
  color: #1A1A1A !important;
  box-sizing: border-box !important;
  box-shadow: none !important;
  padding-left: 95px !important;
}
.iti input:focus {
  border-color: var(--orange) !important;
  background: #fff !important;
  box-shadow: none !important;
  outline: none !important;
}
.iti__selected-flag {
  background: #F0F0F0 !important;
  border-right: 1.5px solid #E0E0E0 !important;
  border-radius: 0 !important;
  padding: 0 10px !important;
}
.iti__selected-flag:hover,
.iti__selected-flag:focus { background: #E8E8E8 !important; }
.iti__selected-dial-code {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #1A1A1A !important;
  margin-left: 4px !important;
}
.iti__flag-container { border-radius: 0 !important; }
.footer-address-company {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    
    transition: border-color 0.2s;
}
.footer-address-company:hover {
    border-bottom-color: #FF6B00;
    color: #fff;
}
/* ══════════════════════════════
   TOGGLE (login modal)
══════════════════════════════ */
#loginModal .toggle-wrap {
  display: flex;
  border: 1.5px solid #1A1A1A;
  margin-bottom: 24px;
}
#loginModal .toggle-wrap button {
  flex: 1; height: 42px; border: none;
  font-size: 13px; font-weight: 500;
  cursor: pointer; transition: all 0.2s; letter-spacing: 0.5px;
}

/* ══════════════════════════════
   BUTTONS – MODAL
══════════════════════════════ */
.btn-orange-action {
  border-radius: 0 !important;
  font-family: 'Syne', sans-serif !important;
  letter-spacing: 2px !important;
  height: 50px !important;
  font-size: 13px !important;
  background: var(--orange) !important;
  border: 2px solid var(--orange) !important;
  color: #fff !important;
  transition: all 0.2s !important;
  margin-top: 4px;
}
.btn.btn-orange-action:hover,
.btn.btn-orange-action:focus {
  background: transparent !important;
  color: var(--orange) !important;
  border-color: var(--orange) !important;
  box-shadow: none !important;
}

/* ══════════════════════════════
   HEADER
══════════════════════════════ */
.site-header {
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Logo */
.site-logo {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0;
  transition: opacity 0.2s;
}
.site-logo:hover { opacity: 0.85; }
.site-logo-dot { color: var(--orange); }
.site-logo-tag {
  font-size: 10px;
  color: #444;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid var(--border-mid);
  line-height: 1;
}

/* Desktop nav */
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  font-size: 11px;
  color: var(--text-muted);
  text-decoration: none;
  padding: 6px 16px;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
  transition: color 0.2s;
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 14px; right: 14px;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.2s ease;
  transform-origin: left;
}
.site-nav a:hover { color: var(--white); }
.site-nav a:hover::after { transform: scaleX(1); }
.site-nav a.active { color: var(--white); }
.site-nav a.active::after { transform: scaleX(1); }

/* Desktop right */
.site-header-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* User chip */
.user-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px 6px 6px;
  border: 1px solid var(--border-mid);
  cursor: default;
  transition: border-color 0.2s;
}
.user-chip:hover { border-color: var(--orange); }
.user-chip-avatar {
  width: 28px; height: 28px;
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-family: 'Syne', sans-serif;
}
.user-chip-email {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.2px;
}

/* Header divider */
.header-divider {
  width: 1px; height: 24px;
  background: var(--border-mid);
  flex-shrink: 0;
}

/* Header ghost button */
.btn-header-ghost {
  height: 36px;
  padding: 0 20px;
  background: transparent;
  border: 1px solid #333;
  color: #555;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
  font-family: 'Syne', sans-serif;
}
.btn-header-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* Header primary button */
.btn-header-primary {
  height: 36px;
  padding: 0 20px;
  background: var(--orange);
  border: 1.5px solid var(--orange);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  font-family: 'Syne', sans-serif;
}
.btn-header-primary:hover {
  background: transparent;
  color: var(--orange);
}

/* Header danger button */
.btn-header-danger {
  height: 36px;
  padding: 0 16px;
  background: transparent;
  border: 1px solid rgba(220,53,69,0.3);
  color: rgba(220,53,69,0.7);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.btn-header-danger:hover {
  background: rgba(220,53,69,0.1);
  border-color: rgba(220,53,69,0.6);
}

/* ══════════════════════════════
   BURGER
══════════════════════════════ */
.burger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--border-mid);
  width: 40px; height: 40px;
  cursor: pointer;
  transition: border-color 0.2s;
  flex-shrink: 0;
  padding: 0;
}
.burger:hover { border-color: var(--orange); }
.burger:hover .burger-line { background: var(--orange); }
.burger-line {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--text-dim);
  transition: all 0.25s ease;
  transform-origin: center;
}
.burger.active .burger-line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.active .burger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.active .burger-line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ══════════════════════════════
   MOBILE DRAWER
══════════════════════════════ */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--dark2);
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
  gap: 0;
  animation: slideDown 0.25s ease;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.15s, padding-left 0.15s;
  font-weight: 500;
}
.mobile-nav a:hover { color: var(--orange); padding-left: 6px; }

.mobile-user-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
/* Mobile nav buttons */
.mobile-nav-btns {
    display: flex;
    gap: 8px;
    padding: 16px 24px;
    border-top: 1px solid #2a2a2a;
}

.mobile-btn-ghost {
    flex: 1;
    height: 44px;
    background: transparent;
    border: 1.5px solid #333;
    color: #888;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: 'Syne', sans-serif;
    transition: all 0.2s;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-sizing: border-box;
}
.mobile-btn-ghost:hover {
    border-color: #FF6B00;
    color: #FF6B00;
}

.mobile-btn-primary {
    flex: 1;
    height: 44px;
    background: #FF6B00;
    border: 1.5px solid #FF6B00;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: 'Syne', sans-serif;
    transition: all 0.2s;
    border-radius: 0;
}
.mobile-btn-primary:hover {
    background: transparent;
    color: #FF6B00;
}

.mobile-btn-danger {
    width: 100%;
    height: 44px;
    background: transparent;
    border: 1.5px solid rgba(220,53,69,0.4);
    color: #ef4444;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: 'Syne', sans-serif;
    transition: all 0.2s;
    border-radius: 0;
}
.mobile-btn-danger:hover {
    background: rgba(220,53,69,0.1);
    border-color: #ef4444;
}
/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.site-footer {
  background: var(--dark);
  color: var(--white);
}

/* Top grid */
.footer-top {
  padding: 64px 96px 48px;            /* ← 96px */
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px;
  border-bottom: 1px solid var(--border-mid);
}

.footer-brand-col {}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.footer-logo span { color: var(--orange); }

.footer-desc {
  font-size: 13px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}
.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-pay-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s;
    height: 36px;
}
.footer-pay-logo:hover {
    background: #f0f0f0;
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}
.footer-pay-logo svg text[fill="#635BFF"] { fill: #635BFF; }   /* Stripe — лишаємо */
.footer-pay-logo svg text[fill="rgba(255,255,255,0.7)"] { fill: #1A1A1A; } /* PayAdmit "admit" — темний */
/* Newsletter */
.footer-newsletter {
  display: flex;
  height: 44px;
  border: 1px solid var(--border-mid);
  margin-bottom: 10px;
  transition: border-color 0.2s;
}
.footer-newsletter:focus-within { border-color: var(--orange); }
.footer-newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0 14px;
  font-size: 13px;
  color: var(--white);
  outline: none;
  font-family: 'Cabinet Grotesk', sans-serif;
}
.footer-newsletter input::placeholder { color: #444; }
.footer-newsletter button {
  width: 44px;
  background: var(--orange);
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: #fff;
  transition: background 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.footer-newsletter button:hover { background: var(--orange-dark); }

.footer-newsletter-note {
  font-size: 11px;
  color: #444;
  letter-spacing: 0.3px;
}

/* Col titles */
.footer-col-title {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
  max-width: 40px;
}

.footer-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: var(--text-faint);
  text-decoration: none;
  transition: color 0.2s, padding-left 0.15s;
  display: block;
}
.footer-links a:hover { color: var(--white); padding-left: 4px; }

/* Mid */
.footer-mid {
  padding: 28px 96px;                  /* ← 96px */
  border-bottom: 1px solid var(--border-mid);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-socials { display: flex; gap: 8px; }
.footer-social-btn {
  width: 38px; height: 38px;
  border: 1px solid var(--border-mid);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  font-size: 14px;
  color: var(--text-muted);
  transition: all 0.2s;
}
.footer-social-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

.footer-stats { display: flex; gap: 48px; align-items: center; }
.footer-stat {}
.footer-stat-n {
  font-family: 'Syne', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  line-height: 1;
}
.footer-stat-n span { color: var(--orange); }
.footer-stat-l {
  font-size: 10px;
  color: var(--text-faint);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 4px;
}
/* ── FOOTER: Address column ── */
.footer-top {
    grid-template-columns: 2fr 1.5fr 1fr 1fr 1fr; /* було 4 колонки — стало 5 */
}
.footer-address-col { }
.footer-address {
    font-style: normal;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
}
.footer-address-company {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 700;
    margin-bottom: 4px;
    font-size: 16px;
    font-family: 'Cabinet Grotesk', sans-serif;
}
.footer-address a {
    color: #FF6B00;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s;
}
.footer-address a:hover { opacity: 0.8; }

/* ── FOOTER: Payment strip ── */
.footer-payment {
    padding: 20px 0;
    border-top: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.footer-payment-label {
    font-size: 10px;
    color: #FF6B00;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
}
.footer-payment-logos {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.footer-pay-text-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 28px;
    padding: 0 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 3px;
    gap: 1px;
}
.footer-pay-text-badge span {
    font-size: 10px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Syne', sans-serif;
    letter-spacing: 0.5px;
    line-height: 1;
}
.footer-pay-text-badge .footer-pay-text-sub {
    font-size: 7px;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 400;
    font-family: 'Cabinet Grotesk', sans-serif;
    letter-spacing: 0;
    text-transform: none;
}
.footer-pay-text-badge--blue span:first-child { color: #1A1F71; }

/* ── FOOTER responsive ── */
@media (max-width: 1100px) {
    .footer-top {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .footer-brand-col { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-brand-col,
    .footer-address-col { grid-column: 1 / -1; }
}
/* Bottom bar */
.footer-bottom {
  padding: 20px 96px;                  /* ← 96px */
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 12px;
  color: #444;
}
.footer-copy span { color: var(--orange); }
.footer-made {
  font-size: 12px;
  color: #444;
}
.footer-made span { color: #dc3545; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  font-size: 11px;
  color: #444;
  text-decoration: none;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--orange); }

/* ══════════════════════════════
   TEXT UTILITIES
══════════════════════════════ */
.text-orange { color: var(--orange); }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  .site-header-inner { padding: 0 32px; }
  .site-logo-tag { display: none; }
  .site-nav { display: none; }
  .desktop-only { display: none; }
  .burger { display: flex; }

  .footer-top {
    padding: 48px 40px 36px;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-mid { padding: 24px 40px; }
  .footer-bottom { padding: 20px 40px; }
}

/* Mobile */
@media (max-width: 768px) {
  .site-header-inner { padding: 0 20px; height: 56px; }
  .site-logo { font-size: 18px; }
  .user-email-label { display: none; }

  .footer-top {
    padding: 40px 24px 32px;
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-mid {
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .footer-stats { gap: 28px; }
  .footer-bottom {
    padding: 16px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .footer-legal { flex-wrap: wrap; gap: 16px; }
  * {
    scrollbar-width: thin;
    scrollbar-color: #FF6B00 #0a0a0a;
  }
  *::-webkit-scrollbar       { width: 4px; height: 4px; }
  *::-webkit-scrollbar-track { background: #0a0a0a; }
  *::-webkit-scrollbar-thumb { background: #FF6B00; border-radius: 0; }
  *::-webkit-scrollbar-thumb:hover { background: #e55f00; }
}

/* Small mobile */
@media (max-width: 480px) {
  .site-header-inner { padding: 0 16px; }
  .footer-top    { padding: 32px 16px; }
  .footer-mid    { padding: 20px 16px; }
  .footer-bottom { padding: 16px; }
  .footer-stats  { flex-direction: column; gap: 16px; }
}