/* ============================================================
   FCE — common.css
   Shared styles used across ALL pages of fce.global
   Extracted from embedded <style> blocks (17 HTML files).
   ============================================================ */

/* ========== BRAND TOKENS ========== */
:root {
  --navy: #071B53;
  --navy-2: #0E2469;
  --navy-3: #162F86;
  --blue: #2468FF;
  --sky: #67C6FF;
  --ice: #EAF3FF;
  --ice-2: #F4F8FF;
  --ice-3: #F8FAFE;
  --gray: #6C768A;
  --gray-2: #AEB6C4;
  --white: #FFFFFF;
  --line: #E1E7F2;
  --line-2: #EEF1F8;
  --green: #16a34a;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --shadow-card: 0 1px 0 rgba(255,255,255,.9) inset, 0 1px 2px rgba(7,27,83,.03), 0 12px 32px -8px rgba(7,27,83,.07);
  --shadow-elev: 0 1px 0 rgba(255,255,255,.9) inset, 0 4px 8px rgba(7,27,83,.04), 0 28px 60px -12px rgba(7,27,83,.12);
  --shadow-deep: 0 24px 60px -16px rgba(7,27,83,.20), 0 48px 96px -24px rgba(7,27,83,.14);
  --mono: 'JetBrains Mono', ui-monospace, monospace;
}

/* ========== RESET / BASE ========== */
* { box-sizing: border-box }
html, body { margin: 0; padding: 0 }
body { overflow-x: hidden }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  color: var(--navy);
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none }
img, svg { display: block; max-width: 100% }
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px }

/* ========== HEADER / NAV ========== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.78);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-row { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 24px }
.logo { display: flex; align-items: center; gap: 0 }
.logo .logo-img { height: 30px; width: auto; display: block }
.nav-links { display: flex; align-items: center; gap: 4px }
.nav-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 16px; border-radius: 12px; color: var(--navy);
  font-weight: 500; font-size: 14.5px; cursor: pointer; letter-spacing: -.1px;
  transition: background .15s ease, color .15s ease;
}
.nav-link:hover { background: var(--ice); color: var(--blue) }
.nav-link svg.chev { width: 11px; height: 11px; color: var(--gray-2); transition: transform .2s ease }
.nav-item { position: relative }
.nav-item:hover > .nav-link svg.chev { transform: rotate(180deg); color: var(--blue) }

/* Dropdown */
.dropdown {
  position: absolute; top: 100%; left: -8px; margin-top: 8px;
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 10px; min-width: 380px;
  box-shadow: 0 12px 30px -8px rgba(7,27,83,.10), 0 30px 60px -16px rgba(7,27,83,.16);
  opacity: 0; pointer-events: none; transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease;
  z-index: 60;
}
.dropdown::before { content: ""; position: absolute; top: -12px; left: 0; right: 0; height: 12px }
.nav-item:hover > .dropdown { opacity: 1; pointer-events: auto; transform: translateY(0) }
.dropdown a {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 14px; border-radius: 12px; color: var(--navy);
  font-weight: 500; font-size: 14px; transition: background .15s ease; letter-spacing: -.1px;
}
.dropdown a:hover { background: var(--ice-2); color: var(--blue) }
.dd-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg,#EAF3FF,#DCE9FF);
  display: flex; align-items: center; justify-content: center; flex: none;
}
.dd-icon svg { width: 17px; height: 17px; color: var(--blue) }

/* Nav right area — lang switcher + sign in */
.nav-right { display: flex; align-items: center; gap: 14px }
.lang-switcher {
  display: inline-flex; align-items: center;
  background: var(--ice-2);
  border: 1px solid var(--line);
  border-radius: 10px; padding: 3px; gap: 2px;
}
.lang-btn {
  padding: 6px 11px;
  font-family: var(--mono);
  font-size: 11.5px; font-weight: 600; letter-spacing: .6px;
  color: var(--gray); background: transparent;
  border: 0; border-radius: 7px; cursor: pointer;
  transition: color .15s ease, background .15s ease, box-shadow .15s ease;
}
.lang-btn.active {
  background: #fff; color: var(--navy);
  box-shadow: 0 1px 2px rgba(7,27,83,.10);
}
.lang-btn:hover:not(.active) { color: var(--navy) }
.nav-signin {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 20px; border-radius: 11px;
  font-weight: 600; font-size: 14px; letter-spacing: -.1px;
  background: linear-gradient(135deg, var(--blue) 0%, #3877FF 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(36,104,255,.30);
  transition: transform .15s ease, box-shadow .15s ease;
}
.nav-signin:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(36,104,255,.40) }
.nav-signin svg { width: 13px; height: 13px }

/* Burger button — visible only on tablet/mobile (<=960px) */
.nav-burger {
  display: none;
  width: 42px; height: 42px; align-items: center; justify-content: center;
  background: var(--ice-2);
  border: 1px solid var(--line);
  border-radius: 11px; cursor: pointer; color: var(--navy);
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.nav-burger:hover { background: #fff; color: var(--blue); border-color: rgba(36,104,255,.25) }
.nav-burger svg { width: 20px; height: 20px }

/* ========== MOBILE DRAWER ========== */
.mobile-overlay {
  position: fixed; inset: 0; background: rgba(7,27,83,.45);
  opacity: 0; visibility: hidden;
  transition: opacity .22s ease, visibility .22s ease;
  z-index: 998;
}
.mobile-overlay.open { opacity: 1; visibility: visible }
.mobile-panel {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(86vw, 360px);
  background: #fff;
  box-shadow: -20px 0 60px rgba(7,27,83,.18);
  transform: translateX(100%);
  transition: transform .26s ease;
  z-index: 999;
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.mobile-panel.open { transform: translateX(0) }
.mp-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; border-bottom: 1px solid var(--line);
}
.mp-head .logo-img { height: 26px }
.mp-close {
  width: 38px; height: 38px; border: 0; background: var(--ice);
  border-radius: 10px; cursor: pointer; color: var(--navy);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .15s ease, color .15s ease;
}
.mp-close:hover { background: #fff; color: var(--blue); box-shadow: 0 0 0 1px var(--line) inset }
.mp-close svg { width: 18px; height: 18px }
.mp-body { padding: 14px 12px; display: flex; flex-direction: column; gap: 2px; flex: 1 }
.mp-section { padding: 4px 0; border-bottom: 1px solid var(--line-2) }
.mp-section:last-of-type { border-bottom: 0 }
.mp-toggle {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  padding: 14px 12px; background: transparent; border: 0; cursor: pointer;
  font: inherit; color: var(--navy); font-weight: 600; font-size: 15px;
  border-radius: 10px; text-align: left; letter-spacing: -.1px;
}
.mp-toggle:hover { background: var(--ice) }
.mp-toggle svg { width: 14px; height: 14px; color: var(--blue); transition: transform .2s ease; flex-shrink: 0 }
.mp-section.open .mp-toggle svg { transform: rotate(180deg) }
.mp-sub {
  max-height: 0; overflow: hidden;
  transition: max-height .25s ease;
  padding-left: 4px;
}
.mp-section.open .mp-sub { max-height: 560px; padding-bottom: 4px }
.mp-sub a {
  display: flex; gap: 12px; align-items: center;
  padding: 12px 12px; color: var(--navy);
  text-decoration: none; border-radius: 10px; font-size: 14px; font-weight: 500; line-height: 1.35;
}
.mp-sub a:hover { background: var(--ice); color: var(--blue) }
.mp-sub .dd-icon { width: 32px; height: 32px; flex-shrink: 0 }
.mp-sub .dd-icon svg { width: 16px; height: 16px }
.mp-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 12px; font-weight: 600; font-size: 15px; letter-spacing: -.1px;
  color: var(--navy); text-decoration: none; border-radius: 10px;
}
.mp-link:hover { background: var(--ice); color: var(--blue) }
.mp-foot { padding: 16px 18px 20px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 12px }
.mp-foot .nav-signin { display: flex; width: 100%; justify-content: center }
.mp-foot .lang-switcher { align-self: flex-start }
body.menu-open { overflow: hidden }

/* ========== SECTION COMMON ========== */
section { padding: 96px 0; position: relative }
.sec-head { max-width: 780px; margin: 0 0 56px; position: relative; z-index: 2 }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center }
.sec-head.center .accent-line { margin-left: auto; margin-right: auto }
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 11px; font-weight: 600; letter-spacing: 2px;
  color: var(--blue); text-transform: uppercase; margin-bottom: 18px;
}
.kicker::before { content: ""; width: 24px; height: 1px; background: var(--blue); opacity: .5 }
.accent-line {
  width: 48px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--blue), var(--sky));
  margin: 0 0 24px;
}
h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05; letter-spacing: -1px; font-weight: 800; color: var(--navy);
  margin: 0 0 18px;
}
html[lang="ru"] h2 { font-size: clamp(28px, 3.6vw, 42px); letter-spacing: -.8px }
.sec-sub {
  font-size: 18px; color: var(--gray); margin: 0; line-height: 1.6;
  max-width: 680px; letter-spacing: -.1px;
}

/* ========== SUB-PAGE HERO (shared by all subpages) ========== */
.sub-hero {
  position: relative; overflow: hidden; padding: 28px 0 80px;
  background:
    radial-gradient(ellipse 1200px 720px at 90% 20%, rgba(103,198,255,.18) 0%, transparent 55%),
    radial-gradient(ellipse 800px 600px at 0% 80%, rgba(36,104,255,.08) 0%, transparent 55%),
    linear-gradient(180deg, #F4F8FF 0%, #FFFFFF 70%, #F8FAFE 100%);
}
.sub-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(36,104,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36,104,255,.03) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 20%, transparent 95%);
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 20%, transparent 95%);
}
.sub-hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px;
  align-items: center; position: relative; z-index: 2;
}
html[lang="ru"] .sub-hero-grid { grid-template-columns: 1.15fr .85fr; gap: 48px }
.sub-hero h1 {
  color: var(--navy); font-size: clamp(38px, 5vw, 64px);
  line-height: 1.04; letter-spacing: -1.4px; font-weight: 800; margin: 0 0 22px;
  background: linear-gradient(180deg, var(--navy) 0%, #1A3490 95%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
html[lang="ru"] .sub-hero h1 { font-size: clamp(30px, 3.6vw, 46px); line-height: 1.06; letter-spacing: -.9px }
.sub-hero .lead {
  color: var(--gray); font-size: 18px; max-width: 560px;
  line-height: 1.65; letter-spacing: -.1px; margin: 0 0 32px;
}
.sub-hero .intro { display: flex; flex-direction: column; gap: 18px; max-width: 580px }
.sub-hero .intro p { color: var(--gray); font-size: 17px; line-height: 1.7; letter-spacing: -.1px; margin: 0 }
.sub-hero .intro p strong { color: var(--navy); font-weight: 600 }

/* Breadcrumb (used on service subpages) */
.breadcrumb {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  color: var(--blue); letter-spacing: 1.8px; text-transform: uppercase;
  margin-bottom: 28px; padding: 8px 14px; border-radius: 99px;
  background: rgba(255,255,255,.7); border: 1px solid var(--line-2);
  backdrop-filter: blur(8px);
}
.breadcrumb a { color: var(--gray); transition: color .15s }
.breadcrumb a:hover { color: var(--blue) }
.breadcrumb svg { width: 10px; height: 10px }

/* ========== HERO CTA BUTTONS (shared across subpages) ========== */
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 8px; align-items: center }
.hero-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 26px; border-radius: 13px;
  font-weight: 600; font-size: 15.5px; letter-spacing: -.1px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
  cursor: pointer; border: 0; font-family: inherit;
}
.hero-btn svg { width: 14px; height: 14px; transition: transform .2s ease }
.hero-btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, #3877FF 100%);
  color: #fff;
  box-shadow: 0 6px 18px rgba(36,104,255,.32);
}
.hero-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 26px rgba(36,104,255,.42) }
.hero-btn-primary:hover svg { transform: translateX(3px) }
.hero-btn-secondary {
  background: rgba(255,255,255,.7);
  color: var(--navy);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.hero-btn-secondary:hover { background: #fff; border-color: rgba(36,104,255,.30); color: var(--blue) }
.hero-btn-secondary svg { color: var(--blue) }

/* ========== GLASS LOGO HERO ART (shared across subpages) ========== */
.hero-art { position: relative; display: flex; justify-content: center; align-items: center; min-height: 460px }
.glass-stage {
  position: relative; width: 88%; max-width: 460px; aspect-ratio: 700/751;
  display: flex; align-items: center; justify-content: center;
}
.gs-glow {
  position: absolute; top: 50%; left: 50%; width: 78%; height: 78%;
  transform: translate(-50%,-50%); border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(103,198,255,.45) 0%, rgba(36,104,255,.18) 40%, transparent 70%);
  filter: blur(30px);
  animation: glass-glow 5s ease-in-out infinite;
}
@keyframes glass-glow {
  0%, 100% { opacity: .85; transform: translate(-50%,-50%) scale(1) }
  50% { opacity: 1; transform: translate(-50%,-50%) scale(1.06) }
}
.glass-logo {
  position: relative; z-index: 2;
  width: 100%; height: 100%; object-fit: contain; display: block;
  filter: drop-shadow(0 30px 60px rgba(7,27,83,.22)) drop-shadow(0 6px 14px rgba(36,104,255,.20));
  animation: glass-float 7s ease-in-out infinite;
}
@keyframes glass-float {
  0%, 100% { transform: translateY(0) rotate(0deg) }
  50% { transform: translateY(-12px) rotate(-1deg) }
}
.gs-spark {
  position: absolute; border-radius: 50%; background: #67C6FF;
  box-shadow: 0 0 10px rgba(103,198,255,.7); z-index: 3;
  animation: gs-twinkle 3s ease-in-out infinite;
}
.sp1 { width: 4px; height: 4px; top: 12%; left: 18%; animation-delay: 0s }
.sp2 { width: 3px; height: 3px; top: 24%; right: 12%; animation-delay: .6s; background: #2468FF }
.sp3 { width: 5px; height: 5px; bottom: 18%; left: 10%; animation-delay: 1.2s }
.sp4 { width: 3px; height: 3px; bottom: 28%; right: 14%; animation-delay: 1.8s; background: #2468FF }
.sp5 { width: 4px; height: 4px; top: 46%; right: 2%; animation-delay: 2.4s }
@keyframes gs-twinkle { 0%, 100% { opacity: .3; transform: scale(.85) } 50% { opacity: 1; transform: scale(1.25) } }

/* ========== GENERAL BUTTON STYLES ========== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 12px; font-weight: 600; font-size: 15px;
  cursor: pointer; border: 1px solid transparent; font-family: inherit;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue), #3877FF); color: #fff;
  box-shadow: 0 4px 14px rgba(36,104,255,.30);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(36,104,255,.40) }

/* ========== LEGAL PAGE HERO (shared by all legal/policy pages) ========== */
.legal-hero {
  position: relative; overflow: hidden; padding: 36px 0 36px;
  background:
    radial-gradient(ellipse 1200px 700px at 90% 20%, rgba(103,198,255,.15) 0%, transparent 55%),
    linear-gradient(180deg, #F4F8FF 0%, #FFFFFF 100%);
}
.legal-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(36,104,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36,104,255,.03) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 30%, #000 20%, transparent 95%);
  mask-image: radial-gradient(ellipse 70% 70% at 50% 30%, #000 20%, transparent 95%);
}
.legal-hero .container { position: relative; z-index: 2; max-width: 920px }
.legal-hero h1 {
  color: var(--navy); font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.04; letter-spacing: -1.2px; font-weight: 800; margin: 0 0 14px;
  background: linear-gradient(180deg, var(--navy) 0%, #1A3490 95%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
html[lang="ru"] .legal-hero h1 { font-size: clamp(28px, 3.8vw, 42px); letter-spacing: -.9px }
.legal-effective {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11.5px; font-weight: 600;
  color: var(--blue); letter-spacing: 1.4px; text-transform: uppercase;
}
.legal-effective::before { content: ""; width: 18px; height: 1px; background: var(--blue); opacity: .5 }

/* ========== LEGAL BODY (shared by all legal/policy pages) ========== */
.legal-wrap { padding: 32px 0 96px; background: #fff }
.legal-body {
  max-width: 760px; margin: 0 auto; padding: 0 24px;
  font-size: 16.5px; line-height: 1.75; color: #34416B; letter-spacing: -.05px;
}
.legal-body h2 {
  font-size: clamp(22px, 2.2vw, 28px); font-weight: 800; color: var(--navy);
  line-height: 1.25; letter-spacing: -.5px; margin: 40px 0 14px;
  position: relative; padding-left: 16px;
}
.legal-body h2::before {
  content: ""; position: absolute; left: 0; top: .35em; bottom: .35em; width: 3px;
  border-radius: 2px; background: linear-gradient(180deg, var(--blue), var(--sky));
}
.legal-body h2:first-child { margin-top: 0 }
.legal-body h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin: 24px 0 10px; letter-spacing: -.2px }
.legal-body p { margin: 0 0 16px }
.legal-body p:last-child { margin-bottom: 0 }
.legal-body ul, .legal-body ol { margin: 0 0 18px; padding-left: 22px }
.legal-body ul li, .legal-body ol li { margin-bottom: 8px }
.legal-body strong { color: var(--navy); font-weight: 700 }
.legal-body a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px }

/* Legal numbered paragraphs */
.legal-body p .lg-num {
  display: inline-block; font-family: var(--mono); font-size: 12.5px;
  font-weight: 600; color: var(--blue); letter-spacing: .3px;
  margin-right: 8px; min-width: 42px; vertical-align: baseline;
}
.legal-body p.lvl-1 { padding-left: 28px; margin-bottom: 10px }
.legal-body p.lvl-2 { padding-left: 56px; margin-bottom: 10px }
.legal-body p.lvl-1 .lg-num { min-width: 54px }
.legal-body p.lvl-2 .lg-num { min-width: 66px }

/* Legal special blocks */
.leg-placeholder {
  margin: 0 0 18px; padding: 24px 26px;
  background: linear-gradient(180deg, var(--ice-3), #fff);
  border: 1.5px dashed rgba(36,104,255,.30); border-radius: 14px;
  font-family: var(--mono); font-size: 13px; color: var(--blue);
  letter-spacing: -.05px; line-height: 1.55;
}
.leg-placeholder strong {
  color: var(--navy); font-weight: 700; display: block;
  margin-bottom: 6px; letter-spacing: .8px; text-transform: uppercase; font-size: 11px;
}
.legal-closing {
  margin-top: 48px; padding: 24px 26px;
  background: linear-gradient(180deg, var(--ice-3), #fff);
  border: 1px solid var(--line); border-radius: 14px; text-align: center;
}
.legal-closing p { margin: 0; font-size: 14.5px; color: var(--navy); font-weight: 600; letter-spacing: -.1px }
.legal-closing p.legal-copy {
  margin-top: 8px; font-family: var(--mono); font-size: 12px;
  font-weight: 500; color: var(--gray); letter-spacing: .3px;
}
.legal-body .leg-intro {
  font-size: 17px; line-height: 1.75; color: var(--navy); font-weight: 500;
  padding: 22px 24px; border-radius: 14px;
  background: linear-gradient(180deg, var(--ice-3), #fff);
  border: 1px solid var(--line); margin: 0 0 28px;
}

/* ========== FOOTER ========== */
footer {
  background: linear-gradient(180deg, #071B53 0%, #050D2A 100%);
  color: rgba(255,255,255,.65); padding: 80px 0 40px;
  position: relative; overflow: hidden;
}
footer::before {
  content: ""; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(103,198,255,.10) 0%, transparent 70%);
  pointer-events: none;
}
.foot-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 56px; position: relative;
}
.foot-brand .logo { color: #fff; font-size: 20px }
.foot-tag { margin: 18px 0 0; font-size: 14px; color: rgba(255,255,255,.55); max-width: 320px; line-height: 1.6 }
.foot-col h5 {
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,.5); text-transform: uppercase;
  letter-spacing: 1.6px; margin: 0 0 20px;
}
.foot-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 13px }
.foot-col a { font-size: 14.5px; color: rgba(255,255,255,.75); transition: color .15s; letter-spacing: -.1px }
.foot-col a:hover { color: #fff }
.foot-license {
  border-top: 1px solid rgba(255,255,255,.10);
  padding-top: 32px; font-size: 12.5px; color: rgba(255,255,255,.5); line-height: 1.7;
}
.foot-license + .foot-license { padding-top: 14px; border-top: 0 }

/* ========== REVEAL ANIMATION ========== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease }
.reveal.in { opacity: 1; transform: none }

/* ========== SHARED RESPONSIVE — 1100px ========== */
@media (max-width: 1100px) {
  .foot-top { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px }
  .sub-hero { padding: 20px 0 40px }
  .sub-hero h1 { font-size: clamp(28px, 3.6vw, 40px); letter-spacing: -.8px; line-height: 1.08 }
  html[lang="ru"] .sub-hero h1 { font-size: clamp(24px, 3.2vw, 34px); letter-spacing: -.6px }
  .sub-hero .lead { font-size: 16px; margin: 0 0 24px }
  .sub-hero .intro p { font-size: 16px }
  .hero-art { min-height: auto; padding: 0 }
  .glass-stage { width: 100%; max-width: 360px }
  .legal-hero { padding: 28px 0 28px }
  .legal-hero h1 { font-size: clamp(28px, 4vw, 42px); letter-spacing: -.9px }
  .legal-wrap { padding: 24px 0 72px }
  .legal-body { font-size: 15.5px }
}

/* ========== SHARED RESPONSIVE — 960px ========== */
@media (max-width: 960px) {
  .container { padding: 0 22px }
  section { padding: 72px 0 }
  .foot-top { grid-template-columns: 1fr; gap: 32px }
  .sub-hero-grid, html[lang="ru"] .sub-hero-grid { grid-template-columns: 1fr; gap: 0 }
  .hero-art { display: none }
  .nav-links { display: none }
  .nav-burger { display: inline-flex }
}

/* ========== SHARED RESPONSIVE — 560px ========== */
@media (max-width: 560px) {
  .container { padding: 0 18px }
  section { padding: 48px 0 }
  .sec-head { margin-bottom: 32px }
  .nav-row { gap: 10px; height: 68px }
  .nav-right { gap: 8px }
  .lang-switcher { padding: 2px }
  .lang-btn { padding: 5px 8px; font-size: 10.5px }
  .nav-signin { padding: 9px 14px; font-size: 13px }
  .nav-burger { width: 40px; height: 40px }
  .sub-hero { padding: 24px 0 40px }
  .sub-hero h1 { font-size: 28px; letter-spacing: -.5px }
  .legal-hero { padding: 20px 0 20px }
  .legal-hero h1 { font-size: 26px; letter-spacing: -.5px }
  .legal-wrap { padding: 20px 0 48px }
  .legal-body h2 { font-size: 20px; padding-left: 14px }
  footer { padding: 48px 0 32px }
  .foot-top { margin-bottom: 32px }
}
