/* ============================================================
   GreenFleet Analytics — Site de divulgação
   Linguagem visual partilhada com a plataforma
   ============================================================ */
:root {
  --bg: #0f1729;
  --bg-2: #131c30;
  --panel: #1a2540;
  --panel-2: #1f2c4d;
  --panel-line: #2a3a5f;
  --slate: #64748b;
  --slate-2: #94a3b8;
  --text: #e8eefc;
  --muted: #8ea0c4;
  --blue: #3b82f6;
  --blue-2: #2563eb;
  --blue-soft: rgba(59, 130, 246, 0.14);
  --sky: #38bdf8;
  --cyan: #22d3ee;
  --good: #22c55e;
  --warn: #f59e0b;
  --bad: #ef4444;
  --radius: 16px;
  --radius-lg: 22px;
  --radius-sm: 10px;
  --shadow: 0 18px 40px -18px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 40px 80px -30px rgba(0, 0, 0, 0.75);
  --grad-blue: linear-gradient(135deg, #3b82f6, #22d3ee);
  --maxw: 1160px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { min-height: 100%; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(56, 189, 248, 0.10), transparent),
    radial-gradient(900px 500px at -10% 20%, rgba(59, 130, 246, 0.10), transparent),
    var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.gradient-text {
  background: var(--grad-blue);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 22px; border-radius: 999px;
  font-size: 14px; font-weight: 600; cursor: pointer;
  border: 1px solid transparent; transition: all 0.2s ease; white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary {
  background: var(--grad-blue); color: #061021;
  box-shadow: 0 12px 28px -10px rgba(56, 189, 248, 0.6);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -12px rgba(56, 189, 248, 0.75); }
.btn-ghost {
  background: var(--panel); color: var(--text); border-color: var(--panel-line);
}
.btn-ghost:hover { border-color: var(--slate); background: var(--panel-2); }
.btn-lg { padding: 16px 28px; font-size: 15px; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(15, 23, 41, 0.72); backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent; transition: border-color 0.3s, background 0.3s;
}
.header.scrolled { border-bottom-color: var(--panel-line); background: rgba(15, 23, 41, 0.9); }
.header-inner { display: flex; align-items: center; gap: 20px; height: 68px; }

.brand { display: flex; align-items: center; gap: 11px; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 11px; background: var(--grad-blue);
  display: grid; place-items: center; color: #fff;
  box-shadow: 0 8px 20px -6px rgba(59, 130, 246, 0.6);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-size: 16px; font-weight: 800; letter-spacing: -0.3px; }
.brand-text span { font-size: 10px; color: var(--muted); font-weight: 600; letter-spacing: 2px; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 4px; margin-left: 12px; }
.nav-links a { padding: 9px 14px; border-radius: 999px; font-size: 14px; color: var(--muted); font-weight: 500; transition: all 0.18s; }
.nav-links a:hover { color: var(--text); background: var(--panel); }
.header-cta { margin-left: auto; display: flex; align-items: center; gap: 10px; }

.menu-toggle { display: none; background: none; border: none; color: var(--text); cursor: pointer; padding: 6px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 76px 0 40px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-soft); border: 1px solid rgba(59,130,246,0.3);
  color: var(--sky); font-size: 12.5px; font-weight: 600;
  padding: 7px 14px; border-radius: 999px; margin-bottom: 22px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--good); animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,197,94,0.5);} 50% { opacity: .6; box-shadow: 0 0 0 6px rgba(34,197,94,0);} }

.hero h1 { font-size: clamp(34px, 5vw, 54px); font-weight: 800; letter-spacing: -1.5px; line-height: 1.06; }
.hero .lead { font-size: 18px; color: var(--muted); margin-top: 20px; max-width: 540px; }
.hero-actions { display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 26px; margin-top: 34px; flex-wrap: wrap; }
.hero-trust .item strong { font-size: 24px; font-weight: 800; letter-spacing: -0.5px; display: block; }
.hero-trust .item strong small { font-size: 15px; }
.hero-trust .item span { font-size: 12.5px; color: var(--muted); }

/* Hero mockup card */
.hero-visual { position: relative; }
.mock {
  background: linear-gradient(160deg, var(--panel), var(--panel-2));
  border: 1px solid var(--panel-line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 18px; position: relative; overflow: hidden;
}
.mock::before { content: ''; position: absolute; top:0; left:0; right:0; height: 3px; background: var(--grad-blue); }
.mock-bar { display: flex; align-items: center; gap: 7px; margin-bottom: 16px; padding: 0 2px; }
.mock-bar i { width: 10px; height: 10px; border-radius: 50%; background: var(--panel-line); }
.mock-bar i:nth-child(1){ background:#ef4444;} .mock-bar i:nth-child(2){ background:#f59e0b;} .mock-bar i:nth-child(3){ background:#22c55e;}
.mock-bar span { margin-left: auto; font-size: 11px; color: var(--muted); }
.mock-kpis { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; margin-bottom: 12px; }
.mock-kpi { background: var(--bg-2); border: 1px solid var(--panel-line); border-radius: 12px; padding: 12px; }
.mock-kpi .lbl { font-size: 10.5px; color: var(--muted); }
.mock-kpi .val { font-size: 20px; font-weight: 800; margin-top: 4px; letter-spacing: -0.4px; }
.mock-kpi .val small { font-size: 11px; color: var(--muted); font-weight:600; }
.mock-kpi .up { color: #86efac; } .mock-kpi .cy { color: var(--cyan); }
.mock-chart { background: var(--bg-2); border: 1px solid var(--panel-line); border-radius: 12px; padding: 14px 12px 8px; }
.mock-chart .head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.mock-chart .head b { font-size: 12px; } .mock-chart .head span { font-size: 10px; color: var(--muted); }
.floaty {
  position: absolute; background: var(--panel); border: 1px solid var(--panel-line);
  border-radius: 12px; padding: 10px 13px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 10px;
}
.floaty .ic { width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; }
.floaty .ic.g { background: rgba(34,197,94,0.16); color: #86efac; }
.floaty .ic.b { background: var(--blue-soft); color: var(--sky); }
.floaty strong { font-size: 13px; } .floaty span { font-size: 10.5px; color: var(--muted); display:block; }
.floaty.one { top: -18px; right: -14px; animation: float 5s ease-in-out infinite; }
.floaty.two { bottom: -20px; left: -18px; animation: float 5s ease-in-out infinite 1.6s; }
@keyframes float { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-10px);} }

/* logos strip */
.logos { border-top: 1px solid var(--panel-line); border-bottom: 1px solid var(--panel-line); margin-top: 20px; }
.logos-inner { display: flex; align-items: center; gap: 34px; padding: 22px 0; flex-wrap: wrap; justify-content: center; }
.logos p { font-size: 12px; color: var(--slate); letter-spacing: 1px; text-transform: uppercase; width: 100%; text-align: center; margin-bottom: 4px; }
.logos .lg { font-size: 15px; font-weight: 700; color: var(--slate-2); opacity: 0.75; letter-spacing: -0.3px; }

/* ---------- Sections ---------- */
section { padding: 84px 0; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.tag {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--sky); margin-bottom: 14px;
}
.section-head h2 { font-size: clamp(28px, 3.6vw, 40px); font-weight: 800; letter-spacing: -1px; line-height: 1.1; }
.section-head p { font-size: 17px; color: var(--muted); margin-top: 16px; }

/* problem stats band */
.band { background: linear-gradient(180deg, var(--bg-2), transparent); border-top: 1px solid var(--panel-line); border-bottom: 1px solid var(--panel-line); }
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stat { text-align: center; }
.stat .num { font-size: clamp(32px, 4vw, 46px); font-weight: 800; letter-spacing: -1px; }
.stat .num small { font-size: 22px; }
.stat .cap { font-size: 13.5px; color: var(--muted); margin-top: 6px; }

/* ---------- Feature cards ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature {
  background: linear-gradient(160deg, var(--panel), var(--panel-2));
  border: 1px solid var(--panel-line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow); position: relative;
  transition: transform 0.25s, border-color 0.25s;
}
.feature:hover { transform: translateY(-5px); border-color: rgba(59,130,246,0.4); }
.feature .ic {
  width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center;
  background: var(--blue-soft); color: var(--sky); margin-bottom: 18px;
}
.feature h3 { font-size: 17px; font-weight: 700; letter-spacing: -0.3px; }
.feature p { font-size: 14px; color: var(--muted); margin-top: 9px; }
.feature ul { list-style: none; margin-top: 14px; display: flex; flex-direction: column; gap: 8px; }
.feature li { font-size: 13px; color: var(--slate-2); display: flex; align-items: center; gap: 9px; }
.feature li svg { width: 15px; height: 15px; color: var(--good); flex-shrink: 0; }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step { position: relative; padding-top: 12px; }
.step .n {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: var(--panel); border: 1px solid var(--panel-line); font-weight: 800; font-size: 17px;
  color: var(--sky); margin-bottom: 16px;
}
.step h4 { font-size: 16px; font-weight: 700; }
.step p { font-size: 13.5px; color: var(--muted); margin-top: 8px; }
.step:not(:last-child)::after {
  content: ''; position: absolute; top: 34px; left: 58px; right: -10px; height: 2px;
  background: linear-gradient(90deg, var(--panel-line), transparent);
}

/* ---------- Split / eco rating showcase ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.split h2 { font-size: clamp(26px, 3.2vw, 36px); font-weight: 800; letter-spacing: -0.8px; line-height: 1.12; }
.split p.lead { font-size: 16px; color: var(--muted); margin-top: 16px; }
.check-list { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 15px; }
.check-list li { display: flex; gap: 13px; align-items: flex-start; }
.check-list .ic { width: 26px; height: 26px; border-radius: 8px; background: rgba(34,197,94,0.14); color: #86efac; display: grid; place-items: center; flex-shrink: 0; margin-top: 2px; }
.check-list strong { font-size: 15px; display: block; }
.check-list span { font-size: 13.5px; color: var(--muted); }

.fuel-showcase { background: var(--panel); border: 1px solid var(--panel-line); border-radius: var(--radius-lg); padding: 22px; box-shadow: var(--shadow-lg); }
.fuel-showcase .fs-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.fuel-showcase .fs-head b { font-size: 14px; } .fuel-showcase .fs-head span { font-size: 11px; color: var(--muted); }
.fuel-row { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(42,58,95,0.5); }
.fuel-row:last-child { border-bottom: none; }
.rating { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 11px; font-weight: 800; font-size: 16px; color: #fff; flex-shrink: 0; }
.rating.a { background: #16a34a; } .rating.b { background: #65a30d; } .rating.c { background: #ca8a04; } .rating.d { background: #ea580c; } .rating.e { background: #dc2626; }
.fuel-row .fr-body { flex: 1; min-width: 0; }
.fuel-row .fr-body strong { font-size: 14px; display: block; }
.fuel-row .fr-body span { font-size: 12px; color: var(--muted); }
.fuel-row .fr-bar { width: 84px; }
.fr-bar .track { height: 7px; border-radius: 4px; background: var(--panel-line); overflow: hidden; }
.fr-bar .track > i { display: block; height: 100%; background: var(--grad-blue); border-radius: 4px; }
.fr-bar .pct { font-size: 11px; color: var(--muted); margin-top: 4px; text-align: right; }

/* ---------- Modules / audience ---------- */
.mod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.mod {
  border: 1px solid var(--panel-line); border-radius: var(--radius); padding: 24px;
  background: var(--panel); transition: border-color 0.2s, transform 0.2s;
}
.mod:hover { transform: translateY(-4px); border-color: rgba(56,189,248,0.4); }
.mod .ic { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; background: var(--blue-soft); color: var(--sky); margin-bottom: 14px; }
.mod h4 { font-size: 16px; font-weight: 700; }
.mod p { font-size: 13.5px; color: var(--muted); margin-top: 8px; }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.price {
  background: var(--panel); border: 1px solid var(--panel-line); border-radius: var(--radius-lg);
  padding: 30px 26px; display: flex; flex-direction: column; position: relative;
}
.price.featured { border-color: rgba(56,189,248,0.5); box-shadow: var(--shadow-lg); background: linear-gradient(170deg, var(--panel-2), var(--panel)); }
.price .ribbon {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--grad-blue); color: #061021; font-size: 11.5px; font-weight: 700;
  padding: 5px 14px; border-radius: 999px; letter-spacing: 0.3px;
}
.price h4 { font-size: 15px; font-weight: 700; color: var(--sky); text-transform: uppercase; letter-spacing: 1px; }
.price .amt { font-size: 40px; font-weight: 800; letter-spacing: -1.5px; margin-top: 14px; }
.price .amt small { font-size: 15px; color: var(--muted); font-weight: 600; letter-spacing: 0; }
.price .desc { font-size: 13.5px; color: var(--muted); margin-top: 8px; min-height: 40px; }
.price ul { list-style: none; margin: 22px 0; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.price li { font-size: 13.5px; display: flex; gap: 10px; align-items: flex-start; color: var(--slate-2); }
.price li svg { width: 16px; height: 16px; color: var(--good); flex-shrink: 0; margin-top: 2px; }
.price .btn { justify-content: center; width: 100%; }

/* ---------- CTA ---------- */
.cta-wrap {
  background: linear-gradient(135deg, rgba(59,130,246,0.16), rgba(34,211,238,0.12));
  border: 1px solid rgba(56,189,248,0.35); border-radius: var(--radius-lg);
  padding: 56px 44px; text-align: center; position: relative; overflow: hidden;
}
.cta-wrap::before { content: ''; position: absolute; inset: 0; background: radial-gradient(600px 200px at 50% -20%, rgba(56,189,248,0.25), transparent); }
.cta-wrap > * { position: relative; }
.cta-wrap h2 { font-size: clamp(28px, 3.6vw, 40px); font-weight: 800; letter-spacing: -1px; }
.cta-wrap p { font-size: 17px; color: var(--muted); margin-top: 14px; max-width: 560px; margin-inline: auto; }
.cta-actions { display: flex; gap: 12px; justify-content: center; margin-top: 30px; flex-wrap: wrap; }

/* ---------- Contact form ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.contact-info h2 { font-size: clamp(26px, 3.2vw, 36px); font-weight: 800; letter-spacing: -0.8px; }
.contact-info p { font-size: 16px; color: var(--muted); margin-top: 14px; }
.contact-list { list-style: none; margin-top: 26px; display: flex; flex-direction: column; gap: 18px; }
.contact-list li { display: flex; gap: 14px; align-items: center; }
.contact-list .ic { width: 42px; height: 42px; border-radius: 11px; background: var(--blue-soft); color: var(--sky); display: grid; place-items: center; flex-shrink: 0; }
.contact-list strong { font-size: 14px; display: block; }
.contact-list span { font-size: 13px; color: var(--muted); }

.form { background: var(--panel); border: 1px solid var(--panel-line); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow); }
.field { margin-bottom: 16px; }
.field label { font-size: 12.5px; font-weight: 600; color: var(--slate-2); display: block; margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; background: var(--bg-2); border: 1px solid var(--panel-line); border-radius: var(--radius-sm);
  padding: 12px 14px; color: var(--text); font-size: 14px; font-family: inherit; transition: border-color 0.18s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--blue); }
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form-note { font-size: 12px; color: var(--slate); text-align: center; margin-top: 14px; }
.form-success {
  display: none; background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.3);
  color: #86efac; border-radius: var(--radius-sm); padding: 14px; font-size: 13.5px; margin-top: 14px; text-align: center;
}
.form-success.show { display: block; }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--panel); border: 1px solid var(--panel-line); border-radius: var(--radius); overflow: hidden; }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 18px 20px; cursor: pointer; font-size: 15px; font-weight: 600; }
.faq-q svg { width: 18px; height: 18px; color: var(--sky); transition: transform 0.25s; flex-shrink: 0; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a p { padding: 0 20px 18px; font-size: 14px; color: var(--muted); }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--panel-line); background: linear-gradient(180deg, transparent, var(--bg-2)); padding: 56px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 34px; }
.footer .brand { margin-bottom: 16px; }
.footer-about p { font-size: 13.5px; color: var(--muted); max-width: 300px; }
.footer-col h5 { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--slate-2); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 13.5px; color: var(--muted); padding: 5px 0; transition: color 0.15s; }
.footer-col a:hover { color: var(--text); }
/* funding / financiamento */
.funding { margin-top: 42px; padding-top: 28px; border-top: 1px solid var(--panel-line); }
.funding-label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 1.4px; color: var(--slate); margin-bottom: 18px; }
.funding-logos { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.funding-logo { display: inline-flex; align-items: center; transition: opacity 0.18s, transform 0.18s; }
.funding-logo:hover { opacity: 0.75; transform: translateY(-2px); }
.funding-logo img { height: 52px; width: auto; object-fit: contain; }
@media (max-width: 540px) {
  .funding-logos { gap: 22px; }
  .funding-logo img { height: 40px; }
}

.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 34px; padding-top: 24px; border-top: 1px solid var(--panel-line); flex-wrap: wrap; }
.footer-bottom p { font-size: 12.5px; color: var(--slate); }
.socials { display: flex; gap: 10px; }
.socials a { width: 36px; height: 36px; border-radius: 10px; background: var(--panel); border: 1px solid var(--panel-line); display: grid; place-items: center; color: var(--muted); transition: all 0.18s; }
.socials a:hover { color: var(--sky); border-color: var(--slate); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 460px; margin: 0 auto; width: 100%; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .feature-grid, .mod-grid, .price-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step:not(:last-child)::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .header-cta .btn-ghost { display: none; }
  .stat-row { grid-template-columns: 1fr 1fr; gap: 28px 22px; }
  section { padding: 64px 0; }
  .mobile-menu { display: block; }
}
@media (max-width: 540px) {
  .feature-grid, .mod-grid, .price-grid, .steps { grid-template-columns: 1fr; }
  .hero-trust { gap: 20px; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-wrap { padding: 40px 22px; }
  .floaty { display: none; }
}

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed; inset: 68px 0 auto 0; background: var(--bg-2); border-bottom: 1px solid var(--panel-line);
  padding: 16px 24px 22px; z-index: 49; display: none; flex-direction: column; gap: 4px;
  transform: translateY(-12px); opacity: 0; pointer-events: none; transition: all 0.22s;
}
.mobile-menu.open { transform: none; opacity: 1; pointer-events: auto; }
.mobile-menu a { padding: 12px 10px; border-radius: 10px; font-size: 15px; color: var(--muted); font-weight: 500; }
.mobile-menu a:hover { background: var(--panel); color: var(--text); }
.mobile-menu .btn { margin-top: 10px; justify-content: center; }
@media (min-width: 761px) { .mobile-menu { display: none !important; } }
