/* ================================================
   AustroRossiya Consulting — Stylesheet 2026
   Austria: #ED2939 / #00356E   Russia: #0038A8 / #D52B1E
   ================================================ */

/* ── GOOGLE FONTS ───────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --blue:      #00356E;
  --blue-dk:   #001f44;
  --blue-lt:   #1a4a8a;
  --red:       #D8001C;
  --red-dk:    #a80015;
  --gold:      #C9A84C;
  --gold-lt:   #e8c46a;
  --white:     #FFFFFF;
  --off-white: #F8F9FA;
  --light:     #EEF1F5;
  --dark:      #1A2538;
  --darker:    #0d1520;
  --gray:      #6C757D;
  --text:      #2D3748;
  --border:    #DEE2E6;
  --shadow:    0 4px 24px rgba(0,0,0,0.09);
  --shadow-lg: 0 10px 45px rgba(0,0,0,0.15);
  --shadow-xl: 0 20px 70px rgba(0,0,0,0.22);
  --radius:    12px;
  --radius-sm: 6px;
  --trans:     all 0.3s cubic-bezier(.4,0,.2,1);
  --serif:     'Playfair Display', Georgia, serif;
  --sans:      'Inter', Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--serif); color: var(--text); line-height: 1.75; background: var(--white); }
img { max-width: 100%; display: block; }
a { transition: var(--trans); }

/* ── SCROLL REVEAL ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ── NAVIGATION ─────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: 68px;
  background: rgba(0,20,50,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0 40px;
  gap: 24px;
  box-shadow: 0 2px 24px rgba(0,0,0,0.28);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
nav.scrolled { background: rgba(0,20,50,0.99); }

.nav-logo {
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.3px;
}
.nav-logo img.logo-img {
  height: 34px;
  width: auto;
  border-radius: 3px;
  object-fit: contain;
}
.nav-logo .r { color: var(--gold); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 3px;
  flex: 1;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  font-family: var(--sans);
  font-size: 0.80rem;
  font-weight: 500;
  padding: 7px 11px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.11);
}

.lang-switcher {
  display: flex;
  gap: 4px;
  border-left: 1px solid rgba(255,255,255,0.18);
  padding-left: 18px;
  flex-shrink: 0;
}
.lang-btn {
  background: none;
  border: 1px solid rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.62);
  padding: 4px 11px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.76rem;
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--trans);
}
.lang-btn:hover, .lang-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
  margin-left: auto;
}
.hamburger span {
  width: 24px; height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--trans);
  display: block;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: rgba(0,20,50,0.98);
  backdrop-filter: blur(16px);
  z-index: 999;
  padding: 20px 24px 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.nav-drawer.open { display: block; }
.nav-drawer ul { list-style: none; }
.nav-drawer ul li { border-bottom: 1px solid rgba(255,255,255,0.07); }
.nav-drawer ul a {
  display: block;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-family: var(--sans);
  font-size: 0.95rem;
  padding: 13px 5px;
  transition: var(--trans);
}
.nav-drawer ul a:hover { color: var(--gold); }
.nav-drawer .lang-row {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ── HERO ───────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 110px 24px 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, var(--blue-dk) 0%, #00264d 38%, #3a0010 68%, #7a0010 100%);
}
.hero-bg-img {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1600&q=55') center/cover;
  opacity: 0.10;
}
.hero-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(0,53,110,0.15) 0%, transparent 50%);
}
.hero-wave {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 80px; overflow: hidden; z-index: 1;
}
.hero-wave svg { display: block; width: 100%; height: 100%; }

.hero-content {
  position: relative; z-index: 2;
  max-width: 960px;
}
.hero-flags {
  display: flex; align-items: center;
  justify-content: center;
  gap: 20px; margin-bottom: 38px;
}
.hero-flag {
  width: 76px; height: 48px;
  border-radius: 5px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.50);
  flex-shrink: 0;
}
.flag-at {
  background: linear-gradient(to bottom, #ED2939 33.3%, #fff 33.3%, #fff 66.6%, #ED2939 66.6%);
}
.flag-ru {
  background: linear-gradient(to bottom, #fff 33.3%, #0038A8 33.3%, #0038A8 66.6%, #D52B1E 66.6%);
}
.hero-bridge {
  font-size: 2.2rem; color: var(--gold); line-height: 1; user-select: none;
  animation: pulse-bridge 3s ease-in-out infinite;
}
@keyframes pulse-bridge {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.15); }
}

.hero h1 {
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(2.1rem, 5.5vw, 4rem);
  line-height: 1.15;
  margin-bottom: 22px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.55);
}
.hero h1 .gold { color: var(--gold-lt); }
.hero h1 .red-txt { color: #ff6b6b; }

.hero-lead {
  color: rgba(255,255,255,0.88);
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto 38px;
  line-height: 1.75;
}
.hero-badges {
  display: flex; flex-wrap: wrap;
  gap: 10px; justify-content: center;
  margin-bottom: 44px;
}
.badge {
  background: rgba(255,255,255,0.11);
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--white);
  padding: 7px 16px;
  border-radius: 20px;
  font-family: var(--sans);
  font-size: 0.80rem;
  font-weight: 500;
  backdrop-filter: blur(5px);
  transition: var(--trans);
}
.badge:hover { background: rgba(255,255,255,0.18); }
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── BUTTONS ────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--red);
  color: var(--white); padding: 14px 32px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-family: var(--sans); font-size: 0.9rem; font-weight: 600;
  box-shadow: 0 4px 20px rgba(216,0,28,0.42);
  transition: var(--trans); border: none; cursor: pointer;
  letter-spacing: 0.3px;
}
.btn-primary:hover {
  background: var(--red-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(216,0,28,0.52);
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 7px;
  background: transparent; color: var(--white);
  padding: 13px 32px;
  border-radius: var(--radius-sm); text-decoration: none;
  font-family: var(--sans); font-size: 0.9rem; font-weight: 600;
  border: 2px solid rgba(255,255,255,0.42);
  transition: var(--trans); letter-spacing: 0.3px;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1); border-color: var(--white);
}
.btn-blue {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--blue); color: var(--white);
  padding: 13px 30px;
  border-radius: var(--radius-sm); text-decoration: none;
  font-family: var(--sans); font-size: 0.88rem; font-weight: 600;
  transition: var(--trans); letter-spacing: 0.3px;
}
.btn-blue:hover { background: var(--blue-lt); transform: translateY(-2px); }

/* ── SECTIONS ───────────────────────────────────── */
section { padding: 80px 40px; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--dark); }

.container { max-width: 1200px; margin: 0 auto; }
.container-narrow { max-width: 900px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  color: var(--blue); margin-bottom: 14px;
}
.divider {
  width: 55px; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  margin: 0 auto 18px; border-radius: 2px;
}
.section-header p {
  color: var(--gray); font-family: var(--sans);
  font-size: 1rem; max-width: 680px; margin: 0 auto; line-height: 1.7;
}

/* ── TRUST BAR ──────────────────────────────────── */
.trust-bar {
  background: var(--blue);
  padding: 22px 40px;
}
.trust-bar-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap;
  gap: 20px;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.75);
  font-family: var(--sans); font-size: 0.82rem;
}
.trust-item .t-icon { font-size: 1.3rem; }
.trust-item strong { color: white; }

/* ── STATS BANNER ───────────────────────────────── */
.stats-banner {
  background: var(--darker);
  padding: 50px 40px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
  gap: 30px; max-width: 1100px; margin: 0 auto;
  text-align: center;
}
.stat-item {
  padding: 20px 10px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  transition: var(--trans);
}
.stat-item:hover { background: rgba(255,255,255,0.07); }
.stat-num {
  font-family: var(--serif);
  font-size: 2.6rem; font-weight: 700;
  color: var(--gold); display: block; line-height: 1.1;
}
.stat-label {
  font-family: var(--sans); font-size: 0.80rem;
  color: rgba(255,255,255,0.65); margin-top: 8px; line-height: 1.45;
}

/* ── SERVICE CARDS ──────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 1050px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px)  { .cards-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  text-decoration: none; color: var(--text);
  transition: var(--trans); border: 1px solid var(--border);
}
.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

/* Card Image — CSS-only design, no broken externals */
.card-img {
  height: 185px; position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.card-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.45));
}
.card-img .card-big-icon {
  font-size: 4rem; z-index: 1; opacity: 0.7;
  transition: var(--trans); user-select: none;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.service-card:hover .card-big-icon { opacity: 1; transform: scale(1.1); }

/* Individual card gradients */
.card-img.pharma-bg    { background: linear-gradient(135deg, #0d4a6e 0%, #0a8a5a 100%); }
.card-img.diplomacy-bg { background: linear-gradient(135deg, #00356e 0%, #1a1a8a 100%); }
.card-img.compliance-bg{ background: linear-gradient(135deg, #1a2538 0%, #2a3a6a 100%); }
.card-img.agrar-bg     { background: linear-gradient(135deg, #1a4a0a 0%, #5a7a1a 100%); }
.card-img.raw-bg       { background: linear-gradient(135deg, #3a2000 0%, #6a4a10 100%); }
.card-img.diaspora-bg  { background: linear-gradient(135deg, #00356e 0%, #2a0a5a 100%); }

.card-img .img-overlay-text {
  position: absolute; bottom: 14px; left: 16px;
  color: rgba(255,255,255,0.6); font-family: var(--sans);
  font-size: 0.72rem; z-index: 2; font-style: italic;
}

.card-level {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  padding: 4px 10px; border-radius: 4px;
  font-family: var(--sans); font-size: 0.70rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
}
.card-level.high   { background: var(--red);  color: white; }
.card-level.medium { background: var(--blue); color: white; }

.card-body {
  padding: 22px 24px; flex: 1;
  display: flex; flex-direction: column;
}
.card-body h3 {
  color: var(--blue); font-family: var(--serif);
  font-size: 1.12rem; margin-bottom: 9px; line-height: 1.3;
}
.card-body p {
  color: var(--gray); font-family: var(--sans);
  font-size: 0.86rem; line-height: 1.65; flex: 1;
}
.card-stat {
  margin-top: 15px; padding-top: 15px;
  border-top: 1px solid var(--border);
  font-family: var(--sans); font-size: 0.80rem; color: var(--gray);
}
.card-stat strong {
  color: var(--red); font-size: 1.45rem;
  display: block; line-height: 1.1; margin-bottom: 2px;
}
.card-cta {
  display: inline-flex; align-items: center; gap: 5px;
  color: var(--blue); font-family: var(--sans);
  font-size: 0.86rem; font-weight: 600;
  margin-top: 14px; text-decoration: none; transition: var(--trans);
}
.card-cta:hover { color: var(--red); }
.card-cta::after { content: ' →'; }

/* ── PAGE HERO (Inner Pages) ────────────────────── */
.page-hero {
  background: var(--blue); padding: 122px 40px 65px;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.10;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.breadcrumb {
  font-family: var(--sans); font-size: 0.80rem;
  color: rgba(255,255,255,0.50); margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center; gap: 6px; flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,0.50); text-decoration: none; }
.breadcrumb a:hover { color: white; }
.page-hero-icon { font-size: 3.2rem; margin-bottom: 16px; }
.page-hero h1 {
  color: var(--white); font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 16px; line-height: 1.18;
}
.page-hero .lead {
  color: rgba(255,255,255,0.83); font-family: var(--sans);
  font-size: 1.02rem; max-width: 660px; margin: 0 auto; line-height: 1.75;
}

/* ── TWO-COLUMN LAYOUT ──────────────────────────── */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 65px; align-items: start;
}
@media (max-width: 800px) { .two-col { grid-template-columns: 1fr; gap: 35px; } }

.content-img {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); position: relative;
}
.content-img img {
  width: 100%; height: 370px; object-fit: cover;
  transition: var(--trans);
}
.content-img:hover img { transform: scale(1.03); }
.content-img .img-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 12px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: rgba(255,255,255,0.8); font-family: var(--sans);
  font-size: 0.74rem; font-style: italic;
}

.content-text h2 {
  color: var(--blue); font-family: var(--serif);
  font-size: 1.9rem; margin-bottom: 14px; line-height: 1.22;
}
.content-text h3 {
  color: var(--blue); font-family: var(--serif);
  font-size: 1.15rem; margin: 28px 0 10px;
}
.content-text p {
  font-family: var(--sans); line-height: 1.80;
  margin-bottom: 14px; color: var(--text); font-size: 0.95rem;
}
.content-text ul { padding-left: 0; list-style: none; margin-bottom: 14px; }
.content-text ul li {
  font-family: var(--sans); padding: 7px 0;
  border-bottom: 1px solid var(--border);
  display: flex; gap: 10px; font-size: 0.92rem; color: var(--text);
  align-items: flex-start;
}
.content-text ul li::before { content: '▸'; color: var(--red); flex-shrink: 0; margin-top: 2px; }

/* ── TEAM ───────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--trans);
  border: 1px solid var(--border);
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.team-photo {
  width: 100%; height: 280px;
  object-fit: cover; object-position: top;
  display: block;
  transition: var(--trans);
}
.team-card:hover .team-photo { transform: scale(1.04); }
.team-photo-placeholder {
  width: 100%; height: 280px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-lt) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
}
.team-body { padding: 24px; }
.team-body h3 {
  color: var(--blue); font-family: var(--serif);
  font-size: 1.25rem; margin-bottom: 6px;
}
.team-body .role {
  color: var(--red); font-family: var(--sans);
  font-size: 0.83rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.8px;
  margin-bottom: 12px;
}
.team-body p {
  color: var(--gray); font-family: var(--sans);
  font-size: 0.86rem; line-height: 1.65;
}
.team-langs {
  display: flex; gap: 6px; justify-content: center;
  margin-top: 14px; flex-wrap: wrap;
}
.lang-tag {
  background: var(--light); color: var(--blue);
  font-family: var(--sans); font-size: 0.74rem;
  padding: 3px 10px; border-radius: 12px;
  font-weight: 600;
}

/* ── ADVANTAGES GRID ────────────────────────────── */
.adv-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px; margin-top: 50px;
}
@media (max-width: 768px) { .adv-grid { grid-template-columns: 1fr; } }

.adv-col {
  background: var(--white); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow); border-top: 5px solid;
}
.adv-col.at { border-color: #ED2939; }
.adv-col.ru { border-color: #0038A8; }
.adv-col h3 {
  display: flex; align-items: center; gap: 10px;
  color: var(--dark); font-size: 1.05rem;
  margin-bottom: 20px; font-family: var(--sans); font-weight: 700;
}
.adv-col ul { list-style: none; padding: 0; }
.adv-col li {
  font-family: var(--sans); font-size: 0.87rem;
  padding: 9px 0; border-bottom: 1px solid var(--border);
  display: flex; gap: 10px; align-items: flex-start;
  color: var(--text); line-height: 1.5;
}
.adv-col li:last-child { border-bottom: none; }
.adv-col li::before { content: '✓'; color: var(--red); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.adv-col li.lb { display: none; }
.adv-col li.lb.active { display: flex; }

/* ── QUOTE BLOCK ────────────────────────────────── */
.quote-block {
  border-left: 4px solid var(--red); padding: 20px 28px;
  background: var(--light);
  border-radius: 0 var(--radius) var(--radius) 0; margin: 28px 0;
}
.quote-block p {
  font-size: 1.02rem; font-style: italic; color: var(--dark);
  margin: 0 !important; border: none !important; background: none !important;
  font-family: var(--serif);
}
.quote-block cite {
  display: block; font-family: var(--sans); font-size: 0.77rem;
  color: var(--gray); margin-top: 8px; font-style: normal;
}

/* ── HIGHLIGHT BOX ──────────────────────────────── */
.highlight-box {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dk) 100%);
  border-radius: var(--radius); padding: 32px 38px; color: white; margin: 38px 0;
}
.highlight-box h3 { color: var(--gold); margin-bottom: 10px; font-size: 1.15rem; font-family: var(--sans); font-weight: 700; }
.highlight-box p { font-family: var(--sans); font-size: 0.92rem; opacity: 0.88; margin: 0 !important; line-height: 1.7; }

/* ── FAQ ACCORDION ──────────────────────────────── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius);
  margin-bottom: 10px; overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.faq-question {
  width: 100%; text-align: left; padding: 18px 24px;
  background: var(--white); border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--sans); font-size: 0.93rem; font-weight: 600;
  color: var(--blue); transition: var(--trans);
}
.faq-question:hover { background: var(--light); }
.faq-question .faq-icon {
  font-size: 1.2rem; transition: var(--trans); flex-shrink: 0; margin-left: 12px;
}
.faq-question.open { background: var(--light); }
.faq-question.open .faq-icon { transform: rotate(45deg); color: var(--red); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer.open { max-height: 400px; }
.faq-answer-inner {
  padding: 0 24px 20px;
  font-family: var(--sans); font-size: 0.90rem;
  color: var(--text); line-height: 1.78; background: var(--light);
}

/* ── DATA TABLE ─────────────────────────────────── */
.data-table {
  width: 100%; border-collapse: collapse; margin: 20px 0;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow);
}
.data-table th {
  background: var(--blue); color: white;
  font-family: var(--sans); font-size: 0.82rem; font-weight: 600;
  padding: 13px 18px; text-align: left;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.data-table td {
  font-family: var(--sans); font-size: 0.88rem; padding: 12px 18px;
  color: var(--text); border-bottom: 1px solid var(--border);
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) td { background: var(--off-white); }
.data-table tr:hover td { background: var(--light); }
.data-table td.number { color: var(--red); font-weight: 700; font-size: 1rem; }

/* ── SOURCES ────────────────────────────────────── */
.sources {
  background: var(--light); border-radius: var(--radius);
  padding: 26px 32px; margin-top: 45px; border: 1px solid var(--border);
}
.sources h4 {
  color: var(--blue); font-family: var(--sans);
  font-size: 0.80rem; text-transform: uppercase;
  letter-spacing: 1.2px; margin-bottom: 14px; font-weight: 700;
}
.sources ol { padding-left: 18px; }
.sources li {
  font-family: var(--sans); font-size: 0.82rem;
  color: var(--gray); margin-bottom: 7px; line-height: 1.55;
}
.sources a { color: var(--blue); text-decoration: none; }
.sources a:hover { text-decoration: underline; }

/* ── CONTACT FORM ───────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-family: var(--sans); font-size: 0.83rem;
  color: var(--blue); font-weight: 600; margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--sans); font-size: 0.92rem; color: var(--text);
  background: var(--white); transition: var(--trans);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,53,110,0.10);
}
.form-group textarea { height: 145px; resize: vertical; }

/* ── FOOTER ─────────────────────────────────────── */
footer {
  background: var(--darker);
  color: rgba(255,255,255,0.62);
  padding: 65px 40px 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 45px; max-width: 1200px; margin: 0 auto 48px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand h3 {
  color: var(--white); font-family: var(--serif);
  font-size: 1.3rem; margin-bottom: 12px;
}
.footer-brand h3 .r { color: var(--red); }
.footer-brand p {
  font-family: var(--sans); font-size: 0.83rem;
  line-height: 1.78; margin-bottom: 20px;
}
.footer-logo-img {
  height: 44px; width: auto; border-radius: 4px;
  opacity: 0.85; margin-bottom: 16px;
}
.footer-flags { display: flex; gap: 10px; align-items: center; }
.f-flag {
  width: 38px; height: 24px; border-radius: 3px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.35);
}
.f-flag.at { background: linear-gradient(to bottom, #ED2939 33.3%, #fff 33.3%, #fff 66.6%, #ED2939 66.6%); }
.f-flag.ru { background: linear-gradient(to bottom, #fff 33.3%, #0038A8 33.3%, #0038A8 66.6%, #D52B1E 66.6%); }

.footer-col h4 {
  color: var(--white); font-family: var(--sans);
  font-size: 0.80rem; text-transform: uppercase;
  letter-spacing: 1.3px; margin-bottom: 17px; font-weight: 700;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a {
  color: rgba(255,255,255,0.52); text-decoration: none;
  font-family: var(--sans); font-size: 0.83rem; transition: var(--trans);
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 25px; text-align: center;
  font-family: var(--sans); font-size: 0.77rem;
  max-width: 1200px; margin: 0 auto;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.35); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,0.65); }

/* ── LANGUAGE VISIBILITY ────────────────────────── */
.lb { display: none; }
.lb.active { display: block; }

/* ── BACK TO TOP ────────────────────────────────── */
#back-to-top {
  position: fixed; bottom: 30px; right: 30px;
  width: 46px; height: 46px;
  background: var(--blue); color: white;
  border: none; border-radius: 50%;
  cursor: pointer; font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  transition: var(--trans);
  opacity: 0; pointer-events: none;
  display: flex; align-items: center; justify-content: center;
  z-index: 500;
}
#back-to-top.visible { opacity: 1; pointer-events: auto; }
#back-to-top:hover { background: var(--red); transform: translateY(-3px); }

/* ── MOBILE ─────────────────────────────────────── */
@media (max-width: 900px) {
  nav { padding: 0 18px; gap: 14px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .lang-switcher { margin-left: 0; }
}
@media (max-width: 768px) {
  section { padding: 55px 20px; }
  .page-hero { padding: 100px 20px 52px; }
  .stats-banner { padding: 36px 20px; }
  footer { padding: 45px 20px 24px; }
  .trust-bar { padding: 18px 20px; }
}
@media (max-width: 480px) {
  .hero { padding: 100px 16px 80px; }
  .hero h1 { font-size: 1.9rem; }
  #back-to-top { bottom: 20px; right: 20px; }
}
