/* ========================================
   ПОДКЛЮЧЕНИЕ ШРИФТОВ
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,300;14..32,400;14..32,600;14..32,700;14..32,800;14..32,900&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* ========================================
   ULTRA-PREMIUM DESIGN CONCEPT v2.0
   ООО «РИКАРД-М»
   ======================================== */

/* ---------- Сброс и База ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #f5f7fa;
  color: #1a1a2e;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: default;
}

/* ---------- Премиум-скроллбар ---------- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #e8ecf1;
}
::-webkit-scrollbar-thumb {
  background: #c8a45d;
  border-radius: 12px;
}
::-webkit-scrollbar-thumb:hover {
  background: #b8943e;
}

::selection {
  background: #c8a45d;
  color: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  overflow: hidden;
}

.container {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  position: relative;
}

/* ---------- Переменные (Luxury Palette) ---------- */
:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fc;
  --bg-elevated: rgba(0, 0, 0, 0.02);
  --bg-card: #ffffff;
  --bg-card-hover: #f8f9fc;
  --text-primary: #1a1a2e;
  --text-secondary: #4a4a5a;
  --text-muted: #8a8a9a;
  --accent-gold: #c8a45d;
  --accent-gold-light: #e9d4a0;
  --accent-gold-gradient: linear-gradient(135deg, #f3e3b5 0%, #c8a45d 40%, #a8853a 100%);
  --border-subtle: rgba(0, 0, 0, 0.06);
  --border-active: rgba(200, 164, 93, 0.3);
  --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.06);
  --shadow-glow: 0 20px 80px rgba(200, 164, 93, 0.12);
  --shadow-hover: 0 30px 80px rgba(0, 0, 0, 0.08);
  --radius-sm: 12px;
  --radius-md: 24px;
  --radius-lg: 40px;
  --radius-xl: 60px;
}

/* ========================================
   ФИКС СКРОЛЛБАРА ДЛЯ МОДАЛЬНЫХ ОКОН
   ======================================== */

body.modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  visibility: hidden;
}

.modal.hidden {
  display: flex !important;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.modal-content {
  max-width: 480px;
  width: 100%;
  padding: 36px 32px 32px;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: none;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.25);
  transform: scale(0.95) translateY(30px);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalSlideIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(30px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal.active .modal-content {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 28px;
  cursor: pointer;
  transition: color 0.3s ease;
  line-height: 1;
  padding: 4px 8px;
}
.modal-close:hover {
  color: #1a1a2e;
}

.modal-header {
  text-align: center;
  margin-bottom: 24px;
}

.modal-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  background: rgba(200, 164, 93, 0.08);
  padding: 4px 14px;
  border-radius: 100px;
  border: 1px solid rgba(200, 164, 93, 0.1);
  margin-bottom: 12px;
}

.modal-header h2 {
  font-size: 26px;
  margin-bottom: 6px;
  color: #1a1a2e;
  font-weight: 700;
}

.modal-header p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-header p strong {
  color: var(--accent-gold);
  font-weight: 700;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.form-group label .required {
  color: #ff4757;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  background: var(--bg-primary);
  color: #1a1a2e;
  font: inherit;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 4px rgba(200, 164, 93, 0.08);
}

.form-group textarea {
  min-height: 80px;
  padding-top: 12px;
  resize: vertical;
}

.form-group select {
  appearance: none;
  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='%238a8a9a' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.checkbox-group {
  margin-top: 2px;
}

.checkbox-group label {
  font-size: 13px;
  color: var(--text-secondary);
  cursor: pointer;
}

.checkbox-group label a {
  color: var(--accent-gold);
  text-decoration: underline;
  font-weight: 500;
}

.checkbox-group label a:hover {
  color: #b8943e;
}

.btn-submit {
  width: 100%;
  justify-content: center;
  min-height: 48px;
  font-size: 15px;
  margin-top: 6px;
}

.btn-submit svg {
  transition: transform 0.3s ease;
}

.btn-submit:hover svg {
  transform: translateX(4px);
}

.modal-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(200, 164, 93, 0.06);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(200, 164, 93, 0.08);
  font-size: 13px;
  color: var(--text-secondary);
  text-align: center;
}

.modal-note-icon {
  font-size: 18px;
  flex-shrink: 0;
}

/* ---------- Типографика Премиум ---------- */
h1, h2, h3, h4 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  font-weight: 700;
  color: #1a1a2e;
}

h2 {
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.05;
  font-weight: 600;
  color: #1a1a2e;
}

h3 {
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 600;
  color: #1a1a2e;
}

/* ---------- Акцентные элементы (Gold Accents) ---------- */
.gold-text {
  background: var(--accent-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gold-border {
  border-color: var(--accent-gold) !important;
}

/* ========================================
   АНИМИРОВАННЫЙ ЛОГОТИП
   ======================================== */

.gold-animated {
  background: linear-gradient(
    135deg, 
    #f3e3b5 0%, 
    #c8a45d 25%, 
    #f3e3b5 50%, 
    #c8a45d 75%, 
    #f3e3b5 100%
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShine 4s ease-in-out infinite;
  display: inline-block;
}

@keyframes goldShine {
  0% {
    background-position: 0% 50%;
  }
  25% {
    background-position: 50% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  75% {
    background-position: 50% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* ========================================
   КНОПКИ (LUXURY GRADE)
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 32px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  transform: translateY(0);
  will-change: transform, box-shadow, opacity;
}

.btn-primary {
  background: var(--accent-gold-gradient);
  color: #1a1a2e;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 30px rgba(200, 164, 93, 0.35), 0 12px 40px rgba(200, 164, 93, 0.25);
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px) scale(1.02);
}

.btn-secondary:active {
  transform: translateY(0) scale(0.98);
}

.btn-outline-gold {
  background: transparent;
  border: 2px solid var(--accent-gold);
  color: var(--accent-gold);
  font-weight: 600;
}

.btn-outline-gold:hover {
  background: var(--accent-gold-gradient);
  color: #1a1a2e;
  border-color: transparent;
  transform: translateY(-3px) scale(1.02);
}

.btn-outline-gold:active {
  transform: translateY(0) scale(0.98);
}

.btn-small {
  min-height: 40px;
  padding: 0 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.btn-tiny {
  min-height: 30px;
  padding: 0 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 100px;
}

.btn.loading {
  position: relative;
  color: transparent !important;
}

.btn.loading::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  border: 3px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.btn svg {
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn:hover svg {
  transform: translateX(4px);
}

/* ========================================
   ШАПКА С ВЫПАДАЮЩИМИ МЕНЮ
   ======================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(7, 11, 16, 0.3);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
}

.header.scrolled {
  background: rgba(7, 11, 16, 0.75);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(200, 164, 93, 0.1);
}

.header-inner {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 24px;
  max-width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Space Grotesk', sans-serif;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text .gold-text {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: var(--accent-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-sub {
  font-size: 8px;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
  font-family: 'Inter', sans-serif;
}

.nav {
  display: flex;
  gap: 36px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.02em;
  flex: 1;
  justify-content: center;
  padding: 0 20px;
}

.nav-item {
  position: relative;
}

.nav-link {
  position: relative;
  transition: color 0.3s ease;
  padding: 4px 0;
  white-space: nowrap;
  cursor: pointer;
  display: inline-block;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold-gradient);
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-link:hover {
  color: #ffffff;
}

.nav-link:hover::after {
  width: 100%;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 260px;
  background: rgba(18, 22, 30, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-md);
  padding: 12px 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1000;
}

.nav-item.dropdown:hover .dropdown-menu,
.nav-item.dropdown .dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-item.dropdown .dropdown-menu {
  pointer-events: none;
}

.nav-item.dropdown:hover .dropdown-menu {
  pointer-events: all;
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
  border-left: 2px solid transparent;
  cursor: pointer;
}

.dropdown-menu a:hover {
  color: #ffffff;
  background: rgba(200, 164, 93, 0.08);
  border-left-color: var(--accent-gold);
}

.dropdown-icon {
  font-size: 16px;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.phone-link {
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s ease;
  white-space: nowrap;
}

.phone-link:hover {
  color: #ffffff;
}

.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 101;
}

.burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.burger-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger-btn.active span:nth-child(2) {
  opacity: 0;
}

.burger-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  padding: 100px 40px 40px;
  background: rgba(7, 11, 16, 0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: flex-start;
  z-index: 99;
  font-size: 18px;
  font-weight: 500;
  overflow-y: auto;
}

.nav-mobile.active {
  display: flex;
}

.nav-mobile a {
  color: rgba(255,255,255,0.6);
  transition: color 0.3s ease;
  padding: 6px 0;
}

.nav-mobile a:hover {
  color: #ffffff;
}

.nav-mobile .mobile-dropdown {
  width: 100%;
  text-align: center;
}

.nav-mobile .mobile-dropdown-toggle {
  color: rgba(255,255,255,0.6);
  transition: color 0.3s ease;
  padding: 6px 0;
  cursor: pointer;
  display: block;
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 500;
  font-family: inherit;
  width: 100%;
  text-align: center;
}

.nav-mobile .mobile-dropdown-toggle:hover {
  color: #ffffff;
}

.nav-mobile .mobile-dropdown-menu {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 8px 0 12px 0;
  width: 100%;
}

.nav-mobile .mobile-dropdown-menu.open {
  display: flex;
}

.nav-mobile .mobile-dropdown-menu a {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  padding: 6px 0;
}

.nav-mobile .mobile-dropdown-menu a:hover {
  color: rgba(255,255,255,0.7);
}

.mobile-dropdown-icon {
  font-size: 16px;
  margin-right: 8px;
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 180px 0 0;
  overflow: hidden;
  isolation: isolate;
  background: #070b10;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #07111f;
  width: 100%;
  height: 100%;
}

.hero-bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.02);
  transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero:hover .hero-bg img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, 
      rgba(7, 11, 16, 0.92) 0%,
      rgba(7, 11, 16, 0.75) 40%,
      rgba(7, 11, 16, 0.60) 70%,
      rgba(7, 11, 16, 0.85) 100%
    ),
    radial-gradient(ellipse at 30% 20%, 
      rgba(200, 164, 93, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(ellipse at 70% 80%, 
      rgba(75, 180, 255, 0.08) 0%,
      transparent 40%
    );
}

.hero-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse at 60% 30%, 
    rgba(200, 164, 93, 0.08) 0%,
    transparent 50%
  );
  animation: heroGlow 12s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes heroGlow {
  0% {
    transform: translateX(-10%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translateX(10%) scale(1.2);
    opacity: 1;
  }
  100% {
    transform: translateX(-5%) scale(0.9);
    opacity: 0.7;
  }
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 2;
  pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 80' preserveAspectRatio='none'%3E%3Cpath d='M0,40 L200,10 L400,50 L600,20 L800,60 L1000,15 L1200,45 L1200,80 L0,80 Z' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat bottom;
  background-size: 100% 100%;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: calc(100vh - 280px);
  padding: 0 20px 60px;
  max-width: 100%;
}

.hero-content {
  max-width: 700px;
  width: 100%;
  text-align: left;
  margin: 0;
}

.hero h1 {
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
  margin-bottom: 16px;
  color: #ffffff;
}

.hero-text {
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  margin-bottom: 48px;
  color: rgba(255,255,255,0.8);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-gold);
  margin-bottom: 28px;
  justify-content: flex-start;
}
.eyebrow::before {
  content: '';
  width: 48px;
  height: 1.5px;
  background: var(--accent-gold-gradient);
}
.eyebrow::after {
  display: none;
}

.hero-text {
  max-width: 600px;
  margin-left: 0;
  margin-right: 0;
  font-size: 20px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
  justify-content: flex-start;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 600px;
  margin-left: 0;
  margin-right: 0;
}

.stat {
  padding: 24px 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}
.stat:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(200, 164, 93, 0.15);
  transform: translateY(-4px);
}
.stat strong {
  display: block;
  font-size: 32px;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  background: var(--accent-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}
.stat span {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  font-weight: 400;
}

/* ========================================
   ОБЩИЕ СТИЛИ ДЛЯ СЕКЦИЙ
   ======================================== */
section {
  padding: 120px 0;
  position: relative;
  background: var(--bg-primary);
}

section:nth-child(even) {
  background: var(--bg-secondary);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
}
.section-head h2 {
  max-width: 700px;
  color: #1a1a2e;
  display: flex;
  flex-direction: column;
}
.section-head h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  margin-top: 16px;
  background: var(--accent-gold-gradient);
  border-radius: 4px;
}
.section-head p {
  max-width: 440px;
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.7;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ========================================
   БЕГУЩАЯ СТРОКА
   ======================================== */

.ticker-section {
  background: var(--bg-primary);
  padding: 20px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(200, 164, 93, 0.06);
  border-bottom: 1px solid rgba(200, 164, 93, 0.06);
}

.ticker-wrap {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.ticker-track {
  display: flex;
  gap: 60px;
  animation: tickerScroll 30s linear infinite;
  width: max-content;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
  padding: 8px 4px;
  position: relative;
}

.ticker-item::after {
  content: '';
  position: absolute;
  right: -32px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent-gold);
  opacity: 0.3;
}

.ticker-item:last-child::after {
  display: none;
}

.ticker-icon {
  font-size: 20px;
  flex-shrink: 0;
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ========================================
   УСЛУГИ
   ======================================== */

#services {
  padding: 120px 0;
  background: var(--bg-primary);
}

.service-card {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.04);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 164, 93, 0.5);
  box-shadow: 0 20px 60px rgba(200, 164, 93, 0.15), var(--shadow-hover);
  background: var(--bg-card-hover);
}

.service-card .card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eef2f7;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.service-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover .card-image img {
  transform: scale(1.05);
}

.service-card .card-number {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 0.1em;
  font-family: 'Space Grotesk', sans-serif;
  padding: 24px 32px 4px 32px;
  margin: 0;
  position: relative;
  z-index: 2;
}

.service-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: #1a1a2e;
  padding: 0 32px;
  margin: 0 0 10px 0;
  line-height: 1.3;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: var(--accent-gold);
}

.service-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  padding: 0 32px 32px 32px;
  margin: 0;
  flex: 1;
  position: relative;
  z-index: 2;
}

/* ========================================
   НАПРАВЛЕНИЯ
   ======================================== */

.directions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.direction-card {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: var(--bg-card);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  position: relative;
}

.direction-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 164, 93, 0.5);
  box-shadow: 0 20px 60px rgba(200, 164, 93, 0.15), var(--shadow-hover);
  background: var(--bg-card-hover);
}

.direction-card .direction-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #eef2f7;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.direction-card .direction-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.direction-card:hover .direction-image img {
  transform: scale(1.05);
}

.direction-card .direction-content {
  padding: 28px 32px 32px;
  flex: 1;
  position: relative;
  z-index: 2;
}

.direction-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1a1a2e;
  transition: color 0.3s ease;
}

.direction-card:hover h3 {
  color: var(--accent-gold);
}

.direction-card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

/* ========================================
   ПРЕИМУЩЕСТВА
   ======================================== */

#advantages {
  background: var(--bg-primary);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.advantages-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.advantages-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  margin-bottom: 16px;
  padding: 6px 16px 6px 12px;
  background: rgba(200, 164, 93, 0.08);
  border-radius: 100px;
  border: 1px solid rgba(200, 164, 93, 0.1);
}

.advantages-badge::before {
  content: '✦';
  font-size: 12px;
}

.advantages-header h2 {
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.08;
  margin-bottom: 12px;
  color: #1a1a2e;
}

.advantages-header h2 .gold-text {
  background: var(--accent-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.advantages-subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

.advantages-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  position: relative;
  z-index: 1;
}

.advantage-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 18px 18px 16px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: var(--shadow-soft);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.advantage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-gold-gradient);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.advantage-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 164, 93, 0.15);
  box-shadow: var(--shadow-hover);
}

.advantage-card:hover::before {
  opacity: 1;
}

.advantage-card-number {
  font-size: 11px;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--accent-gold);
  letter-spacing: 0.08em;
  display: inline-block;
  padding: 2px 8px 2px 0;
  margin-bottom: 6px;
  border-bottom: 2px solid rgba(200, 164, 93, 0.12);
  align-self: flex-start;
}

.advantage-card-icon {
  font-size: 22px;
  margin-bottom: 6px;
  display: inline-block;
  padding: 6px;
  background: rgba(200, 164, 93, 0.06);
  border-radius: var(--radius-sm);
  line-height: 1;
  align-self: flex-start;
}

.advantage-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
  line-height: 1.3;
}

.advantage-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0;
  flex: 1;
}

.advantage-card-line {
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold), transparent);
  border-radius: 4px;
  transition: width 0.4s ease;
  margin-top: 10px;
  flex-shrink: 0;
}

.advantage-card:hover .advantage-card-line {
  width: 50px;
}

/* ========================================
   ТАМОЖНЯ
   ======================================== */

#customs {
  background: var(--bg-primary);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.customs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}

.customs-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: var(--shadow-soft);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.customs-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 164, 93, 0.15);
  box-shadow: var(--shadow-hover);
}

.customs-card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eef2f7;
  flex-shrink: 0;
}

.customs-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.customs-card:hover .customs-card-image img {
  transform: scale(1.05);
}

.customs-card-content {
  padding: 16px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.customs-card-number {
  font-size: 11px;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--accent-gold);
  letter-spacing: 0.1em;
  display: inline-block;
  margin-bottom: 4px;
  border-bottom: 2px solid rgba(200, 164, 93, 0.15);
  padding-bottom: 4px;
  align-self: flex-start;
}

.customs-card-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
  line-height: 1.3;
  min-height: 40px;
}

.customs-card-content p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0;
  flex: 1;
}

/* ========================================
   ПРОЦЕСС
   ======================================== */

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.process-step {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: var(--bg-card);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}

.process-step:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 164, 93, 0.15);
  box-shadow: var(--shadow-hover);
  background: var(--bg-card-hover);
}

.process-step-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #eef2f7;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.process-step:hover .process-step-image img {
  transform: scale(1.05);
}

.process-step-content {
  padding: 24px 28px 28px;
  flex: 1;
}

.process-step-number {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 0.1em;
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 6px;
}

.process-step h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1a1a2e;
}

.process-step p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

/* ========================================
   КОМАНДА
   ======================================== */

.team-section {
  padding: 120px 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.team-header {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

.team-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  margin-bottom: 20px;
  padding: 8px 20px 8px 16px;
  background: rgba(200, 164, 93, 0.08);
  border-radius: 100px;
  border: 1px solid rgba(200, 164, 93, 0.1);
}

.team-header h2 {
  font-size: clamp(36px, 4.5vw, 52px);
  line-height: 1.08;
  margin-bottom: 16px;
  color: #1a1a2e;
}

.team-header h2 .gold-text {
  background: var(--accent-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.team-subtitle {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.team-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: var(--shadow-soft);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-align: center;
}

.team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 164, 93, 0.15);
  box-shadow: var(--shadow-hover);
}

.team-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #eef2f7;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.team-card:hover .team-image img {
  transform: scale(1.05);
}

.team-info {
  padding: 24px 20px 28px;
}

.team-info h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.team-position {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-gold);
  margin-bottom: 10px;
}

.team-info p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ========================================
   ОТЗЫВЫ
   ======================================== */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.testimonial-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: var(--shadow-soft);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(200, 164, 93, 0.15);
}

.testimonial-stars {
  color: #f9ca24;
  font-size: 20px;
  letter-spacing: 4px;
  margin-bottom: 16px;
}

.testimonial-text {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.04);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 15px;
}

.testimonial-company {
  font-size: 13px;
  color: var(--text-muted);
}

/* ========================================
   КЕЙСЫ
   ======================================== */

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.case-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: var(--shadow-soft);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.case-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(200, 164, 93, 0.15);
}

.case-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #eef2f7;
}

.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.case-card:hover .case-image img {
  transform: scale(1.05);
}

.case-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--accent-gold-gradient);
  color: #1a1a2e;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(200, 164, 93, 0.3);
}

.case-content {
  padding: 24px 28px 28px;
}

.case-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
  line-height: 1.3;
}

.case-content p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.case-meta {
  display: flex;
  gap: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.04);
  color: var(--text-muted);
  font-size: 14px;
}

.case-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ========================================
   FAQ
   ======================================== */

.faq-section {
  padding: 120px 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  margin-bottom: 20px;
  padding: 8px 20px 8px 16px;
  background: rgba(200, 164, 93, 0.08);
  border-radius: 100px;
  border: 1px solid rgba(200, 164, 93, 0.1);
}

.faq-badge::before {
  content: '❓';
  font-size: 14px;
}

.faq-header h2 {
  font-size: clamp(36px, 4vw, 52px);
  margin-bottom: 16px;
  color: #1a1a2e;
}

.faq-header h2 .gold-text {
  background: var(--accent-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.faq-item {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  padding: 24px 28px 28px;
}

.faq-item:hover {
  border-color: rgba(200, 164, 93, 0.15);
  box-shadow: var(--shadow-hover);
}

.faq-item .faq-question {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: default;
}

.faq-number {
  font-size: 13px;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--accent-gold);
  letter-spacing: 0.1em;
  flex-shrink: 0;
  width: 32px;
}

.faq-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
  line-height: 1.4;
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(200, 164, 93, 0.06);
}

.faq-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent-gold);
}

.faq-answer {
  padding-top: 16px;
}

.faq-answer p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}

.faq-cta {
  margin-top: 60px;
  padding: 40px 48px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.faq-cta-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.faq-cta-icon {
  font-size: 40px;
  line-height: 1;
  flex-shrink: 0;
}

.faq-cta-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.faq-cta-content p {
  font-size: 15px;
  color: var(--text-secondary);
  margin: 0;
}

.faq-cta .btn {
  min-height: 48px;
  padding: 0 32px;
  font-size: 14px;
}

/* ========================================
   КОНТАКТЫ
   ======================================== */

.contacts {
  padding: 80px 0;
  background: var(--bg-primary);
  position: relative;
}

.contacts-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}

.contacts-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px 0;
}

.contacts-info h2 {
  font-size: 32px;
  color: #1a1a2e;
  margin-bottom: 4px;
}

.contacts-description {
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 8px;
}

.contacts-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 8px;
}

.contact-phone,
.contact-email {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-primary);
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s ease;
  text-decoration: none;
}

.contact-phone:hover {
  color: var(--accent-gold);
}

.contact-email:hover {
  color: var(--accent-gold);
}

.contact-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--accent-gold);
}

.contacts-worktime {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  margin: 4px 0 8px 0;
}

.worktime-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.worktime-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--accent-gold);
  margin-top: 2px;
}

.worktime-item > div {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 12px;
}

.worktime-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}

.worktime-value {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

.worktime-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #2ed573;
  background: rgba(46, 213, 115, 0.12);
  padding: 2px 12px;
  border-radius: 100px;
  border: 1px solid rgba(46, 213, 115, 0.15);
}

.contacts-clocks {
  margin-top: 4px;
  margin-bottom: 4px;
}

.clocks-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 14px;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.02em;
}

.clocks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.clock-item {
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.clock-item:hover {
  border-color: rgba(200, 164, 93, 0.2);
  background: var(--bg-card);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.clock-city {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.clock-time {
  display: block;
  font-size: 18px;
  font-weight: 700;
  font-family: 'Space Grotesk', monospace;
  color: var(--text-primary);
  letter-spacing: 0.03em;
}

.clock-offset {
  display: block;
  font-size: 9px;
  color: var(--text-muted);
  margin-top: 2px;
  font-weight: 400;
}

.contacts-social {
  display: flex;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: var(--text-secondary);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
}

.social-link svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.social-link:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.social-link:hover svg {
  transform: scale(1.1);
}

.social-link.whatsapp {
  color: #25D366;
}
.social-link.whatsapp:hover {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}

.social-link.telegram {
  color: #0088cc;
}
.social-link.telegram:hover {
  background: #0088cc;
  color: #fff;
  border-color: #0088cc;
}

.social-link.email {
  color: #ea4335;
}
.social-link.email:hover {
  background: #ea4335;
  color: #fff;
  border-color: #ea4335;
}

.contacts-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.contacts-actions .btn-secondary {
  background: rgba(200, 164, 93, 0.12);
  color: #1a1a2e;
  border: 1px solid rgba(200, 164, 93, 0.25);
}

.contacts-actions .btn-secondary:hover {
  background: rgba(200, 164, 93, 0.2);
  border-color: rgba(200, 164, 93, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(200, 164, 93, 0.15);
}

.contacts-map {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: var(--shadow-soft);
  min-height: 320px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.contacts-map iframe {
  flex: 1;
  min-height: 280px;
  border: none;
  display: block;
}

.map-address {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--bg-card);
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  font-size: 14px;
  color: var(--text-secondary);
}

.map-address svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--accent-gold);
}

/* ========================================
   ФУТЕР
   ======================================== */

.footer {
  padding: 60px 0 0;
  background: #0a0a0a;
  border-top: 1px solid rgba(200, 164, 93, 0.06);
  color: rgba(255,255,255,0.5);
}

.footer-inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.footer-logo .gold-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(
    135deg, 
    #f3e3b5 0%, 
    #c8a45d 25%, 
    #f3e3b5 50%, 
    #c8a45d 75%, 
    #f3e3b5 100%
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShine 4s ease-in-out infinite;
  display: inline-block;
}

.footer-logo-sub {
  display: block;
  font-size: 8px;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-top: 2px;
  font-family: 'Inter', sans-serif;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.footer-col h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.35);
  font-size: 13px;
  line-height: 1.8;
  transition: color 0.3s ease;
  text-decoration: none;
}
.footer-col a:hover {
  color: rgba(255,255,255,0.7);
}

.footer-bottom {
  padding: 28px 0 24px;
  border-top: 1px solid rgba(255,255,255,0.04);
  margin-top: 0;
}

.footer-bottom .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-copy {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.25);
  line-height: 1.8;
}
.footer-copy p {
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-legal a {
  color: rgba(255,255,255,0.25);
  font-size: 12px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-legal a:hover {
  color: rgba(255,255,255,0.6);
}

/* ========================================
   АДАПТИВ
   ======================================== */

@media (max-width: 1024px) {
  .nav {
    gap: 24px;
    font-size: 13px;
  }
  .header-inner {
    height: 72px;
    padding: 0 16px;
  }
  .logo-icon {
    width: 32px;
    height: 32px;
  }
  .logo-text .gold-text {
    font-size: 20px;
  }
  .logo-sub {
    font-size: 7px;
  }
  .logo {
    gap: 12px;
  }
  .phone-link {
    font-size: 14px;
  }
  .customs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .advantages-cards {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(100% - 24px, 1240px);
  }
  .header-inner {
    height: 64px;
    padding: 0 12px;
  }
  .logo-icon {
    width: 28px;
    height: 28px;
  }
  .logo-text .gold-text {
    font-size: 18px;
  }
  .logo-sub {
    font-size: 7px;
    letter-spacing: 0.2em;
  }
  .logo {
    gap: 10px;
  }
  .phone-link {
    display: none;
  }
  .btn-small {
    min-height: 36px;
    padding: 0 18px;
    font-size: 12px;
  }
  .header-phone {
    gap: 12px;
  }
  .nav {
    display: none;
  }
  .burger-btn {
    display: flex !important;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .hero {
    padding: 140px 0 0;
  }
  .hero-inner {
    min-height: auto;
    justify-content: center;
    padding: 0 24px 40px;
  }
  .hero-content {
    text-align: center;
    max-width: 100%;
  }
  .eyebrow {
    justify-content: center;
  }
  .eyebrow::after {
    display: inline-block;
    content: '';
    width: 24px;
    height: 1.5px;
    background: var(--accent-gold-gradient);
  }
  .hero-text {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
  .stats {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .stat {
    padding: 16px;
  }
  .stat strong {
    font-size: 26px;
  }
  .hero-bg img {
    object-fit: cover;
    object-position: center;
  }
  .hero-overlay {
    background: linear-gradient(180deg, rgba(7, 11, 16, 0.95) 0%, rgba(7, 11, 16, 0.80) 30%, rgba(7, 11, 16, 0.60) 60%, rgba(7, 11, 16, 0.90) 100%), radial-gradient(ellipse at 50% 30%, rgba(200, 164, 93, 0.10) 0%, transparent 60%);
  }
  .cards {
    grid-template-columns: 1fr 1fr;
  }
  #services .card-image {
    aspect-ratio: 4 / 3;
  }
  #services .card-number {
    padding: 20px 24px 4px 24px;
  }
  #services .card h3 {
    font-size: 20px;
    padding: 0 24px;
  }
  #services .card p {
    font-size: 14px;
    padding: 0 24px 24px 24px;
  }
  .directions {
    grid-template-columns: 1fr 1fr;
  }
  .direction-content {
    padding: 20px 24px 24px;
  }
  .direction h3 {
    font-size: 22px;
  }
  .customs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .customs-card-content {
    padding: 14px 16px 18px;
  }
  .customs-card-content h3 {
    font-size: 15px;
    min-height: auto;
  }
  .customs-card-content p {
    font-size: 13px;
  }
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }
  .process-step-content {
    padding: 18px 20px 20px;
  }
  .process-step h3 {
    font-size: 17px;
  }

  .ticker-section {
    padding: 14px 0;
  }
  .ticker-track {
    gap: 40px;
    animation-duration: 25s;
  }
  .ticker-item {
    font-size: 14px;
    gap: 10px;
    padding: 6px 4px;
  }
  .ticker-item::after {
    right: -24px;
    width: 3px;
    height: 3px;
  }
  .ticker-icon {
    font-size: 17px;
  }

  .team-section {
    padding: 72px 0;
  }
  .team-header {
    margin-bottom: 40px;
  }
  .team-header h2 {
    font-size: 32px;
  }
  .team-subtitle {
    font-size: 16px;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .team-info {
    padding: 18px 16px 22px;
  }
  .team-info h3 {
    font-size: 18px;
  }
  .team-position {
    font-size: 13px;
  }
  .team-info p {
    font-size: 13px;
  }

  section {
    padding: 72px 0;
  }
  .footer {
    padding: 40px 0 0;
  }
  .footer-inner {
    padding-bottom: 30px;
  }
  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .footer-col h4 {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .footer-col a {
    font-size: 12px;
  }
  .footer-bottom .container {
    gap: 12px;
  }
  .footer-copy {
    font-size: 11px;
  }
  .footer-legal {
    gap: 12px;
  }
  .footer-legal a {
    font-size: 10px;
  }
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cases-grid {
    grid-template-columns: 1fr 1fr;
  }
  .section-head h2::after {
    width: 40px;
    margin-top: 12px;
  }

  .service-card .card-number {
    padding: 20px 24px 4px 24px;
  }
  .service-card h3 {
    font-size: 20px;
    padding: 0 24px;
  }
  .service-card p {
    font-size: 14px;
    padding: 0 24px 24px 24px;
  }
  .direction-card .direction-content {
    padding: 20px 24px 24px;
  }
  .direction-card h3 {
    font-size: 22px;
  }

  .advantages-header {
    margin-bottom: 30px;
  }
  .advantages-header h2 {
    font-size: 32px;
  }
  .advantages-subtitle {
    font-size: 15px;
  }
  .advantages-cards {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .advantage-card {
    padding: 16px 16px 14px;
  }
  .advantage-card h3 {
    font-size: 14px;
  }
  .advantage-card p {
    font-size: 12px;
  }
  .advantage-card-icon {
    font-size: 20px;
    padding: 5px;
  }

  .faq-section {
    padding: 72px 0;
  }
  .faq-header {
    margin-bottom: 40px;
  }
  .faq-header h2 {
    font-size: 32px;
  }
  .faq-subtitle {
    font-size: 16px;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .faq-item {
    padding: 20px 20px 24px;
  }
  .faq-title {
    font-size: 15px;
  }
  .faq-answer p {
    font-size: 14px;
  }

  .faq-cta {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
    gap: 24px;
  }
  .faq-cta-content {
    flex-direction: column;
  }

  .contacts {
    padding: 60px 0;
  }
  .contacts-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contacts-info {
    padding: 0;
    text-align: center;
  }
  .contacts-info h2 {
    font-size: 28px;
  }
  .contacts-details {
    align-items: center;
  }
  .contacts-social {
    justify-content: center;
  }
  .contacts-actions {
    justify-content: center;
  }
  .contacts-map {
    min-height: 260px;
  }
  .contacts-map iframe {
    min-height: 220px;
  }
  .map-address {
    justify-content: center;
    font-size: 13px;
    padding: 14px 16px;
  }
  .clocks-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
  }
  .clock-item {
    padding: 8px 6px;
  }
  .clock-time {
    font-size: 15px;
  }
  .clock-city {
    font-size: 9px;
  }
  .clock-offset {
    font-size: 8px;
  }
  .worktime-item > div {
    flex-direction: column;
    gap: 2px;
  }
  .worktime-value {
    font-size: 13px;
  }
  .worktime-badge {
    font-size: 10px;
    padding: 1px 10px;
  }
}

@media (max-width: 480px) {
  .header {
    background: rgba(7, 11, 16, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
  .header.scrolled {
    background: rgba(7, 11, 16, 0.85);
  }
  .header-inner {
    height: 58px;
    padding: 0 10px;
  }
  .logo-icon {
    width: 28px;
    height: 28px;
  }
  .logo-text .gold-text {
    font-size: 16px;
  }
  .logo-sub {
    font-size: 6px;
    letter-spacing: 0.15em;
  }
  .logo {
    gap: 8px;
  }
  .btn-small {
    min-height: 32px;
    padding: 0 14px;
    font-size: 11px;
  }
  .btn-tiny {
    min-height: 26px;
    padding: 0 10px;
    font-size: 10px;
  }

  .hero {
    padding: 120px 0 0;
  }
  .hero-inner {
    padding: 0 16px 30px;
  }
  .hero::after {
    height: 40px;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  #services .card-number {
    padding: 16px 18px 4px 18px;
    font-size: 13px;
  }
  #services .card h3 {
    font-size: 18px;
    padding: 0 18px;
  }
  #services .card p {
    font-size: 14px;
    padding: 0 18px 20px 18px;
  }
  .directions {
    grid-template-columns: 1fr;
  }
  .direction-content {
    padding: 20px 20px 24px;
  }
  .direction h3 {
    font-size: 24px;
  }
  .customs-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .customs-card-content {
    padding: 14px 16px 18px;
  }
  .customs-card-content h3 {
    font-size: 16px;
    min-height: auto;
  }
  .customs-card-content p {
    font-size: 14px;
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
  .process-step-content {
    padding: 18px 20px 22px;
  }
  .process-step h3 {
    font-size: 19px;
  }

  .ticker-section {
    padding: 10px 0;
  }
  .ticker-track {
    gap: 30px;
    animation-duration: 20s;
  }
  .ticker-item {
    font-size: 12px;
    gap: 8px;
    padding: 4px 4px;
  }
  .ticker-item::after {
    right: -18px;
    width: 2px;
    height: 2px;
  }
  .ticker-icon {
    font-size: 14px;
  }

  .team-section {
    padding: 60px 0;
  }
  .team-badge {
    font-size: 11px;
    padding: 6px 14px 6px 12px;
  }
  .team-header h2 {
    font-size: 28px;
  }
  .team-subtitle {
    font-size: 14px;
  }
  .team-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .team-info {
    padding: 16px 14px 20px;
  }
  .team-info h3 {
    font-size: 17px;
  }
  .team-position {
    font-size: 12px;
  }
  .team-info p {
    font-size: 13px;
  }

  .stats {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }
  .stat {
    padding: 12px 8px;
  }
  .stat strong {
    font-size: 22px;
  }
  .hero-text {
    font-size: 17px;
  }
  h1 {
    font-size: 28px;
  }
  h2 {
    font-size: 28px;
  }
  .btn {
    min-height: 48px;
    padding: 0 24px;
    font-size: 14px;
  }
  .eyebrow {
    font-size: 11px;
    gap: 10px;
  }
  .eyebrow::before,
  .eyebrow::after {
    width: 16px;
  }
  .hero h1 {
    margin-bottom: 14px;
  }
  .hero-text {
    margin-bottom: 32px;
  }
  #services {
    padding: 60px 0;
  }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .section-head p {
    max-width: 100%;
  }
  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .footer-col a {
    font-size: 11px;
    line-height: 1.6;
  }
  .footer-legal {
    gap: 8px;
  }
  .footer-legal a {
    font-size: 9px;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .cases-grid {
    grid-template-columns: 1fr;
  }
  .section-head h2::after {
    width: 30px;
    margin-top: 10px;
  }

  .service-card .card-number {
    padding: 16px 18px 4px 18px;
    font-size: 13px;
  }
  .service-card h3 {
    font-size: 18px;
    padding: 0 18px;
  }
  .service-card p {
    font-size: 14px;
    padding: 0 18px 20px 18px;
  }
  .direction-card .direction-content {
    padding: 16px 18px 20px;
  }
  .direction-card h3 {
    font-size: 20px;
  }

  #advantages {
    padding: 40px 0;
  }
  .advantages-header h2 {
    font-size: 28px;
  }
  .advantages-badge {
    font-size: 11px;
    padding: 6px 14px 6px 12px;
  }
  .advantages-subtitle {
    font-size: 14px;
  }
  .advantages-cards {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .advantage-card {
    padding: 14px 14px 12px;
  }
  .advantage-card h3 {
    font-size: 15px;
  }
  .advantage-card p {
    font-size: 13px;
  }
  .advantage-card-icon {
    font-size: 22px;
    padding: 6px;
  }

  .faq-section {
    padding: 60px 0;
  }
  .faq-badge {
    font-size: 11px;
    padding: 6px 14px 6px 12px;
  }
  .faq-header h2 {
    font-size: 28px;
  }
  .faq-subtitle {
    font-size: 14px;
  }
  .faq-grid {
    gap: 12px;
  }
  .faq-item {
    padding: 16px 16px 20px;
  }
  .faq-number {
    font-size: 11px;
    width: 24px;
  }
  .faq-title {
    font-size: 14px;
  }
  .faq-icon {
    width: 24px;
    height: 24px;
  }
  .faq-icon svg {
    width: 14px;
    height: 14px;
  }
  .faq-answer p {
    font-size: 13px;
  }
  .faq-cta {
    padding: 24px 16px;
  }
  .faq-cta-icon {
    font-size: 32px;
  }
  .faq-cta-content h3 {
    font-size: 17px;
  }
  .faq-cta-content p {
    font-size: 14px;
  }
  .faq-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .contacts {
    padding: 40px 0;
  }
  .contacts-info h2 {
    font-size: 24px;
  }
  .contacts-description {
    font-size: 14px;
  }
  .contact-phone,
  .contact-email {
    font-size: 16px;
  }
  .contact-icon {
    width: 20px;
    height: 20px;
  }
  .social-link {
    width: 44px;
    height: 44px;
  }
  .social-link svg {
    width: 20px;
    height: 20px;
  }
  .contacts-actions {
    flex-direction: column;
    width: 100%;
  }
  .contacts-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .contacts-map {
    min-height: 220px;
  }
  .contacts-map iframe {
    min-height: 180px;
  }
  .map-address {
    font-size: 12px;
    padding: 12px 14px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .map-address svg {
    width: 16px;
    height: 16px;
  }
  .clocks-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
  .clock-item {
    padding: 10px 8px;
  }
  .clock-time {
    font-size: 17px;
  }
  .clock-city {
    font-size: 10px;
  }
}