*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:      #1a5f8a;
  --blue-dark: #0f3d5c;
  --blue-mid:  #2471a3;
  --blue-btn:  #4d8fcc;
  --accent:    #f0a500;
  --text:      #1a2b3c;
  --muted:     #637585;
  --bg:        #f5f7fa;
  --white:     #ffffff;
  --radius:    12px;
  --shadow:    0 8px 32px rgba(15,61,92,.11);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); line-height: 1.65; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 68px;
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid rgba(26,95,138,.1);
  transition: box-shadow .2s;
}
.nav-logo img { height: 34px; display: block; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: .875rem; font-weight: 500; color: var(--muted); text-decoration: none; transition: color .2s; }
.nav-links a:hover { color: var(--blue); }
.btn-nav {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--blue); color: #fff !important;
  border-radius: 8px; padding: 9px 20px;
  font-weight: 600; font-size: .85rem;
  transition: background .2s, transform .15s;
}
.btn-nav:hover { background: var(--blue-dark); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .25s, opacity .25s; }
.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); }
.drawer-header { display: none; }
.drawer-footer { display: none; }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex; align-items: center;
  background: linear-gradient(150deg, var(--blue-dark) 0%, var(--blue) 55%, var(--blue-mid) 100%);
  padding: 96px 5% 64px;
  position: relative; overflow: hidden;
}
#hero::after {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M40 40 L80 0 L80 80 Z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-inner {
  position: relative; max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px;
  align-items: center; width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  border-radius: 24px; padding: 5px 14px; font-size: .78rem;
  font-weight: 600; color: rgba(255,255,255,.85);
  letter-spacing: .04em; margin-bottom: 20px;
}
.hero-badge span { width: 7px; height: 7px; border-radius: 50%; background: #4cd77a; display: inline-block; }
.hero-text h1 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 18px;
}
.hero-text h1 em { color: var(--accent); font-style: normal; }
.hero-text p { font-size: 1.05rem; color: rgba(255,255,255,.78); margin-bottom: 36px; max-width: 460px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-accent {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #1a2b3c;
  border-radius: 8px; padding: 12px 26px;
  font-weight: 700; font-size: .95rem;
  transition: background .2s, transform .15s; text-decoration: none;
}
.btn-accent:hover { background: #d9930e; transform: translateY(-1px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); border: 1.5px solid rgba(255,255,255,.3);
  color: #fff; border-radius: 8px; padding: 12px 22px;
  font-weight: 500; font-size: .9rem; text-decoration: none;
  transition: background .2s;
}
.btn-ghost:hover { background: rgba(255,255,255,.18); }

/* ── APP MOCKUP ── */
.app-mockup {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 64px rgba(0,0,0,.25);
}
.mockup-bar {
  background: rgba(0,0,0,.2);
  padding: 10px 16px;
  display: flex; align-items: center; gap: 6px;
}
.mockup-bar .d { width: 10px; height: 10px; border-radius: 50%; }
.mockup-bar .d.r { background: #ff5f57; }
.mockup-bar .d.y { background: #ffbd2e; }
.mockup-bar .d.g { background: #28c840; }
.mockup-bar .url {
  margin-left: 12px; background: rgba(255,255,255,.1);
  border-radius: 4px; padding: 3px 12px;
  font-size: .72rem; color: rgba(255,255,255,.5); font-family: monospace;
}
.mockup-body { display: flex; height: 340px; }
.mockup-sidebar {
  width: 180px; flex-shrink: 0;
  background: #fff;
  border-right: 1px solid #e8edf2;
  padding: 16px 0;
  display: flex; flex-direction: column;
}
.mockup-logo {
  padding: 0 14px 14px;
  border-bottom: 1px solid #f0f3f6;
  margin-bottom: 10px;
}
.mockup-logo img { height: 22px; }
.mockup-label {
  font-size: .6rem; font-weight: 700; letter-spacing: .1em;
  color: #9aaab8; text-transform: uppercase;
  padding: 0 14px; margin-bottom: 6px;
}
.mockup-item {
  display: flex; align-items: center; gap: 9px;
  padding: 8px 14px; font-size: .75rem; font-weight: 500;
  color: #5c7080; cursor: default; transition: background .15s;
}
.mockup-item.active {
  background: #4d8fcc; color: #fff; border-radius: 6px; margin: 0 8px;
  padding: 8px 8px;
}
.mockup-item svg { width: 14px; height: 14px; flex-shrink: 0; }
.mockup-content { flex: 1; background: var(--bg); padding: 18px; overflow: hidden; }
.mockup-content-title { font-size: .8rem; font-weight: 700; color: var(--text); margin-bottom: 12px; }

/* Servicios list inside mockup */
.srv-list { display: flex; flex-direction: column; gap: 7px; }
.srv-card {
  background: #fff; border-radius: 8px;
  padding: 10px 12px;
  border-left: 3px solid var(--blue);
  display: flex; align-items: center; gap: 10px;
}
.srv-card.orange { border-color: #f0a500; }
.srv-card.green  { border-color: #28c840; }
.srv-info { flex: 1; }
.srv-info strong { display: block; font-size: .72rem; font-weight: 700; color: var(--text); }
.srv-info span   { font-size: .65rem; color: var(--muted); }
.srv-badge {
  font-size: .6rem; font-weight: 700; padding: 3px 7px;
  border-radius: 12px; white-space: nowrap;
}
.srv-badge.open    { background: #e8f5e9; color: #2e7d32; }
.srv-badge.partial { background: #fff8e1; color: #e65100; }
.srv-badge.full    { background: #e3f2fd; color: #1565c0; }

/* ── STRIP ── */
.strip { background: var(--bg); padding: 22px 5%; text-align: center; border-top: 1px solid #e8edf2; border-bottom: 1px solid #e8edf2; }
.strip p { font-size: .75rem; font-weight: 700; color: #9aaab8; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
.strip-logos { display: flex; justify-content: center; gap: 36px; flex-wrap: wrap; align-items: center; }
.strip-logos span { font-size: .9rem; font-weight: 700; color: #c2d0db; letter-spacing: .05em; }

/* ── SECTIONS ── */
section { padding: 88px 5%; }
.section-inner { max-width: 1160px; margin: 0 auto; }
.section-tag { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; }
h2 { font-size: clamp(1.75rem, 2.8vw, 2.4rem); font-weight: 800; line-height: 1.2; margin-bottom: 14px; }
.section-sub { font-size: 1rem; color: var(--muted); max-width: 560px; margin-bottom: 52px; }

/* ── TWO SIDES ── */
#sides { background: var(--white); }
.sides-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.side-card {
  border-radius: 16px; padding: 36px 32px;
  border: 1px solid #e2ecf3;
  transition: box-shadow .2s, transform .2s;
}
.side-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.side-card.admin { background: linear-gradient(145deg, #f4f8fb, #edf4fa); }
.side-card.user  { background: linear-gradient(145deg, #f4fbf6, #edf7f0); }
.side-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.side-icon.admin { background: #dbeafe; }
.side-icon.user  { background: #d1fae5; }
.side-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 8px; }
.side-card > p { font-size: .9rem; color: var(--muted); margin-bottom: 22px; line-height: 1.6; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.feature-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: .875rem; color: var(--text);
}
.feature-list li::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0;
}
.side-card.admin .feature-list li::before { background: var(--blue); }
.side-card.user  .feature-list li::before { background: #22c55e; }

/* ── SCREENSHOTS ── */
#screenshots { background: var(--bg); }
.screenshots-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }

.screen-frame {
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 12px 40px rgba(15,61,92,.15);
  border: 1px solid rgba(26,95,138,.08);
}
.screen-topbar {
  background: #151f2b; padding: 10px 14px;
  display: flex; align-items: center; gap: 6px;
}
.screen-topbar .d { width: 9px; height: 9px; border-radius: 50%; }
.screen-topbar .url-bar {
  margin-left: 10px; background: rgba(255,255,255,.08);
  border-radius: 4px; padding: 3px 10px;
  font-size: .68rem; color: rgba(255,255,255,.35); font-family: monospace;
}

/* Admin screen mockup */
.screen-admin-body { display: flex; min-height: 300px; }
.screen-admin-sidebar {
  width: 160px; flex-shrink: 0;
  background: #fff; border-right: 1px solid #eef2f6;
  padding: 14px 0; display: flex; flex-direction: column;
}
.screen-admin-sidebar .s-logo { padding: 0 12px 12px; border-bottom: 1px solid #f0f3f6; margin-bottom: 8px; }
.screen-admin-sidebar .s-logo img { height: 20px; }
.screen-admin-sidebar .s-label { font-size: .55rem; font-weight: 700; letter-spacing: .1em; color: #9aaab8; text-transform: uppercase; padding: 0 12px; margin-bottom: 4px; }
.s-item {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 12px; font-size: .68rem; font-weight: 500; color: #637585;
}
.s-item.active { background: #4d8fcc; color: #fff; border-radius: 5px; margin: 1px 7px; padding: 7px 7px; }
.s-item svg { width: 13px; height: 13px; flex-shrink: 0; stroke: currentColor; }
.screen-admin-content { flex: 1; background: #f5f7fa; padding: 16px; overflow: auto; min-width: 0; }
.s-content-title { font-size: .72rem; font-weight: 700; color: var(--text); margin-bottom: 12px; display: flex; align-items: center; justify-content: space-between; }
.s-content-title span { font-size: .62rem; background: var(--blue); color: #fff; border-radius: 4px; padding: 3px 8px; }
.s-table { width: 100%; border-collapse: collapse; font-size: .65rem; }
.s-table th { text-align: left; color: #9aaab8; font-weight: 600; padding: 5px 8px; border-bottom: 1px solid #e8edf2; }
.s-table td { padding: 7px 8px; border-bottom: 1px solid #f0f3f6; color: var(--text); vertical-align: middle; }
.s-table tr:last-child td { border-bottom: none; }
.chip { display: inline-block; font-size: .6rem; font-weight: 700; padding: 2px 7px; border-radius: 10px; }
.chip.ok   { background: #d1fae5; color: #065f46; }
.chip.pend { background: #fef3c7; color: #92400e; }
.chip.warn { background: #fee2e2; color: #991b1b; }

/* User screen mockup */
.screen-user-body { display: flex; min-height: 280px; }
.screen-user-sidebar {
  width: 140px; flex-shrink: 0;
  background: #fff; border-right: 1px solid #eef2f6;
  padding: 12px 0;
}
.screen-user-sidebar .s-logo { padding: 0 10px 10px; border-bottom: 1px solid #f0f3f6; margin-bottom: 6px; }
.screen-user-sidebar .s-logo img { height: 18px; }
.screen-user-sidebar .s-label { font-size: .55rem; font-weight: 700; letter-spacing: .1em; color: #9aaab8; text-transform: uppercase; padding: 0 10px; margin-bottom: 4px; }
.screen-user-content { flex: 1; background: #f5f7fa; padding: 14px; overflow: auto; min-width: 0; }

.week-grid { display: flex; flex-direction: column; gap: 6px; }
.week-row { display: flex; align-items: center; gap: 6px; }
.wd { font-size: .62rem; font-weight: 600; color: var(--muted); width: 24px; flex-shrink: 0; text-transform: uppercase; }
.wslots { display: flex; gap: 4px; flex: 1; }
.ws {
  flex: 1; height: 26px; border-radius: 4px;
  font-size: .58rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}
.ws.y    { background: #dbeafe; color: #1d4ed8; }
.ws.n    { background: #f5f7fa; color: #c0cdd8; border: 1px dashed #d8e2ec; }
.ws.p    { background: #fef9c3; color: #a16207; }
.ws.full { background: #dcfce7; color: #166534; }

.screen-caption { padding: 14px 16px; background: #151f2b; }
.screen-caption h3 { font-size: .8rem; font-weight: 700; color: rgba(255,255,255,.85); margin-bottom: 3px; }
.screen-caption p  { font-size: .72rem; color: rgba(255,255,255,.4); }

/* ── HOW ── */
#how { background: var(--white); }
.how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.how-card {
  border-radius: 14px; border: 1px solid #e2ecf3;
  padding: 28px; display: flex; gap: 18px; align-items: flex-start;
}
.how-num {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 800; color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  box-shadow: 0 4px 12px rgba(26,95,138,.25);
}
.how-card h3 { font-size: .95rem; font-weight: 700; margin-bottom: 6px; }
.how-card p  { font-size: .855rem; color: var(--muted); line-height: 1.6; }

/* ── METRICS ── */
#metrics {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 100%);
  padding: 80px 5%;
}
.metrics-inner { max-width: 960px; margin: 0 auto; text-align: center; }
.metrics-inner h2 { color: #fff; margin-bottom: 8px; }
.metrics-inner .section-sub { color: rgba(255,255,255,.65); margin: 0 auto 52px; }
.metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.m-box {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px; padding: 28px 16px; backdrop-filter: blur(8px);
}
.m-box strong { display: block; font-size: 2.2rem; font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 8px; }
.m-box span   { font-size: .82rem; color: rgba(255,255,255,.65); line-height: 1.4; }

/* ── CTA ── */
#cta { background: var(--bg); padding: 100px 5%; text-align: center; }
#cta h2 { margin-bottom: 14px; }
#cta p  { color: var(--muted); font-size: 1rem; margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: #fff;
  border-radius: 8px; padding: 13px 30px;
  font-weight: 700; font-size: 1rem;
  text-decoration: none; transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1.5px solid #c8d8e4; color: var(--text);
  border-radius: 8px; padding: 13px 28px;
  font-weight: 500; font-size: 1rem; text-decoration: none;
  transition: border-color .2s;
}
.btn-outline:hover { border-color: var(--blue); }

/* ── FOOTER ── */
footer { background: var(--blue-dark); color: rgba(255,255,255,.5); padding: 52px 5% 28px; }
.footer-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 36px;
}
.footer-brand img { height: 30px; margin-bottom: 14px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: .82rem; line-height: 1.7; max-width: 240px; }
.footer-col h4 { font-size: .74rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: rgba(255,255,255,.8); margin-bottom: 14px; }
.footer-col a { display: block; font-size: .82rem; color: rgba(255,255,255,.45); text-decoration: none; margin-bottom: 9px; transition: color .2s; }
.footer-col a:hover { color: rgba(255,255,255,.88); }
.footer-bottom {
  max-width: 1160px; margin: 0 auto; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: .76rem; flex-wrap: wrap; gap: 10px;
}

/* ── MODAL ── */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.5); z-index: 200;
  align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: #fff; border-radius: 16px; padding: 40px;
  width: 100%; max-width: 460px;
  box-shadow: 0 24px 64px rgba(0,0,0,.22);
  position: relative; animation: up .25s ease;
}
@keyframes up { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.modal-close { position: absolute; top: 14px; right: 18px; background: none; border: none; font-size: 1.3rem; cursor: pointer; color: var(--muted); }
.modal h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 6px; }
.modal > p { font-size: .875rem; color: var(--muted); margin-bottom: 26px; }
.fg { margin-bottom: 16px; }
.fg label { display: block; font-size: .78rem; font-weight: 600; margin-bottom: 5px; }
.fg input, .fg select {
  width: 100%; padding: 10px 13px; border: 1.5px solid #d0dce6;
  border-radius: 8px; font-size: .875rem; font-family: inherit;
  color: var(--text); outline: none; transition: border-color .2s;
}
.fg input:focus, .fg select:focus { border-color: var(--blue); }
.fr { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.btn-submit {
  width: 100%; padding: 12px; background: var(--blue); color: #fff;
  border: none; border-radius: 8px; font-size: .95rem;
  font-weight: 700; cursor: pointer; transition: background .2s; margin-top: 6px;
}
.btn-submit:hover { background: var(--blue-dark); }

#toast {
  display: none; position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%);
  background: #14532d; color: #fff; padding: 13px 26px;
  border-radius: 10px; font-weight: 600; font-size: .88rem; z-index: 300;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}

/* ── RESPONSIVE ── */

/* Tablet */
@media (max-width: 960px) {
  section { padding: 64px 5%; }
  #hero { padding: 96px 5% 56px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .app-mockup { display: none; }
  .hero-text p { max-width: 100%; }
  .sides-grid { grid-template-columns: 1fr; }
  .screenshots-layout { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .screen-admin-sidebar, .screen-user-sidebar { display: none; }
  .screen-admin-body, .screen-user-body { height: auto; min-height: 260px; }
}

/* Mobile */
@media (max-width: 600px) {
  section { padding: 52px 4%; }
  #hero { padding: 88px 4% 48px; }

  /* Drawer: cubre toda la altura incluyendo la nav */
  .nav-links {
    display: flex; flex-direction: column;
    position: fixed; top: 0; right: 0; bottom: 0;
    width: 280px;
    background: var(--blue-dark);
    padding: 0;
    gap: 0;
    align-items: stretch;
    z-index: 201; /* por encima de la nav (z-index:100) */
    transform: translateX(100%);
    transition: transform .28s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }

  /* Header del drawer con logo y botón cerrar */
  .drawer-header {
    display: flex !important; align-items: center; justify-content: space-between;
    padding: 0 20px;
    height: 68px; flex-shrink: 0;
    background: rgba(255,255,255,.05);
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .drawer-logo { height: 28px; filter: brightness(0) invert(1); }
  .drawer-close {
    background: rgba(255,255,255,.1); border: none; cursor: pointer;
    color: rgba(255,255,255,.8); border-radius: 8px;
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    transition: background .15s;
  }
  .drawer-close:hover { background: rgba(255,255,255,.2); color: #fff; }

  .nav-links a {
    font-size: .95rem; font-weight: 500;
    color: rgba(255,255,255,.72);
    width: 100%; padding: 15px 24px;
    border-bottom: 1px solid rgba(255,255,255,.06);
    display: flex; align-items: center; gap: 12px;
    transition: background .15s, color .15s;
    text-decoration: none;
  }
  .nav-links a:hover { background: rgba(255,255,255,.08); color: #fff; }
  .nav-links a:last-child { border-bottom: none; }

  /* Botón CTA dentro del drawer */
  .nav-links .btn-nav {
    margin: 20px 20px 0;
    border-radius: 10px;
    justify-content: center;
    font-size: .95rem; padding: 14px;
    background: var(--accent); color: var(--text) !important;
    font-weight: 700; border-bottom: none;
    width: calc(100% - 40px);
  }
  .nav-links .btn-nav:hover { background: #d9930e; }

  .hamburger { display: flex; }

  /* Drawer footer */
  .drawer-footer {
    display: flex !important;
    margin-top: auto;
    padding: 20px 24px 28px;
    border-top: 1px solid rgba(255,255,255,.1);
    display: flex; flex-direction: column; gap: 10px;
  }
  .drawer-footer-link {
    display: flex; align-items: center; gap: 9px;
    font-size: .82rem; color: rgba(255,255,255,.55);
    text-decoration: none; transition: color .15s;
    border-bottom: none !important; padding: 0 !important;
    width: auto !important;
  }
  .drawer-footer-link:hover { color: rgba(255,255,255,.88) !important; background: none !important; }
  .drawer-footer-copy {
    font-size: .72rem; color: rgba(255,255,255,.3);
  }

  .hero-text h1 { font-size: 1.9rem; }
  .hero-cta { flex-direction: column; }
  .btn-accent, .btn-ghost { width: 100%; justify-content: center; }

  h2 { font-size: 1.6rem; }
  .section-sub { font-size: .92rem; margin-bottom: 36px; }

  .side-card { padding: 24px 20px; }

  .screen-admin-sidebar, .screen-user-sidebar { display: none; }
  .screen-admin-body, .screen-user-body { height: auto; }
  .screen-admin-content, .screen-user-content { padding: 12px; }
  .s-table { font-size: .6rem; }
  .s-table th, .s-table td { padding: 5px 4px; }

  .how-card { padding: 20px 16px; gap: 14px; }

  .metrics-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .m-box { padding: 20px 12px; }
  .m-box strong { font-size: 1.8rem; }

  .cta-group { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; max-width: 340px; justify-content: center; }

  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  footer { padding: 40px 5% 24px; }

  .modal { padding: 28px 20px; }
  .fr { grid-template-columns: 1fr; }

  .strip-logos { gap: 20px; }

  .ws { font-size: .52rem; }
  .week-grid { gap: 5px; }
}

/* Very small */
@media (max-width: 380px) {
  .hero-text h1 { font-size: 1.65rem; }
  .metrics-grid { grid-template-columns: 1fr; }
}
