/* ============ RESET & BASE ============ */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #0a0a0f;
  color: #eaeaf0;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }

:root {
  --bg: #0a0a0f;
  --surface: #13131c;
  --surface-2: #1a1a26;
  --border: #2a2a38;
  --border-soft: #1f1f2a;
  --text: #eaeaf0;
  --muted: #9494a8;
  --dim: #6b6b80;
  --accent: #8b5cf6;
  --accent-2: #06b6d4;
  --accent-warm: #f59e0b;
  --grad: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
  --grad-warm: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  --shadow-lg: 0 20px 60px -20px rgba(139, 92, 246, 0.25);
}

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

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-soft);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.logo-mark {
  width: 28px;
  height: 28px;
  background: var(--grad);
  border-radius: 8px;
  position: relative;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}
.logo-mark::after {
  content: 'J';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 16px;
}
.logo-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.5);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover {
  background: var(--surface);
  border-color: #3a3a4a;
}
.btn-block { width: 100%; }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
}
.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139, 92, 246, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center top, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center top, black 30%, transparent 70%);
  pointer-events: none;
}
.bg-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(139, 92, 246, 0.25) 0%, transparent 60%);
  pointer-events: none;
  filter: blur(40px);
}
.hero-inner {
  position: relative;
  text-align: center;
  max-width: 860px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 999px;
  font-size: 13px;
  color: #c4b5fd;
  margin-bottom: 28px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-title {
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 40px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 72px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 640px;
  margin: 0 auto;
  padding: 32px 24px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
}
.stat-num {
  font-size: 32px;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-lbl {
  font-size: 13px;
  color: var(--muted);
}

/* ============ SECTIONS ============ */
section { padding: 100px 0; }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-head h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-lead {
  color: var(--muted);
  font-size: 17px;
}

/* ============ APP CARDS ============ */
.app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.app-card {
  position: relative;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.app-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: var(--shadow-lg);
}
.app-card.featured {
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.08) 0%, var(--surface) 100%);
  border-color: rgba(139, 92, 246, 0.25);
}
.app-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #fff;
}
.app-icon svg { width: 28px; height: 28px; }
.importer-icon { background: linear-gradient(135deg, #06b6d4, #3b82f6); }
.rounder-icon  { background: linear-gradient(135deg, #8b5cf6, #ec4899); }
.improver-icon { background: linear-gradient(135deg, #f59e0b, #ef4444); }

.app-meta {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}
.status-live {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
}
.status-live::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
}
.status-soon {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
}
.installs {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--muted);
  background: var(--surface-2);
}
.app-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.app-desc {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 20px;
}
.app-desc strong { color: var(--text); }
.app-features {
  list-style: none;
  margin-bottom: 24px;
  flex-grow: 1;
}
.app-features li {
  position: relative;
  padding: 6px 0 6px 24px;
  font-size: 14px;
  color: var(--muted);
}
.app-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 14px;
  height: 2px;
  background: var(--grad);
  border-radius: 2px;
}
.app-link {
  display: inline-block;
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.2s;
}
.app-link:hover { transform: translateX(4px); }

/* ============ WHY ============ */
.why { background: #08080c; border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.why-card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  transition: all 0.2s;
}
.why-card:hover {
  border-color: var(--border);
  transform: translateY(-2px);
}
.why-ico {
  font-size: 28px;
  margin-bottom: 14px;
}
.why-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.why-card p {
  color: var(--muted);
  font-size: 14px;
}

/* ============ PRICING TEASER ============ */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.price-card {
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: all 0.25s;
}
.price-card:hover {
  transform: translateY(-3px);
  border-color: rgba(139, 92, 246, 0.25);
}
.price-card.highlight {
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.1), var(--surface));
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: var(--shadow-lg);
}
.price-emoji {
  font-size: 36px;
  line-height: 1;
  margin-bottom: 14px;
}
.price-head {
  font-weight: 700;
  color: var(--text);
  font-size: 18px;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.price-big {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 6px;
}
.price-tagline {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 22px;
}
.price-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  margin-bottom: 24px;
  flex-grow: 1;
}
.price-perks li {
  position: relative;
  padding-left: 28px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}
.price-perks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 92, 246, 0.15);
  color: var(--accent);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
}
.price-card.soon .price-big {
  font-size: 28px;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: var(--accent-warm);
}
.price-card.soon .price-perks li::before {
  background: rgba(245, 158, 11, 0.15);
  color: var(--accent-warm);
  content: '•';
  font-size: 16px;
}

/* ============ CTA ============ */
.cta { padding: 80px 0; }
.cta-box {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 40px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(6, 182, 212, 0.1) 100%);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(139, 92, 246, 0.2), transparent 60%);
  pointer-events: none;
}
.cta-box h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  position: relative;
}
.cta-box p {
  color: var(--muted);
  margin-bottom: 32px;
  font-size: 17px;
  position: relative;
}
.cta-box .hero-ctas { margin-bottom: 0; position: relative; }

/* ============ FOOTER ============ */
.footer {
  background: #07070b;
  border-top: 1px solid var(--border-soft);
  padding: 60px 0 30px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-soft);
}
.footer-brand p {
  color: var(--muted);
  font-size: 14px;
  margin-top: 12px;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: var(--muted);
  font-size: 14px;
  padding: 6px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 13px;
  color: var(--dim);
  flex-wrap: wrap;
  gap: 12px;
}

/* ============ APP DETAIL PAGES ============ */
.detail-hero {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.detail-hero-inner {
  position: relative;
  max-width: 900px;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 24px;
  transition: color 0.2s;
}
.back-link:hover { color: var(--text); }
.detail-header {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.detail-header .app-icon { margin-bottom: 0; }
.detail-title h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 8px;
}
.detail-title p {
  color: var(--muted);
  font-size: 17px;
}
.detail-meta {
  display: flex;
  gap: 10px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.feature-item {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
}
.feature-item h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.feature-item p {
  font-size: 14px;
  color: var(--muted);
}

/* ============ PRICING TABLE ============ */
.pricing-table {
  overflow-x: auto;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  background: var(--surface);
}
.pricing-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}
.pricing-table th,
.pricing-table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-soft);
  font-size: 14px;
}
.pricing-table th {
  background: var(--surface-2);
  font-weight: 700;
  color: var(--text);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pricing-table tbody tr:last-child td { border-bottom: none; }
.pricing-table tbody tr:hover { background: rgba(139, 92, 246, 0.04); }
.plan-name {
  font-weight: 700;
  color: var(--text);
}
.plan-name.free    { color: #9ca3af; }
.plan-name.starter { color: #60a5fa; }
.plan-name.basic   { color: #34d399; }
.plan-name.pro     { color: #c084fc; }
.plan-name.premium {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.check-yes { color: #34d399; font-weight: 700; }
.check-no  { color: var(--dim); }

/* ============ SOON BANNER ============ */
.soon-banner {
  padding: 40px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(239, 68, 68, 0.05));
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 20px;
  text-align: center;
  margin-top: 40px;
}
.soon-banner h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.soon-banner p { color: var(--muted); }

/* ============ PLAN GRID (detail pricing) ============ */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}
@media (max-width: 1100px) {
  .plan-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 560px) {
  .plan-grid { grid-template-columns: 1fr; }
}
.plan-card {
  position: relative;
  padding: 22px 16px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  transition: all 0.25s;
}
.plan-card:hover {
  transform: translateY(-3px);
  border-color: rgba(139, 92, 246, 0.25);
  box-shadow: var(--shadow-lg);
}
.plan-card.featured {
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.12) 0%, var(--surface) 100%);
  border-color: rgba(139, 92, 246, 0.45);
  box-shadow: var(--shadow-lg);
}
.plan-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 11px;
  background: var(--grad);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(139, 92, 246, 0.4);
}
.plan-top {
  text-align: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-soft);
  margin-bottom: 14px;
}
.plan-emoji {
  font-size: 26px;
  line-height: 1;
  margin-bottom: 8px;
}
.plan-name-h {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 3px;
}
.plan-tagline {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.3;
}
.plan-price { text-align: center; margin-bottom: 16px; }
.price-now {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 6px;
}
.price-note {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.45;
}
.price-trial {
  display: inline-block;
  margin-top: 8px;
  padding: 3px 9px;
  background: rgba(16, 185, 129, 0.12);
  color: #34d399;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}
.plan-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.plan-features-list li {
  position: relative;
  padding-left: 22px;
  font-size: 12.5px;
  line-height: 1.4;
}
.plan-features-list li::before {
  position: absolute;
  left: 0;
  top: 1px;
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  border-radius: 50%;
  font-weight: 700;
}
.plan-features-list li.yes { color: var(--text); }
.plan-features-list li.yes::before {
  content: '✓';
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
}
.plan-features-list li.no { color: var(--dim); }
.plan-features-list li.no::before {
  content: '×';
  background: rgba(107, 107, 128, 0.15);
  color: var(--dim);
}

/* ============ LANG SWITCH ============ */
.lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  gap: 2px;
  margin-right: 12px;
}
.lang-switch button {
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 5px 11px;
  border-radius: 999px;
  transition: all 0.2s;
}
.lang-switch button:hover { color: var(--text); }
.lang-switch button.active {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 2px 8px rgba(139, 92, 246, 0.4);
}
.nav-tools {
  display: flex;
  align-items: center;
}

/* ============ LEGAL PAGES ============ */
.legal-hero {
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}
.legal-hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.legal-hero .legal-meta {
  color: var(--muted);
  font-size: 14px;
}
.legal {
  padding: 40px 0 100px;
}
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  display: none;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
}
html[lang="en"] .legal-content[data-lang-content="en"],
html[lang="uk"] .legal-content[data-lang-content="uk"] {
  display: block;
}
.legal-content h2 {
  font-size: 22px;
  font-weight: 700;
  margin-top: 36px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.legal-content h3 {
  font-size: 17px;
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 8px;
  color: var(--text);
}
.legal-content p {
  margin-bottom: 14px;
  color: var(--muted);
}
.legal-content ul {
  margin: 0 0 16px 0;
  padding-left: 22px;
}
.legal-content ul li {
  margin-bottom: 6px;
  color: var(--muted);
}
.legal-content a {
  color: var(--accent);
  border-bottom: 1px solid rgba(139, 92, 246, 0.3);
}
.legal-content a:hover {
  border-bottom-color: var(--accent);
}
.legal-content code {
  background: var(--surface-2);
  padding: 1px 6px;
  border-radius: 4px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 14px;
  color: #c4b5fd;
}
.legal-content strong { color: var(--text); }

/* ============ MOBILE ============ */
@media (max-width: 768px) {
  section { padding: 70px 0; }
  .hero { padding: 80px 0 60px; }
  .nav-links { display: none; }
  .hero-stats { grid-template-columns: 1fr; }
  .stat { padding: 16px 0; border-bottom: 1px solid var(--border-soft); }
  .stat:last-child { border-bottom: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .cta-box { padding: 40px 24px; }
  .lang-switch { margin-right: 8px; }
  .lang-switch button { padding: 4px 9px; font-size: 11px; }
}
