/* Оптимизированный CSS для сайта грузоперевозок */

/* CSS переменные */
:root {
  /* Основные цвета */
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --primary-light: #818cf8;
  --secondary: #ec4899;
  --accent: #14b8a6;
  --success: #22c55e;
  --warning: #f59e0b;
  --danger: #ef4444;
  
  /* Нейтральные цвета */
  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f4f4f5;
  --gray-200: #e4e4e7;
  --gray-300: #d4d4d8;
  --gray-400: #a1a1aa;
  --gray-500: #71717a;
  --gray-600: #52525b;
  --gray-700: #3f3f46;
  --gray-800: #27272a;
  --gray-900: #18181b;
  
  /* Градиенты */
  --gradient-primary: linear-gradient(135deg, #10b981, #3b82f6);
  --gradient-secondary: linear-gradient(135deg, #14b8a6, #22c55e);
  --gradient-accent: linear-gradient(135deg, #f59e0b, #ef4444);
  --gradient-hero: linear-gradient(135deg, #10b981 0%, #3b82f6 50%, #06b6d4 100%);
  --gradient-card: linear-gradient(135deg, #fafafa, #f4f4f5);
  
  /* Тени */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-primary: 0 10px 15px -3px rgba(16, 185, 129, 0.3);
  --shadow-secondary: 0 10px 15px -3px rgba(236, 72, 153, 0.3);
  
  /* Переходы */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Отступы */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  
  /* Скругления */
  --radius: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
  
  /* Типографика */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Сброс стилей */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  line-height: 1.6;
  color: #71717a;
  background: #ffffff;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Навигация */
.navbar {
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid #e4e4e7;
  padding: var(--spacing-sm) 0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all var(--transition);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.navbar-brand {
  font-weight: 700;
  color: var(--primary) !important;
  font-size: 1.5rem;
  text-decoration: none;
  background: linear-gradient(135deg, #6366f1, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-brand:hover {
  transform: scale(1.05);
}

.navbar-nav .nav-link {
  color: #71717a !important;
  font-weight: 500;
  padding: var(--spacing-sm) var(--spacing-md) !important;
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary) !important;
  background: rgba(99, 102, 241, 0.1);
  transform: translateY(-2px);
}

/* Кнопка регистрации в шапке */
.navbar-nav .nav-link.btn-primary {
  background: linear-gradient(135deg, #6366f1, #8b5cf6) !important;
  color: #ffffff !important;
  border: none;
  font-weight: 600;
  padding: var(--spacing-sm) var(--spacing-lg) !important;
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(99, 102, 241, 0.2);
}

.navbar-nav .nav-link.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
  transition: left 0.3s ease;
}

.navbar-nav .nav-link.btn-primary:hover::before {
  left: 0;
}

.navbar-nav .nav-link.btn-primary:hover {
  background: linear-gradient(135deg, #4f46e5, #6366f1) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px -4px rgba(99, 102, 241, 0.4);
}

/* Основной контент */
main {
  padding-top: 80px;
}

/* Hero секция */
.hero-section {
  padding: var(--spacing-3xl) 0 var(--spacing-3xl);
  background: linear-gradient(135deg, #6366f1 0%, #818cf8 50%, #ec4899 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.hero-section .container {
  position: relative;
  z-index: 1;
  max-width: 700px;
  text-align: center;
}

.hero-section h1 {
  font-weight: 700;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.3;
  margin-bottom: var(--spacing-md);
  letter-spacing: -0.01em;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}

.hero-section .lead {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: var(--spacing-xl);
  font-weight: 400;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

.hero-section .d-grid {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease 0.4s forwards;
  gap: var(--spacing-md);
  justify-content: center;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Кнопки */
.btn {
  font-weight: 600;
  padding: var(--spacing-md) var(--spacing-xl);
  border-radius: var(--radius-lg);
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left var(--transition);
  z-index: -1;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  color: inherit !important;
}

.btn-primary {
  background: #ffffff;
  color: #6366f1;
  border: 2px solid #ffffff;
  font-weight: 600;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background: transparent;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 12px -1px rgba(0, 0, 0, 0.15);
}

.btn-outline-light {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  font-weight: 500;
}

.btn-outline-light:hover {
  background: #ffffff;
  color: #6366f1;
  transform: translateY(-2px);
  box-shadow: 0 8px 12px -1px rgba(0, 0, 0, 0.15);
}

/* Mobile responsive styles for buttons */
@media (max-width: 768px) {
  .btn-light, .btn-outline-light {
    display: block;
    width: 100%;
    margin: var(--spacing-sm) 0;
    padding: var(--spacing-lg) var(--spacing-xl);
    font-size: 1rem;
    text-align: center;
  }
  
  .hero .btn {
    margin: var(--spacing-sm) 0;
    padding: var(--spacing-lg) var(--spacing-xl);
    font-size: 1rem;
  }
}

.hero .btn {
  margin: 0 var(--spacing-sm);
  padding: var(--spacing-md) var(--spacing-lg);
  font-size: 1rem;
  border-radius: var(--radius-lg);
}

/* Карточки */
.card {
  border: none;
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  background: #ffffff;
  transition: all var(--transition);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.card h4 {
  color: #1a1a1a;
  font-weight: 600;
  margin-bottom: var(--spacing-md);
}

.card p {
  color: #52525b;
  line-height: 1.7;
  margin-bottom: var(--spacing-md);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #6366f1, #ec4899);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Секции */
.section {
  padding: var(--spacing-3xl) 0;
}

.section-padding {
  padding: var(--spacing-3xl) 0;
}

.section:nth-child(even) {
  background: linear-gradient(135deg, #fafafa, #f4f4f5);
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
}

/* Дополнительные отступы после блоков */
.custom-grid-3 {
  margin-bottom: var(--spacing-2xl);
}

.section-padding .row.g-4 {
  margin-bottom: var(--spacing-2xl);
}

.section-title h2 {
  font-weight: 700;
  color: #1a1a1a;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--spacing-md);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-title p {
  color: #52525b;
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
}

/* Иконки */
.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #6366f1, #ec4899);
  color: #ffffff;
  border-radius: var(--radius-2xl);
  font-size: 1.5rem;
  margin-bottom: var(--spacing-lg);
  width: 70px;
  height: 70px;
  box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.3);
  transition: all var(--transition);
}

.icon:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 15px -3px rgba(99, 102, 241, 0.3);
}

/* Сетки */
.grid,
.custom-grid-3 {
  display: grid;
  gap: var(--spacing-xl);
}

.grid-3,
.custom-grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

/* Исправление для десктопной версии */
@media (min-width: 992px) {
  .custom-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  /* Стиль для секции "Услуги" */
  .custom-grid-3 .card {
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: var(--spacing-xl);
    transition: all var(--transition);
  }
  
  .custom-grid-3 .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  }
  
  .custom-grid-3 .icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin: 0 auto var(--spacing-lg);
  }
  
  /* Стиль для секции "Как это работает" */
  .section-padding .row.g-4 .card {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--spacing-xl);
    transition: all var(--transition);
  }
  
  .section-padding .row.g-4 .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  }
  
  .section-padding .row.g-4 .icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
  }
}

/* Футер */
.footer {
  background: #18181b;
  color: #d4d4d8;
  padding: var(--spacing-3xl) 0 var(--spacing-xl);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(135deg, #6366f1, #ec4899);
}

.footer h5,
.footer h6 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: var(--spacing-lg);
}

.footer a {
  color: #d4d4d8;
  text-decoration: none;
  transition: all var(--transition);
  position: relative;
}

.footer a:hover {
  color: var(--primary-light);
  transform: translateX(5px);
}

.footer p {
  color: #d4d4d8;
  line-height: 1.7;
}

/* Утилиты */
.text-gradient {
  background: linear-gradient(135deg, #6366f1, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rounded {
  border-radius: var(--radius);
}

.rounded-lg {
  border-radius: var(--radius-lg);
}

.shadow {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.shadow-primary {
  box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.3);
}

/* Анимации */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Адаптивность */
@media (max-width: 768px) {
  .hero-section {
    min-height: 60vh;
    padding: var(--spacing-2xl) 0;
  }
  
  .hero-section h1 {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-sm);
  }
  
  .hero-section .lead {
    font-size: 1rem;
    margin-bottom: var(--spacing-lg);
  }
  
  .hero-section .d-grid {
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
  }
  
  .hero-section .btn {
    width: 100%;
    max-width: 280px;
    margin: 0;
  }
  
  .section {
    padding: var(--spacing-2xl) 0;
  }
  
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
  
  .card {
    padding: var(--spacing-lg);
  }
}

/* Стили для страниц аутентификации */
.auth-container {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-2xl) var(--spacing-md);
  background: linear-gradient(135deg, #fafafa, #f4f4f5);
}

.auth-card {
  background: #ffffff;
  border-radius: var(--radius-2xl);
  padding: var(--spacing-3xl);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 450px;
  position: relative;
  overflow: hidden;
}

.auth-card::before {
  display: none;
}

.auth-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.auth-header h2 {
  font-weight: 700;
  color: #1a1a1a;
  font-size: 1.8rem;
  margin-bottom: var(--spacing-sm);
  background: linear-gradient(135deg, #6366f1, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.auth-header p {
  color: #71717a;
  font-size: 1rem;
}

.auth-form {
  margin-bottom: var(--spacing-xl);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
}

.form-group {
  margin-bottom: var(--spacing-lg);
}

.form-label {
  display: block;
  font-weight: 600;
  color: #3f3f46;
  margin-bottom: var(--spacing-sm);
  font-size: 0.9rem;
}

.form-group input {
  padding: var(--spacing-md);
  border: 2px solid #e4e4e7;
  border-radius: var(--radius-lg);
  font-size: 1rem;
  transition: all var(--transition);
  background: #ffffff;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group input::placeholder {
  color: #a1a1aa;
}

.error-text {
  color: #ef4444;
  font-size: 0.85rem;
  margin-top: var(--spacing-xs);
}

.alert {
  padding: var(--spacing-md);
  border-radius: var(--radius);
  margin-bottom: var(--spacing-lg);
}

.alert-danger {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-xl);
}

.checkbox-wrapper {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 0.9rem;
  color: #71717a;
}

.checkbox-wrapper input[type="checkbox"] {
  margin-right: var(--spacing-sm);
  cursor: pointer;
}

.forgot-link {
  color: var(--primary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition);
}

.forgot-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.link-primary {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition);
}

.link-primary:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.btn-full {
  width: 100%;
  padding: var(--spacing-md);
  font-size: 1rem;
  font-weight: 600;
}

.auth-footer {
  text-align: center;
  padding-top: var(--spacing-lg);
  border-top: 1px solid #e4e4e7;
}

.auth-footer p {
  color: #71717a;
  font-size: 0.9rem;
}

/* Адаптивность для аутентификации */
@media (max-width: 768px) {
  .auth-container {
    padding: var(--spacing-lg) var(--spacing-md);
  }
  
  .auth-card {
    padding: var(--spacing-xl);
    max-width: 100%;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .form-options {
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: flex-start;
  }
}

/* Стили для страницы 404 */
.error-section {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-3xl) var(--spacing-md);
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.error-content {
  text-align: center;
  max-width: 600px;
}

.error-number {
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 900;
  color: #6366f1;
  line-height: 1;
  margin-bottom: var(--spacing-xl);
  text-shadow: 2px 2px 4px rgba(99, 102, 241, 0.1);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.error-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: var(--spacing-lg);
}

.error-description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #64748b;
  margin-bottom: var(--spacing-2xl);
  line-height: 1.6;
}

.error-actions {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-3xl);
  flex-wrap: wrap;
}

.error-actions .btn {
  min-width: 160px;
}

.error-links {
  margin-bottom: var(--spacing-3xl);
}

.error-links p {
  color: #475569;
  font-weight: 500;
}

.error-link {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-md) var(--spacing-lg);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  color: #334155;
  text-decoration: none;
  transition: all var(--transition);
  font-weight: 500;
}

.error-link:hover {
  background: #6366f1;
  color: #ffffff;
  border-color: #6366f1;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.error-link i {
  font-size: 1.2rem;
}

.search-suggestion {
  max-width: 400px;
  margin: 0 auto;
}

.search-suggestion p {
  color: #475569;
  font-weight: 500;
  margin-bottom: var(--spacing-md);
}

.search-box {
  display: flex;
  gap: var(--spacing-sm);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-xl);
  padding: var(--spacing-xs);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.search-box input {
  border: none;
  outline: none;
  flex: 1;
  padding: var(--spacing-md) var(--spacing-lg);
  font-size: 1rem;
  background: transparent;
}

.search-box input::placeholder {
  color: #94a3b8;
}

.search-box button {
  border: none;
  background: #6366f1;
  color: #ffffff;
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.search-box button:hover {
  background: #4f46e5;
  transform: scale(1.05);
}

/* Адаптивность для 404 страницы */
@media (max-width: 768px) {
  .error-section {
    padding: var(--spacing-2xl) var(--spacing-md);
    min-height: calc(100vh - 150px);
  }
  
  .error-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .error-actions .btn {
    width: 100%;
    max-width: 250px;
  }
  
  .error-link {
    padding: var(--spacing-sm) var(--spacing-md);
  }
  
  .search-box {
    flex-direction: column;
  }
  
  .search-box button {
    width: 100%;
  }
}

/* Стили для страницы отслеживания груза */
.tracking-hero {
  background: linear-gradient(135deg, #6366f1 0%, #818cf8 50%, #ec4899 100%);
  color: white;
  padding: var(--spacing-3xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 50vh;
  display: flex;
  align-items: center;
}

.tracking-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.tracking-hero .container {
  position: relative;
  z-index: 1;
}

.tracking-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.tracking-hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: var(--spacing-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}

.tracking-hero-description {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.85);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

.tracking-section {
  padding: var(--spacing-3xl) 0;
  background: #f8fafc;
}

.tracking-card {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: none;
  margin-bottom: var(--spacing-2xl);
  transition: all var(--transition);
  position: relative;
}

.tracking-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.tracking-card-header {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  color: #1a1a1a;
  padding: var(--spacing-xl) var(--spacing-2xl);
  border-bottom: 1px solid #e2e8f0;
  position: relative;
}

.tracking-card-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #6366f1, #818cf8, #ec4899);
}

.tracking-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
}

.tracking-card-body {
  padding: var(--spacing-2xl);
}

.tracking-form {
  margin-bottom: var(--spacing-2xl);
}

.tracking-input-group {
  display: flex;
  gap: var(--spacing-md);
  align-items: stretch;
  max-width: 600px;
  margin: 0 auto;
}

.tracking-input-wrapper {
  flex: 1;
  position: relative;
}

.tracking-input-icon {
  position: absolute;
  left: var(--spacing-lg);
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  font-size: 1.2rem;
  z-index: 2;
}

.tracking-input {
  width: 100%;
  padding: var(--spacing-lg) var(--spacing-xl);
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-xl);
  font-size: 1.1rem;
  transition: all var(--transition);
  background: #f8fafc;
}

.tracking-input:focus {
  outline: none;
  border-color: #6366f1;
  background: white;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.tracking-button {
  background: linear-gradient(135deg, #6366f1 0%, #818cf8 50%, #ec4899 100%);
  color: white;
  border: none;
  padding: var(--spacing-lg) var(--spacing-2xl);
  border-radius: var(--radius-xl);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.profile-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.profile-button:hover::before {
  left: 100%;
}

.tracking-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(99, 102, 241, 0.3);
}

.tracking-actions {
  text-align: center;
  margin-top: var(--spacing-xl);
  padding-top: var(--spacing-lg);
  border-top: 1px solid #bbf7d0;
}

.tracking-detail-btn {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #6366f1 0%, #818cf8 50%, #ec4899 100%);
  color: white;
  text-decoration: none;
  padding: var(--spacing-md) var(--spacing-xl);
  border-radius: var(--radius-lg);
  font-weight: 600;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.tracking-detail-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.tracking-detail-btn:hover::before {
  left: 100%;
}

.tracking-detail-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(99, 102, 241, 0.3);
  color: white;
}

.tracking-button:active {
  transform: translateY(0);
}

.tracking-result {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-xl);
  padding: var(--spacing-2xl);
  margin-bottom: var(--spacing-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}

.tracking-result::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #10b981, #34d399, #6ee7b7);
}

.tracking-result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-xl);
  padding-bottom: var(--spacing-lg);
  border-bottom: 1px solid #bbf7d0;
}

.tracking-result-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #166534;
  margin: 0;
  display: flex;
  align-items: center;
}

.tracking-number {
  background: #166534;
  color: white;
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 0.9rem;
}

.tracking-status {
  margin-bottom: var(--spacing-xl);
  text-align: center;
}

.tracking-status-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
}

.tracking-status-label {
  font-weight: 600;
  color: #475569;
  font-size: 1.1rem;
}

/* Стили для страницы услуг */

/* Hero Section */
section.services-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

section.services-hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

section.services-hero .hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.9) 0%, rgba(139, 92, 246, 0.9) 50%, rgba(236, 72, 153, 0.9) 100%);
  z-index: 2;
}

section.services-hero .hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  animation: float 20s ease-in-out infinite;
  z-index: 1;
}

section.services-hero .hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

section.services-hero .hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  animation: fadeInUp 0.8s ease-out;
}

section.services-hero .hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

section.services-hero .hero-stats {
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

section.services-hero .stats-container {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

section.services-hero .stat-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: none;
  border-radius: 20px;
  padding: 1.5rem 2rem;
  min-width: 120px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

section.services-hero .stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  transition: left 0.3s ease;
}

section.services-hero .stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

section.services-hero .stat-item:hover::before {
  left: 100%;
}

section.services-hero .stat-number-wrapper {
  position: relative;
  margin-bottom: 0.5rem;
}

section.services-hero .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
}

section.services-hero .stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

section.services-hero .hero-actions {
  display: flex;
  gap: 1.5rem;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

section.services-hero .hero-btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

section.services-hero .hero-btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

section.services-hero .hero-btn-secondary:hover {
  background: #ffffff;
  color: #6366f1;
  transform: translateY(-2px);
}

section.services-hero .hero-visual {
  position: relative;
  height: 500px;
}

section.services-hero .floating-elements {
  position: relative;
  height: 100%;
}

section.services-hero .floating-card {
  position: absolute;
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: float 6s ease-in-out infinite;
}

section.services-hero .truck-card {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

section.services-hero .box-card {
  top: 50%;
  right: 20%;
  animation-delay: 2s;
}

section.services-hero .clock-card {
  bottom: 20%;
  left: 40%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Services Section */
section.services-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
}

section.services-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

section.services-section .section-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #ffffff;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

section.services-section .section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.2;
}

section.services-section .section-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

section.services-section .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

section.services-section .service-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(99, 102, 241, 0.1);
}

section.services-section .service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6, #ec4899);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

section.services-section .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

section.services-section .service-card:hover::before {
  transform: scaleX(1);
}

section.services-section .service-icon {
  margin-bottom: 2rem;
}

section.services-section .icon-bg {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #ffffff;
  transition: all 0.3s ease;
}

section.services-section .service-card:hover .icon-bg {
  transform: scale(1.1) rotate(5deg);
}

section.services-section .service-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

section.services-section .service-content p {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

section.services-section .service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

section.services-section .service-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #475569;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

section.services-section .service-features i {
  color: #10b981;
  font-size: 1.1rem;
}

section.services-section .service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #6366f1;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

section.services-section .service-link:hover {
  color: #4f46e5;
  transform: translateX(5px);
}

/* CTA Section */
section.cta-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

section.cta-section .cta-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

section.cta-section .cta-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  z-index: 2;
}

section.cta-section .cta-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 25% 25%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 75% 75%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
  z-index: 1;
}

section.cta-section .cta-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

section.cta-section .cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

section.cta-section .cta-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
  line-height: 1.6;
}

section.cta-section .cta-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

section.cta-section .cta-btn {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

section.cta-section .cta-btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

section.cta-section .cta-btn-secondary:hover {
  background: #ffffff;
  color: #1e293b;
  transform: translateY(-2px);
}

/* Benefits Section */
section.benefits-section {
  padding: 6rem 0;
  background: #ffffff;
}

section.benefits-section .benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

section.benefits-section .benefit-item {
  text-align: center;
  padding: 2rem;
  border-radius: 15px;
  transition: all 0.3s ease;
}

section.benefits-section .benefit-item:hover {
  transform: translateY(-5px);
}

section.benefits-section .benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #10b981, #34d399);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #ffffff;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

section.benefits-section .benefit-item:hover .benefit-icon {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

section.benefits-section .benefit-item h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

section.benefits-section .benefit-item p {
  color: #64748b;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  section.services-hero .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  section.services-hero .stats-container {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  section.services-hero .stat-item {
    min-width: 200px;
    padding: 1rem 1.5rem;
  }
  
  section.services-hero .stat-number {
    font-size: 2rem;
  }
  
  section.services-hero .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  section.services-hero .hero-btn {
    width: 100%;
    max-width: 300px;
  }
  
  section.services-hero .hero-btn, section.cta-section .cta-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  section.services-section .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  section.services-section .service-card {
    padding: 2rem;
  }
  
  section.cta-section .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  
  section.benefits-section .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }
}

.status-warning { background: #f59e0b; color: #92400e; }
.status-info { background: #3b82f6; color: white; }
.status-primary { background: #6366f1; color: white; }
.status-success { background: #10b981; color: white; }
.status-danger { background: #ef4444; color: white; }

.tracking-details {
  display: grid;
  gap: var(--spacing-lg);
  max-width: 600px;
  margin: 0 auto;
}

.tracking-detail-item {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  padding: var(--spacing-md);
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.tracking-detail-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #6366f1, #818cf8, #ec4899);
}

.tracking-detail-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px -4px rgba(0, 0, 0, 0.1);
}

.tracking-detail-icon {
  background: #f1f5f9;
  color: #6366f1;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tracking-detail-icon i {
  font-size: 1.2rem;
}

.tracking-detail-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.tracking-detail-label {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 500;
}

.tracking-detail-value {
  font-size: 1.1rem;
  color: #1e293b;
  font-weight: 600;
}

.tracking-error {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  border: 1px solid #fecaca;
  border-radius: var(--radius-xl);
  padding: var(--spacing-2xl);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.tracking-error::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ef4444, #f87171, #fca5a5);
}

.tracking-error-icon {
  background: #fee2e2;
  color: #dc2626;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-lg);
}

.tracking-error-icon i {
  font-size: 2rem;
}

.tracking-error-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #dc2626;
  margin: var(--spacing-lg) 0;
}

.tracking-error-message {
  color: #7f1d1d;
  line-height: 1.6;
  margin: var(--spacing-md) 0 0 0 0;
}

.status-guide-card {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: none;
  height: 100%;
  max-width: 600px;
  margin: 0 auto;
  transition: all var(--transition);
  position: relative;
}

.status-guide-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.status-guide-header {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  color: #1a1a1a;
  padding: var(--spacing-xl) var(--spacing-2xl);
  border-bottom: 1px solid #e2e8f0;
  position: relative;
}

.status-guide-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #6366f1, #818cf8, #ec4899);
}

.status-guide-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
}

.status-guide-body {
  padding: var(--spacing-2xl);
}

.status-timeline {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-2xl);
}

.status-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  padding: var(--spacing-md);
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  transition: all var(--transition);
  position: relative;
}

.status-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px -4px rgba(0, 0, 0, 0.1);
}

.status-marker {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin-top: 5px;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.status-marker.status-warning {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1);
}

.status-marker.status-info {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.status-marker.status-primary {
  background: linear-gradient(135deg, #6366f1, #818cf8);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.status-marker.status-success {
  background: linear-gradient(135deg, #10b981, #34d399);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.status-marker.status-danger {
  background: linear-gradient(135deg, #ef4444, #f87171);
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.status-content {
  flex: 1;
}

.status-badge {
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: var(--radius-lg);
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: var(--spacing-sm);
  position: relative;
  overflow: hidden;
}

.badge-warning { 
  background: linear-gradient(135deg, #f59e0b, #fbbf24); 
  color: #92400e;
  box-shadow: 0 2px 4px -1px rgba(245, 158, 11, 0.3);
}

.badge-info { 
  background: linear-gradient(135deg, #3b82f6, #60a5fa); 
  color: white;
  box-shadow: 0 2px 4px -1px rgba(59, 130, 246, 0.3);
}

.badge-primary { 
  background: linear-gradient(135deg, #6366f1, #818cf8); 
  color: white;
  box-shadow: 0 2px 4px -1px rgba(99, 102, 241, 0.3);
}

.badge-success { 
  background: linear-gradient(135deg, #10b981, #34d399); 
  color: white;
  box-shadow: 0 2px 4px -1px rgba(16, 185, 129, 0.3);
}

.badge-danger { 
  background: linear-gradient(135deg, #ef4444, #f87171); 
  color: white;
  box-shadow: 0 2px 4px -1px rgba(239, 68, 68, 0.3);
}

.status-description {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.help-section {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  border: 1px solid #e2e8f0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.help-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #64748b, #475569, #64748b);
}

.help-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 var(--spacing-md) 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.help-text {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0 0 var(--spacing-lg) 0;
}

.help-button {
  background: linear-gradient(135deg, #64748b 0%, #475569 100%);
  color: white;
  text-decoration: none;
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: var(--radius-lg);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.help-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.help-button:hover::before {
  left: 100%;
}

.help-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(71, 85, 105, 0.3);
  color: white;
}

/* Адаптивность для страницы отслеживания */
@media (max-width: 992px) {
  .tracking-hero {
    padding: var(--spacing-2xl) 0;
  }
  
  .tracking-section {
    padding: var(--spacing-2xl) 0;
  }
  
  .tracking-input-group {
    flex-direction: column;
    gap: var(--spacing-lg);
  }
  
  .tracking-input-wrapper {
    width: 100%;
  }
  
  .tracking-button {
    width: 100%;
    justify-content: center;
  }
  
  .tracking-detail-item {
    padding: var(--spacing-md);
  }
}

@media (max-width: 768px) {
  .tracking-hero {
    padding: var(--spacing-xl) 0;
  }
  
  .tracking-section {
    padding: var(--spacing-xl) 0;
  }
  
  .tracking-card-header,
  .status-guide-header {
    padding: var(--spacing-lg) var(--spacing-xl);
  }
  
  .tracking-card-body,
  .status-guide-body {
    padding: var(--spacing-lg);
  }
  
  .tracking-result-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-md);
  }
  
  .tracking-details {
    gap: var(--spacing-md);
  }
  
  .tracking-detail-item {
    flex-direction: column;
    text-align: center;
    gap: var(--spacing-sm);
  }
  
  .status-item {
    flex-direction: column;
    text-align: center;
    gap: var(--spacing-sm);
  }
}

/* Стили для детальной страницы отслеживания */
.tracking-detail-hero {
  background: linear-gradient(135deg, #6366f1 0%, #818cf8 50%, #ec4899 100%);
  color: white;
  padding: var(--spacing-3xl) 0;
  position: relative;
  overflow: hidden;
}

.tracking-detail-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.tracking-detail-header {
  position: relative;
  z-index: 1;
}

.tracking-detail-breadcrumb {
  margin-bottom: var(--spacing-xl);
}

.breadcrumb-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
}

.breadcrumb-link:hover {
  color: white;
  transform: translateX(-3px);
}

.tracking-detail-title-section {
  text-align: center;
}

.tracking-detail-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
  color: #ffffff;
}

.tracking-detail-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
}

.tracking-date {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

.tracking-status-badge {
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.tracking-detail-content {
  padding: var(--spacing-3xl) 0;
  background: #f8fafc;
}

.timeline-card {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: none;
  transition: all var(--transition);
  position: relative;
}

.timeline-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.timeline-header {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  color: #1a1a1a;
  padding: var(--spacing-xl) var(--spacing-2xl);
  border-bottom: 1px solid #e2e8f0;
  position: relative;
}

.timeline-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #6366f1, #818cf8, #ec4899);
}

.timeline-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 var(--spacing-sm) 0;
}

.timeline-subtitle {
  color: #64748b;
  margin: 0;
  font-size: 1rem;
}

.timeline-body {
  padding: var(--spacing-2xl);
}

.tracking-timeline {
  position: relative;
}

.tracking-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #6366f1, #818cf8, #ec4899);
}

.timeline-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: var(--spacing-2xl);
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 2;
  transition: all var(--transition);
}

.timeline-item.completed .timeline-marker {
  background: linear-gradient(135deg, #10b981, #34d399);
  color: white;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.timeline-item.current .timeline-marker {
  background: linear-gradient(135deg, #6366f1, #818cf8);
  color: white;
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
  animation: pulse 2s infinite;
}

.timeline-item.pending .timeline-marker {
  background: #e2e8f0;
  color: #94a3b8;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(99, 102, 241, 0.1);
  }
  100% {
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
  }
}

.timeline-content {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  border: 1px solid #e2e8f0;
  transition: all var(--transition);
}

.timeline-item.completed .timeline-content {
  border-left: 4px solid #10b981;
}

.timeline-item.current .timeline-content {
  border-left: 4px solid #6366f1;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.timeline-item.pending .timeline-content {
  opacity: 0.7;
  border-left: 4px solid #e2e8f0;
}

.timeline-header-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-md);
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.timeline-status {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  color: #1a1a1a;
}

.timeline-time {
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 500;
}

.timeline-description {
  color: #475569;
  margin: 0;
  line-height: 1.5;
}

.shipment-info-card {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: none;
  height: 100%;
  transition: all var(--transition);
  position: relative;
}

.shipment-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.shipment-info-header {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  color: #1a1a1a;
  padding: var(--spacing-xl) var(--spacing-2xl);
  border-bottom: 1px solid #e2e8f0;
  position: relative;
}

.shipment-info-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #6366f1, #818cf8, #ec4899);
}

.shipment-info-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
}

.shipment-info-body {
  padding: var(--spacing-2xl);
}

.info-section {
  margin-bottom: var(--spacing-2xl);
}

.info-section:last-child {
  margin-bottom: 0;
}

.info-section-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 var(--spacing-lg) 0;
  padding-bottom: var(--spacing-sm);
  border-bottom: 2px solid #f1f5f9;
}

.route-info {
  position: relative;
}

.route-point {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.route-point:last-child {
  margin-bottom: 0;
}

.route-marker {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.route-marker.origin {
  background: linear-gradient(135deg, #10b981, #34d399);
}

.route-marker.destination {
  background: linear-gradient(135deg, #ef4444, #f87171);
}

.route-details {
  flex: 1;
  padding-top: var(--spacing-xs);
}

.route-label {
  display: block;
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 500;
  margin-bottom: var(--spacing-xs);
}

.route-address {
  display: block;
  font-size: 1rem;
  color: #1a1a1a;
  font-weight: 600;
  line-height: 1.4;
}

.route-line {
  position: absolute;
  left: 20px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: linear-gradient(180deg, #10b981, #ef4444);
}

.order-details {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-sm) 0;
  border-bottom: 1px solid #f1f5f9;
}

.detail-item:last-child {
  border-bottom: none;
}

.detail-label {
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 500;
}

.detail-value {
  color: #1a1a1a;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: right;
}

.action-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: 600;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.action-btn.primary {
  background: linear-gradient(135deg, #6366f1 0%, #818cf8 50%, #ec4899 100%);
  color: white;
}

.action-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(99, 102, 241, 0.3);
}

.action-btn.secondary {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  color: #1a1a1a;
  border: 1px solid #e2e8f0;
}

.action-btn.secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px -4px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

/* Стили для страницы "О нас" */
.about-section {
  margin-bottom: var(--spacing-3xl);
  padding: var(--spacing-2xl) 0;
}

.about-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: var(--spacing-xl);
  position: relative;
}

.about-section h2::after {
  content: '';
  position: absolute;
  bottom: -var(--spacing-md);
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
  border-radius: var(--radius);
}

.about-section h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: var(--spacing-xl);
  position: relative;
}

.about-section h3::after {
  content: '';
  position: absolute;
  bottom: -var(--spacing-sm);
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
  border-radius: var(--radius);
}

.about-section .lead {
  font-size: 1.2rem;
  color: #374151;
  margin-bottom: var(--spacing-xl);
  font-weight: 500;
  line-height: 1.8;
}

.about-section p {
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: var(--spacing-lg);
  font-size: 1.05rem;
}

.stats-grid {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  margin: var(--spacing-xl) 0;
}

.stat-item {
  display: flex;
  align-items: center;
  padding: var(--spacing-xl);
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: var(--radius-xl);
  border: 1px solid #e2e8f0;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: var(--radius) 0 0 var(--radius);
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
  border-color: #6366f1;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #6366f1;
  margin-right: var(--spacing-xl);
  background: linear-gradient(135deg, #ffffff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  min-width: 100px;
  text-align: center;
  position: relative;
}

.stat-number::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -var(--spacing-md);
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, #e2e8f0, transparent);
}

.stat-label {
  font-size: 1rem;
  color: #374151;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.5;
  flex: 1;
}

.advantages-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-2xl);
}

.advantage-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  padding: var(--spacing-xl);
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: var(--radius-xl);
  border: 1px solid #e2e8f0;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.advantage-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
  opacity: 0;
  transition: opacity var(--transition);
}

.advantage-item:hover::before {
  opacity: 1;
}

.advantage-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
  border-color: #6366f1;
}

.advantage-item i {
  font-size: 1.8rem;
  color: #6366f1;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 8px 16px -4px rgba(99, 102, 241, 0.3);
  transition: all var(--transition);
}

.advantage-item:hover i {
  transform: scale(1.1);
  box-shadow: 0 12px 20px -4px rgba(99, 102, 241, 0.4);
}

.advantage-item h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.4;
}

.advantage-item p {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.team-card {
  text-align: center;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: var(--radius-xl);
  padding: var(--spacing-2xl);
  border: 1px solid #e2e8f0;
  transition: all var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
  opacity: 0;
  transition: opacity var(--transition);
}

.team-card:hover::before {
  opacity: 1;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 30px -10px rgba(0, 0, 0, 0.15);
  border-color: #6366f1;
}

.team-photo {
  width: 100px;
  height: 100px;
  margin: 0 auto var(--spacing-xl);
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.5rem;
  box-shadow: 0 12px 24px -8px rgba(99, 102, 241, 0.4);
  transition: all var(--transition);
  position: relative;
}

.team-photo::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.5;
}

.team-card:hover .team-photo {
  transform: scale(1.05);
  box-shadow: 0 20px 30px -8px rgba(99, 102, 241, 0.5);
}

.team-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 var(--spacing-xs) 0;
}

.team-position {
  color: #6366f1;
  font-weight: 600;
  font-size: 1rem;
  margin: 0 0 var(--spacing-md) 0;
}

.team-desc {
  color: #6b7280;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

.bg-gradient-primary {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%) !important;
}

.bg-light {
  background: #f8fafc !important;
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
}

.section-title h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: var(--spacing-md);
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  display: none;
}

.section-title p {
  color: #6b7280;
  font-size: 1.1rem;
  margin: 0;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

/* Адаптивность для страницы "О нас" */
@media (max-width: 768px) {
  .about-section {
    padding: var(--spacing-lg) 0;
  }
  
  .about-section h2 {
    font-size: 1.8rem;
  }
  
  .about-section h3 {
    font-size: 1.4rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
  }
  
  .stat-number {
    font-size: 2.2rem;
  }
  
  .advantages-list {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .advantage-item {
    flex-direction: column;
    text-align: center;
    padding: var(--spacing-lg);
  }
  
  .advantage-item i {
    margin-top: 0;
    margin-bottom: var(--spacing-md);
  }
  
  .team-photo {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }
  
  .team-card {
    padding: var(--spacing-lg);
  }
}

/* Стили для страницы условий использования */
.page-hero {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
  padding: var(--spacing-3xl) 0;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
  color: #ffffff;
}

.page-hero .lead {
  font-size: 1.1rem;
  opacity: 0.9;
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}

.terms-content {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  padding: var(--spacing-2xl);
}

.terms-section {
  margin-bottom: var(--spacing-2xl);
  padding-bottom: var(--spacing-xl);
  border-bottom: 1px solid #f1f5f9;
}

.terms-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.terms-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: var(--spacing-lg);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.terms-section h2::before {
  content: '';
  width: 4px;
  height: 24px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: var(--radius);
  flex-shrink: 0;
}

.terms-section p {
  color: #374151;
  line-height: 1.7;
  margin-bottom: var(--spacing-md);
  font-size: 1rem;
}

.terms-section ul {
  list-style: none;
  padding: 0;
  margin: var(--spacing-md) 0;
}

.terms-section ul li {
  position: relative;
  padding-left: var(--spacing-xl);
  margin-bottom: var(--spacing-sm);
  color: #374151;
  line-height: 1.6;
}

.terms-section ul li::before {
  content: '•';
  position: absolute;
  left: var(--spacing-sm);
  color: #6366f1;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1;
}

/* Адаптивность для страницы условий */
@media (max-width: 768px) {
  .page-hero h1 {
    font-size: 1.8rem;
  }
  
  .terms-content {
    padding: var(--spacing-lg);
  }
  
  .terms-section h2 {
    font-size: 1.3rem;
  }
  
  .terms-section h2::before {
    height: 20px;
  }
}

/* Стили для страницы входа */
.auth-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}

.auth-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.auth-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.auth-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 3rem;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 1;
}

.auth-header {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.auth-header p {
  color: #6b7280;
  font-size: 1rem;
  margin: 0;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.auth-form .form-group {
  position: relative;
}

.auth-form .form-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.auth-form .form-label i {
  color: #6366f1;
  font-size: 1rem;
}

.auth-form input[type="email"],
.auth-form input[type="password"] {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.8);
}

.auth-form input[type="email"]:focus,
.auth-form input[type="password"]:focus {
  outline: none;
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
  background: rgba(255, 255, 255, 1);
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1rem 0;
}

.checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: #6b7280;
}

.checkbox-wrapper input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #6366f1;
}

.forgot-link {
  color: #6366f1;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.forgot-link:hover {
  color: #4f46e5;
}

.btn-primary.btn-full {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-primary.btn-full::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
  transition: left 0.3s ease;
}

.btn-primary.btn-full:hover::before {
  left: 0;
}

.btn-primary.btn-full:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}

.btn-primary.btn-full i {
  font-size: 1.1rem;
}

.auth-footer {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}

.auth-footer p {
  color: #6b7280;
  font-size: 0.9rem;
  margin: 0;
}

.link-primary {
  color: #6366f1;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.link-primary:hover {
  color: #4f46e5;
}

.alert-danger {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #dc2626;
  padding: 0.75rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.error-text {
  color: #dc2626;
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

/* Адаптивность для страницы входа */
@media (max-width: 768px) {
  .auth-card {
    margin: 1rem;
    padding: 2rem;
    max-width: 100%;
  }
  
  .auth-header h2 {
    font-size: 1.75rem;
  }
  
  .form-options {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}

/* Стили для страницы профиля */
.profile-hero {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
  padding: var(--spacing-3xl) 0;
  position: relative;
  overflow: hidden;
}

.profile-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.profile-hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.profile-hero-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
  color: #ffffff;
  animation: fadeInUp 0.8s ease-out;
}

.profile-hero-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 0;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.profile-content {
  padding: var(--spacing-3xl) 0;
  background: #f8fafc;
}

.profile-card {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all var(--transition);
  position: relative;
}

.profile-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.profile-card-header {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  color: #1a1a1a;
  padding: var(--spacing-2xl);
  border-bottom: 1px solid #e2e8f0;
  position: relative;
}

.profile-card-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
}

.profile-header-content {
  display: flex;
  align-items: center;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-lg);
}

.profile-avatar {
  flex-shrink: 0;
}

.avatar-circle.large {
  width: 80px;
  height: 80px;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 8px 16px -4px rgba(99, 102, 241, 0.3);
}

.profile-info {
  flex: 1;
}

.profile-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 var(--spacing-sm) 0;
}

.profile-type {
  margin-top: var(--spacing-sm);
}

.type-badge {
  display: inline-flex;
  align-items: center;
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 0.85rem;
}

.type-badge.carrier {
  background: linear-gradient(135deg, #10b981, #34d399);
  color: white;
  box-shadow: 0 2px 4px -1px rgba(16, 185, 129, 0.3);
}

.type-badge.client {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  color: white;
  box-shadow: 0 2px 4px -1px rgba(59, 130, 246, 0.3);
}

.profile-actions {
  text-align: right;
}

.action-btn {
  display: inline-flex;
  align-items: center;
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: 600;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.action-btn.primary {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.action-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(99, 102, 241, 0.3);
  color: white;
  background: rgba(255, 255, 255, 0.3);
}

.profile-card-body {
  padding: var(--spacing-2xl);
}

.info-section {
  margin-bottom: var(--spacing-2xl);
}

.info-section:last-child {
  margin-bottom: 0;
}

.info-section-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 var(--spacing-lg) 0;
  padding-bottom: var(--spacing-sm);
  border-bottom: 2px solid #f1f5f9;
}

.info-grid {
  display: grid;
  gap: var(--spacing-lg);
}

.info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-lg);
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  transition: all var(--transition);
}

.info-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px -4px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #6366f1;
}

.info-label {
  display: flex;
  align-items: center;
  color: #64748b;
  font-weight: 600;
  font-size: 0.95rem;
}

.info-value {
  color: #1a1a1a;
  font-weight: 600;
  font-size: 1rem;
}

.security-actions {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.security-btn {
  display: flex;
  align-items: center;
  padding: var(--spacing-lg);
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.security-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px -4px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.security-btn-content {
  margin-left: var(--spacing-md);
}

.security-btn-title {
  display: block;
  font-weight: 600;
  color: #1a1a1a;
  font-size: 1rem;
}

.security-btn-desc {
  display: block;
  color: #64748b;
  font-size: 0.85rem;
  margin-top: var(--spacing-xs);
}

.sidebar-card {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  margin-bottom: var(--spacing-xl);
  transition: all var(--transition);
  position: relative;
}

.sidebar-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.sidebar-header {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  color: #1a1a1a;
  padding: var(--spacing-lg) var(--spacing-xl);
  border-bottom: 1px solid #e2e8f0;
  position: relative;
}

.sidebar-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
}

.sidebar-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}

.sidebar-body {
  padding: var(--spacing-xl);
}

.quick-actions {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.quick-action-btn {
  display: flex;
  align-items: center;
  padding: var(--spacing-lg);
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.quick-action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px -4px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.quick-action-btn.primary {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
  border: none;
}

.quick-action-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(99, 102, 241, 0.3);
  color: white;
}

.quick-action-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.quick-action-btn:not(.primary) .quick-action-icon {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
}

.quick-action-btn.primary .quick-action-icon {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.quick-action-content {
  margin-left: var(--spacing-md);
  flex: 1;
}

.quick-action-title {
  display: block;
  font-weight: 600;
  color: #1a1a1a;
  font-size: 1rem;
}

.quick-action-btn.primary .quick-action-title {
  color: white;
}

.quick-action-desc {
  display: block;
  color: #64748b;
  font-size: 0.85rem;
  margin-top: var(--spacing-xs);
}

.quick-action-btn.primary .quick-action-desc {
  color: rgba(255, 255, 255, 0.8);
}

.activity-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-md) 0;
  border-bottom: 1px solid #f1f5f9;
}

.activity-item:last-child {
  border-bottom: none;
}

.activity-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.activity-content {
  flex: 1;
}

.activity-title {
  display: block;
  font-weight: 600;
  color: #1a1a1a;
  font-size: 0.95rem;
}

.activity-time {
  display: block;
  color: #64748b;
  font-size: 0.8rem;
  margin-top: var(--spacing-xs);
}

/* Адаптивность для страницы профиля */
@media (max-width: 992px) {
  .profile-header-content {
    flex-direction: column;
    text-align: center;
    gap: var(--spacing-lg);
  }
  
  .profile-actions {
    text-align: center;
  }
  
  .info-item {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-sm);
  }
  
  .info-value {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .profile-hero {
    padding: var(--spacing-2xl) 0;
  }
  
  .profile-content {
    padding: var(--spacing-2xl) 0;
  }
  
  .profile-card-header,
  .profile-card-body,
  .sidebar-header,
  .sidebar-body {
    padding: var(--spacing-lg);
  }
  
  .avatar-circle.large {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .profile-name {
    font-size: 1.4rem;
  }
}

/* Стили для страницы тарифов */
.tariffs-hero {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
  padding: var(--spacing-3xl) 0;
  text-align: center;
}

.tariffs-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.tariffs-hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: var(--spacing-xl);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tariffs-hero-description {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 0;
}

.tariffs-section {
  padding: var(--spacing-3xl) 0;
  background: #f8fafc;
}

.tariff-card {
  background: white;
  border-radius: var(--radius-2xl);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.tariff-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

.tariff-card.featured {
  border: 2px solid #6366f1;
  position: relative;
}

.tariff-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
}

.tariff-header {
  padding: var(--spacing-2xl);
  text-align: center;
  border-bottom: 1px solid #e2e8f0;
  position: relative;
}

.tariff-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: var(--radius-lg);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: var(--spacing-lg);
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: white;
}

.tariff-badge i {
  font-size: 0.9rem;
}

.tariff-badge.recommended {
  background: linear-gradient(135deg, #10b981, #059669);
}

.tariff-badge.premium {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.tariff-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin: var(--spacing-lg) 0;
  color: #1e293b;
}

.tariff-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: var(--spacing-xs);
  margin: var(--spacing-lg) 0;
}

.price-amount {
  font-size: 3rem;
  font-weight: 800;
  color: #6366f1;
  line-height: 1;
}

.price-currency {
  font-size: 1.2rem;
  color: #64748b;
  font-weight: 600;
}

.tariff-description {
  color: #64748b;
  font-size: 1rem;
  margin: var(--spacing-lg) 0 0 0;
  line-height: 1.5;
}

.tariff-body {
  padding: var(--spacing-2xl);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tariff-features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--spacing-2xl) 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-sm) 0;
  color: #1e293b;
  font-size: 0.95rem;
  transition: all var(--transition);
}

.feature-item.disabled {
  opacity: 0.5;
  color: #94a3b8;
}

.feature-icon {
  color: #10b981;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-item.disabled .feature-icon {
  color: #ef4444;
}

.tariff-button {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
  text-decoration: none;
  padding: var(--spacing-lg) var(--spacing-2xl);
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  margin-top: auto;
  border: none;
  cursor: pointer;
}

.tariff-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(99, 102, 241, 0.3);
  color: white;
}

.tariff-button.primary {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.tariff-button.primary:hover {
  box-shadow: 0 10px 20px -5px rgba(16, 185, 129, 0.3);
}

.services-section {
  padding: var(--spacing-3xl) 0;
  background: white;
}

.services-card {
  background: white;
  border-radius: var(--radius-2xl);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
  overflow: hidden;
}

.services-header {
  background: linear-gradient(135deg, #64748b 0%, #475569 100%);
  color: white;
  padding: var(--spacing-2xl);
  text-align: center;
}

.services-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 var(--spacing-md) 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-description {
  opacity: 0.9;
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}

.services-body {
  padding: var(--spacing-2xl);
}

.service-category {
  margin-bottom: var(--spacing-xl);
}

.category-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 var(--spacing-lg) 0;
  display: flex;
  align-items: center;
  padding-bottom: var(--spacing-sm);
  border-bottom: 2px solid #f1f5f9;
}

.category-title i {
  color: #6366f1;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md);
  background: #f8fafc;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  transition: all var(--transition);
}

.service-item:hover {
  background: #f1f5f9;
  transform: translateX(5px);
}

.service-name {
  color: #1e293b;
  font-weight: 500;
  font-size: 0.95rem;
}

.service-price {
  color: #6366f1;
  font-weight: 700;
  font-size: 0.9rem;
  background: white;
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-md);
  border: 1px solid #e2e8f0;
}

/* Адаптивность для страницы тарифов */
@media (max-width: 992px) {
  .tariffs-hero {
    padding: var(--spacing-2xl) 0;
  }
  
  .tariffs-section {
    padding: var(--spacing-2xl) 0;
  }
  
  .services-section {
    padding: var(--spacing-2xl) 0;
  }
  
  .tariff-header {
    padding: var(--spacing-xl);
  }
  
  .tariff-body {
    padding: var(--spacing-xl);
  }
  
  .price-amount {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .tariffs-hero {
    padding: var(--spacing-xl) 0;
  }
  
  .tariffs-section {
    padding: var(--spacing-xl) 0;
  }
  
  .services-section {
    padding: var(--spacing-xl) 0;
  }
  
  .tariff-header {
    padding: var(--spacing-lg);
  }
  
  .tariff-body {
    padding: var(--spacing-lg);
  }
  
  .services-header {
    padding: var(--spacing-lg);
  }
  
  .services-body {
    padding: var(--spacing-lg);
  }
  
  .price-amount {
    font-size: 2rem;
  }
  
  .tariff-title {
    font-size: 1.5rem;
  }
  
  .service-item {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-sm);
  }
  
  .service-price {
    align-self: flex-end;
  }
}

/* Стили для страницы контактов */
.contacts-hero {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
  padding: var(--spacing-3xl) 0;
  text-align: center;
}

.contacts-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.contacts-hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: var(--spacing-xl);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contacts-hero-description {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 0;
}

.contact-section {
  padding: var(--spacing-3xl) 0;
  background: #f8fafc;
}

.contact-card {
  background: white;
  border-radius: var(--radius-2xl);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  height: 100%;
}

.contact-card-header {
  background: linear-gradient(135deg, #64748b 0%, #475569 100%);
  color: white;
  padding: var(--spacing-2xl);
  text-align: center;
}

.contact-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 var(--spacing-md) 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card-description {
  opacity: 0.9;
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}

.contact-card-body {
  padding: var(--spacing-2xl);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-weight: 600;
  color: #1e293b;
  margin-bottom: var(--spacing-sm);
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}

.form-label i {
  color: #6366f1;
  font-size: 0.9rem;
  margin-right: var(--spacing-xs);
}

.form-control {
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  font-size: 1rem;
  transition: all var(--transition);
  background: white;
}

.form-control:focus {
  outline: none;
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-control::placeholder {
  color: #94a3b8;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
}

.form-check-input {
  margin-top: 0.2rem;
  border-color: #e2e8f0;
}

.form-check-input:checked {
  background-color: #6366f1;
  border-color: #6366f1;
}

.form-check-label {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.4;
}

.privacy-link {
  color: #6366f1;
  text-decoration: none;
  font-weight: 600;
}

.privacy-link:hover {
  text-decoration: underline;
}

.contact-submit-btn {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
  border: none;
  padding: var(--spacing-lg) var(--spacing-2xl);
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--spacing-md);
}

.contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(99, 102, 241, 0.3);
  color: white;
}

.contact-info-card {
  background: white;
  border-radius: var(--radius-2xl);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  margin-bottom: var(--spacing-xl);
}

.contact-info-header {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: var(--spacing-xl);
  text-align: center;
}

.contact-info-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-body {
  padding: var(--spacing-xl);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  width: 50px;
  height: 50px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 1.3rem;
  color: #6366f1;
}

.contact-details {
  flex: 1;
}

.contact-label {
  font-size: 1rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 var(--spacing-sm) 0;
}

.contact-value {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.contact-value a {
  color: #6366f1;
  text-decoration: none;
  font-weight: 500;
  transition: all var(--transition);
}

.contact-value a:hover {
  color: #4f46e5;
  text-decoration: underline;
}

.contact-value p {
  color: #64748b;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
}

.social-card {
  background: white;
  border-radius: var(--radius-2xl);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.social-header {
  background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
  color: white;
  padding: var(--spacing-lg);
  text-align: center;
}

.social-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-body {
  padding: var(--spacing-lg);
}

.social-description {
  color: #64748b;
  text-align: center;
  margin: 0 0 var(--spacing-lg) 0;
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
}

.social-link {
  width: 45px;
  height: 45px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all var(--transition);
  color: white;
  font-size: 1.2rem;
}

.social-link.telegram {
  background: linear-gradient(135deg, #0088cc, #006699);
}

.social-link.whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.social-link.facebook {
  background: linear-gradient(135deg, #1877f2, #0c63d4);
}

.social-link.instagram {
  background: linear-gradient(135deg, #e4405f, #c13584);
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.3);
}

.map-section {
  padding: var(--spacing-3xl) 0;
  background: white;
}

.map-card {
  background: white;
  border-radius: var(--radius-2xl);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.map-header {
  background: linear-gradient(135deg, #64748b 0%, #475569 100%);
  color: white;
  padding: var(--spacing-2xl);
  text-align: center;
}

.map-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 var(--spacing-md) 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-description {
  opacity: 0.9;
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}

.map-body {
  padding: var(--spacing-2xl);
}

.map-placeholder {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border: 2px dashed #cbd5e1;
  border-radius: var(--radius-xl);
  padding: var(--spacing-3xl);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-lg);
}

.map-icon {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.map-icon i {
  font-size: 2.5rem;
  color: #64748b;
}

.map-text {
  color: #64748b;
  font-size: 1.1rem;
  margin: 0;
  font-weight: 500;
}

.map-btn {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border: none;
  padding: var(--spacing-md) var(--spacing-xl);
  border-radius: var(--radius-lg);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.map-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(16, 185, 129, 0.3);
  color: white;
}

/* Адаптивность для страницы контактов */
@media (max-width: 992px) {
  .contacts-hero {
    padding: var(--spacing-2xl) 0;
  }
  
  .contact-section {
    padding: var(--spacing-2xl) 0;
  }
  
  .map-section {
    padding: var(--spacing-2xl) 0;
  }
  
  .contact-card-header {
    padding: var(--spacing-xl);
  }
  
  .contact-card-body {
    padding: var(--spacing-xl);
  }
  
  .contact-info-header {
    padding: var(--spacing-lg);
  }
  
  .contact-info-body {
    padding: var(--spacing-lg);
  }
}

@media (max-width: 768px) {
  .contacts-hero {
    padding: var(--spacing-xl) 0;
  }
  
  .contact-section {
    padding: var(--spacing-xl) 0;
  }
  
  .map-section {
    padding: var(--spacing-xl) 0;
  }
  
  .contact-card-header {
    padding: var(--spacing-lg);
  }
  
  .contact-card-body {
    padding: var(--spacing-lg);
  }
  
  .contact-info-header {
    padding: var(--spacing-md);
  }
  
  .contact-info-body {
    padding: var(--spacing-md);
  }
  
  .map-header {
    padding: var(--spacing-lg);
  }
  
  .map-body {
    padding: var(--spacing-lg);
  }
  
  .contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .social-links {
    flex-wrap: wrap;
  }
}

/* Стили для страницы оформления заказа - Новая современная версия */
.order-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.order-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.order-hero .container {
  position: relative;
  z-index: 1;
}

.order-hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.order-hero-title {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.order-hero-description {
  font-size: clamp(1.2rem, 3vw, 1.4rem);
  line-height: 1.7;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

.order-hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.order-hero-stat {
  text-align: center;
}

.order-hero-stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  display: block;
}

.order-hero-stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.25rem;
}

.order-form-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
}

.order-form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.3), transparent);
}

.order-form-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.order-form-progress {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
  position: relative;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.order-form-progress::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 2px;
  background: #e2e8f0;
  z-index: 0;
}

.order-form-progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  background: transparent;
  padding: 0 1rem;
}

.order-form-progress-step-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.order-form-progress-step.active .order-form-progress-step-icon {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 8px 16px -4px rgba(102, 126, 234, 0.4);
}

.order-form-progress-step.completed .order-form-progress-step-icon {
  background: #10b981;
  color: white;
}

.order-form-progress-step-label {
  font-size: 0.85rem;
  color: #64748b;
  text-align: center;
  font-weight: 500;
}

.order-form-progress-step.active .order-form-progress-step-label {
  color: #667eea;
  font-weight: 600;
}

.order-form-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid rgba(102, 126, 234, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.order-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2);
}

.order-form-header {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  color: #1e293b;
  padding: 2.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.order-form-title {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 0.75rem 0;
  color: #1e293b;
  letter-spacing: -0.01em;
}

.order-form-description {
  font-size: 1.1rem;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

.order-form-body {
  padding: 3rem;
}

.order-form {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.form-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.form-section:hover::before {
  opacity: 1;
}

.form-section:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -8px rgba(102, 126, 234, 0.15);
  border-color: rgba(102, 126, 234, 0.2);
}

.form-section-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 1.5rem 0;
  display: flex;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e2e8f0;
  letter-spacing: -0.01em;
}

.form-section-title i {
  color: #667eea;
  margin-right: 0.75rem;
  font-size: 1.3rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group:last-child {
  margin-bottom: 0;
}

.form-label {
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.form-label i {
  color: #667eea;
  font-size: 0.9rem;
  margin-right: 0.5rem;
}

.form-control {
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
  width: 100%;
  font-family: inherit;
}

.form-control:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
  background: rgba(255, 255, 255, 1);
  transform: translateY(-1px);
}

.form-control::placeholder {
  color: #9ca3af;
  font-style: italic;
}

.error-message {
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(239, 68, 68, 0.05);
  padding: 0.5rem;
  border-radius: 8px;
  border: 1px solid rgba(239, 68, 68, 0.1);
  animation: shake 0.5s ease-in-out;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.info-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.info-card:hover::before {
  opacity: 1;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -8px rgba(102, 126, 234, 0.15);
  border-color: rgba(102, 126, 234, 0.2);
}

.info-card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  font-size: 1.3rem;
  box-shadow: 0 8px 16px -4px rgba(102, 126, 234, 0.3);
  transition: all 0.3s ease;
}

.info-card:hover .info-card-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 20px -4px rgba(102, 126, 234, 0.4);
}

.info-card-content {
  flex: 1;
}

.info-card-content h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.01em;
}

.info-card-content p {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

.form-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding: 2.5rem 0 0 0;
  border-top: 1px solid #e2e8f0;
  margin-top: 2.5rem;
}

.order-submit-btn {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border: none;
  padding: 1rem 3rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 16px -4px rgba(16, 185, 129, 0.3);
}

.order-submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.order-submit-btn:hover::before {
  left: 100%;
}

.order-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(16, 185, 129, 0.4);
  color: white;
}

.order-cancel-btn {
  background: linear-gradient(135deg, #64748b 0%, #475569 100%);
  color: white;
  border: none;
  padding: 1rem 3rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 16px -4px rgba(100, 116, 139, 0.3);
}

.order-cancel-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.order-cancel-btn:hover::before {
  left: 100%;
}

.order-cancel-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(100, 116, 139, 0.4);
  color: white;
}

.help-section {
  padding: 4rem 0;
  background: white;
  position: relative;
}

.help-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
}

.help-container {
  max-width: 900px;
  margin: 0 auto;
}

.help-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 20px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid rgba(102, 126, 234, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.help-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f59e0b, #f97316);
}

.help-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.help-header {
  background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
  color: white;
  padding: 2rem;
  text-align: center;
  position: relative;
}

.help-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f59e0b, #f97316);
}

.help-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.01em;
}

.help-body {
  padding: 3rem;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.help-item {
  text-align: center;
  padding: 2rem;
  border-radius: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid #e2e8f0;
}

.help-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f59e0b, #f97316);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.help-item:hover::before {
  opacity: 1;
}

.help-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -8px rgba(245, 158, 11, 0.15);
  border-color: rgba(245, 158, 11, 0.2);
}

.help-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 8px 16px -4px rgba(245, 158, 11, 0.3);
  transition: all 0.3s ease;
}

.help-item:hover .help-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 20px -4px rgba(245, 158, 11, 0.4);
}

.help-item h5 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 0.75rem 0;
  letter-spacing: -0.01em;
}

.help-item p {
  color: #64748b;
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

/* Адаптивность для страницы оформления заказа */
@media (max-width: 1024px) {
  .order-hero {
    padding: 3rem 0;
  }
  
  .order-form-section {
    padding: 3rem 0;
  }
  
  .help-section {
    padding: 3rem 0;
  }
  
  .order-form-body,
  .help-body {
    padding: 2rem;
  }
  
  .form-section {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .order-hero {
    padding: 2rem 0;
  }
  
  .order-form-section {
    padding: 2rem 0;
  }
  
  .help-section {
    padding: 2rem 0;
  }
  
  .order-hero-title {
    font-size: 2rem;
  }
  
  .order-hero-stats {
    gap: 2rem;
  }
  
  .order-form-progress {
    margin-bottom: 2rem;
  }
  
  .order-form-header,
  .order-form-body,
  .help-header,
  .help-body {
    padding: 1.5rem;
  }
  
  .form-section {
    padding: 1rem;
  }
  
  .form-actions {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .order-submit-btn,
  .order-cancel-btn {
    width: 100%;
    max-width: 300px;
    padding: 0.875rem 2rem;
  }
  
  .info-cards {
    grid-template-columns: 1fr;
  }
  
  .help-grid {
    grid-template-columns: 1fr;
  }
  
  .order-hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .order-form-progress-step {
    padding: 0 0.5rem;
  }
  
  .order-form-progress-step-label {
    font-size: 0.75rem;
  }
  
  .order-form-title,
  .help-title {
    font-size: 1.5rem;
  }
  
  .form-section-title {
    font-size: 1.2rem;
  }
}
