:root {
  --bg:      #040d1a;
  --bg2:     #071428;
  --bg3:     #050f20;
  --ocean:   #0a2240;
  --teal:    #0b4d6e;
  --gold:    #c9a84c;
  --gold2:   #e8c86d;
  --text:    #d8e8f4;
  --muted:   #6a8aaa;
  --accent:  #1a6eb5;
  --accent2: #3296d4;
  --card-bg:     rgba(7,20,40,0.85);
  --card-border: rgba(201,168,76,0.18);
  --radius: 14px;
  --hdr:    72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold2); }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.gold { color: var(--gold); }

/* ====== HEADER ====== */
.hdr {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--hdr);
  background: rgba(4,13,26,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,168,76,0.14);
  z-index: 100;
  transition: box-shadow .3s;
}
.hdr.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,.6); }

.hdr-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
  transition: opacity .2s;
}
.logo:hover { opacity: .85; }
.logo-anchor {
  font-size: 1.5rem;
  line-height: 1;
  filter: drop-shadow(0 0 6px rgba(201,168,76,.5));
}
.logo-text {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: .3px;
  line-height: 1.1;
}
.logo-sub {
  display: block;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 1px;
}

.main-nav {
  display: flex;
  gap: 2px;
  flex: 1;
}
.main-nav a {
  padding: 7px 15px;
  border-radius: 8px;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 500;
  transition: background .2s, color .2s;
}
.main-nav a:hover { background: rgba(201,168,76,0.09); color: var(--gold); }

.hdr-right { display: flex; align-items: center; gap: 12px; margin-left: auto; }

.lang-sw { display: flex; gap: 3px; flex-shrink: 0; }
.lang-sw a {
  padding: 4px 9px;
  border-radius: 6px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--muted);
  border: 1px solid transparent;
  transition: all .2s;
  text-decoration: none;
  letter-spacing: .3px;
}
.lang-sw a:hover, .lang-sw a.active {
  color: var(--gold);
  border-color: rgba(201,168,76,.5);
  background: rgba(201,168,76,.07);
}

.btn-play {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  background: linear-gradient(135deg, #b8922e, #e8c86d);
  color: #040d1a;
  font-weight: 800;
  font-size: .88rem;
  border-radius: 9px;
  text-decoration: none;
  transition: transform .15s, box-shadow .2s;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 2px 16px rgba(201,168,76,.3);
}
.btn-play:hover { transform: translateY(-1px); box-shadow: 0 4px 24px rgba(201,168,76,.45); color: #040d1a; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 7px;
  background: none;
  border: none;
  cursor: pointer;
}
.burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all .25s; }

/* ====== HERO ====== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--hdr);
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background-image: url('/assets/img/hero-bg.webp');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero-bg-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(4,13,26,.55) 0%, rgba(4,13,26,.2) 40%, rgba(4,13,26,.75) 100%),
    linear-gradient(to right, rgba(4,13,26,.6) 0%, transparent 50%, rgba(4,13,26,.3) 100%);
}

.hero-water {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 220px;
  background-image: url('/assets/img/water.webp');
  background-size: cover;
  background-position: center;
  opacity: .45;
  mix-blend-mode: screen;
}

/* Animated wave SVG */
.hero-waves {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 140px;
  z-index: 2;
}
.hero-waves svg { width: 100%; height: 100%; }
.wave1 { animation: wave 7s linear infinite; }
.wave2 { animation: wave 10s linear infinite reverse; opacity: .5; }
@keyframes wave {
  0%   { d: path("M0,70 C300,110 600,30 900,70 C1200,110 1350,30 1440,70 L1440,140 L0,140 Z"); }
  50%  { d: path("M0,50 C300,90 600,50 900,90 C1200,50 1350,90 1440,50 L1440,140 L0,140 Z"); }
  100% { d: path("M0,70 C300,110 600,30 900,70 C1200,110 1350,30 1440,70 L1440,140 L0,140 Z"); }
}

/* Floating particles */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 25%, rgba(201,168,76,.07) 0%, transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(26,110,181,.1) 0%, transparent 40%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 80px 20px 160px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 20px;
  border: 1px solid rgba(201,168,76,.65);
  border-radius: 24px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--gold2);
  margin-bottom: 28px;
  letter-spacing: .8px;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(8px);
  text-transform: uppercase;
  box-shadow: 0 2px 16px rgba(0,0,0,.5), 0 0 0 1px rgba(201,168,76,.15);
}

.hero-h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 22px;
  letter-spacing: -2px;
  text-shadow: 0 4px 40px rgba(0,0,0,.7), 0 0 80px rgba(201,168,76,.15);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(216,232,244,.75);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.75;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn-hero {
  padding: 17px 42px;
  background: linear-gradient(135deg, #b8922e 0%, #f0d478 50%, #c9a84c 100%);
  color: #040d1a;
  font-weight: 900;
  font-size: 1.1rem;
  border-radius: 12px;
  text-decoration: none;
  transition: transform .15s, box-shadow .2s;
  box-shadow:
    0 6px 30px rgba(201,168,76,.55),
    0 2px 0 rgba(255,255,255,.15) inset,
    0 0 0 2px rgba(201,168,76,.3);
  letter-spacing: .3px;
  position: relative;
  text-shadow: 0 1px 0 rgba(255,255,255,.25);
}
.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow:
    0 12px 48px rgba(201,168,76,.7),
    0 2px 0 rgba(255,255,255,.15) inset,
    0 0 0 2px rgba(201,168,76,.5);
  color: #040d1a;
}

.btn-hero-outline {
  padding: 17px 34px;
  border: 2px solid rgba(255,255,255,.45);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 12px;
  text-decoration: none;
  transition: all .2s;
  backdrop-filter: blur(12px);
  background: rgba(0,0,0,.35);
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
  text-shadow: 0 1px 4px rgba(0,0,0,.6);
}
.btn-hero-outline:hover {
  border-color: var(--gold2);
  background: rgba(201,168,76,.18);
  color: var(--gold2);
  box-shadow: 0 6px 28px rgba(0,0,0,.5);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  background: rgba(4,13,26,.5);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201,168,76,.12);
  border-radius: 16px;
  padding: 18px 32px;
  display: inline-flex;
}
.stat { text-align: center; }
.stat-n { display: block; font-size: 1.8rem; font-weight: 900; color: var(--gold); line-height: 1; }
.stat-l { display: block; font-size: .7rem; color: var(--muted); text-transform: uppercase; letter-spacing: .8px; margin-top: 4px; }
.stat-div { width: 1px; height: 40px; background: rgba(201,168,76,.18); }

/* ====== SECTIONS ====== */
.section { padding: 90px 0; }
.section-dark {
  background:
    linear-gradient(180deg, var(--bg2) 0%, var(--ocean) 50%, var(--bg2) 100%);
  position: relative;
}
.section-dark::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.25), transparent);
}
.section-dark::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.25), transparent);
}

.section-head {
  text-align: center;
  margin-bottom: 56px;
}
.section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 14px;
  position: relative;
  display: inline-block;
}
.section-head h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 10px auto 0;
  border-radius: 2px;
}
.section-head p { color: var(--muted); font-size: 1.05rem; max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* ====== FEATURES ====== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.feature-card:hover { border-color: rgba(201,168,76,.4); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.4); }
.feature-card:hover::before { opacity: 1; }
.feature-icon { font-size: 2.2rem; margin-bottom: 16px; }
.feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--gold2); }
.feature-card p { font-size: .9rem; color: var(--muted); line-height: 1.7; }

/* ====== CLASSES ====== */
.classes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.class-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  cursor: default;
}
.class-card:hover { border-color: rgba(201,168,76,.5); transform: translateY(-5px); box-shadow: 0 16px 50px rgba(0,0,0,.5); }

.class-img-wrap {
  height: 300px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--ocean) 0%, var(--bg2) 100%);
  position: relative;
}
.class-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .4s;
}
.class-card:hover .class-img-wrap img { transform: scale(1.06); }
.class-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--card-bg), transparent);
}

.class-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.class-name { font-size: 1.1rem; font-weight: 800; color: var(--gold); margin-bottom: 4px; }
.class-role { font-size: .75rem; font-weight: 700; text-transform: uppercase; color: var(--accent2); letter-spacing: .7px; margin-bottom: 10px; }
.class-desc { font-size: .87rem; color: var(--muted); line-height: 1.65; flex: 1; margin-bottom: 16px; }
.class-diff { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; font-size: .82rem; }
.diff-label { color: var(--muted); }
.diff-stars { color: var(--gold); letter-spacing: 2px; }
.btn-class {
  display: block;
  text-align: center;
  padding: 10px;
  border: 1px solid rgba(201,168,76,.35);
  border-radius: 9px;
  color: var(--gold);
  font-size: .87rem;
  font-weight: 700;
  transition: all .2s;
  text-decoration: none;
  background: rgba(201,168,76,.04);
}
.btn-class:hover { background: var(--gold); color: #040d1a; }

/* ====== SCREENSHOTS SLIDER ====== */
.screenshots { padding: 70px 0; background: var(--bg3); }
.slides-wrap {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
  cursor: grab;
  user-select: none;
}
.slides-wrap:active { cursor: grabbing; }
.slides-track {
  display: flex;
  gap: 16px;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
}
.slide {
  flex-shrink: 0;
  width: calc(33.333% - 11px);
  border-radius: 10px;
  overflow: hidden;
}
.slide img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.slides-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}
.slides-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  color: var(--gold);
  font-size: 1rem;
  cursor: pointer;
  transition: all .2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slides-btn:hover { background: rgba(201,168,76,.15); border-color: var(--gold); }

/* ====== WORLD ====== */
.world-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.world-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: border-color .25s, transform .25s;
  backdrop-filter: blur(8px);
}
.world-card:hover { border-color: rgba(201,168,76,.4); transform: translateY(-3px); }
.world-icon { font-size: 2.2rem; margin-bottom: 14px; }
.world-card h3 { font-size: 1.08rem; font-weight: 700; color: var(--gold); margin-bottom: 10px; }
.world-card p { font-size: .9rem; color: var(--muted); line-height: 1.7; }

/* ====== CTA SECTION ====== */
.section-cta {
  position: relative;
  padding: 90px 0;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg) 0%, var(--ocean) 50%, var(--bg) 100%);
}
.section-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/assets/img/water.webp') center/cover;
  opacity: .08;
}
.section-cta .container { position: relative; z-index: 1; }
.section-cta h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 800; margin-bottom: 16px; }
.section-cta p { color: var(--muted); font-size: 1.05rem; margin-bottom: 36px; }
.cta-btns { margin-bottom: 22px; }
.cta-platforms { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; color: var(--muted); font-size: .92rem; }

/* ====== SEO PROMO BANNER ====== */
.seo-promo-section { padding: 0 0 70px; }
.seo-promo-card {
  border: 1px solid rgba(201,168,76,.35);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(10,34,64,.95) 0%, rgba(7,20,40,.95) 100%);
  padding: 36px 40px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
}
.seo-promo-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold2), var(--gold), transparent);
}
.seo-promo-card::after {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.08) 0%, transparent 70%);
  pointer-events: none;
}
.seo-promo-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  border-radius: 20px;
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.3);
  font-size: .75rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 20px;
}
.seo-promo-label::before { content: '📋'; font-size: .85rem; }
.seo-promo-body {
  display: flex;
  align-items: center;
  gap: 40px;
}
.seo-promo-text { flex: 1; }
.seo-promo-title {
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.25;
}
.seo-promo-desc {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 18px;
  max-width: 560px;
}
.seo-promo-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.seo-promo-tags span {
  font-size: .75rem;
  color: var(--accent2);
  background: rgba(26,110,181,.12);
  border: 1px solid rgba(26,110,181,.2);
  border-radius: 12px;
  padding: 3px 10px;
  font-weight: 600;
}
.seo-promo-action {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
  min-width: 180px;
}
.seo-promo-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.seo-rating-n {
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 0 30px rgba(201,168,76,.4);
}
.seo-rating-stars { color: var(--gold2); font-size: 1rem; letter-spacing: 2px; }
.seo-rating-label { font-size: .78rem; color: var(--muted); }
.btn-seo-promo {
  display: block;
  padding: 13px 24px;
  background: linear-gradient(135deg, #b8922e, #e8c86d);
  color: #040d1a;
  font-weight: 800;
  font-size: .92rem;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
  transition: transform .15s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(201,168,76,.4);
  white-space: nowrap;
}
.btn-seo-promo:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,.55); color: #040d1a; }
@media (max-width: 700px) {
  .seo-promo-card { padding: 24px 20px; }
  .seo-promo-body { flex-direction: column; gap: 24px; }
  .seo-promo-action { width: 100%; }
  .btn-seo-promo { width: 100%; }
}

/* ====== FAQ ====== */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: blur(6px);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text);
  font-size: .97rem;
  font-weight: 600;
  cursor: pointer;
  gap: 12px;
  text-align: left;
  transition: color .2s;
}
.faq-q:hover, .faq-q[aria-expanded="true"] { color: var(--gold); }
.faq-arrow { font-size: .68rem; color: var(--gold); flex-shrink: 0; transition: transform .25s; }
.faq-q[aria-expanded="true"] .faq-arrow { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a.open { max-height: 400px; }
.faq-a p { padding: 0 24px 20px; color: var(--muted); font-size: .92rem; line-height: 1.75; }

/* ====== FOOTER ====== */
.footer {
  background: #020810;
  border-top: 1px solid rgba(201,168,76,.1);
  padding: 44px 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.footer-logo { font-size: 1.1rem; font-weight: 700; color: var(--gold); }
.footer-copy { font-size: .8rem; color: var(--muted); }
.footer-links { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; justify-content: center; }
.footer-links a { font-size: .87rem; color: var(--muted); transition: color .2s; }
.footer-links a:hover { color: var(--gold); }

/* ====== RESPONSIVE ====== */
@media (max-width: 1000px) {
  .classes-grid { grid-template-columns: repeat(2, 1fr); }
  .slide { width: calc(50% - 8px); }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
    position: fixed;
    top: var(--hdr);
    left: 0; right: 0;
    background: rgba(4,13,26,.98);
    flex-direction: column;
    padding: 16px;
    border-bottom: 1px solid rgba(201,168,76,.15);
    gap: 4px;
    z-index: 99;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 16px; font-size: 1rem; color: var(--text); }
  .burger { display: flex; }
  .world-grid { grid-template-columns: 1fr; }
  /* Скрываем кнопку "Играть" в шапке — она есть в hero */
  .btn-play { display: none; }
}
@media (max-width: 700px) {
  .classes-grid { grid-template-columns: 1fr; }
  .slide { width: 100%; }
  .hero-stats {
    gap: 12px;
    padding: 12px 16px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .stat-div { display: none; }
  .stat { min-width: 70px; text-align: center; }
}
@media (max-width: 600px) {
  .hdr-inner { padding: 0 16px; gap: 16px; }
  .hdr-right { gap: 8px; }
  .hero-content { padding: 60px 16px 140px; }
  .section { padding: 64px 0; }
  .hero-h1 { letter-spacing: -1px; }
  .hero-cta { gap: 10px; }
  .btn-hero, .btn-hero-outline { padding: 14px 24px; font-size: .97rem; }
}
@media (max-width: 420px) {
  .logo-anchor { font-size: 1.2rem; }
  .logo-text { font-size: .92rem; }
  .logo-sub { font-size: .52rem; letter-spacing: 2px; }
  .lang-sw a { padding: 4px 7px; font-size: .72rem; }
  .hero-stats { gap: 10px; padding: 10px 12px; }
  .stat-n { font-size: 1.4rem; }
  .stat-l { font-size: .6rem; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .btn-hero, .btn-hero-outline { text-align: center; }
}
