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

/* Заголовки */
.page-header {
  background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
  color: #333;
  padding: 70px 0;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="airports" patternUnits="userSpaceOnUse" width="35" height="35"><text x="10" y="15" text-anchor="middle" font-size="12" fill="rgba(0,0,0,0.04)">✈️</text><text x="25" y="30" text-anchor="middle" font-size="12" fill="rgba(0,0,0,0.04)">🚐</text></pattern></defs><rect width="100" height="100" fill="url(%23airports)"/></svg>');
  opacity: 0.3;
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.page-subtitle {
  font-size: 1.4rem;
  opacity: 0.9;
  font-weight: 400;
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  border-radius: 25px;
  display: inline-block;
}

/* Введение */
.intro-section {
  background: white;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 50px;
  position: relative;
}

.intro-section::before {
  content: "🚐";
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 4rem;
  opacity: 0.1;
}

.intro-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 25px;
}

.intro-highlight {
  background: linear-gradient(135deg, #e8f5e8, #c8e6c9);
  padding: 30px;
  border-radius: 15px;
  border-left: 5px solid #28a745;
  margin: 30px 0;
  text-align: center;
}

.intro-highlight p {
  margin: 0;
  color: #2e7d32;
  font-size: 1.2rem;
  font-weight: 600;
}

/* Статистика */
.stats-section {
  background: white;
  padding: 40px;
  border-radius: 20px;
  margin: 50px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-item {
  padding: 20px;
  position: relative;
}

.stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #ffd700, #ffa500);
  border-radius: 2px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffd700;
  display: block;
  margin: 15px 0 10px;
}

.stat-label {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Преимущества */
.advantages-section {
  margin: 50px 0;
}

.section-title {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 40px;
  color: #333;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #ffd700, #ffa500);
  border-radius: 2px;
}

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

.advantage-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #ffd700;
  position: relative;
  overflow: hidden;
}

.advantage-card::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 215, 0, 0.1),
    transparent
  );
  transform: rotate(45deg);
  transition: all 0.6s ease;
}

.advantage-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.advantage-card:hover::before {
  top: -50%;
  left: -50%;
}

.advantage-icon {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #ffd700;
  position: relative;
  z-index: 1;
  text-align: center;
  display: block;
}

.advantage-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #333;
  position: relative;
  z-index: 1;
  text-align: center;
}

.advantage-text {
  color: #666;
  line-height: 1.7;
  position: relative;
  z-index: 1;
  text-align: left;
}

/* Сравнение */
.comparison-section {
  margin: 60px 0;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.comparison-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
}

.comparison-card.winner {
  border: 3px solid #28a745;
  transform: scale(1.05);
}

.comparison-card.winner::before {
  content: "ВЫГОДНЕЕ";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #28a745;
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.8rem;
}

.comparison-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.comparison-card.winner .comparison-icon {
  color: #28a745;
}

.comparison-card:not(.winner) .comparison-icon {
  color: #6c757d;
}

.comparison-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #333;
}

.comparison-price {
  font-size: 2rem;
  font-weight: 700;
  margin: 15px 0;
}

.comparison-card.winner .comparison-price {
  color: #28a745;
}

.comparison-card:not(.winner) .comparison-price {
  color: #dc3545;
}

.comparison-features {
  list-style: none;
  padding: 0;
  color: #666;
  text-align: left;
}

.comparison-features li {
  padding: 5px 0;
  position: relative;
  padding-left: 20px;
}

.comparison-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
}

.comparison-card:not(.winner) .comparison-features li::before {
  content: "✗";
  color: #dc3545;
}

/* Блок заказа */
.order-section {
  text-align: center;
  padding: 60px 0;
  background: linear-gradient(135deg, #fff3cd, #ffeaa7);
  border-radius: 20px;
  margin: 50px 0;
  position: relative;
  overflow: hidden;
}

.order-section::before {
  content: "📞";
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 3rem;
  opacity: 0.2;
}

.order-title {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
}

.order-subtitle {
  color: #666;
  margin-bottom: 30px;
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.order-button {
  background: linear-gradient(135deg, #ffd700, #ffa500);
  color: #333;
  border: none;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  margin: 10px;
}

.order-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  color: #333;
}

.phone-number {
  display: block;
  font-size: 1.4rem;
  color: #dc3545;
  font-weight: 700;
  margin-top: 20px;
  text-decoration: none;
}

.phone-number:hover {
  color: #c82333;
}

/* Мобильная адаптивность */
@media (max-width: 768px) {
  .page-title {
    font-size: 2.2rem;
  }

  .page-subtitle {
    font-size: 1.1rem;
  }

  .intro-section {
    padding: 30px 25px;
  }

  .advantages-grid,
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .comparison-card.winner {
    transform: none;
  }

  .container-page {
    padding: 0 15px;
  }
}
