.container-card {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.hero-section {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 30px;
  margin-bottom: 40px;
  align-items: start;
}

.hero-text {
  font-size: 1.1rem;
  line-height: 1.7;
  text-align: justify;
}

.hero-image {
  text-align: center;
}

.hero-image img {
  width: 100%;
  max-width: 320px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.hero-image img:hover {
  transform: translateY(-5px);
}

/* Блок заказа */
.order-block {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  margin: 30px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.order-title {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.phone-numbers {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  margin: 10px 0;
}

/* Блок экономии */
.savings-hero {
  background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%);
  padding: 30px;
  border-radius: 15px;
  margin: 30px 0;
  border-left: 5px solid #28a745;
  position: relative;
  overflow: hidden;
}

.savings-hero::before {
  content: "💰";
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 8rem;
  opacity: 0.1;
  z-index: 1;
}

.savings-content {
  position: relative;
  z-index: 2;
}

.price-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.price-card {
  background: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  border: 2px solid #28a745;
}

.price-card.featured {
  background: rgba(40, 167, 69, 0.1);
  border-color: #20c997;
  transform: scale(1.05);
}

.airport-name {
  font-size: 1.2rem;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 10px;
}

.price-from {
  font-size: 2rem;
  font-weight: bold;
  color: #28a745;
  margin: 10px 0;
}

/* Флот */
.fleet-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 30px;
  border-radius: 15px;
  margin: 30px 0;
  border-left: 5px solid #28a745;
}

.fleet-info {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
  border-top: 4px solid #28a745;
}

.fleet-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: rgba(40, 167, 69, 0.05);
  border-radius: 8px;
}

.feature-item::before {
  content: "✓";
  color: #28a745;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Тарифные таблицы */
.tariff-section {
  margin: 40px 0;
}

.tariff-tabs {
  margin: 30px 0;
}

.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  justify-content: center;
}

.tab-btn {
  background: #e9ecef;
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.tab-btn.active {
  background: #28a745;
  color: white;
  font-weight: bold;
}

.tab-btn:hover {
  background: #28a745;
  color: white;
  transform: translateY(-2px);
}

.tab-content {
  display: none;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.tab-content.active {
  display: block;
}

.tariff-table {
  width: 100%;
  border-collapse: collapse;
}

.tariff-table th {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
  padding: 15px;
  text-align: center;
  font-weight: bold;
  font-size: 1rem;
}

.tariff-table td {
  padding: 12px 15px;
  text-align: center;
  border-bottom: 1px solid #dee2e6;
  font-weight: 500;
}

.tariff-table tbody tr:nth-child(even) {
  background: #f8f9fa;
}

.tariff-table tbody tr:hover {
  background: #e8f5e8;
  transform: scale(1.01);
  transition: all 0.2s ease;
  cursor: pointer;
}

.tariff-table .district-cell {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
  font-weight: bold;
}

.price-cell {
  color: #2c3e50;
  font-weight: bold;
  font-size: 1.1rem;
}

.price-cell::after {
  content: "₽";
  color: #666;
  font-size: 0.9rem;
}

/* Выделение Внуково */
.vnukovo-highlight {
  background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%) !important;
  border-left: 4px solid #28a745;
}

.vnukovo-price {
  color: #28a745 !important;
  font-weight: bold;
  font-size: 1.2rem;
}

.vnukovo-header {
  background: linear-gradient(135deg, #20c997 0%, #17a2b8 100%) !important;
}

/* Дополнительные услуги */
.additional-services {
  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
  padding: 25px;
  border-radius: 15px;
  margin: 30px 0;
  border-left: 5px solid #28a745;
}

.services-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.services-list li {
  background: rgba(255, 255, 255, 0.8);
  padding: 12px 15px;
  border-radius: 8px;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.services-list li::before {
  content: "•";
  color: #28a745;
  font-weight: bold;
  font-size: 1.5rem;
}

.services-list li:hover {
  background: rgba(255, 255, 255, 0.95);
}

/* Преимущества */
.advantages-section {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  padding: 30px;
  border-radius: 15px;
  margin: 40px 0;
}

.advantages-section h2 {
  color: #28a745;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 25px 0;
}

.advantage-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.advantage-card h4 {
  color: #28a745;
  margin-bottom: 15px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.advantage-card ul {
  list-style: none;
}

.advantage-card li {
  margin: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.advantage-card li::before {
  content: "✓";
  color: #28a745;
  font-weight: bold;
}

/* Кнопка заказа */
.order-button {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 25px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
  text-decoration: none;
  display: inline-block;
}

.order-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.6);
}

/* Мобильная адаптация */
@media (max-width: 768px) {
  .container {
    padding: 10px;
  }

  h1 {
    font-size: 2rem;
  }

  .hero-section {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .phone-numbers {
    font-size: 1.4rem;
  }

  .price-highlights {
    grid-template-columns: 1fr;
  }

  .tariff-table {
    font-size: 0.9rem;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
  }
}

.advantages-section p {
  color: #fff;
}

