/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}
/* Предотвращение скачков контента при загрузке */
html {
  scroll-behavior: smooth
}
body {
  overflow-x: hidden
}
/* Стабилизация размеров статистики до загрузки шрифтов */
.hero-stats {
  container-type: inline-size
}
@container (min-width: 300px) {
  .stat-number {
        font-size: clamp(1.5rem, 4vw, 2.5rem)
}
}

:root {
  --rim-blue: #1a1a2e;
  --rim-blue-light: #16213e;
  --rim-red: #CC0000;
  --rim-red-light: #e4032e;
  --rim-gray: #f8f9fa;
  --rim-dark-gray: #212529;
  --primary-color: #1a1a2e;
  --primary-dark: #0f0f1e;
  --secondary-color: #e4032e;
  --accent-color: #e4032e;
  --text-dark: #212529;
  --text-light: #495057;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #dee2e6;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.16);
  --shadow-xl: 0 16px 40px rgba(0, 0, 0, 0.2);
  --gradient-primary: linear-gradient(135deg, var(--rim-blue) 0%, var(--rim-blue-light) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--rim-red) 0%, var(--rim-red-light) 100%);
  --gradient-hero: linear-gradient(135deg, var(--rim-blue) 0%, var(--rim-blue-light) 60%, var(--rim-red-light) 100%)
}
body {
  font-family: 'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white)
}
/* Предотвращение сдвига контента при загрузке шрифтов */
.hero-stats .stat-number {
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  font-feature-settings: "tnum"
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px
}
/* Header Styles */
.header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(228, 3, 46, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05)
}
.navbar {
  padding: 1.25rem 0
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color)
}
.logo {
  width: 300px;
  height: auto;
  max-height: 60px;
  object-fit: contain
}
.nav-menu {
  display: flex;
  gap: 3rem;
  list-style: none;
  align-items: center
}
.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--secondary-color);
  transition: all 0.3s ease;
  border-radius: 2px
}
.nav-link:hover {
  color: var(--secondary-color);
  transform: translateY(-2px)
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%
}
.nav-link.active {
  color: var(--secondary-color)
}
.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  padding: 0.5rem
}
.bar {
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  transition: all 0.3s ease;
  border-radius: 2px
}
/* Hero Section */
.hero {
  padding: 140px 0 100px;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.08" d="M0,96L48,112C96,128,192,160,288,165.3C384,171,480,149,576,128C672,107,768,85,864,90.7C960,96,1056,128,1152,138.7C1248,149,1344,139,1392,133.3L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
  background-size: cover
}
.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(228, 3, 46, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2
}
.hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em
}
.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 3rem;
  font-weight: 400;
  line-height: 1.6
}
.hero-stats {
  display: flex;
  gap: 2rem;
  width: 100%
}
.stat-item {
  text-align: center;
  color: white;
  padding: 1.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  flex: 1;
  min-width: 120px;
  max-width: 180px
}
.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15)
}
/* Hero Badge and Buttons */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 2rem;
  letter-spacing: 0.5px
}
.hero-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap
}
.hero-button {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden
}
.hero-button a {
  color: inherit;
  text-decoration: none
}
.hero-button.primary {
  background: white;
  color: var(--secondary-color);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2)
}
.hero-button.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3)
}
.hero-button.secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px)
}
.hero-button.secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: white;
  transform: translateY(-3px)
}
.stat-number {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: white;
  min-height: 3rem;
  white-space: nowrap;
  overflow: hidden
}
.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500
}
.hero-visual {
  position: relative;
  z-index: 2
}
.truck-showcase {
  position: relative;
  animation: float 6s ease-in-out infinite
}
.hero-truck {
  width: 100%;
  max-width: 550px;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease
}
.hero-truck:hover {
  transform: scale(1.05)
}
.floating-cards {
  position: absolute;
  top: -20px;
  right: -80px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem
}
.floating-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 2px solid var(--secondary-color);
  border-radius: 16px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-dark);
  font-weight: 600;
  box-shadow: var(--shadow-xl);
  animation: float-card 4s ease-in-out infinite;
  transition: all 0.3s ease;
  min-width: 120px;
  white-space: nowrap;
  text-align: center;
  justify-content: center
}
.floating-card:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(228, 3, 46, 0.3)
}
.floating-card:nth-child(2) {
  animation-delay: 1.3s;
  margin-left: 2rem
}
.floating-card:nth-child(3) {
  animation-delay: 2.6s;
  margin-left: 3rem
}
.floating-card img {
  width: 40px;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: 2px
}
.flag-image {
  width: 40px;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2)
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg)
  }
  50% {
    transform: translateY(-15px) rotate(1deg)
  }
}
@keyframes float-card {
  0%,
  100% {
    transform: translateY(0) translateX(0) rotate(0deg)
  }
  25% {
    transform: translateY(-8px) translateX(5px) rotate(1deg)
  }
  50% {
    transform: translateY(-12px) translateX(8px) rotate(-1deg)
  }
  75% {
    transform: translateY(-6px) translateX(4px) rotate(0.5deg)
  }
}
/* Section Styles */
section {
  padding: 100px 0
}
.section-header {
  text-align: center;
  margin-bottom: 5rem
}
.section-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  position: relative
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  border-radius: 2px
}
.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6
}
/* About Section */
.about {
  background: var(--bg-light);
  position: relative
}
.about::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(228, 3, 46, 0.05) 0%, transparent 70%);
  border-radius: 50%
}
.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2
}
.about-text p {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 2rem
}
.features-list {
  margin-top: 3rem
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  transition: all 0.3s ease
}
.feature-item:hover {
  transform: translateX(10px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md)
}
.feature-item i {
  color: var(--secondary-color);
  font-size: 1.5rem;
  flex-shrink: 0
}
.image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-xl)
}
.about-image-main {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px
}
.image-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px
}
.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  height: 100px
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease
}
.gallery-item:hover img {
  transform: scale(1.1)
}
/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem
}
.service-card {
  background: var(--bg-white);
  border: 2px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
  transform: translateY(-100%);
  transition: transform 0.4s ease
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--secondary-color)
}
.service-card:hover::before {
  transform: translateY(0)
}
.service-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 2rem;
  box-shadow: var(--shadow-lg);
  transition: all 0.4s ease;
  border: 4px solid var(--secondary-color);
  position: relative
}
.service-icon::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease
}
.service-card:hover .service-icon::after {
  opacity: 0.3
}
.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  border-radius: 50%
}
.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg)
}
.service-card:hover .service-image {
  transform: scale(1.3)
}
.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  transition: color 0.3s ease
}
.service-card:hover .service-title {
  color: var(--secondary-color)
}
.service-link {
  color: inherit;
  text-decoration: none
}
.service-link:hover {
  color: var(--secondary-color);
  text-decoration: none
}
.service-description {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 1.1rem
}
/* Countries Section */
.countries {
  background: var(--bg-light);
  position: relative
}
.countries::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 200px;
  background: radial-gradient(ellipse at center, rgba(228, 3, 46, 0.05) 0%, transparent 70%);
  transform: translateY(-50%)
}
.countries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  position: relative;
  z-index: 2
}
.country-card {
  background: var(--bg-white);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  border: 2px solid var(--border-color);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden
}
.country-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(228, 3, 46, 0.03) 0%, transparent 70%);
  transform: scale(0);
  transition: transform 0.6s ease;
  border-radius: 50%
}
.country-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: var(--shadow-xl);
  border-color: var(--secondary-color)
}
.country-card:hover::before {
  transform: scale(1)
}
.country-flag {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 2rem;
  box-shadow: var(--shadow-xl);
  transition: all 0.4s ease;
  border: 4px solid var(--primary-color);
  position: relative
}
.country-flag::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease
}
.country-card:hover .country-flag::after {
  opacity: 0.5
}
.country-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  border-radius: 50%
}
.country-card:hover .country-flag {
  transform: scale(1.15) rotate(-5deg);
  border-color: var(--secondary-color)
}
.country-card:hover .country-image {
  transform: scale(1.3)
}
.country-name {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  transition: all 0.3s ease
}
.country-card:hover .country-name {
  color: var(--secondary-color);
  transform: translateY(-2px)
}
.country-description {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 1.1rem;
  transition: color 0.3s ease
}
.country-card:hover .country-description {
  color: var(--text-dark)
}
/* Directions Section */
.directions {
  background: var(--bg-light);
  position: relative
}
.directions-map {
  max-width: 1000px;
  margin: 0 auto
}
.route-cards {
  display: grid;
  gap: 2rem
}
.route-card {
  background: var(--bg-white);
  border-radius: 20px;
  padding: 2rem;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden
}
.route-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
  transform: scaleX(0);
  transition: transform 0.3s ease
}
.route-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--secondary-color)
}
.route-card:hover::before {
  transform: scaleX(1)
}
.route-direction {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap
}
.route-point {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  padding: 0.5rem 1rem;
  background: var(--bg-light);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 0.5rem
}
.flag-image {
  width: 32px;
  height: 24px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease
}
.route-point:hover .flag-image {
  transform: scale(1.1)
}
.route-direction i {
  color: var(--secondary-color);
  font-size: 1.5rem;
  animation: pulse-arrow 2s ease-in-out infinite
}
@keyframes pulse-arrow {
  0%,
  100% {
    transform: translateX(0)
  }
  50% {
    transform: translateX(5px)
  }
}
.route-description {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 1.05rem
}
.route-time {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 0.95rem
}
.route-time i {
  font-size: 1rem
}
/* Advantages Section */
.advantages {
  background: var(--bg-white);
  position: relative
}
.advantages::before {
  content: '';
  position: absolute;
  top: -100px;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(228, 3, 46, 0.05) 0%, transparent 70%);
  border-radius: 50%
}
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 2
}
.advantage-item {
  background: var(--bg-white);
  border: 2px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden
}
.advantage-item::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(228, 3, 46, 0.03) 0%, transparent 70%);
  transform: scale(0);
  transition: transform 0.6s ease;
  border-radius: 50%
}
.advantage-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--secondary-color)
}
.advantage-item:hover::before {
  transform: scale(1)
}
.advantage-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative
}
.advantage-icon i {
  font-size: 2rem;
  color: white
}
.advantage-item:hover .advantage-icon {
  transform: rotate(5deg) scale(1.1)
}
.advantage-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  transition: color 0.3s ease
}
.advantage-item:hover .advantage-title {
  color: var(--secondary-color)
}
.advantage-description {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 1rem
}
/* Process Section */
.process {
  background: var(--bg-light);
  position: relative
}
.process::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(228, 3, 46, 0.05) 0%, transparent 70%);
  border-radius: 50%
}
.process-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2
}
.process-step {
  display: grid;
  grid-template-columns: 80px 1fr 60px;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
  position: relative
}
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 40px;
  top: 80px;
  width: 2px;
  height: 60px;
  background: linear-gradient(180deg, var(--secondary-color), transparent)
}
.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: white;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
  transition: all 0.3s ease
}
.process-step:hover .step-number {
  transform: scale(1.1) rotate(5deg)
}
.step-content {
  background: var(--bg-white);
  padding: 1.5rem;
  border-radius: 16px;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative
}
.step-content::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 20px 10px 0;
  border-color: transparent var(--bg-white) transparent transparent
}
.process-step:hover .step-content {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary-color)
}
.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  transition: color 0.3s ease
}
.process-step:hover .step-title {
  color: var(--secondary-color)
}
.step-description {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 1rem
}
.step-icon {
  width: 60px;
  height: 60px;
  background: rgba(228, 3, 46, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease
}
.step-icon i {
  font-size: 1.5rem;
  color: var(--secondary-color)
}
.process-step:hover .step-icon {
  transform: scale(1.1);
  background: var(--secondary-color)
}
.process-step:hover .step-icon i {
  color: white
}
/* CTA Section */
.cta {
  background: linear-gradient(135deg, var(--rim-blue) 0%, var(--rim-blue-light) 60%, var(--secondary-color) 100%),center/cover;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden
}
.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3)
}
.cta-content {
  position: relative;
  z-index: 2
}
.cta-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em
}
.cta-subtitle {
  font-size: 1.375rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  font-weight: 400
}
.cta-button {
  background: white;
  color: var(--secondary-color);
  border: 2px solid white;
  padding: 1.25rem 3rem;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-block
}
.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
  background: var(--secondary-color);
  color: white;
  border-color: var(--secondary-color)
}
.cta-button span {
  position: relative;
  z-index: 2
}
/* Content Section Styles */
.content-section {
  padding: 5rem 0;
  background: #ffffff
}
.content-text {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8
}
.content-text h2 {
  color: var(--rim-blue);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center
}
.content-text h3 {
  color: var(--rim-blue);
  font-size: 1.6rem;
  font-weight: 600;
  margin: 2.5rem 0 1.5rem 0
}
.content-text p {
  color: #333;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  text-align: justify
}
.content-text ul {
  margin: 1.5rem 0;
  padding-left: 2rem
}
.content-text li {
  color: #333;
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  position: relative
}
.content-text li::marker {
  color: var(--rim-blue);
  font-weight: bold
}
/* Footer */
.footer {
  background: linear-gradient(135deg, var(--rim-blue) 0%, var(--rim-blue-light) 100%);
  color: white;
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(228, 3, 46, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(50%, -50%)
}
.footer-content {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 80px;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2
}
.footer-logo {
  /*width: 280px;*/height: auto;
  /*max-height: 60px;*/object-fit: contain;
  margin-bottom: 1.5rem
}
.footer-description {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 2rem
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  align-items: start
}
.footer-column {
  display: flex;
  flex-direction: column
}
.footer-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap
}
.footer-title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--secondary-color);
  border-radius: 2px
}
.footer-list {
  list-style: none
}
.footer-list li {
  margin-bottom: 1rem;
  font-size: 0.95rem
}
.footer-list a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative
}
.footer-list a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: width 0.3s ease
}
.footer-list a:hover {
  color: white;
  transform: translateX(5px)
}
.footer-list a:hover::before {
  width: 100%
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 2.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  position: relative;
  z-index: 2
}
/* Flag Images for Footer */
.flag-image {
  display: inline-block;
  width: 24px;
  height: 16px;
  margin-right: 8px;
  vertical-align: middle;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  object-fit: cover
}
/* Medium screens fix for floating cards */
@media (max-width: 1324px) {
  .floating-cards {
    right: -40px;
    gap: 1.25rem
  }
}
@media (max-width: 1200px) {
  .floating-cards {
    right: -20px;
    gap: 1rem
  }
}
/* Responsive Design */
@media (max-width: 1160px) {
  /* Mobile menu styles for screens < 1160px */
.nav-menu {
    position: fixed;
    left: -100%;
    top: 90px;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    width: 100%;
    text-align: center;
    transition: 0.4s ease;
    box-shadow: var(--shadow-xl);
    padding: 3rem 0;
    gap: 2rem;
    z-index: 999
  }
  .nav-menu.active {
    left: 0
  }
  .nav-toggle {
    display: flex
  }
  .nav-toggle.active .bar:nth-child(2) {
    opacity: 0
  }
  .nav-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg)
  }
  .nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg)
  }
  /* Adjust logo size for medium screens */
.logo {
    width: 250px;
    max-height: 55px
  }
  /* Adjust navigation container for better balance */
.navbar .container {
    padding: 0 15px
  }
}
@media (max-width: 1024px) {
  .floating-cards {
    right: -30px;
    top: -30px;
    gap: 0.75rem
  }
  .hero-content {
    gap: 60px
  }
  .hero-title {
    font-size: 3.5rem
  }
  .footer-links {
    gap: 2rem
  }
}
/* Fix for screens between 970px and 768px */
@media (max-width: 970px) {
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    align-items: start
  }
  .footer-column {
    min-height: auto
  }
  .footer-title {
    font-size: 1rem;
    margin-bottom: 1rem;
    white-space: normal
  }
  .footer-list li {
    font-size: 0.9rem;
    margin-bottom: 0.75rem
  }
  /* Ensure Kazakhstan column is visible */
.footer-column:nth-child(4) {
    grid-column: auto;
    grid-row: auto
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 120px 0 80px
  }
  .hero-content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center
  }
  .hero-title {
    font-size: 2.5rem;
    line-height: 1.2
  }
  .hero-subtitle {
    font-size: 1.125rem
  }
  .hero-stats {
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap
  }
  .stat-item {
    flex: 1;
    min-width: 120px;
    max-width: 160px
  }
  .floating-cards {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem
  }
  .floating-card {
    margin: 0 !important;
    padding: 1rem 1.25rem
  }
  .floating-card:nth-child(2),
  .floating-card:nth-child(3) {
    margin: 0 !important
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px
  }
  .section-title {
    font-size: 2.25rem
  }
  .section-subtitle {
    font-size: 1.125rem
  }
  .services-grid,
  .countries-grid {
    grid-template-columns: 1fr;
    gap: 2rem
  }
  .service-card,
  .country-card {
    padding: 2rem
  }
  .route-cards {
    gap: 1.5rem
  }
  .route-direction {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem
  }
  .route-direction i {
    transform: rotate(90deg)
  }
  .advantages-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem
  }
  .process-step {
    grid-template-columns: 60px 1fr 50px;
    gap: 1rem;
    margin-bottom: 2rem
  }
  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem
  }
  .process-step:not(:last-child)::after {
    left: 30px;
    top: 60px;
    height: 40px
  }
  .step-icon {
    width: 50px;
    height: 50px
  }
  .step-icon i {
    font-size: 1.25rem
  }
  .cta-title {
    font-size: 2.25rem
  }
  .cta-subtitle {
    font-size: 1.125rem
  }
  .cta-button {
    padding: 1rem 2rem;
    font-size: 1.125rem
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 50px
  }
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: start
  }
  /* Ensure Kazakhstan column is visible in tablet layout */
.footer-column:nth-child(4) {
    grid-column: 2;
    grid-row: 2
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 15px
  }
  .hero {
    padding: 100px 0 60px
  }
  .hero-title {
    font-size: 2rem
  }
  .hero-stats {
    display: none
  }
  .hero-badge {
    margin-top: 10px
  }
  .section-title {
    font-size: 1.875rem
  }
  .section-subtitle {
    font-size: 1rem
  }
  .section {
    padding: 60px 0
  }
  .services-grid,
  .countries-grid {
    gap: 1.5rem
  }
  .service-card,
  .country-card {
    padding: 1.5rem
  }
  .service-icon,
  .country-flag {
    width: 80px;
    height: 80px
  }
  .footer {
    padding: 50px 0 20px
  }
  .footer-links {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: start
  }
  /* Ensure all footer columns are visible on mobile */
.footer-links .footer-column {
    grid-column: 1/-1
  }
  .footer-title {
    font-size: 0.95rem;
    margin-bottom: 1rem
  }
  .flag-image {
    width: 18px;
    height: 12px;
    margin-right: 6px
  }
  .floating-card {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    min-width: 100px;
    white-space: nowrap;
    text-align: center;
    justify-content: center
  }
  .floating-card img {
    width: 30px;
    height: auto;
    aspect-ratio: 3/2
  }
  .hero-cta {
    flex-direction: column;
    gap: 0.75rem
  }
  .hero-button {
    width: 100%;
    justify-content: center
  }
  .route-direction {
    flex-direction: column;
    align-items: stretch
  }
  .route-direction i {
    text-align: center;
    transform: rotate(90deg)
  }
  .route-point {
    text-align: center;
    justify-content: center;
    font-size: 1.1rem;
    padding: 0.4rem 0.8rem
  }
  .flag-image {
    width: 28px;
    height: 20px
  }
  .advantages-grid {
    grid-template-columns: 1fr
  }
  .advantage-item {
    padding: 1.5rem
  }
  .process-step {
    grid-template-columns: 50px 1fr;
    gap: 1rem
  }
  .step-icon {
    display: none
  }
  .process-step:not(:last-child)::after {
    left: 25px;
    top: 50px;
    height: 30px
  }
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem
  }
  .step-content {
    padding: 1rem
  }
  .step-content::before {
    left: -10px;
    border-width: 8px 10px 8px 0
  }
}
/* ===================================================================
   ИСПРАВЛЕНИЕ ВЕРТИКАЛЬНОЙ БЕЛОЙ ПОЛОСЫ НА ЭКРАНАХ < 400px
   =================================================================== */
@media (max-width: 400px) {
  /* 1. Уменьшаем логотип для очень малых экранов */
.logo {
    width: 200px;
    max-height: 45px
  }
  /* 2. Уменьшаем padding контейнера для экономии места */
.container {
    padding: 0 8px
  }
  /* 3. Исправляем сетку с минимальной шириной элементов */
.services-grid {
    grid-template-columns: 1fr;
    gap: 1rem
  }
  .countries-grid,
  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 1rem
  }
  /* 4. Скрываем floating cards которые могут выходить за пределы */
.floating-cards {
    display: none
  }
  /* 5. Гарантируем отсутствие горизонтального скролла */
html,
  body {
    overflow-x: hidden;
    width: 100%;
    min-width: 320px/* Минимальная ширина для мобильных */
  }
  /* 6. Уменьшаем размеры шрифтов для экономии места */
.hero-title {
    font-size: 1.75rem;
    line-height: 1.1
  }
  .section-title {
    font-size: 1.5rem
  }
  .section-subtitle {
    font-size: 0.95rem
  }
  /* 7. Уменьшаем отступы в секциях */
.hero {
    padding: 80px 0 40px
  }
  section {
    padding: 40px 0
  }
  .footer {
    padding: 30px 0 15px
  }
  /* 8. Адаптируем кнопки */
.hero-button {
    padding: 10px 16px;
    font-size: 0.9rem
  }
  /* 9. Уменьшаем навигацию */
.navbar {
    padding: 0.5rem 0
  }
  /* 10. Адаптируем карточки услуг */
.service-card,
  .country-card,
  .advantage-item {
    padding: 1.25rem
  }
  .service-icon,
  .country-flag {
    width: 60px;
    height: 60px
  }
  /* 11. Уменьшаем process timeline */
.process-step {
    grid-template-columns: 40px 1fr;
    gap: 0.75rem
  }
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem
  }
  .step-content {
    padding: 0.75rem
  }
  .step-content::before {
    left: -8px;
    border-width: 6px 8px 6px 0
  }
  /* 12. Дополнительная адаптация для мобильного меню */
.nav-menu {
    width: 100%;
    max-width: 100vw;
    padding: 1.5rem 0
  }
  /* 13. Уменьшаем иконки и текст в advantages */
.advantage-icon {
    width: 60px;
    height: 60px
  }
  .advantage-icon i {
    font-size: 1.5rem
  }
  .flag-image {
    width: 24px;
    height: 18px
  }
  /* 14. Скрываем большие декоративные элементы */
.hero::after,
  .about::before,
  .advantages::before,
  .process::before,
  .footer::before {
    display: none
  }
}
/* ===================================================================
   STICKY SOCIAL BUTTONS
   =================================================================== */
.sticky-social-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center
}
.social-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden
}
.social-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.3s ease
}
.social-button:hover::before {
  transform: scale(1)
}
.social-button i {
  font-size: 24px;
  color: white;
  z-index: 1;
  transition: all 0.3s ease
}
.social-button.whatsapp {
  background: linear-gradient(45deg, #25D366, #128C7E)
}
.social-button.whatsapp:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4)
}
.social-button.telegram {
  background: linear-gradient(45deg, #0088CC, #004F7C)
}
.social-button.telegram:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 136, 204, 0.4)
}
/* Mobile responsiveness for social buttons */
@media (max-width: 768px) {
  .sticky-social-buttons {
    bottom: 20px;
    right: 20px;
    gap: 12px
  }
  .social-button {
    width: 50px;
    height: 50px
  }
  .social-button i {
    font-size: 20px
  }
}
@media (max-width: 480px) {
  .sticky-social-buttons {
    bottom: 15px;
    right: 15px;
    gap: 10px
  }
  .social-button {
    width: 45px;
    height: 45px
  }
  .social-button i {
    font-size: 18px
  }
}
/* Avoid overlap with mobile menu */
@media (max-width: 1160px) {
  .sticky-social-buttons {
    z-index: 998/* Below mobile menu (z-index: 999) */
  }
}
/* Pulse animation for attention */
@keyframes pulse-social {
  0%,
  100% {
    transform: scale(1)
  }
  50% {
    transform: scale(1.05)
  }
}
.sticky-social-buttons .social-button {
  animation: pulse-social 2s ease-in-out infinite
}
.sticky-social-buttons .social-button:nth-child(2) {
  animation-delay: 0.5s
}
/* Stop animation on hover */
.sticky-social-buttons .social-button:hover {
  animation: none
}
/*# sourceMappingURL=styles.min.1763730934774.css.map */
