/* ============================================================
   ОСТОВ — Main Stylesheet (Light Theme)
   Version 2.0 | 2026
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;600;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --bg:            #FFFFFF;
  --bg-alt:        #F4F6FC;
  --bg-card:       #FFFFFF;
  --bg-card-hover: #F8F9FF;
  --border:        rgba(0,0,0,0.08);
  --border-accent: rgba(61,92,232,0.35);

  --primary:       #3D5CE8;
  --primary-light: #5B78F5;
  --secondary:     #0BAFC4;
  --secondary-light:#22D3B3;

  --text:          #111827;
  --text-muted:    #6B7280;
  --text-faint:    #9CA3AF;

  --gradient:      linear-gradient(135deg, #3D5CE8 0%, #0BAFC4 100%);
  --gradient-hero: radial-gradient(ellipse at 20% 60%, rgba(61,92,232,0.07) 0%, transparent 55%),
                   radial-gradient(ellipse at 80% 20%, rgba(11,175,196,0.06) 0%, transparent 50%);
  --gradient-card: linear-gradient(135deg, rgba(61,92,232,0.04) 0%, rgba(11,175,196,0.02) 100%);

  --font-head:  'Unbounded', sans-serif;
  --font-body:  'Inter', sans-serif;

  --r-sm:  0.5rem;
  --r-md:  0.875rem;
  --r-lg:  1.25rem;
  --r-xl:  1.75rem;
  --r-2xl: 2.5rem;
  --r-full:9999px;

  --shadow-sm:   0 1px 4px rgba(0,0,0,0.06);
  --shadow-card: 0 2px 16px rgba(0,0,0,0.08);
  --shadow-md:   0 4px 24px rgba(0,0,0,0.10);
  --shadow-glow: 0 0 40px rgba(61,92,232,0.12);

  --ease:     cubic-bezier(0.4,0,0.2,1);
  --ease-out: cubic-bezier(0,0,0.2,1);

  --container: 1360px;
  --hh:        64px;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
input, textarea, select, button { font: inherit; }
button { cursor: pointer; border: none; background: none; }

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}
p { color: var(--text-muted); max-width: 70ch; }

.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-primary   { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-muted     { color: var(--text-muted); }

/* ============================================================
   4. LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 768px)  { .container { padding: 0 2rem; } }
@media (min-width: 1200px) { .container { padding: 0 3rem; } }

.section    { padding: 5rem 0; }
.section-lg { padding: 7rem 0; }
.section-sm { padding: 3rem 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--gradient);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--text);
}
.section-sub {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 3rem;
}
.section-header        { margin-bottom: 3.5rem; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin-left: auto; margin-right: auto; }

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8125rem 1.875rem;
  border-radius: var(--r-full);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 2px 16px rgba(61,92,232,0.25);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 24px rgba(61,92,232,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn-outline:hover {
  background: rgba(61,92,232,0.06);
}

.btn-ghost {
  background: var(--bg);
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--border-accent);
  background: var(--bg-alt);
}

/* Red button — use sparingly */
.btn-red {
  background: #E53935;
  color: #fff;
  box-shadow: 0 2px 12px rgba(229,57,53,0.2);
}
.btn-red:hover {
  background: #C62828;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(229,57,53,0.3);
}

.btn-tg {
  background: rgba(36,161,222,0.1);
  color: #0088CC;
  border: 1.5px solid rgba(36,161,222,0.25);
}
.btn-tg:hover { background: rgba(36,161,222,0.18); }

.btn-sm { padding: 0.5625rem 1.25rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  align-items: center;
}
@media (max-width: 767px) {
  .btn-group { gap: 0.75rem; }
}

/* ============================================================
   6. CARDS
   ============================================================ */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.card:hover {
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.card-sm { padding: 1.25rem 1.5rem; border-radius: var(--r-lg); }
.card-lg { padding: 2.5rem 3rem; }

/* ============================================================
   7. BADGES / PILLS / TAGS
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  border-radius: var(--r-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.badge-primary   { background: rgba(61,92,232,0.08);  color: var(--primary);   border: 1px solid rgba(61,92,232,0.15); }
.badge-secondary { background: rgba(11,175,196,0.08); color: var(--secondary); border: 1px solid rgba(11,175,196,0.18); }
.badge-neutral   { background: var(--bg-alt); color: var(--text-muted); border: 1px solid var(--border); }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.625rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ============================================================
   8. FORMS
   ============================================================ */
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.form-label { font-size: 0.875rem; font-weight: 500; color: var(--text-muted); }

.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 0.8125rem 1rem;
  color: var(--text);
  font-size: 0.9375rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-faint); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(61,92,232,0.1);
  background: #fff;
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-check { display: flex; align-items: flex-start; gap: 0.625rem; cursor: pointer; }
.form-check input[type="checkbox"] { width: 1rem; height: 1rem; margin-top: 0.125rem; accent-color: var(--primary); flex-shrink: 0; }
.form-check-label { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.5; }
.form-check-label a { color: var(--primary); }

/* ============================================================
   9. HEADER & NAVIGATION
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--hh);
  z-index: 1000;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s var(--ease);
}
.header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav {
  display: flex;
  align-items: center;
  height: var(--hh);
  gap: 1.25rem;
  white-space: nowrap;
}
@media (max-width: 1023px) {
  .nav { gap: 1rem; }
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-head);
  font-size: 1.125rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text);
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-icon {
  width: 36px; height: 36px;
  background: var(--gradient);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}

.nav-menu { display: none; align-items: center; gap: 0.125rem; flex: 1 1 auto; min-width: 0; }
@media (min-width: 1024px) { .nav-menu { display: flex; } }

.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.45rem 0.625rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--r-md);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
  text-decoration: none;
}
.nav-link:hover, .nav-link.active { color: var(--primary); background: rgba(61,92,232,0.06); }
.nav-link svg { width:14px; height:14px; transition: transform 0.2s; }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 0.5rem;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  box-shadow: var(--shadow-md);
  z-index: 100;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.625rem 0.875rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  border-radius: var(--r-md);
  transition: color 0.15s, background 0.15s;
  text-decoration: none;
}
.nav-dropdown a:hover { color: var(--primary); background: rgba(61,92,232,0.06); }
.nav-dropdown a .flag { font-size: 1rem; }

.header-meta { display: none; }
.header-meta-links { display: flex; align-items: center; gap: 0.35rem; flex-wrap: nowrap; }
.header-meta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), opacity 0.2s var(--ease);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  overflow: hidden;
}
.header-meta-icon {
  width: 17px;
  height: 17px;
  display: block;
  fill: #fff !important;
  stroke: none !important;
}
.header-meta-icon-img {
  width: 17px;
  height: 17px;
  object-fit: contain;
}
.header-meta-link svg,
.header-meta-link svg path {
  fill: #fff !important;
  stroke: none !important;
}
.header-meta-link-wa { background: #25D366; }
.header-meta-link-tg { background: #229ED9; }
.header-meta-link:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}
.header-meta-call {
  margin-left: 0;
  padding-inline: 0.8rem;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
  flex-shrink: 0;
}
.nav-lang { display: none; gap: 0.25rem; }
@media (min-width: 768px) { .nav-lang { display: flex; } }
.lang-btn { padding: 0.3rem 0.6rem; font-size: 0.8125rem; font-weight: 600; color: var(--text-muted); border-radius: var(--r-sm); transition: color 0.15s, background 0.15s; }
.lang-btn:hover, .lang-btn.active { color: var(--primary); background: rgba(61,92,232,0.06); }
@media (max-width: 1023px) {
  .header-meta-links { gap: 0.4rem; }
  .header-meta-call { display: none; }
  .nav-right { gap: 0.5rem; }
  .nav-right > .btn.btn-primary { display: none; }
  .nav-lang { display: none; }
}
@media (max-width: 1279px) and (min-width: 1024px) {
  .nav-right > .btn.btn-primary { display: none; }
}

/* Burger */
.burger { display: flex; flex-direction: column; gap: 5px; width: 28px; padding: 4px; cursor: pointer; }
@media (min-width: 1024px) { .burger { display: none; } }
.burger span { display: block; height: 2px; background: var(--text-muted); border-radius: 2px; transition: all 0.25s var(--ease); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.burger.open span { background: var(--primary); }

/* Mobile Menu */
.mobile-menu {
  position: fixed; inset: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex; flex-direction: column;
  padding: calc(var(--hh) + 2rem) 1.5rem 2rem;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease-out);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-nav { display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-nav-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem;
  font-size: 1.125rem; font-weight: 600; font-family: var(--font-head);
  color: var(--text-muted);
  border-radius: var(--r-lg);
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
}
.mobile-nav-link:hover { color: var(--primary); background: rgba(61,92,232,0.06); }
.mobile-sub { display: none; flex-direction: column; gap: 0.125rem; padding: 0.25rem 0 0.5rem 1rem; }
.mobile-sub.open { display: flex; }
.mobile-sub a { padding: 0.625rem 1rem; font-size: 0.9375rem; color: var(--text-muted); border-radius: var(--r-md); transition: color 0.15s, background 0.15s; text-decoration: none; }
.mobile-sub a:hover { color: var(--primary); background: rgba(61,92,232,0.06); }
.mobile-footer { margin-top: auto; padding-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }

/* ============================================================
   10. HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: flex-start;
  padding-top: calc(var(--hh) + 0.4rem);
  padding-bottom: 3.5rem;
  overflow: hidden;
  background: var(--bg);
}
@media (min-width: 1024px) {
  .hero {
    min-height: 100vh;
    align-items: center;
    padding-top: var(--hh);
    padding-bottom: 0;
  }
}
.hero-bg { position: absolute; inset: 0; background: var(--gradient-hero); pointer-events: none; }
.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at 50% 50%, black 40%, transparent 80%);
}

.hero-inner {
  display: grid; grid-template-columns: 1fr;
  gap: 3rem; align-items: center;
  padding: 1rem 0 0; position: relative; z-index: 1;
}
@media (min-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr 1fr; gap: 4rem; padding: 6rem 0; }
}

.hero-kicker {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.35rem 0.875rem;
  background: rgba(61,92,232,0.08);
  border: 1px solid rgba(61,92,232,0.18);
  border-radius: var(--r-full);
  font-size: 0.8125rem; font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 700; line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem; color: var(--text);
}
.hero-sub { font-size: clamp(1rem, 2vw, 1.125rem); color: var(--text-muted); line-height: 1.7; margin-bottom: 2rem; max-width: 520px; }
@media (max-width: 767px) {
  .hero-title { font-size: clamp(2rem, 9vw, 2.85rem); }
  .hero-sub { font-size: 1rem; max-width: 100%; }
}

.hero-trust { display: flex; flex-wrap: wrap; gap: 1.25rem; margin-bottom: 2.5rem; }
.hero-trust-item { display: flex; align-items: center; gap: 0.375rem; font-size: 0.875rem; font-weight: 500; color: var(--text-muted); }
.hero-trust-item .icon { color: var(--secondary); font-size: 1rem; }

.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-map-container { position: relative; width: 100%; max-width: 480px; margin: 0 auto; }

.hero-map {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 2.5rem;
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 1rem;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-card);
}

.map-globe { font-size: 5rem; line-height: 1; filter: drop-shadow(0 0 12px rgba(61,92,232,0.2)); }

.map-countries { display: grid; grid-template-columns: 1fr 1fr; gap: 0.625rem; width: 100%; position: relative; z-index: 1; }
.map-country-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 0.75rem; text-align: center;
  box-shadow: var(--shadow-sm);
}
.map-country-card .days { line-height: 1.35; min-height: 2.4em; }
.map-country-card .flag { font-size: 1.5rem; margin-bottom: 0.25rem; }
.map-country-card .name { font-size: 0.6875rem; font-weight: 600; color: var(--text-muted); margin-bottom: 0.125rem; }
.map-country-card .days { font-size: 0.75rem; font-weight: 700; color: var(--primary); font-family: var(--font-head); }
@media (max-width: 479px) {
  .hero-map { padding: 1.5rem; }
  .map-countries { gap: 0.5rem; }
  .map-country-card { padding: 0.625rem 0.5rem; }
  .map-country-card .name { font-size: 0.625rem; }
  .map-country-card .days { font-size: 0.6875rem; min-height: 3.1em; }
  .ticker-item { font-size: 0.8125rem; }
  .header-meta-link { width: 28px; height: 28px; }
  .header-meta-icon { width: 14px; height: 14px; }
  .header-meta-icon-img { width: 14px; height: 14px; }
}

.float-card {
  position: absolute;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 0.75rem 1rem;
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8125rem; font-weight: 600;
  color: var(--text);
  box-shadow: var(--shadow-md);
  z-index: 10;
}
.float-card-1 { top: -1rem; right: -1rem; }
@media (max-width: 1023px) { .float-card { display: none; } }

/* ============================================================
   11. TICKER
   ============================================================ */
.ticker {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0; overflow: hidden;
}
.ticker-inner { display: flex; gap: 3rem; animation: ticker-scroll 30s linear infinite; width: max-content; }
.ticker-inner:hover { animation-play-state: paused; }
.ticker-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 500; color: var(--text-muted); white-space: nowrap; }
.ticker-item .accent { color: var(--primary); font-weight: 700; }
.ticker-dot { color: var(--text-faint); }

@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   12. AUDIENCE SPLIT
   ============================================================ */
.audience-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .audience-grid { grid-template-columns: 1fr 1fr; } }

.audience-card {
  border-radius: var(--r-xl); padding: 2.5rem;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 1.5rem;
  text-decoration: none; color: inherit;
  background: var(--bg); box-shadow: var(--shadow-sm);
}
.audience-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.audience-card-ru:hover  { border-color: rgba(61,92,232,0.4); }
.audience-card-cis:hover { border-color: rgba(11,175,196,0.4); }

.audience-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  line-height: 0;
}
.audience-card-ru  .audience-icon { background: rgba(61,92,232,0.08); }
.audience-card-cis .audience-icon { background: rgba(11,175,196,0.08); }
.audience-icon::before {
  content: "";
  display: block;
  width: 56px;
  height: 56px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.audience-card-ru .audience-icon::before {
  background-image: url("../img/audience-mobile-ru.svg");
}
.audience-card-cis .audience-icon::before {
  background-image: url("../img/audience-mobile-cis.svg");
}
.audience-flags { font-size: 1.5rem; }
.audience-card h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.audience-card p  { font-size: 0.9375rem; line-height: 1.65; max-width: 100%; }
.audience-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.audience-cta { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9375rem; font-weight: 600; margin-top: auto; }
.audience-card-ru  .audience-cta { color: var(--primary); }
.audience-card-cis .audience-cta { color: var(--secondary); }
@media (max-width: 767px) {
  .audience-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 999px;
    background: transparent;
  }
  .audience-card-ru .audience-icon,
  .audience-card-cis .audience-icon {
    background: transparent;
  }
  .audience-icon::before {
    width: 60px;
    height: 60px;
  }
}

/* ============================================================
   13. BENTO GRID / SERVICES
   ============================================================ */
.bento-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px)  { .bento-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .bento-grid { grid-template-columns: repeat(4, 1fr); } }

.bento-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  transition: all 0.3s var(--ease);
  display: flex; flex-direction: column; gap: 1rem;
  box-shadow: var(--shadow-sm);
}
.bento-item:hover { border-color: var(--border-accent); transform: translateY(-2px); box-shadow: var(--shadow-md); }

@media (min-width: 1024px) {
  .bento-col-2 { grid-column: span 2; }
  .bento-row-2 { grid-row: span 2; }
}

.bento-icon { width: 48px; height: 48px; border-radius: var(--r-md); background: rgba(61,92,232,0.08); display: flex; align-items: center; justify-content: center; font-size: 1.375rem; }
.bento-icon.secondary { background: rgba(11,175,196,0.08); }
.bento-icon.accent    { background: var(--gradient); }

.bento-item h3 { font-size: 1.0625rem; font-weight: 700; }
.bento-item p  { font-size: 0.875rem; line-height: 1.6; flex: 1; }
.bento-meta { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8125rem; color: var(--secondary); font-weight: 600; margin-top: auto; }

.bento-cta { background: var(--gradient); border-color: transparent; }
.bento-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(61,92,232,0.25); }

/* ============================================================
   14. COUNTRIES
   ============================================================ */
.countries-tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.country-tab {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.625rem 1.25rem; border-radius: var(--r-full);
  font-size: 0.9rem; font-weight: 600;
  color: var(--text-muted);
  border: 1.5px solid var(--border);
  background: var(--bg); cursor: pointer;
  transition: all 0.2s var(--ease);
}
.country-tab:hover { color: var(--primary); border-color: var(--border-accent); }
.country-tab.active { background: var(--gradient); color: #fff; border-color: transparent; box-shadow: 0 2px 16px rgba(61,92,232,0.25); }
.country-tab .flag { font-size: 1.125rem; }

.country-panel { display: none; }
.country-panel.active { display: block; }

.country-content { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px)  { .country-content { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .country-content { grid-template-columns: 5fr 7fr; align-items: start; } }

.country-facts { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 2rem; box-shadow: var(--shadow-sm); }
.country-flag-big { font-size: 3.5rem; margin-bottom: 1rem; }
.country-facts h3 { font-size: 1.375rem; margin-bottom: 0.5rem; }
.country-facts .sub { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 1.5rem; }

.facts-list { display: flex; flex-direction: column; gap: 0.875rem; }
.fact-item { display: flex; justify-content: space-between; align-items: center; padding: 0.625rem 0; border-bottom: 1px solid var(--border); }
.fact-item:last-child { border-bottom: none; }
.fact-label { font-size: 0.875rem; color: var(--text-muted); }
.fact-value { font-size: 0.9375rem; font-weight: 600; color: var(--text); text-align: right; }

.country-services { display: flex; flex-direction: column; gap: 1rem; }
.country-service-item { display: flex; align-items: flex-start; gap: 1rem; background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.25rem; transition: all 0.2s var(--ease); box-shadow: var(--shadow-sm); }
.country-service-item:hover { border-color: var(--border-accent); box-shadow: var(--shadow-md); }
.country-service-icon { width: 40px; height: 40px; border-radius: var(--r-sm); background: rgba(61,92,232,0.08); display: flex; align-items: center; justify-content: center; font-size: 1.125rem; flex-shrink: 0; }
.country-service-text h4 { font-size: 0.9375rem; font-weight: 600; margin-bottom: 0.25rem; }
.country-service-text p  { font-size: 0.8125rem; color: var(--text-muted); max-width: 100%; }

/* ============================================================
   15. PROCESS
   ============================================================ */
.process-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px)  { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) { .process-grid { grid-template-columns: repeat(3, 1fr); } }

.process-step {
  display: flex; flex-direction: column; gap: 0.75rem;
  padding: 2rem;
  border-radius: var(--r-xl);
  background: var(--bg);
  border: 1px solid var(--border);
  transition: all 0.25s var(--ease);
  box-shadow: var(--shadow-sm);
}
.process-step:hover { border-color: var(--border-accent); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.step-num  { font-family: var(--font-head); font-size: 0.75rem; font-weight: 900; color: var(--primary); opacity: 0.5; letter-spacing: 0.05em; }
.step-icon { font-size: 1.75rem; margin-bottom: 0.25rem; }
.process-step h3 { font-size: 1rem; font-weight: 700; }
.process-step p  { font-size: 0.875rem; line-height: 1.6; max-width: 100%; }
.step-time { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.75rem; font-weight: 700; color: var(--secondary); margin-top: auto; }

/* ============================================================
   16. STATS
   ============================================================ */
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

.stat-card {
  text-align: center; padding: 2rem 1.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s var(--ease);
}
.stat-card:hover { border-color: var(--border-accent); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.stat-num {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; margin-bottom: 0.5rem;
}
.stat-label { font-size: 0.875rem; color: var(--text-muted); line-height: 1.4; }

/* ============================================================
   17. CASES
   ============================================================ */
.cases-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px)  { .cases-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cases-grid { grid-template-columns: repeat(3, 1fr); } }

.case-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 1.75rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: all 0.3s var(--ease);
  text-decoration: none; color: inherit;
  box-shadow: var(--shadow-sm);
}
.case-card:hover { border-color: var(--border-accent); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.case-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.case-card h3 { font-size: 1.0625rem; font-weight: 700; line-height: 1.35; }
.case-card p  { font-size: 0.875rem; line-height: 1.6; max-width: 100%; flex: 1; }
.case-metrics { display: flex; gap: 1rem; flex-wrap: wrap; padding-top: 1rem; border-top: 1px solid var(--border); }
.case-metric  { font-size: 0.8125rem; }
.case-metric strong { display: block; font-size: 1.0625rem; font-weight: 700; color: var(--text); font-family: var(--font-head); margin-bottom: 0.125rem; }
.case-metric span   { color: var(--text-muted); }
.case-link { display: flex; align-items: center; gap: 0.375rem; font-size: 0.875rem; font-weight: 600; color: var(--primary); margin-top: auto; }

/* ============================================================
   18. TESTIMONIALS
   ============================================================ */
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px)  { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 1.75rem; display: flex; flex-direction: column; gap: 1rem; transition: all 0.25s var(--ease); box-shadow: var(--shadow-sm); }
.testimonial-card:hover { border-color: var(--border-accent); box-shadow: var(--shadow-md); }
.testimonial-stars { color: #F59E0B; font-size: 0.875rem; letter-spacing: 0.05em; }
.testimonial-text { font-size: 0.9375rem; line-height: 1.7; color: var(--text-muted); flex: 1; font-style: italic; }
.testimonial-text::before { content: '\201C'; color: var(--primary); font-size: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--gradient); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.875rem; color: #fff; flex-shrink: 0; }
.author-name { font-size: 0.9375rem; font-weight: 600; color: var(--text); }
.author-meta { font-size: 0.8125rem; color: var(--text-muted); }

/* ============================================================
   19. ADVANTAGES
   ============================================================ */
.advantages-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px)  { .advantages-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .advantages-grid { grid-template-columns: repeat(3, 1fr); } }

.advantage-item { display: flex; flex-direction: column; gap: 0.75rem; padding: 1.75rem; background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-xl); transition: all 0.25s var(--ease); box-shadow: var(--shadow-sm); }
.advantage-item:hover { border-color: var(--border-accent); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.advantage-icon { width: 48px; height: 48px; border-radius: var(--r-md); background: rgba(61,92,232,0.08); display: flex; align-items: center; justify-content: center; font-size: 1.375rem; }
.advantage-item h3 { font-size: 1rem; font-weight: 700; }
.advantage-item p  { font-size: 0.875rem; line-height: 1.6; max-width: 100%; }

/* ============================================================
   20. TEAM
   ============================================================ */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
@media (min-width: 768px)  { .team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }

.team-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 1.5rem; text-align: center; transition: all 0.25s var(--ease); box-shadow: var(--shadow-sm); }
.team-card:hover { border-color: var(--border-accent); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; background: var(--gradient); display: flex; align-items: center; justify-content: center; font-size: 1.875rem; margin: 0 auto 1rem; }
.team-card h3     { font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; }
.team-card .role  { font-size: 0.8125rem; color: var(--primary); font-weight: 600; margin-bottom: 0.5rem; }
.team-card .country { font-size: 0.8125rem; color: var(--text-muted); margin-bottom: 1rem; }
.team-tags { display: flex; flex-wrap: wrap; gap: 0.375rem; justify-content: center; }

/* ============================================================
   21. PARTNERS
   ============================================================ */
.partners-track { display: flex; gap: 1.5rem; overflow: hidden; }
.partners-inner { display: flex; gap: 1.5rem; animation: ticker-scroll 20s linear infinite; width: max-content; align-items: center; }
.partner-logo { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1rem 1.75rem; font-size: 0.875rem; font-weight: 600; color: var(--text-muted); white-space: nowrap; transition: all 0.2s var(--ease); box-shadow: var(--shadow-sm); }
.partner-logo:hover { color: var(--primary); border-color: var(--border-accent); }

/* ============================================================
   22. FAQ
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: border-color 0.2s; box-shadow: var(--shadow-sm); }
.faq-item.open { border-color: var(--border-accent); }
.faq-question { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.25rem 1.5rem; cursor: pointer; font-size: 0.9375rem; font-weight: 600; line-height: 1.4; transition: color 0.15s; list-style: none; }
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { color: var(--primary); }
.faq-icon { width: 24px; height: 24px; border-radius: 50%; background: rgba(61,92,232,0.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform 0.25s, background 0.2s; color: var(--primary); font-size: 1rem; font-weight: 300; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--primary); color: #fff; }
.faq-answer { display: none; padding: 0 1.5rem 1.25rem; font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; max-width: 100%; }
.faq-item.open .faq-answer { display: block; }

/* ============================================================
   23. CTA SECTION
   ============================================================ */
.cta-section {
  position: relative; border-radius: var(--r-2xl); padding: 4rem 2rem; text-align: center; overflow: hidden;
  background: linear-gradient(135deg, #EEF1FD 0%, #E8F8FB 100%);
  border: 1.5px solid rgba(61,92,232,0.15);
}
.cta-section > * { position: relative; z-index: 1; }
.cta-section h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); margin-bottom: 1rem; color: var(--text); }
.cta-section p  { font-size: 1.0625rem; margin: 0 auto 2rem; max-width: 520px; }
.cta-guarantee { margin-top: 1.5rem; font-size: 0.8125rem; color: var(--text-muted); display: flex; align-items: center; justify-content: center; gap: 0.375rem; }

/* Page Hero (inner pages) */
.page-hero {
  padding: calc(var(--hh) + 2.2rem) 0 3rem;
  background: linear-gradient(135deg, #F4F6FC 0%, #EEF1FD 100%);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3.25rem); margin-bottom: 1rem; color: var(--text); }
.page-hero p  { font-size: 1.0625rem; max-width: 580px; }

.meta-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  border-radius: var(--r-full);
  background: rgba(17,24,39,0.04);
  color: var(--text-muted);
  font-size: 0.8125rem;
  font-weight: 600;
}

.lead-note {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1200px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.service-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-md);
}
.service-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: rgba(61,92,232,0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
}
.service-title {
  font-size: 1.0625rem;
  margin: 0;
}
.service-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  max-width: 100%;
}
.service-includes {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.service-includes h4 {
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.service-includes ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  list-style: none;
}
.service-includes li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--text);
}
.service-includes li .ico {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.service-terms,
.service-price {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.875rem;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
}
.term-label,
.price-label {
  color: var(--text-muted);
}
.term-value,
.price-value {
  color: var(--text);
  font-weight: 700;
}

.highlight-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .highlight-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1200px) {
  .highlight-grid { grid-template-columns: repeat(3, 1fr); }
}

.highlight-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.highlight-card h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.75rem;
}
.highlight-card p {
  font-size: 0.9375rem;
  max-width: 100%;
}

.form-surface {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 767px) {
  .form-surface { padding: 1.5rem; }
}

.application-form,
.contact-form,
.cta-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .contact-form-grid {
    grid-template-columns: 7fr 5fr;
    align-items: start;
  }
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.125rem 1.25rem;
  color: var(--text);
  font-size: 0.9375rem;
  font-weight: 600;
  text-align: left;
}
.faq-trigger:hover {
  color: var(--primary);
}
.faq-trigger svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
}
.faq-content {
  display: none;
  padding: 0 1.25rem 1.25rem;
}
.faq-content p {
  max-width: 100%;
  font-size: 0.9rem;
}
.faq-item.open .faq-content { display: block; }
.faq-item.open .faq-trigger svg { transform: rotate(180deg); }

.office-meta {
  display: grid;
  gap: 0.875rem;
}
.office-meta strong {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.map-placeholder {
  width: 100%;
  min-height: 280px;
  background: linear-gradient(180deg, rgba(61,92,232,0.05), rgba(11,175,196,0.03));
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.form-success {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.25rem;
}
.form-success h3 {
  font-size: 1.25rem;
}
.form-success p {
  max-width: 100%;
  font-size: 0.9375rem;
}
.form-error {
  margin-top: 0.75rem;
  color: #b42318;
  font-size: 0.9375rem;
}
.form-success-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(11,175,196,0.14);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  font-weight: 700;
}

/* Breadcrumb */
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8125rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.breadcrumb a { color: var(--text-muted); transition: color 0.15s; text-decoration: none; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { color: var(--text-faint); }

/* ============================================================
   24. CONTACTS
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 5fr 7fr; align-items: start; } }

.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.25rem; box-shadow: var(--shadow-sm); }
.contact-icon { width: 42px; height: 42px; border-radius: var(--r-md); background: rgba(61,92,232,0.08); display: flex; align-items: center; justify-content: center; font-size: 1.125rem; flex-shrink: 0; }
.contact-item h4 { font-size: 0.875rem; font-weight: 600; color: var(--text-muted); margin-bottom: 0.25rem; }
.contact-item p  { font-size: 0.9375rem; color: var(--text); max-width: 100%; }
.contact-item a  { color: var(--primary); text-decoration: none; }
.contact-item a:hover { text-decoration: underline; }

.offices-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 1.5rem; }
@media (max-width: 480px) { .offices-grid { grid-template-columns: 1fr; } }

.office-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.25rem; transition: all 0.2s; box-shadow: var(--shadow-sm); }
.office-card:hover { border-color: var(--border-accent); box-shadow: var(--shadow-md); }
.office-flag { font-size: 1.75rem; margin-bottom: 0.5rem; }
.office-card h4 { font-size: 0.9375rem; font-weight: 700; margin-bottom: 0.25rem; color: var(--text); }
.office-card p  { font-size: 0.8125rem; color: var(--text-muted); max-width: 100%; line-height: 1.5; }

/* ============================================================
   25. FOOTER
   ============================================================ */
.footer { background: var(--bg-alt); border-top: 1px solid var(--border); padding: 4rem 0 2rem; }

.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 3rem; }
@media (min-width: 640px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-brand { max-width: 300px; }
.footer-logo { margin-bottom: 1rem; font-family: var(--font-head); font-size: 1.0625rem; font-weight: 900; display: flex; align-items: center; gap: 0.625rem; color: var(--text); }
.footer-logo-icon { width: 32px; height: 32px; background: var(--gradient); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; }
.footer-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.5rem; max-width: 100%; }

.social-links { display: flex; gap: 0.625rem; }
.social-link { width: 36px; height: 36px; border-radius: var(--r-md); background: var(--bg); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--text-muted); text-decoration: none; transition: all 0.2s; box-shadow: var(--shadow-sm); }
.social-link:hover { color: var(--primary); border-color: var(--border-accent); }
.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: 1rem;
  font-size: 0.875rem;
}
.footer-contact-item {
  color: var(--text-muted);
  text-decoration: none;
}
.footer-contact-item strong { color: var(--text); font-weight: 600; margin-right: 0.35rem; }
.footer-contact-item:hover { color: var(--primary); }

.footer-col h4 { font-size: 0.875rem; font-weight: 700; color: var(--text); margin-bottom: 1.25rem; letter-spacing: 0.03em; }
.footer-links { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-links a { font-size: 0.875rem; color: var(--text-muted); text-decoration: none; transition: color 0.15s; display: flex; align-items: center; gap: 0.375rem; }
.footer-links a:hover { color: var(--primary); }

.footer-bottom { padding-top: 2rem; border-top: 1px solid var(--border); display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem; }
.footer-copyright { font-size: 0.8125rem; color: var(--text-muted); }
.footer-legal { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer-legal a { font-size: 0.8125rem; color: var(--text-muted); text-decoration: none; transition: color 0.15s; }
.footer-legal a:hover { color: var(--primary); }

/* Sticky CTA */
.sticky-cta { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 900; display: flex; flex-direction: column; gap: 0.625rem; align-items: flex-end; opacity: 0; transform: translateY(10px); transition: opacity 0.3s, transform 0.3s; pointer-events: none; }
.sticky-cta.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.sticky-tg { width: 52px; height: 52px; border-radius: 50%; background: #0088CC; display: flex; align-items: center; justify-content: center; font-size: 1.375rem; box-shadow: 0 4px 20px rgba(0,136,204,0.35); transition: transform 0.2s, box-shadow 0.2s; text-decoration: none; color: #fff; }
.sticky-tg:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(0,136,204,0.45); }
.sticky-badge { background: #fff; border: 1px solid var(--border); border-radius: var(--r-full); padding: 0.4rem 0.875rem; font-size: 0.75rem; font-weight: 600; color: var(--text-muted); box-shadow: var(--shadow-sm); white-space: nowrap; }

/* ============================================================
   26. UTILITIES
   ============================================================ */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-1 { gap: 0.25rem; } .gap-2 { gap: 0.5rem; } .gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; } .gap-6 { gap: 1.5rem; } .gap-8 { gap: 2rem; }
.flex-wrap { flex-wrap: wrap; }
.text-center { text-align: center; }
.mt-auto { margin-top: auto; }
.mb-2 { margin-bottom: 0.5rem; } .mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; } .mb-8 { margin-bottom: 2rem; }
.w-full { width: auto; }

.divider { height: 1px; background: var(--border); margin: 3rem 0; }
.bg-alt  { background: var(--bg-alt); }

.num-highlight { font-family: var(--font-head); font-weight: 900; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Blog */
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px)  { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-xl); overflow: hidden; display: flex; flex-direction: column; transition: all 0.3s var(--ease); text-decoration: none; color: inherit; box-shadow: var(--shadow-sm); }
.blog-card:hover { border-color: var(--border-accent); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.blog-thumb { aspect-ratio: 16/9; background: linear-gradient(135deg, rgba(61,92,232,0.08), rgba(11,175,196,0.06)); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.blog-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; flex: 1; }
.blog-meta { display: flex; align-items: center; gap: 0.75rem; font-size: 0.8125rem; color: var(--text-muted); }
.blog-card h3 { font-size: 1.0625rem; font-weight: 700; line-height: 1.4; color: var(--text); }
.blog-card p  { font-size: 0.875rem; line-height: 1.6; flex: 1; max-width: 100%; }
.blog-read { display: flex; align-items: center; gap: 0.375rem; font-size: 0.875rem; font-weight: 600; color: var(--primary); margin-top: auto; }

/* Service detail */
.service-detail-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 1024px) { .service-detail-grid { grid-template-columns: 7fr 5fr; align-items: start; } }
.includes-list { display: flex; flex-direction: column; gap: 0.875rem; }
.includes-item { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.9375rem; line-height: 1.5; color: var(--text-muted); }
.includes-item::before { content: '✓'; color: var(--secondary); font-weight: 700; flex-shrink: 0; margin-top: 0.1em; }
.price-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 2rem; position: sticky; top: calc(var(--hh) + 1.5rem); box-shadow: var(--shadow-card); }
.price-amount { font-family: var(--font-head); font-size: 2.5rem; font-weight: 900; margin-bottom: 0.25rem; }
.price-from { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 1.5rem; }

/* Map placeholder */
.map-placeholder { gap: 1rem; color: var(--text-muted); font-size: 0.9375rem; }

/* ============================================================
   27. ANIMATIONS (MINIMAL)
   ============================================================ */
.fade-up  { opacity: 0; transform: translateY(20px); transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out); }
.fade-up.visible  { opacity: 1; transform: translateY(0); }
.fade-in  { opacity: 0; transition: opacity 0.5s var(--ease-out); }
.fade-in.visible  { opacity: 1; }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ============================================================
   28. SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0,0,0,0.25); }

::selection { background: rgba(61,92,232,0.15); color: var(--text); }

/* ============================================================
   29. SVG ICON SYSTEM
   ============================================================ */

/* Base icon */
.ico {
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  vertical-align: middle;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  overflow: visible;
}

/* Icon in badge (.icon span inside hero badges) */
.badge-item .icon .ico,
.badge-item .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.badge-item .icon .ico {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
}

/* Bento grid icons */
.bento-icon .ico {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

/* Step icons (process) */
.step-icon .ico {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

/* Country service icons */
.country-service-icon .ico {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary);
}

/* Advantages */
.advantage-icon .ico {
  width: 2rem;
  height: 2rem;
  color: var(--text);
}

/* Audience split */
.audience-icon .ico {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--primary);
}

/* Country big flag placeholder */
.country-flag-big .ico {
  width: 3.5rem;
  height: 3.5rem;
  color: var(--primary);
}

/* Logo globe */
.nav-logo-icon .ico {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}
.footer-logo-icon .ico {
  width: 1.125rem;
  height: 1.125rem;
  color: var(--primary);
}

/* Mobile nav icons */
.mobile-nav-link .ico {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
  margin-right: 0.25rem;
}

/* Stars (ratings / testimonials) */
.ico-star {
  fill: #F59E0B;
  stroke: none;
  width: 1rem;
  height: 1rem;
  vertical-align: middle;
}
.testimonial-stars {
  display: flex;
  gap: 2px;
  align-items: center;
}

/* Ticker dot */
.ticker-dot .ico,
.ico-dot {
  width: 0.375rem;
  height: 0.375rem;
  fill: var(--primary);
  stroke: none;
  opacity: 0.5;
  vertical-align: middle;
}

/* Arrow buttons */
.btn .ico,
.btn-primary .ico,
.btn-red .ico,
.btn-ghost .ico {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
  vertical-align: middle;
}

/* Nav chevrons */
.nav-item-with-dropdown > a .ico,
.nav-chevron .ico {
  width: 0.875rem;
  height: 0.875rem;
  stroke: currentColor;
  vertical-align: middle;
  transition: transform 0.2s;
}
.nav-item-with-dropdown:hover > a .ico,
.nav-item-with-dropdown:focus-within > a .ico {
  transform: rotate(180deg);
}

/* FAQ plus/minus */
.faq-icon {
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 0.3s var(--ease);
  color: var(--primary);
  display: flex;
  align-items: center;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }

/* Partner logo text-icons */
.partner-logo .ico {
  width: 1rem;
  height: 1rem;
  color: var(--text-muted);
  margin-right: 0.25rem;
}
