/* ============================================================
   ErgoTrack — style.css
   ============================================================ */

html { scroll-behavior: smooth; }
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

.site {
  overflow-x: hidden;
  border-radius: 1;
}

/* ── Site wrapper ── */
.site {
  width: 100%;
  background: #0a0f1e;
  color: white;
  border-radius: 0px;
  overflow: hidden;
  font-family: -apple-system, 'Inter', sans-serif;
}

/* ── NAV ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
  background: rgba(10,15,30,0.97);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.logo-wrap { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.logo-icon img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }
.logo-text { font-size: 18px; font-weight: 800; color: white; }
.logo-text span { color: #1A73E8; }
.nav-links { display: flex; gap: 24px; }
.nav-links a { color: rgba(255,255,255,0.55); font-size: 13px; cursor: pointer; text-decoration: none; }
.nav-cta { display: flex; gap: 10px; }

/* ── Buttons ── */
.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  padding: 7px 16px;
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
}
.btn-primary {
  background: #1A73E8;
  border: none;
  color: white;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.btn-big {
  background: #1A73E8;
  color: white;
  border: none;
  padding: 13px 26px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex; align-items: center; gap: 8px;
  text-decoration: none;
}
.btn-big-ghost {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 13px 22px;
  border-radius: 10px;
  font-size: 14px;
  cursor: pointer;
  display: flex; align-items: center; gap: 8px;
  text-decoration: none;
}

/* ── Hamburger & Mobile Menu ── */
/* 1. Κρύβουμε το μενού και το κουμπί για μεγάλες οθόνες (Desktop) */
/* --- 1. ΤΟ ΚΟΥΜΠΙ (Hamburger) --- */
.hamburger {
  /* Από προεπιλογή κρυφό (Desktop) */
  display: none; 
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
}

/* --- 2. ΤΟ ΜΕΝΟΥ (Mobile Menu) --- */
.mobile-menu {
  display: flex; /* Πάντα flex για να δουλεύει η διάταξη */
  flex-direction: column;
  gap: 12px;
  position: absolute;
  top: 64px; left: 0; right: 0;
  background: rgba(10,15,30,0.98);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  z-index: 1000;

  /* Κρυφό με μηδενικό ύψος για το animation */
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 20px; 
  transition: all 0.4s ease-in-out;
}

/* --- 3. Η ΚΛΑΣΗ ΠΟΥ ΤΟ ΑΝΟΙΓΕΙ --- */
.mobile-menu.open {
  max-height: 500px; /* Όσο ύψος χρειάζεται */
  opacity: 1;
  padding: 16px 20px;
}

.mobile-menu a {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  text-decoration: none;
}

/* --- 4. MEDIA QUERY (Εδώ ορίζεις πότε θα εμφανιστεί) --- */
@media (max-width: 992px) { /* Το ανέβασα στα 992px για να πιάνει και tablet */
  .hamburger {
    display: flex; /* Εμφανίζεται μόνο σε μικρές οθόνες */
  }
  
  /* Το .mobile-menu παραμένει ως έχει, 
     απλώς τώρα το κουμπί που το ελέγχει είναι ορατό */
}

/* Τα στυλ των links (εκτός media query για να τα έχεις παντού αν χρειαστεί) */
.mobile-menu a {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    text-decoration: none;
}

/* Προαιρετικό: Animation για το ίδιο το Hamburger (X) */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 340px;
  min-height: 520px;
  padding: 0 40px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 65% 50%, rgba(26,115,232,0.13) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 80%, rgba(52,168,83,0.09) 0%, transparent 50%);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 60px 0;
  position: relative; z-index: 2;
}
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(26,115,232,0.15);
  border: 1px solid rgba(26,115,232,0.3);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 11px; color: #6BA8F0;
  margin-bottom: 22px;
  width: fit-content;
}
.badge-dot { width: 6px; height: 6px; background: #34A853; border-radius: 50%; }
.hero-title { font-size: 36px; font-weight: 800; line-height: 1.15; letter-spacing: -1px; margin-bottom: 14px; }
.hero-title .blue { color: #1A73E8; }
.hero-title .green { color: #34A853; }
.hero-sub { font-size: 14px; color: rgba(255,255,255,0.58); line-height: 1.65; max-width: 420px; margin-bottom: 28px; }
.hero-sub strong { color: rgba(255,255,255,0.85); font-weight: 500; }
.hero-actions { display: flex; gap: 12px; margin-bottom: 36px; }
.hero-stats { display: flex; gap: 28px; }
.stat-num { font-size: 21px; font-weight: 700; }
.stat-lbl { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 2px; }
.hero-right {
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2;
  padding: 40px 0;
}

/* ── Phone mockup ── */
.phone-wrap { position: relative; }
.phone-glow {
  position: absolute; inset: -30px;
  background: radial-gradient(ellipse, rgba(26,115,232,0.22) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.phone {
  width: 195px;
  background: #0d0d0d;
  border-radius: 34px;
  border: 2px solid rgba(255,255,255,0.12);
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0,0,0,0.55);
}
.phone-notch { width: 58px; height: 20px; background: #0d0d0d; border-radius: 0 0 12px 12px; margin: 0 auto; }
.phone-screen { background: #F8F9FA; height: 390px; overflow: hidden; }
.pbar { background: #1A73E8; padding: 10px 12px 8px; }
.pbar-t { color: white; font-size: 12px; font-weight: 700; }
.pbar-s { color: rgba(255,255,255,0.65); font-size: 9px; }
.pbody { padding: 9px; }
.pcard { background: white; border-radius: 10px; padding: 9px; margin-bottom: 7px; border: 1px solid #E8EAED; }
.pcard-t { font-size: 9px; font-weight: 600; color: #555; }
.pcard-v { font-size: 17px; font-weight: 700; color: #1A73E8; margin: 2px 0; }
.pcard-s { font-size: 8px; color: #34A853; }
.prow2 { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-bottom: 7px; }
.pmini { background: white; border-radius: 8px; padding: 7px 8px; border: 1px solid #E8EAED; }
.pmini-l { font-size: 8px; color: #888; }
.pmini-v { font-size: 12px; font-weight: 700; }
.ptimer { background: #1A73E8; border-radius: 8px; padding: 8px; text-align: center; margin-bottom: 7px; }
.ptimer-l { font-size: 8px; color: rgba(255,255,255,0.65); }
.ptimer-v { font-size: 18px; font-weight: 700; color: white; font-family: monospace; }
.pworker {
  background: white; border-radius: 7px; padding: 7px 9px;
  border: 1px solid rgba(234,67,53,0.25);
  margin-bottom: 5px;
  display: flex; justify-content: space-between; align-items: center;
}
.pworker-name { font-size: 8px; font-weight: 600; color: #1C1B1F; }
.pworker-s { font-size: 7px; color: #888; }
.pworker-badge { background: rgba(234,67,53,0.1); border-radius: 5px; padding: 2px 5px; font-size: 7px; font-weight: 700; color: #EA4335; }
.pnav { display: flex; justify-content: space-around; padding: 7px 0; background: white; border-top: 1px solid #E8EAED; }
.pnav-item { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.pnav-dot { width: 16px; height: 3px; border-radius: 3px; background: #1A73E8; }
.pnav-l { font-size: 6px; color: #888; }
.pnav-l.a { color: #1A73E8; }
.pnav-ic { width: 16px; height: 16px; border-radius: 4px; background: #F1F3F4; }

/* ── Sections ── */
.section { padding: 56px 40px; }
.sec-label { font-size: 11px; color: #1A73E8; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px; }
.sec-title { font-size: 26px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 6px; }
.sec-sub { font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 36px; }

/* ── Features ── */
.feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.feat { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 18px; }
.feat-icon { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.feat-icon svg { width: 20px; height: 20px; }
.feat-t { font-size: 12px; font-weight: 700; color: white; margin-bottom: 5px; }
.feat-d { font-size: 11px; color: rgba(255,255,255,0.48); line-height: 1.5; }
.feat.new-feat { border-color: rgba(26,115,232,0.25); background: rgba(26,115,232,0.06); }
.new-tag { display: inline-block; background: rgba(52,168,83,0.2); border: 1px solid rgba(52,168,83,0.3); color: #5FCF84; font-size: 9px; font-weight: 700; padding: 2px 6px; border-radius: 4px; margin-bottom: 6px; }

/* ── Workers ── */
.workers-section {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 56px 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.worker-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; overflow: hidden; }
.wcard-header { background: #1A73E8; padding: 16px 20px; }
.wcard-ht { font-size: 14px; font-weight: 700; color: white; }
.wcard-hs { font-size: 11px; color: rgba(255,255,255,0.7); margin-top: 2px; }
.wcard-body { padding: 14px; }
.wrow {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 10px; margin-bottom: 8px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.07);
  justify-content: space-between;
}
.wrow-left { display: flex; align-items: center; gap: 10px; }
.wavatar { width: 32px; height: 32px; border-radius: 50%; background: rgba(26,115,232,0.2); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: #1A73E8; }
.wname { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.9); }
.wspec { font-size: 10px; color: rgba(255,255,255,0.4); }
.wunpaid { background: rgba(234,67,53,0.15); border: 1px solid rgba(234,67,53,0.3); color: #F28B82; font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 6px; }
.wpaid { background: rgba(52,168,83,0.15); color: #5FCF84; font-size: 10px; font-weight: 600; padding: 3px 8px; border-radius: 6px; }
.wcard-footer { padding: 10px 14px; border-top: 1px solid rgba(255,255,255,0.07); display: flex; justify-content: space-between; align-items: center; }
.wf-label { font-size: 11px; color: rgba(255,255,255,0.4); }
.wf-val { font-size: 13px; font-weight: 700; color: #EA4335; }
.achk { display: flex; gap: 10px; align-items: center; font-size: 13px; color: rgba(255,255,255,0.58); }
.achk svg { width: 14px; height: 14px; flex-shrink: 0; color: #34A853; }

/* ── Sync ── */
.sync-section { padding: 56px 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.sync-visual { display: flex; flex-direction: column; gap: 12px; }
.sync-row { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-radius: 12px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); }
.sync-icon { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sync-icon svg { width: 20px; height: 20px; }
.sync-t { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.88); }
.sync-s { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 1px; }
.sync-badge { margin-left: auto; font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: 20px; white-space: nowrap; }
.sb-green { background: rgba(52,168,83,0.2); color: #5FCF84; }
.sb-amber { background: rgba(251,188,4,0.15); color: #FBBC04; }
.sb-blue { background: rgba(26,115,232,0.2); color: #6BA8F0; }

/* ── Pricing ── */
.pricing-section {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 56px 40px;
}
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 680px; margin: 0 auto; }
.pcard2 { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 22px; text-align: center; position: relative; }
.pcard2.feat2 { background: #1A73E8; border-color: #1A73E8; }
.pbadge2 { position: absolute; top: -10px; left: 50%; transform: translateX(-50%); background: #34A853; color: white; font-size: 9px; font-weight: 700; padding: 3px 10px; border-radius: 20px; white-space: nowrap; }
.pp { font-size: 11px; color: rgba(255,255,255,0.5); margin-bottom: 6px; }
.pcard2.feat2 .pp { color: rgba(255,255,255,0.75); }
.pamount { font-size: 30px; font-weight: 800; color: white; }
.psub { font-size: 10px; color: rgba(255,255,255,0.45); margin-top: 3px; }
.pcard2.feat2 .psub { color: rgba(255,255,255,0.7); }
.pdiv { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 14px 0; }
.pcard2.feat2 .pdiv { border-color: rgba(255,255,255,0.25); }
.pfeats { list-style: none; text-align: left; margin-bottom: 18px; }
.pfeats li { font-size: 11px; color: rgba(255,255,255,0.6); padding: 3px 0; display: flex; gap: 8px; align-items: center; }
.pfeats li svg { width: 12px; height: 12px; flex-shrink: 0; }
.pcard2.feat2 .pfeats li { color: rgba(255,255,255,0.85); }
.pbtn2 { width: 100%; padding: 9px; border-radius: 8px; font-size: 12px; font-weight: 700; cursor: pointer; border: none; }
.pbtn-ghost { background: transparent; border: 1px solid rgba(255,255,255,0.2); color: white; }
.pbtn-white { background: white; color: #1A73E8; }

/* ── Auth ── */
/* AUTH */
  .auth-section { padding: 60px 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
  .auth-text h2 { font-size: 26px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 12px; }
  .auth-text p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; }
  .auth-form { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 28px; }
  .auth-tabs { display: flex; gap: 0; margin-bottom: 22px; background: rgba(0,0,0,0.3); border-radius: 8px; padding: 3px; }
  .auth-tab { flex: 1; text-align: center; padding: 7px; border-radius: 6px; font-size: 13px; cursor: pointer; color: rgba(255,255,255,0.5); }
  .auth-tab.active { background: #1A73E8; color: white; font-weight: 600; }
  .form-group { margin-bottom: 14px; }
  .form-label { font-size: 11px; color: rgba(255,255,255,0.5); margin-bottom: 5px; display: block; }
  .form-input { width: 100%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; padding: 10px 12px; color: rgba(255,255,255,0.7); font-size: 13px; }
  .registerBtn { width: 100%; background: #1A73E8; color: white; border: none; padding: 12px; border-radius: 8px; font-size: 14px; font-weight: 700; cursor: pointer; margin-top: 6px; }
  .auth-or { text-align: center; font-size: 11px; color: rgba(255,255,255,0.3); margin: 12px 0; }
  .btn-demo { width: 100%; background: transparent; color: #34A853; border: 1px solid rgba(52,168,83,0.3); padding: 10px; border-radius: 8px; font-size: 12px; font-weight: 600; cursor: pointer; }
.auth-section { padding: 56px 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.auth-form { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 26px; }
.atabs { display: flex; margin-bottom: 20px; background: rgba(0,0,0,0.3); border-radius: 8px; padding: 3px; }
.atab { flex: 1; text-align: center; padding: 7px; border-radius: 6px; font-size: 13px; cursor: pointer; color: rgba(255,255,255,0.45); }
.atab.active { background: #1A73E8; color: white; font-weight: 600; }
.fgroup { margin-bottom: 12px; }
.flabel { font-size: 11px; color: rgba(255,255,255,0.45); margin-bottom: 4px; display: block; }
.finput { width: 100%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; padding: 10px 12px; color: rgba(255,255,255,0.6); font-size: 13px; font-family: inherit; }
.fbtn { width: 100%; background: #1A73E8; color: white; border: none; padding: 12px; border-radius: 8px; font-size: 14px; font-weight: 700; cursor: pointer; margin-top: 4px; }
.auth-or { text-align: center; font-size: 11px; color: rgba(255,255,255,0.25); margin: 10px 0; }
.fbtn-demo { width: 100%; background: transparent; color: #34A853; border: 1px solid rgba(52,168,83,0.3); padding: 10px; border-radius: 8px; font-size: 12px; font-weight: 600; cursor: pointer; }

/* ── Footer ── */
.footer { padding: 20px 40px; border-top: 1px solid rgba(255,255,255,0.06); display: flex; justify-content: space-between; align-items: center; }
.flogo { font-size: 14px; font-weight: 700; }
.flogo span { color: #1A73E8; }
.flinks a { font-size: 11px; color: rgba(255,255,255,0.3); margin-left: 16px; text-decoration: none; }
.fcopy { font-size: 11px; color: rgba(255,255,255,0.25); }

/* ── Cookie Banner ── */
#cookie-banner {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 860px;
  background: #0d1424;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex; align-items: center; gap: 16px;
  z-index: 9999;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
#cookie-banner .cookie-icon {
  width: 38px; height: 38px;
  background: rgba(26,115,232,0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
#cookie-banner .cookie-text { flex: 1; }
#cookie-banner .cookie-title { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 3px; }
#cookie-banner .cookie-desc { font-size: 11px; color: rgba(255,255,255,0.5); line-height: 1.5; }
#cookie-banner .cookie-desc a { color: #1A73E8; }
#cookie-banner .cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }
#cookie-banner #cookie-accept { background: #1A73E8; color: white; border: none; padding: 8px 16px; border-radius: 8px; font-size: 12px; font-weight: 700; cursor: pointer; }
#cookie-banner #cookie-decline { background: transparent; color: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.15); padding: 8px 14px; border-radius: 8px; font-size: 12px; cursor: pointer; }

/* ============================================================
   MOBILE — max-width: 768px
   ============================================================ */
@media (max-width: 768px) {

  /* Nav */
  .nav { padding: 0 16px; height: 56px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { top: 56px; }

  /* Hero */
  .hero { grid-template-columns: 1fr; padding: 0 20px; }
  .hero-right { display: none; }
  .hero-left { padding: 36px 0; }
  .hero-title { font-size: 24px; letter-spacing: -0.5px; }
  .hero-sub { font-size: 13px; }
  .hero-actions { flex-direction: column; }
  .btn-big, .btn-big-ghost { width: 100%; justify-content: center; }
  .hero-stats { gap: 16px; }

  /* Features */
  .section { padding: 36px 20px; }
  .feat-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .feat { padding: 14px; }
  .feat-t { font-size: 11px; }
  .feat-d { font-size: 10px; }

  /* Workers */
  .workers-section { grid-template-columns: 1fr; padding: 36px 20px; gap: 28px; }

  /* Sync */
  .sync-section { grid-template-columns: 1fr; padding: 36px 20px; gap: 28px; }
  .sync-visual { order: 2; }
  .sync-section > div:last-child { order: 1; }

  /* Pricing */
  .pricing-section { padding: 36px 20px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 100%; }

  /* Auth */
  .auth-section { grid-template-columns: 1fr; padding: 36px 20px; gap: 28px; }

  /* Cookie Banner */
  #cookie-banner { flex-direction: column; align-items: flex-start; bottom: 12px; width: calc(100% - 24px); gap: 12px; }
  #cookie-banner .cookie-actions { width: 100%; }
  #cookie-banner #cookie-accept,
  #cookie-banner #cookie-decline { flex: 1; text-align: center; }

  /* Footer */
  .footer { flex-direction: column; gap: 10px; text-align: center; padding: 20px; }
  .flinks a:first-child { margin-left: 0; }
}