/* VízMester 24 - Plumber Service Style */
:root {
  /* Водная цветовая палитра - отличная от садовой */
  --primary-water: #0077BE;
  /* Глубокий синий */
  --secondary-azure: #4A90E2;
  /* Лазурный */
  --accent-orange: #FF6B35;
  /* Оранжевый акцент */
  --emergency-red: #DC3545;
  /* Красный для экстренных случаев */
  --success-green: #28A745;
  /* Зеленый для успеха */
  --dark-navy: #1B2951;
  /* Темно-синий */
  --light-sky: #E8F4FD;
  /* Светло-голубой фон */
  --steel-gray: #4A5568;
  /* Стальной серый */
  --white: #FFFFFF;
  --text-dark: #2D3748;
  --text-light: #718096;
  --border-light: #E2E8F0;

  /* Тени */
  --shadow-sm: 0 2px 4px rgba(0, 119, 190, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 119, 190, 0.15);
  --shadow-lg: 0 8px 24px rgba(0, 119, 190, 0.2);
  --shadow-emergency: 0 4px 20px rgba(220, 53, 69, 0.3);

  /* Радиусы */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 50px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
}

/* Header с экстренной кнопкой */
.site-header {
  background: linear-gradient(135deg, var(--dark-navy) 0%, var(--primary-water) 100%);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-icon {
  width: 50px;
  height: 50px;
}

.logo-text .logo-title {
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.logo-text .logo-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  margin: 0;
}

.blog-link {
  background: var(--emergency-red);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.blog-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-emergency);
}

/* Hero секция с водной тематикой */
.garden-hero {
  background: linear-gradient(135deg, var(--light-sky) 0%, #B8E1FF 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.garden-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(74, 144, 226, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

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

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

.hero-text h1 {
  font-size: 48px;
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 20px;
  line-height: 1.1;
}

.subtitle {
  font-size: 22px;
  color: var(--primary-water);
  font-weight: 600;
  margin-bottom: 15px;
}

.hero-text p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.7;
}

/* Trust badges с водной тематикой */
.trust-badges {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border-light);
  transition: all 0.3s ease;
}

.trust-badge:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-water);
}

.trust-badge-icon {
  font-size: 24px;
  color: var(--primary-water);
}

.trust-badge-text {
  font-weight: 600;
  color: var(--text-dark);
}

/* CTA кнопки */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.cta-button:first-of-type {
  background: linear-gradient(135deg, var(--primary-water), var(--secondary-azure));
  color: var(--white);
}

.cta-button:first-of-type:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.cta-button svg {
  width: 20px;
  height: 20px;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Секция с ценами - водная тематика */
.modern-pricing-section {
  padding: 80px 0;
  background: var(--white);
}

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

.section-title {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  color: var(--dark-navy);
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 18px;
  text-align: center;
  color: var(--text-light);
  margin-bottom: 50px;
}

/* Pricing Hero Card */
.pricing-hero-card {
  background: linear-gradient(135deg, var(--primary-water), var(--secondary-azure));
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 50px;
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

.pricing-hero-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
}

.pricing-hero-title {
  font-size: 28px;
  margin-bottom: 20px;
}

.highlight-badge {
  background: var(--accent-orange);
  padding: 5px 15px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 10px;
  animation: glow 2s ease-in-out infinite;
}

@keyframes glow {

  0%,
  100% {
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
  }

  50% {
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.8);
  }
}

.pricing-hero-description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.95;
}

.pricing-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.benefit-icon {
  color: var(--accent-orange);
  font-size: 20px;
}

.pricing-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.price-showcase {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.price-label {
  font-size: 18px;
  margin-bottom: 10px;
  opacity: 0.9;
}

.price-value {
  font-size: 48px;
  font-weight: 700;
  margin: 10px 0;
}

.price-currency {
  font-size: 32px;
  vertical-align: super;
}

.price-number {
  font-size: 64px;
}

.price-tag {
  background: var(--accent-orange);
  padding: 5px 15px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  margin-top: 10px;
}

/* Pricing Grid */
.modern-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.modern-price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid var(--border-light);
}

.modern-price-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-water);
}

.modern-price-card.featured {
  border-color: var(--accent-orange);
  transform: scale(1.05);
}

.price-card-header {
  background: linear-gradient(135deg, var(--light-sky), #B8E1FF);
  padding: 30px;
  text-align: center;
}

.price-icon {
  margin-bottom: 15px;
}

.price-icon svg {
  fill: var(--primary-water);
}

.price-card-header h3 {
  font-size: 24px;
  color: var(--dark-navy);
  margin-bottom: 10px;
}

.price-description {
  color: var(--text-light);
  font-size: 14px;
}

.price-card-body {
  padding: 30px;
}

.price-display {
  text-align: center;
  margin-bottom: 30px;
}

.from-text {
  font-size: 14px;
  color: var(--text-light);
  display: block;
  margin-bottom: 5px;
}

.price-amount {
  font-size: 42px;
  font-weight: 700;
  color: var(--dark-navy);
}

.currency {
  font-size: 24px;
  vertical-align: super;
}

.price-period {
  font-size: 16px;
  color: var(--text-light);
  font-weight: 400;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.price-features li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-features li:before {
  content: '✓';
  color: var(--success-green);
  font-weight: 700;
  font-size: 18px;
}

/* Header Navigation */
.header-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-link {
  background: var(--emergency-red);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.nav-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-emergency);
}

/* Адаптивность */
@media (max-width: 768px) {
  /* Mobile Header */
  .site-header {
    padding: 10px 0;
  }

  .header-container {
    gap: 10px;
    padding: 0 15px;
  }

  .logo-section {
    flex: 1;
  }

  .logo-icon {
    width: 35px;
    height: 35px;
  }

  .logo-text .logo-title {
    font-size: 18px;
  }

  .logo-text .logo-subtitle {
    font-size: 11px;
    white-space: nowrap;
  }

  .header-nav {
    gap: 8px;
    flex-shrink: 0;
  }

  .nav-link {
    padding: 8px 12px;
    font-size: 13px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .subtitle {
    font-size: 18px;
  }

  .pricing-hero-content {
    grid-template-columns: 1fr;
  }

  .pricing-benefits {
    grid-template-columns: 1fr;
  }

  .modern-pricing-grid {
    grid-template-columns: 1fr;
  }

  .modern-price-card.featured {
    transform: scale(1);
  }
}

@media (max-width: 375px) {
  .logo-icon {
    width: 30px;
    height: 30px;
  }

  .logo-text .logo-title {
    font-size: 16px;
  }

  .logo-text .logo-subtitle {
    font-size: 10px;
  }

  .header-nav {
    gap: 5px;
  }

  .nav-link {
    padding: 6px 10px;
    font-size: 12px;
  }
}