/* =========================================================
   Devias Dev — design system
   Dark, refined, green accent. Sora display / Jakarta body.
   ========================================================= */

:root {
  --bg: #0a0d0b;
  --bg-soft: #0e1210;
  --panel: rgba(255, 255, 255, 0.035);
  --panel-hi: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.08);
  --line-hi: rgba(255, 255, 255, 0.16);
  --ink: #e8f0ea;
  --muted: #93a29a;
  --accent: #3ddc74;
  --accent-soft: rgba(61, 220, 116, 0.12);
  --accent-line: rgba(61, 220, 116, 0.35);
  --accent-ink: #06230f;
  --danger: #f47272;
  --radius: 14px;
  --font-display: 'Sora', sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --shadow: 0 24px 60px -24px rgba(0, 0, 0, .7);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; }
a { color: inherit; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ---------- background decor ---------- */
.bg-decor { position: fixed; inset: 0; z-index: -1; pointer-events: none; }

.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 30%, transparent 75%);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .5;
  animation: drift 18s ease-in-out infinite alternate;
}
.orb-a {
  width: 480px; height: 480px;
  top: -180px; left: -120px;
  background: radial-gradient(circle, rgba(61,220,116,.16), transparent 65%);
}
.orb-b {
  width: 420px; height: 420px;
  bottom: -160px; right: -120px;
  background: radial-gradient(circle, rgba(61,220,116,.10), transparent 65%);
  animation-delay: -9s;
}
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(50px, 40px) scale(1.12); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10, 13, 11, .78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .01em;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), #1d9e4d);
  color: var(--accent-ink);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  box-shadow: 0 6px 18px -6px rgba(61,220,116,.5);
}
.brand-name em { font-style: normal; color: var(--accent); }

.nav-links {
  display: flex;
  gap: 26px;
  margin-left: 12px;
  font-size: .88rem;
  font-weight: 600;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover { color: var(--ink); }

.nav-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* language switcher */
.lang-switch {
  display: inline-flex;
  border: 1px solid var(--line-hi);
  border-radius: 999px;
  overflow: hidden;
}
.lang-switch a {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  padding: 7px 13px;
  color: var(--muted);
  text-decoration: none;
  transition: background .2s, color .2s;
}
.lang-switch a.active {
  background: var(--accent-soft);
  color: var(--accent);
}
.lang-switch a:not(.active):hover { color: var(--ink); }
.lang-switch-mobile { display: none; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav-burger span {
  width: 22px; height: 2px;
  background: var(--ink);
  transition: transform .25s, opacity .25s;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .92rem;
  padding: 13px 26px;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s, border-color .18s, color .18s;
  will-change: transform;
}
.btn:active { transform: translateY(1px) scale(.99); }

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #24b957);
  color: var(--accent-ink);
  box-shadow: 0 10px 30px -10px rgba(61,220,116,.55);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px -12px rgba(61,220,116,.65);
}

.btn-ghost {
  background: transparent;
  border-color: var(--line-hi);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--accent-line); color: var(--accent); }

.btn-sm { padding: 9px 18px; font-size: .84rem; border-radius: 10px; }
.btn-lg { padding: 16px 34px; font-size: 1rem; }
.btn-block { width: 100%; }

/* ---------- hero ---------- */
.hero {
  padding: 176px 0 110px;
  text-align: center;
  position: relative;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  border-radius: 999px;
  padding: 7px 16px;
}
.hero-eyebrow .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(61,220,116,.5); }
  50% { box-shadow: 0 0 0 7px rgba(61,220,116,0); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.02em;
  margin: 28px auto 0;
  max-width: 820px;
}
.hero h1 .grad {
  background: linear-gradient(100deg, var(--accent) 10%, #a8f5c4 50%, var(--accent) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% auto;
  animation: shine 6s linear infinite;
}
@keyframes shine { to { background-position: 200% center; } }

.hero p.lead {
  margin: 22px auto 0;
  max-width: 560px;
  color: var(--muted);
  font-size: 1.06rem;
}

.hero-cta {
  margin-top: 38px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-meta {
  margin-top: 56px;
  display: flex;
  justify-content: center;
  gap: 46px;
  flex-wrap: wrap;
}
.hero-meta .stat { text-align: center; }
.hero-meta .stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--ink);
}
.hero-meta .stat span { font-size: .8rem; color: var(--muted); font-weight: 600; }

/* ---------- sections ---------- */
.section { padding: 90px 0; position: relative; }

.section-head { text-align: center; max-width: 620px; margin: 0 auto 56px; }
.section-head .kicker {
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.6vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -.015em;
  margin-top: 12px;
}
.section-head p { color: var(--muted); margin-top: 14px; }

/* cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(61,220,116,.08), transparent 60%);
  opacity: 0;
  transition: opacity .3s;
}
.card:hover { transform: translateY(-5px); border-color: var(--accent-line); }
.card:hover::before { opacity: 1; }

.card .icon {
  width: 50px; height: 50px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  color: var(--accent);
  margin-bottom: 22px;
}
.card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
}
.card p { color: var(--muted); font-size: .92rem; margin-top: 10px; }

.card ul {
  list-style: none;
  margin-top: 18px;
  font-size: .88rem;
}
.card ul li {
  display: flex;
  gap: 10px;
  align-items: baseline;
  padding: 5px 0;
  color: var(--ink);
}
.card ul li::before { content: '✓'; color: var(--accent); font-weight: 800; }

.card .card-cta {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: .88rem;
  color: var(--accent);
  text-decoration: none;
}
.card .card-cta:hover { text-decoration: underline; }

.card.disabled { opacity: .95; }
.card .soon-badge {
  position: absolute;
  top: 20px; right: 20px;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line-hi);
  border-radius: 999px;
  padding: 4px 12px;
}

/* process steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}
.step {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  transition: transform .25s, border-color .25s;
}
.step:hover { transform: translateY(-4px); border-color: var(--accent-line); }
.step .num {
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: .1em;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-top: 10px;
}
.step p { font-size: .85rem; color: var(--muted); margin-top: 8px; }

/* CTA band */
.cta-band {
  background: linear-gradient(140deg, rgba(61,220,116,.14), rgba(61,220,116,.03));
  border: 1px solid var(--accent-line);
  border-radius: 20px;
  padding: 60px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.4vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -.015em;
}
.cta-band p { color: var(--muted); margin-top: 12px; }
.cta-band .hero-cta { margin-top: 30px; }

/* ---------- footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 40px;
  margin-top: 40px;
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand p { color: var(--muted); font-size: .82rem; }
.footer-links {
  display: flex;
  gap: 22px;
  font-size: .85rem;
  font-weight: 600;
}
.footer-links a { color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: var(--accent); }
.footer-copy { margin-left: auto; color: var(--muted); font-size: .78rem; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 70;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #06230f;
  box-shadow: 0 12px 30px -8px rgba(37,211,102,.55);
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-float:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 18px 38px -10px rgba(37,211,102,.7); }

/* ---------- forms ---------- */
.form-page {
  padding: 150px 0 90px;
  display: flex;
  justify-content: center;
}
.form-card {
  width: 100%;
  max-width: 560px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 42px 40px;
  box-shadow: var(--shadow);
}
.form-card.wide { max-width: 680px; }
.form-card h1 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -.01em;
}
.form-card .sub { color: var(--muted); font-size: .92rem; margin-top: 8px; }

.field { margin-top: 22px; }
.field label {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.field .hint { color: var(--muted); font-weight: 500; font-size: .76rem; }

.input, select.input, textarea.input {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line-hi);
  border-radius: 11px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: .95rem;
  padding: 13px 16px;
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
  background: rgba(255,255,255,.055);
}
textarea.input { resize: vertical; min-height: 130px; }
select.input option { background: #12160f; color: var(--ink); }

.field-error { color: var(--danger); font-size: .8rem; margin-top: 7px; }

.form-foot {
  margin-top: 30px;
}
.form-alt {
  text-align: center;
  margin-top: 22px;
  font-size: .86rem;
  color: var(--muted);
}
.form-alt a { color: var(--accent); font-weight: 700; text-decoration: none; }
.form-alt a:hover { text-decoration: underline; }

.notice {
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  border-radius: 11px;
  padding: 13px 16px;
  font-size: .86rem;
  margin-top: 20px;
}
.notice.err {
  background: rgba(244,114,114,.08);
  border-color: rgba(244,114,114,.35);
  color: var(--danger);
}

/* service picker */
.svc-pick {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.svc-pick input { position: absolute; opacity: 0; pointer-events: none; }
.svc-pick .opt {
  border: 1px solid var(--line-hi);
  border-radius: 11px;
  padding: 14px 10px;
  text-align: center;
  font-size: .8rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color .2s, background .2s, color .2s;
  color: var(--muted);
}
.svc-pick input:checked + .opt {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
}

/* ---------- app pages (dashboard, track, admin) ---------- */
.page {
  padding: 140px 0 90px;
}
.page-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.page-head h1 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -.01em;
}
.page-head .sub { color: var(--muted); font-size: .9rem; margin-top: 6px; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}
.stat-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
}
.stat-card b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
}
.stat-card span { color: var(--muted); font-size: .82rem; font-weight: 600; }

/* order list */
.order-list { display: flex; flex-direction: column; gap: 14px; }

.order-row {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-decoration: none;
  transition: border-color .2s, transform .2s, background .2s;
}
.order-row:hover { border-color: var(--accent-line); transform: translateX(4px); background: var(--panel-hi); }
.order-row .o-main { min-width: 0; flex: 1; }
.order-row .o-code {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--accent);
}
.order-row .o-title {
  font-weight: 700;
  font-size: .98rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.order-row .o-svc { color: var(--muted); font-size: .8rem; }
.order-row .o-progress { width: 160px; flex-shrink: 0; }

/* progress bar */
.bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  overflow: hidden;
}
.bar i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #1d9e4d, var(--accent));
  width: 0;
  transition: width 1s cubic-bezier(.22, 1, .36, 1);
}
.bar-label {
  display: flex;
  justify-content: space-between;
  font-size: .72rem;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 6px;
}

/* status badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  border-radius: 999px;
  padding: 5px 13px;
  border: 1px solid;
  white-space: nowrap;
}
.badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.badge.pending     { color: #ecc05a; border-color: rgba(236,192,90,.4); background: rgba(236,192,90,.08); }
.badge.confirmed   { color: #6db3f2; border-color: rgba(109,179,242,.4); background: rgba(109,179,242,.08); }
.badge.in_progress { color: var(--accent); border-color: var(--accent-line); background: var(--accent-soft); }
.badge.revision    { color: #c39df4; border-color: rgba(195,157,244,.4); background: rgba(195,157,244,.08); }
.badge.completed   { color: #4fd9b8; border-color: rgba(79,217,184,.4); background: rgba(79,217,184,.08); }
.badge.cancelled   { color: var(--danger); border-color: rgba(244,114,114,.4); background: rgba(244,114,114,.08); }

/* detail panel */
.panel {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 34px 36px;
  box-shadow: var(--shadow);
}
.panel + .panel { margin-top: 22px; }
.panel h2 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 30px;
}
.meta-grid .m label {
  display: block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.meta-grid .m p { font-size: .95rem; font-weight: 600; }

/* timeline */
.timeline { list-style: none; position: relative; padding-left: 26px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 7px; top: 6px; bottom: 6px;
  width: 2px;
  background: var(--line-hi);
}
.timeline li { position: relative; padding: 0 0 26px; }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
  content: '';
  position: absolute;
  left: -26px; top: 5px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--bg-soft);
  border: 3px solid var(--muted);
}
.timeline li:first-child::before { border-color: var(--accent); box-shadow: 0 0 0 5px var(--accent-soft); }
.timeline .t-title { font-weight: 700; font-size: .95rem; }
.timeline .t-note { color: var(--muted); font-size: .86rem; margin-top: 3px; }
.timeline .t-date { color: var(--muted); font-size: .72rem; font-weight: 700; margin-top: 5px; letter-spacing: .04em; }

/* track hero code display */
.code-chip {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px dashed var(--accent-line);
  border-radius: 12px;
  padding: 14px 28px;
  user-select: all;
}

.success-icon {
  width: 74px; height: 74px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  animation: popIn .5s cubic-bezier(.34, 1.56, .64, 1) both;
}
@keyframes popIn {
  from { opacity: 0; transform: scale(.5); }
  to   { opacity: 1; transform: scale(1); }
}

/* admin table */
.table-wrap { overflow-x: auto; }
table.admin {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}
table.admin th {
  text-align: left;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 12px 14px;
  border-bottom: 1px solid var(--line-hi);
}
table.admin td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
}
table.admin tr:hover td { background: var(--panel); }
table.admin a { color: var(--accent); font-weight: 700; text-decoration: none; }

.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; }
.filter-tabs a {
  font-size: .8rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line-hi);
  color: var(--muted);
  text-decoration: none;
  transition: all .2s;
}
.filter-tabs a.active, .filter-tabs a:hover {
  border-color: var(--accent-line);
  color: var(--accent);
  background: var(--accent-soft);
}

.pagination { display: flex; gap: 6px; margin-top: 24px; flex-wrap: wrap; }
.pagination a, .pagination span {
  padding: 7px 13px;
  border: 1px solid var(--line-hi);
  border-radius: 9px;
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--muted);
}
.pagination .active span, .pagination a:hover { border-color: var(--accent-line); color: var(--accent); }

.empty {
  text-align: center;
  padding: 70px 20px;
  color: var(--muted);
}
.empty .big { font-size: 2.4rem; margin-bottom: 12px; }

/* ---------- scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.22, 1, .36, 1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .cards, .steps { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .nav-burger { display: flex; }
  .lang-switch-mobile { display: inline-flex; margin-left: auto; }

  .nav.menu-open .nav-links,
  .nav.menu-open .nav-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    left: 0; right: 0;
    background: rgba(10,13,11,.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    padding: 18px 24px;
    gap: 16px;
  }
  .nav.menu-open .nav-links { top: 72px; }
  .nav.menu-open .nav-actions { top: auto; margin-top: 210px; position: static; padding-top: 0; border: 0; background: transparent; display: none; }
  .nav.menu-open .nav-links a { padding: 4px 0; }
  .nav.menu-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
  .nav.menu-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 620px) {
  .cards, .steps, .stat-row, .meta-grid, .svc-pick { grid-template-columns: 1fr; }
  .hero { padding: 130px 0 80px; }
  .form-card { padding: 32px 24px; }
  .panel { padding: 26px 22px; }
  .order-row { flex-wrap: wrap; }
  .order-row .o-progress { width: 100%; }
  .footer-copy { margin-left: 0; }
  .cta-band { padding: 44px 26px; }
}
