/* ============================================================
   Roovi — Landing page
   Design tokens synced with RooviAndroid (DESIGN_TOKENS.md)
   ============================================================ */

@import url("https://fonts.bunny.net/css?family=manrope:400,500,600,700,800");

:root {
  /* brand */
  --brand-mint: #1FB57A;
  --brand-mint-2: #22C58A;
  --brand-mint-ink: #0E6A48;
  --brand-sun: #FFB23F;
  --brand-ink: #0E1A22;
  --brand-sand: #F7F8F4;

  /* status */
  --st-available: #1FB57A;
  --st-rented: #3D6CFF;
  --st-maintenance: #F59E0B;
  --st-overdue: #E5484D;
  --st-warning: #F5B53A;

  --st-available-soft: rgba(31, 181, 122, 0.14);
  --st-rented-soft: rgba(61, 108, 255, 0.14);
  --st-maintenance-soft: rgba(245, 158, 11, 0.16);
  --st-overdue-soft: rgba(229, 72, 77, 0.14);

  --st-available-ink: #0E6A48;
  --st-rented-ink: #1A3DAB;
  --st-overdue-ink: #8E1E22;

  /* surfaces */
  --bg: #F7F8F4;
  --surface: #FFFFFF;
  --surface-muted: #F1F3EC;
  --surface-sunken: #EBEEE3;
  --outline: #E2E5DA;
  --outline-strong: #C5CABA;
  --text-primary: #0E1A22;
  --text-secondary: #5A6770;
  --text-tertiary: #8A949C;
  --text-inverse: #FFFFFF;
  --scrim: rgba(14, 26, 34, 0.55);

  /* shadows */
  --shadow-1: 0 1px 0 rgba(14,26,34,0.04), 0 2px 6px rgba(14,26,34,0.06);
  --shadow-2: 0 4px 12px rgba(14,26,34,0.08), 0 12px 32px rgba(14,26,34,0.08);
  --shadow-3: 0 8px 24px rgba(31, 181, 122, 0.42);
  --shadow-glow: 0 24px 80px rgba(31, 181, 122, 0.18);

  /* radii */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 20px;
  --r-2xl: 28px;
  --r-pill: 999px;

  /* layout */
  --maxw: 1160px;
  --nav-h: 68px;
}

[data-theme="dark"] {
  --bg: #0C1418;
  --surface: #16212A;
  --surface-muted: #1E2C36;
  --surface-sunken: #0A1116;
  --outline: #2A3A45;
  --outline-strong: #3C4F5C;
  --text-primary: #ECF1F2;
  --text-secondary: #A2AEB6;
  --text-tertiary: #6F7D86;
  --text-inverse: #0E1A22;
  --scrim: rgba(0,0,0,0.6);

  --brand-ink: #ECF1F2;

  --st-available: #2BCB8C;
  --st-rented: #6F95FF;
  --st-overdue: #FF6369;
  --st-available-soft: rgba(43, 203, 140, 0.22);
  --st-rented-soft: rgba(111, 149, 255, 0.22);
  --st-overdue-soft: rgba(255, 99, 105, 0.22);
  --st-available-ink: #2BCB8C;
  --st-rented-ink: #6F95FF;
  --st-overdue-ink: #FF6369;

  --shadow-1: 0 1px 0 rgba(0,0,0,0.5), 0 2px 6px rgba(0,0,0,0.4);
  --shadow-2: 0 8px 24px rgba(0,0,0,0.45);
  --shadow-3: 0 8px 24px rgba(31, 181, 122, 0.55);
  --shadow-glow: 0 24px 80px rgba(31, 181, 122, 0.10);
}

/* ---------- base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Manrope", -apple-system, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul { margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4 { margin: 0; line-height: 1.12; letter-spacing: -0.02em; font-weight: 800; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.tnum { font-variant-numeric: tabular-nums; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 52px; padding: 0 24px;
  border-radius: var(--r-lg); border: 1px solid transparent;
  font-family: inherit; font-size: 16px; font-weight: 700;
  cursor: pointer; white-space: nowrap;
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--brand-mint); color: #fff; box-shadow: var(--shadow-3); }
.btn-primary:hover { background: var(--brand-mint-2); }
.btn-ghost { background: transparent; color: var(--text-primary); border-color: var(--outline-strong); }
.btn-ghost:hover { background: var(--surface-muted); }
.btn-sm { height: 44px; padding: 0 18px; font-size: 15px; }
.btn-block { width: 100%; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.nav.scrolled { border-color: var(--outline); }
.nav .container { display: flex; align-items: center; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand .mark { width: 32px; height: 32px; border-radius: 9px; box-shadow: var(--shadow-1); }
.brand .wordmark { height: 27px; width: auto; display: block; }
.nav-links { display: flex; gap: 4px; margin-left: 8px; }
.nav-links a {
  padding: 8px 14px; border-radius: var(--r-pill); white-space: nowrap;
  color: var(--text-secondary); font-weight: 600; font-size: 15px;
  transition: color .15s ease, background .15s ease;
}
.nav-links a:hover { color: var(--text-primary); background: var(--surface-muted); }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 10px; }

.icon-btn {
  width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--r-pill); border: 1px solid var(--outline);
  background: var(--surface); color: var(--text-secondary); cursor: pointer;
  transition: color .15s ease, border-color .15s ease, background .15s ease;
}
.icon-btn:hover { color: var(--text-primary); border-color: var(--outline-strong); }
.icon-btn svg { width: 20px; height: 20px; }

.lang-toggle {
  display: inline-flex; align-items: center; padding: 3px;
  background: var(--surface-muted); border-radius: var(--r-pill); border: 1px solid var(--outline);
}
.lang-toggle button {
  border: none; background: transparent; cursor: pointer;
  font-family: inherit; font-weight: 700; font-size: 13px; color: var(--text-tertiary);
  padding: 6px 11px; border-radius: var(--r-pill); transition: color .15s ease, background .15s ease;
}
.lang-toggle button.active { background: var(--surface); color: var(--text-primary); box-shadow: var(--shadow-1); }

.nav-burger { display: none; }

/* ---------- section scaffolding ---------- */
section { position: relative; }
.section-pad { padding: 96px 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  text-transform: uppercase; letter-spacing: 0.08em; font-size: 12px; font-weight: 800;
  color: var(--brand-mint-ink); padding: 6px 12px; border-radius: var(--r-pill);
  background: var(--st-available-soft);
}
[data-theme="dark"] .eyebrow { color: var(--st-available); }
.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4vw, 44px); margin: 18px 0 14px; }
.section-head p { color: var(--text-secondary); font-size: 18px; margin: 0; }

/* ---------- hero ---------- */
.hero { padding: 64px 0 80px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: -200px 0 auto; height: 600px; z-index: -1;
  background:
    radial-gradient(680px 380px at 78% 8%, rgba(255,178,63,0.16), transparent 60%),
    radial-gradient(720px 460px at 12% 0%, rgba(31,181,122,0.16), transparent 60%);
}
.hero .container { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 22px;
  padding: 7px 14px 7px 8px; border-radius: var(--r-pill);
  background: var(--surface); border: 1px solid var(--outline); box-shadow: var(--shadow-1);
  font-size: 13px; font-weight: 600; color: var(--text-secondary);
}
.hero-badge .pill { background: var(--st-available-soft); color: var(--brand-mint-ink); font-weight: 800; padding: 2px 9px; border-radius: var(--r-pill); font-size: 12px; }
[data-theme="dark"] .hero-badge .pill { color: var(--st-available); }
.hero h1 { font-size: clamp(38px, 5.4vw, 60px); line-height: 1.04; }
.hero h1 .accent { color: var(--brand-mint); }
.hero-sub { font-size: 19px; color: var(--text-secondary); margin: 22px 0 32px; max-width: 520px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-note { margin-top: 18px; font-size: 14px; color: var(--text-tertiary); display: flex; align-items: center; gap: 8px; }
.hero-note svg { width: 16px; height: 16px; color: var(--brand-mint); }

.hero-stats { display: flex; gap: 32px; margin-top: 44px; flex-wrap: wrap; }
.hero-stats .stat strong { display: block; font-size: 30px; font-weight: 800; letter-spacing: -0.02em; }
.hero-stats .stat span { font-size: 14px; color: var(--text-secondary); }

/* ---------- phone mockup ---------- */
.phone-wrap { display: flex; justify-content: center; position: relative; }
.phone-wrap::after {
  content: ""; position: absolute; inset: 0; z-index: -1; filter: blur(48px);
  background: radial-gradient(closest-side, rgba(31,181,122,0.22), transparent);
}
.phone {
  width: 320px; border-radius: 44px; padding: 12px;
  background: linear-gradient(160deg, #1a2730, #0d141a);
  box-shadow: var(--shadow-2), var(--shadow-glow);
  border: 1px solid rgba(255,255,255,0.06);
}
.phone-screen {
  background: var(--bg); border-radius: 33px; overflow: hidden;
  height: 620px; display: flex; flex-direction: column;
}
.phone-notch { height: 26px; display:flex; align-items:center; justify-content:center; }
.phone-notch::before { content:""; width: 110px; height: 7px; border-radius: 999px; background: rgba(0,0,0,0.25); }
[data-theme="dark"] .phone-notch::before { background: rgba(255,255,255,0.12); }

.app-top { padding: 6px 18px 14px; display: flex; align-items: center; justify-content: space-between; }
.app-top h4 { font-size: 19px; }
.app-top .ava { width: 34px; height: 34px; border-radius: 999px; background: var(--st-rented-soft); color: var(--st-rented-ink); display: grid; place-items: center; font-weight: 800; font-size: 14px; }

.kpi-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; padding: 0 14px 12px; }
.kpi {
  background: var(--surface); border: 1px solid var(--outline); border-radius: var(--r-md);
  padding: 9px 8px; text-align: center;
}
.kpi b { display: block; font-size: 19px; font-weight: 800; }
.kpi span { font-size: 9.5px; text-transform: uppercase; letter-spacing: .04em; color: var(--text-tertiary); font-weight: 700; }
.kpi.warn b { color: var(--st-maintenance); }
.kpi.over b { color: var(--st-overdue); }

.rental-list { padding: 2px 14px; display: flex; flex-direction: column; gap: 10px; overflow: hidden; flex: 1; }
.rcard {
  position: relative; background: var(--surface); border: 1px solid var(--outline);
  border-radius: var(--r-xl); padding: 13px 14px 13px 18px; box-shadow: var(--shadow-1);
  overflow: hidden;
}
.rcard::before { content:""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--st-available); }
.rcard.rented::before { background: var(--st-rented); }
.rcard.over::before { background: var(--st-overdue); animation: pulse 1.2s ease-in-out infinite; }
.rcard-top { display: flex; align-items: center; gap: 11px; }
.rcard .cat { width: 42px; height: 42px; border-radius: var(--r-md); display: grid; place-items: center; flex-shrink: 0; }
.rcard .cat svg { width: 24px; height: 24px; }
.rcard .meta { flex: 1; min-width: 0; }
.rcard .meta b { font-size: 15px; font-weight: 700; }
.rcard .meta span { display: block; font-size: 12px; color: var(--text-tertiary); }
.rcard .timer { font-size: 22px; font-weight: 800; letter-spacing: -0.01em; }
.rcard.over .timer { color: var(--st-overdue); }
.badge {
  display: inline-flex; align-items: center; gap: 5px; height: 22px; padding: 0 9px;
  border-radius: var(--r-pill); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .03em;
}
.badge .d { width: 7px; height: 7px; border-radius: 999px; }
.badge.av { background: var(--st-available-soft); color: var(--st-available-ink); }
.badge.av .d { background: var(--st-available); }
.badge.rt { background: var(--st-rented-soft); color: var(--st-rented-ink); }
.badge.rt .d { background: var(--st-rented); }
.badge.ov { background: var(--st-overdue-soft); color: var(--st-overdue-ink); }
.badge.ov .d { background: var(--st-overdue); }
.rcard-bot { display: flex; align-items: center; justify-content: space-between; margin-top: 11px; }

.app-fab {
  position: absolute; right: 22px; bottom: 78px; width: 60px; height: 60px;
  border-radius: 999px; background: var(--brand-mint); box-shadow: var(--shadow-3);
  display: grid; place-items: center; color: #fff;
}
.app-fab svg { width: 28px; height: 28px; }
.app-nav {
  display: flex; justify-content: space-around; padding: 11px 8px 14px;
  border-top: 1px solid var(--outline); background: var(--surface);
}
.app-nav i { width: 22px; height: 22px; display: grid; place-items: center; color: var(--text-tertiary); }
.app-nav i.on { color: var(--brand-mint); }
.app-nav i svg { width: 22px; height: 22px; }

@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

/* ---------- logos / audience strip ---------- */
.strip { padding: 28px 0; border-top: 1px solid var(--outline); border-bottom: 1px solid var(--outline); background: var(--surface-muted); }
.strip .container { display: flex; align-items: center; justify-content: center; gap: 14px 38px; flex-wrap: wrap; }
.strip .lbl { font-size: 13px; color: var(--text-tertiary); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.strip .chip { display: inline-flex; align-items: center; gap: 8px; color: var(--text-secondary); font-weight: 700; font-size: 15px; }
.strip .chip svg { width: 20px; height: 20px; color: var(--brand-mint); }

/* ---------- features grid ---------- */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature {
  background: var(--surface); border: 1px solid var(--outline); border-radius: var(--r-xl);
  padding: 26px 24px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); border-color: var(--outline-strong); }
.feature .ico {
  width: 50px; height: 50px; border-radius: var(--r-md); display: grid; place-items: center; margin-bottom: 18px;
  background: var(--st-available-soft); color: var(--brand-mint);
}
.feature .ico svg { width: 26px; height: 26px; }
.feature.c1 .ico { background: var(--st-available-soft); color: var(--brand-mint); }
.feature.c2 .ico { background: var(--st-rented-soft); color: var(--st-rented); }
.feature.c3 .ico { background: var(--st-overdue-soft); color: var(--st-overdue); }
.feature.c4 .ico { background: var(--st-maintenance-soft); color: var(--st-maintenance); }
.feature.c5 .ico { background: rgba(142,79,208,0.16); color: #8E4FD0; }
.feature.c6 .ico { background: var(--st-available-soft); color: var(--brand-mint); }
.feature h3 { font-size: 19px; margin-bottom: 8px; font-weight: 700; }
.feature p { color: var(--text-secondary); font-size: 15px; margin: 0; }

/* ---------- how it works ---------- */
.how { background: var(--surface-muted); }
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; counter-reset: step; }
.step {
  position: relative; background: var(--surface); border: 1px solid var(--outline);
  border-radius: var(--r-xl); padding: 30px 26px 26px;
}
.step .num {
  width: 40px; height: 40px; border-radius: var(--r-md); background: var(--brand-ink); color: var(--brand-sand);
  display: grid; place-items: center; font-weight: 800; font-size: 18px; margin-bottom: 18px;
}
[data-theme="dark"] .step .num { background: var(--brand-mint); color: #06231a; }
.step h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.step p { color: var(--text-secondary); font-size: 15px; margin: 0; }

/* ---------- roles ---------- */
.roles { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.role {
  border-radius: var(--r-2xl); padding: 36px 34px; border: 1px solid var(--outline);
  background: var(--surface);
}
.role.op { background: linear-gradient(165deg, rgba(31,181,122,0.10), var(--surface) 55%); }
.role.ad { background: linear-gradient(165deg, rgba(61,108,255,0.10), var(--surface) 55%); }
.role .tag {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 800; font-size: 13px;
  text-transform: uppercase; letter-spacing: .05em; padding: 6px 12px; border-radius: var(--r-pill); margin-bottom: 18px;
}
.role.op .tag { background: var(--st-available-soft); color: var(--st-available-ink); }
.role.ad .tag { background: var(--st-rented-soft); color: var(--st-rented-ink); }
.role h3 { font-size: 24px; margin-bottom: 8px; }
.role > p { color: var(--text-secondary); margin: 0 0 22px; font-size: 15px; }
.role ul { display: flex; flex-direction: column; gap: 12px; }
.role li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; }
.role li svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; }
.role.op li svg { color: var(--brand-mint); }
.role.ad li svg { color: var(--st-rented); }

/* ---------- pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; align-items: stretch; }
.plan {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--outline); border-radius: var(--r-2xl);
  padding: 32px 28px; position: relative; transition: transform .2s ease, box-shadow .2s ease;
}
.plan.featured { border-color: var(--brand-mint); box-shadow: var(--shadow-glow); transform: scale(1.02); }
.plan.featured::before {
  content: attr(data-badge); position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--brand-mint); color: #fff; font-size: 12px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .05em; padding: 6px 14px; border-radius: var(--r-pill); white-space: nowrap;
}
.plan h3 { font-size: 20px; font-weight: 800; }
.plan .desc { color: var(--text-secondary); font-size: 14px; margin: 6px 0 18px; min-height: 40px; }
.plan .price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }
.plan .price b { font-size: 40px; font-weight: 800; letter-spacing: -0.03em; }
.plan .price span { color: var(--text-tertiary); font-size: 15px; font-weight: 600; }
.plan .price-note { font-size: 13px; color: var(--text-tertiary); min-height: 18px; margin-bottom: 24px; }
.plan ul { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; flex: 1; }
.plan li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: var(--text-secondary); }
.plan li svg { width: 19px; height: 19px; color: var(--brand-mint); flex-shrink: 0; margin-top: 1px; }
.plan li b { color: var(--text-primary); font-weight: 700; }

/* ---------- faq ---------- */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--outline); border-radius: var(--r-lg); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  font-family: inherit; font-weight: 700; font-size: 17px; color: var(--text-primary);
  padding: 20px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-q .chev { width: 22px; height: 22px; color: var(--text-tertiary); transition: transform .25s ease; flex-shrink: 0; }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 22px 20px; margin: 0; color: var(--text-secondary); font-size: 15px; }

/* ---------- cta ---------- */
.cta-band {
  text-align: center; border-radius: var(--r-2xl); padding: 64px 32px; position: relative; overflow: hidden;
  background: linear-gradient(150deg, var(--brand-mint), #169c68);
  box-shadow: var(--shadow-glow);
}
.cta-band::after {
  content:""; position: absolute; top: -60px; right: -40px; width: 260px; height: 260px; border-radius: 999px;
  border: 26px solid rgba(255,255,255,0.12);
}
.cta-band h2 { color: #fff; font-size: clamp(28px, 4vw, 40px); margin-bottom: 14px; position: relative; }
.cta-band p { color: rgba(255,255,255,0.88); font-size: 18px; margin: 0 auto 28px; max-width: 520px; position: relative; }
.cta-band .btn-white { background: #fff; color: var(--brand-mint-ink); box-shadow: 0 10px 30px rgba(0,0,0,0.18); position: relative; }
.cta-band .btn-white:hover { background: #f3fbf7; }

/* ---------- footer ---------- */
.footer { padding: 64px 0 40px; border-top: 1px solid var(--outline); margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 44px; }
.footer .brand { margin-bottom: 14px; }
.footer .about { color: var(--text-secondary); font-size: 15px; max-width: 280px; }
.footer h5 { font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: var(--text-tertiary); margin: 0 0 16px; font-weight: 800; }
.footer-col a { display: block; color: var(--text-secondary); font-size: 15px; padding: 6px 0; transition: color .15s ease; }
.footer-col a:hover { color: var(--text-primary); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 28px; border-top: 1px solid var(--outline); color: var(--text-tertiary); font-size: 14px; flex-wrap: wrap; }

/* ---------- mobile drawer ---------- */
.drawer-backdrop { position: fixed; inset: 0; background: var(--scrim); z-index: 60; opacity: 0; pointer-events: none; transition: opacity .25s ease; }
.drawer-backdrop.show { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(82vw, 320px); z-index: 61;
  background: var(--surface); border-left: 1px solid var(--outline);
  transform: translateX(100%); transition: transform .3s cubic-bezier(.2,0,0,1);
  padding: 20px; display: flex; flex-direction: column; gap: 6px;
}
.drawer.show { transform: translateX(0); }
.drawer .drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.drawer a { padding: 14px 12px; border-radius: var(--r-md); font-weight: 700; font-size: 17px; color: var(--text-primary); }
.drawer a:hover { background: var(--surface-muted); }
.drawer .btn { margin-top: 14px; }

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

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 40px 0 64px; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-cta, .hero-note, .hero-stats { justify-content: center; }
  .features-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .roles, .footer-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .plan.featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-burger { display: inline-flex; }
}
@media (max-width: 640px) {
  .lang-toggle.in-nav { display: none; }
  .features-grid, .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section-pad { padding: 72px 0; }
  .hero-stats { gap: 24px; }
}
