    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
	
	@font-face {
	  font-family: 'Rosarium';
	  src: url('fonts/Rosarium.woff2') format('woff2');
	  font-weight: 400;
	  font-style: normal;
	  font-display: swap;
	}
	
    :root {
      --bg: #f2f5f9;
      --surface: #ffffff;
      --glass: rgba(255, 255, 255, 0.70);
      --text-primary: #0b1a33;
      --text-secondary: #2c3e5c;
      --text-muted: #6a7f9f;
      --accent: #0066ff;
      --accent-soft: #d9e9ff;
      --accent-hover: #0047cc;
      --border-light: #e7edf4;
	  --border: #e2e8f0;
      --shadow-lg: 0 20px 40px -12px rgba(0, 40, 80, 0.12);
      --shadow-xl: 0 30px 60px -18px rgba(0, 40, 80, 0.18);
      --radius-xl: 28px;
      --radius-lg: 18px;
      --radius-md: 12px;
	  --radius: 12px;
      --transition: 0.3s cubic-bezier(0.2, 0, 0, 1);
      --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }

    body {
      font-family: var(--font);
      background-color: var(--bg);
      color: var(--text-primary);
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
    }

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

    /* ----- Кнопки ----- */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 16px 36px;
      border-radius: 60px;
      font-weight: 600;
      font-size: 16px;
      border: none;
      cursor: pointer;
      transition: all var(--transition);
      text-decoration: none;
      background: var(--surface);
      color: var(--text-primary);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    }

    .btn-primary {
      background: var(--accent);
      color: white;
      box-shadow: 0 8px 20px -8px rgba(0, 102, 255, 0.3);
	  user-select: none;
    }

    .btn-primary:hover {
      background: var(--accent-hover);
      transform: translateY(-2px);
      box-shadow: 0 14px 28px -10px rgba(0, 102, 255, 0.4);
    }

    .btn-outline {
      background: transparent;
      border: 1.5px solid var(--border-light);
      color: var(--text-primary);
    }

    .btn-outline:hover {
      border-color: var(--accent);
      background: var(--accent-soft);
      color: var(--accent);
    }

    /* ----- Шапка ----- */
    .header {
      position: sticky;
      top: 0;
      z-index: 100;
      padding: 16px 0;
      background: rgba(242, 245, 249, 0.72);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }

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

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 700;
      font-size: 17px;
	  max-width: 300px;
      letter-spacing: -0.4px;
      color: var(--text-primary);
      text-decoration: none;
    }

    .logo-icon {
      width: 60px;
		height: 60px;
		background: #ffffff;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 22px;
      box-shadow: 0 6px 14px rgba(0, 102, 255, 0.25);
    }
    .logo-icon img{
		width: 60px;
    }

    .nav {
      display: flex;
      gap: 30px;
      list-style: none;
    }

    .nav a {
      text-decoration: none;
      color: var(--text-secondary);
      font-weight: 500;
      font-size: 15px;
      transition: color var(--transition);
      position: relative;
    }

    .nav a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--accent);
      transition: width var(--transition);
    }

    .nav a:hover {
      color: var(--text-primary);
    }

    .nav a:hover::after {
      width: 100%;
    }

    .header-phone {
      font-weight: 600;
      color: var(--text-primary);
      text-decoration: none;
      font-size: 16px;
      background: var(--surface);
      padding: 10px 22px;
      border-radius: 60px;
      box-shadow: var(--shadow-lg);
      transition: all var(--transition);
	  position: relative;
      padding-left: 40px;
	  white-space: nowrap;
    }
    .header-phone svg{
        left: 15px;
		position: absolute;
    }

    .header-phone:hover {
      background: var(--accent);
      color: white;
      box-shadow: 0 8px 20px rgba(0, 102, 255, 0.2);
    }

    /* мобильное меню */
    .burger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
    }

    .burger span {
      width: 26px;
      height: 2.5px;
      background: var(--text-primary);
      border-radius: 4px;
      transition: var(--transition);
    }

    @media (max-width: 900px) {
      .nav {
        display: none;
      }
      .header-phone {
        display: none;
      }
      .burger {
        display: flex;
      }
      .mobile-menu {
        display: flex !important;
      }
    }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 0;
      right: 0;
      width: 280px;
      height: 100vh;
      background: var(--surface);
      backdrop-filter: blur(20px);
      padding: 100px 32px 40px;
      flex-direction: column;
      gap: 32px;
      box-shadow: var(--shadow-xl);
      z-index: 200;
      transform: translateX(100%);
      transition: transform 0.35s ease;
    }

    .mobile-menu.open {
      transform: translateX(0);
    }

    .mobile-menu a {
      font-size: 20px;
      font-weight: 600;
      color: var(--text-primary);
      text-decoration: none;
	  white-space: nowrap;
    }

    .overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.2);
      backdrop-filter: blur(2px);
      z-index: 150;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }

    .overlay.show {
      opacity: 1;
      pointer-events: auto;
    }

    /* ----- HERO ----- */
    .hero {
      padding: 40px 0 64px;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      right: -10%;
      top: -20%;
      width: 70%;
      height: 120%;
      //background: radial-gradient(circle at 70% 30%, rgba(0, 102, 255, 0.04), transparent 70%);
	  //background: linear-gradient(to left, rgba(0, 102, 255, 0.04), transparent 70%);
      pointer-events: none;
    }

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

    .hero-badge {
      display: inline-block;
      background: var(--accent-soft);
      color: var(--accent);
      padding: 6px 18px;
      border-radius: 60px;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.4px;
      margin-bottom: 18px;
    }

    .hero-title {
      font-size: clamp(38px, 5.5vw, 58px);
      font-weight: 700;
      letter-spacing: -1.5px;
      line-height: 1.08;
      margin-bottom: 24px;
    }

    .hero-title .highlight {
      color: var(--accent);
      position: relative;
    }

    .hero-text {
      font-size: 18px;
      color: var(--text-secondary);
      max-width: 440px;
      margin-bottom: 32px;
      line-height: 1.6;
    }

    .hero-stats {
      display: flex;
      gap: 40px;
      margin-top: 40px;
	  text-align: center;
    }

    .stat-item .number {
      font-size: 32px;
      font-weight: 700;
      color: var(--accent);
      letter-spacing: -0.5px;
    }

    .stat-item .label {
      font-size: 14px;
      color: var(--text-muted);
      font-weight: 500;
    }

    .hero-visual {
      //display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
	      margin-top: 70px;
    }

    .hero-tools {
      width: 100%;
      max-width: 480px;
      aspect-ratio: 1/1;
      background: linear-gradient(145deg, #e8effa, #d5e2f5);
      border-radius: 40px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      font-size: 90px;
      color: var(--accent);
      box-shadow: var(--shadow-xl);
      position: relative;
      border: 1px solid rgba(255, 255, 255, 0.6);
	  overflow: hidden;
    }
	
    .hero-tools img{
      height: 100%;
	  object-fit: cover;
	  width: 100%;
    }

    .hero-tools span {
      font-size: 18px;
      font-weight: 500;
      color: var(--text-secondary);
      margin-top: 12px;
    }
	
	.hero-tools-img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		border-radius: 40px; /* чтобы сохранить скругление родителя */
	}

    .floating-badge {
      position: absolute;
      background: var(--surface);
      padding: 12px 20px;
      border-radius: 60px;
      box-shadow: var(--shadow-lg);
      font-weight: 600;
      font-size: 14px;
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--text-primary);
    }

    .floating-badge i {
      color: var(--accent);
      font-size: 18px;
    }

    .badge-1 {
      top: 8%;
      right: -6%;
    }
    .badge-2 {
      bottom: 14%;
      left: -8%;
    }
	
	/* ===== СТИХОТВОРЕНИЕ В ШАПКЕ ===== */
/* Вариант 5 — С акцентной рамкой */
.hero-poem.variant-frame {
  margin: 16px 0 40px;
  padding: 18px 24px 16px 24px;
  position: relative;
  max-width: 420px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  font-family: 'Rosarium';
}


/* Акцентный уголок */
.hero-poem.variant-frame::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 30px;
  height: 30px;
  border-top: 3px solid var(--accent);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-md) 0 0 0;
  opacity: 0.4;
}

.hero-poem.variant-frame::after {
  content: '';
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 30px;
  height: 30px;
  border-bottom: 3px solid var(--accent);
  border-right: 3px solid var(--accent);
  border-radius: 0 0 var(--radius-md) 0;
  opacity: 0.4;
}

.hero-poem.variant-frame .poem-lines {
  font-size: 1.85rem;
  color: #1a71f3;
  letter-spacing: 0.02em;
}

    @media (max-width: 900px) {
        .hero-poem.variant-frame .poem-lines {
		  font-size: 1.65rem;
		}
    }
    @media (max-width: 420px) {
        .hero-poem.variant-frame .poem-lines {
		  font-size: 1.25rem;
		}
    }
    @media (max-width: 350px) {
        .hero-poem.variant-frame .poem-lines {
		  font-size: 0.96rem;
		}
    }

.hero-poem.variant-frame .poem-lines p {
  margin: 0;
  padding: 0;
}

.hero-poem.variant-frame .poem-lines p:last-of-type {
  margin-top: 2px;
}

/* Имя мастера выделено */
.hero-poem.variant-frame .poem-lines p:last-of-type {
  color: #1a71f3;
}

    @media (max-width: 860px) {
      .hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }
      .hero-tools {
        max-width: 100%;
        aspect-ratio: 4/3;
        font-size: 60px;
      }
      .badge-1,
      .badge-2 {
        display: none;
      }
    }

    /* ----- Услуги ----- */
    .section-padding {
      padding: 72px 0;
	  border-radius: var(--radius-xl);
    }

    .section-label {
      display: inline-block;
      background: var(--accent-soft);
      color: var(--accent);
      font-weight: 600;
      font-size: 13px;
      padding: 6px 20px;
      border-radius: 60px;
      letter-spacing: 0.3px;
      margin-bottom: 16px;
    }

    .section-title {
      font-size: clamp(28px, 3.8vw, 40px);
      font-weight: 700;
      letter-spacing: -0.8px;
      margin-bottom: 12px;
    }

    .section-subtitle {
      color: var(--text-secondary);
      font-size: 17px;
      margin-bottom: 30px;
    }

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

    .service-card {
      background: var(--surface);
      border-radius: var(--radius-xl);
      border: 1px solid var(--border-light);
      transition: all var(--transition);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
	  display: flex;
    }
    .service-card svg{
      width: 60px;
    }

    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-xl);
      border-color: transparent;
    }

    .service-icon {
      width: 100px;
	  height: 100%;
      background: var(--accent-soft);
      border-radius: 18px 0px 0px 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent);
      margin-bottom: 20px;
	  float: left;
	  margin-right: 20px;
	  padding-left: 15px;
	  padding-right: 15px;
    }

    .service-card span {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 8px;
	  margin-top: 20px;
	  display: block;
    }

    .service-card p {
      color: var(--text-secondary);
      font-size: 15px;
      line-height: 1.5;
	  margin-bottom: 20px;
    }

    @media (max-width: 860px) {
      .services-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 540px) {
      .services-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ----- GALLERY  ----- */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-top: 16px;
    }

    .gallery-item {
      aspect-ratio: 1/1;
      background: var(--surface);
      border-radius: var(--radius-lg);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      color: var(--accent);
      border: 1px solid var(--border-light);
      cursor: pointer;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
	  transition: transform var(--transition);
	  position: relative;
      overflow: hidden;
    }
	
	.gallery-item img {
		width: 100%;
		height: 100%;
		object-fit: cover; 
		transition: transform 0.3s ease;
	}
	.gallery-item:hover img {
		transform: scale(1.05); 
	}

    .gallery-item:hover {
      transform: scale(1.02);
      box-shadow: var(--shadow-lg);
      border-color: var(--accent);
    }

    .gallery-item span {
      font-size: 13px;
      color: var(--text-muted);
      margin-top: 8px;
    }

    @media (max-width: 700px) {
      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
	
	/* ===== Галерея слайдер ===== */
	.gallery-slider-wrapper {
		position: relative;
		overflow: hidden;
		border-radius: var(--radius-xl);
		margin-top: 16px;
		user-select: none;
	}

	.gallery-slider {
		display: flex;
		gap: 16px;
		transition: transform 0.4s ease;
		cursor: grab;
		will-change: transform;
	}

	.gallery-slider.dragging {
		cursor: grabbing;
		transition: none;
	}

	.gallery-slide-item {
    flex: 0 0 calc(100% / 3 - 11px); /* по умолчанию для 3-х колонок */
    max-width: calc(100% / 3 - 11px);
		border-radius: var(--radius-lg);
		overflow: hidden;
		aspect-ratio: 4/3;
		position: relative;
	}

	.gallery-slide-item img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: transform 0.3s ease;
	}

	.gallery-slide-item:hover img {
		transform: scale(1.05);
	}

@media (max-width: 999px) {
    .gallery-slide-item {
        flex: 0 0 calc(50% - 8px);
        max-width: calc(50% - 8px);
    }
		.gallery-slider-arrow.next {
		right: 18px;
	}
}

@media (max-width: 599px) {
    .gallery-slide-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

	.gallery-slider-arrow {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		width: 40px;
		height: 40px;
		border-radius: 50%;
		background: #ffffff;
		border: 1px solid var(--border-light);
		cursor: pointer;
		z-index: 5;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 20px;
		color: var(--text-primary);
		box-shadow: var(--shadow-lg);
		transition: all var(--transition);
	}

	.gallery-slider-arrow:hover {
		background: var(--accent);
		color: #fff;
		border-color: var(--accent);
	}

	.gallery-slider-arrow.prev {
		left: 12px;
	}
	.gallery-slider-arrow.next {
		right: 12px;
	}

	.review-slider-arrow {
		position: absolute;
		top: 41%;
		transform: translateY(-50%);
		width: 40px;
		height: 40px;
		border-radius: 50%;
		background: #0066ff0f;
		border: 1px solid var(--border-light);
		cursor: pointer;
		z-index: 5;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 20px;
		color: var(--text-primary);
		box-shadow: var(--shadow-lg);
		transition: all var(--transition);
	}

	.review-slider-arrow:hover {
		background: var(--accent);
		color: #fff;
		border-color: var(--accent);
	}

	.review-slider-arrow.prev {
		left: 6px;
	}
	.review-slider-arrow.next {
		right: 26px;
	}
	@media (max-width: 999px) {
		.review-slider-arrow.next {
			right: 18px;
		}
	}
	@media (max-width: 599px) {
		.gallery-slider-arrow {
			width: 32px;
			height: 32px;
			font-size: 16px;
		}
		.gallery-slider-arrow.prev {
			left: 6px;
		}
		.gallery-slider-arrow.next {
			right: 6px;
		}
		.review-slider-arrow.next {
			right: 6px;
		}
	}
	
	



    /* ----- (слайдер с отзывами) ----- */
    /*.reviews-slider {
      display: flex;
      gap: 24px;
      overflow-x: auto;
      padding: 8px 4px 20px;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }*/
	
	.reviews-slider-wrapper {
		position: relative;
		overflow: hidden; 
	}

	
	.reviews-slider {
		display: flex;
		gap: 24px;
		transition: transform 0.4s ease; 
		cursor: grab; 
		will-change: transform;
		margin-top: 5px;
	}

    .reviews-slider::-webkit-scrollbar {
      display: none;
    }
	
    .review-card {
      flex: 0 0 100%; /* По умолчанию для мобильных */
	  max-width: 100%;
      background: var(--surface);
      padding: 28px 50px;
      margin-bottom: 40px;
      border-radius: var(--radius-xl);
      border: 1px solid var(--border-light);
      scroll-snap-align: start;
      transition: all var(--transition);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
	  box-sizing: border-box;
    }

	.reviews-slider.dragging {
		cursor: grabbing;
		transition: none; /* При drag-перетаскивании отключаем анимацию */
	}

    .review-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
    }

    .review-stars {
      color: #fbbf24;
      font-size: 18px;
      letter-spacing: 2px;
      margin-bottom: 12px;
    }

    .review-text {
      font-size: 15px;
      color: var(--text-secondary);
      font-style: italic;
      line-height: 1.6;
    }

    .review-author {
      font-weight: 600;
      margin-top: 14px;
      font-size: 14px;
    }
	.reviews-actions{
		display: inline-flex;
		text-align: center;
		gap: 15px;	
		margin-top: 4px;
	}
	
			
	/* Для ширины экрана до 600px */
	@media (max-width: 599px) {
		.reviews-slider{
			gap: 0px;
		}
	}
	
	/* Для ширины экрана от 600px и выше — показываем по 2 карточки */
	@media (min-width: 600px) {
		.review-card {
			flex: 0 0 calc(50% - 12px); /* 50% минус половина gap */
			max-width: calc(50% - 12px);
		}
		.reviews-slider{
			gap: 12px;
		}
	}

	/* Для ширины экрана от 1000px и выше — показываем по 3 карточки */
	@media (min-width: 1000px) {
		.review-card {
			flex: 0 0 calc(33.333% - 20px); /* ~33.33% минус доля gap */
			max-width: calc(33.333% - 20px);
		}
		.reviews-slider{
			gap: 20px;
		}
	}

	
	/* ===== REVIEWS ARROWS (красивые кнопки) ===== */
.reviews-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--surface);
    border: none;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--text-primary);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
    transition: all var(--transition);
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.9);
}

.reviews-arrow:hover {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.3);
    transform: translateY(-50%) scale(1.08);
}

.reviews-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.reviews-arrow.prev {
    left: -18px;
}

.reviews-arrow.next {
    right: -18px;
}

@media (max-width: 860px) {
    .reviews-arrow {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    .reviews-arrow.prev {
        left: -12px;
    }
    .reviews-arrow.next {
        right: -12px;
    }
}

@media (max-width: 599px) {
    .reviews-arrow {
        display: none; /* Скрываем на мобильных, там работает drag */
    }
}

/* Добавляем красивый градиент на края слайдера (опционально) */
/*.reviews-slider-wrapper::before,
.reviews-slider-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}*/

.reviews-slider-wrapper::before {
    left: 0;
    background: linear-gradient(to right, rgba(242, 245, 249, 0.9), transparent);
}

.reviews-slider-wrapper::after {
    right: 0;
    background: linear-gradient(to left, rgba(242, 245, 249, 0.9), transparent);
}

.reviews-slider-wrapper:hover::before,
.reviews-slider-wrapper:hover::after {
    opacity: 1;
}

@media (max-width: 599px) {
    .reviews-slider-wrapper::before,
    .reviews-slider-wrapper::after {
        display: none;
    }
}

    /* ----- Акции  ----- */
.promo-block {
  background: linear-gradient(135deg, #0b1a33, #162b4a);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  align-items: center;
  color: white;
  box-shadow: var(--shadow-xl);
  gap: 30px;
  user-select: none;
}

@media (max-width: 1024px) {
  .promo-block {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 32px 24px;
    gap: 20px;
  }
  .promo-block .countdown {
    justify-content: center;
  }
}
    .promo-content h3 {
      font-size: 28px;
      font-weight: 700;
      letter-spacing: -0.5px;
      margin-bottom: 8px;
    }

    .promo-content p {
      color: #b6cae5;
      font-size: 16px;
    }

    .promo-timer {
      display: flex;
      gap: 16px;
      justify-content: flex-end;
    }

    .timer-unit {
      background: rgba(255, 255, 255, 0.06);
      backdrop-filter: blur(4px);
      border-radius: var(--radius-md);
      padding: 12px 16px;
      min-width: 70px;
      text-align: center;
      border: 1px solid rgba(255, 255, 255, 0.06);
    }

    .timer-unit .number {
      font-size: 32px;
      font-weight: 700;
      font-variant-numeric: tabular-nums;
      color: white;
    }

    .timer-unit .label {
      font-size: 11px;
      text-transform: uppercase;
      color: #94a3b8;
      letter-spacing: 0.5px;
    }
	
@media (max-width: 1024px) {
  .promo-block {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 32px 24px;
    gap: 20px;
  }
  .promo-block .countdown {
    justify-content: center;
  }
}

    @media (max-width: 700px) {
      .promo-block {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
        padding: 32px 24px;
      }
      .promo-timer {
        justify-content: center;
      }
    }

    /* ----- Гарантии ----- */
    .guarantees-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .guarantee-card {
      background: var(--surface);
      border-radius: var(--radius-xl);
      padding: 32px 24px;
      border: 1px solid var(--border-light);
      text-align: center;
      transition: all var(--transition);
    }

    .guarantee-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
    }

    .guarantee-icon {
      font-size: 36px;
      margin-bottom: 16px;
    }

    .guarantee-card h4 {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 8px;
    }

    .guarantee-card p {
      color: var(--text-secondary);
      font-size: 14px;
      line-height: 1.5;
    }

    @media (max-width: 700px) {
      .guarantees-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ----- О нас ----- */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
    }

    .about-image {
      background: linear-gradient(145deg, #d9e9ff, #b8d4f5);
      border-radius: var(--radius-xl);
      aspect-ratio: 4/3;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      font-size: 72px;
      color: var(--accent);
      box-shadow: var(--shadow-lg);
	  overflow: hidden;
	  position: relative;
	  width: 100%;
	  max-width: 472px;
    }
	
    .about-image img{
      height: 100%;
    }
	
    .about-image span{
      position: absolute; 
	  bottom: 0px; 
	  background: rgba(0,0,0,0.6); 
	  color: white; 
	  padding: 8px 20px; 
	  font-size: 16px; 
	  font-weight: 500; 
	  backdrop-filter: blur(4px);
	  width: 100%;
	  text-align: center;
    }

    .about-features {
      list-style: none;
      margin-top: 20px;
    }

    .about-features li {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 15px;
      color: var(--text-secondary);
      padding: 8px 0;
    }

    .about-features span {
	  color: #ffffff;
      width: 20px;
      height: 20px;
      font-size: 12px;
      background: #0066ff;
      border-radius: 31px;
      text-align: center;
      align-content: center;
    }
	
	.about-image-img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		border-radius: var(--radius-xl);
	}

    @media (max-width: 760px) {
      .about-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ----- Контакты ----- */
    .contact-wrapper {
      background: var(--surface);
      border-radius: var(--radius-xl);
      padding: 48px 40px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      border: 1px solid var(--border-light);
      box-shadow: var(--shadow-lg);
    }

    .contact-detail {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 18px;
      text-decoration: none;
      color: var(--text-primary);
      font-weight: 500;
      transition: color var(--transition);
    }

    .contact-detail i {
      width: 44px;
      height: 44px;
      background: var(--accent-soft);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent);
      font-size: 18px;
    }

    .contact-detail:hover {
      color: var(--accent);
    }
	
	.contact-form {
		display: flex;
		gap: 12px;
		flex-wrap: wrap;
	}
	
    .contact-form input,
    .contact-form textarea,
    .contact-form select {
      width: 100%;
      padding: 14px 18px;
      border: 1.5px solid var(--border-light);
      border-radius: var(--radius-md);
      font-family: inherit;
      font-size: 15px;
      background: var(--bg);
      transition: var(--transition);
      outline: none;
      color: var(--text-primary);
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
      border-color: var(--accent);
      background: white;
      box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.08);
    }

    .contact-form textarea {
      min-height: 110px;
      resize: vertical;
    }

    .contact-form .btn {
      width: 100%;
      margin-top: 8px;
    }

    @media (max-width: 760px) {
      .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 32px 24px;
      }
    }

    /* ----- Подвал ----- */
    .footer {
      padding: 32px;
      border-top: 1px solid var(--border-light);
      color: var(--text-muted);
      font-size: 14px;
      display: flex;
      justify-content: space-between;
	  background: linear-gradient(90deg, #f2f5f9, #f7f7f7, #f2f5f9);
      gap: 12px;
    }

    /* анимации появления */
    .fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* кнопка наверх */
    .scroll-top {
      position: fixed;
      bottom: 28px;
      right: 28px;
      width: 48px;
      height: 48px;
      border-radius: 60px;
      background: var(--surface);
      border: 1px solid var(--border-light);
      box-shadow: var(--shadow-lg);
      font-size: 20px;
      cursor: pointer;
      transition: all var(--transition);
      opacity: 0;
      pointer-events: none;
      z-index: 50;
	  font-size: 21px;
      color: #0066ff;
    }

    .scroll-top.visible {
      opacity: 1;
      pointer-events: auto;
    }

    .scroll-top:hover {
      background: var(--accent);
      color: white;
      border-color: var(--accent);
    }

    /* адаптив */
    @media (max-width: 480px) {
      .hero-title {
        font-size: 32px;
      }
      .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
      }
    }
	
	/* ===== MODAL ===== */
	.modal-overlay {
		position: fixed;
		inset: 0;
		background: rgba(0, 0, 0, 0.6);
		backdrop-filter: blur(4px);
		z-index: 300;
		display: flex;
		align-items: center;
		justify-content: center;
		opacity: 0;
		pointer-events: none;
		transition: opacity 0.3s ease;
		padding: 20px;
	}

	.modal-overlay.active {
		opacity: 1;
		pointer-events: auto;
	}

	.modal {
		background: var(--surface);
		border-radius: var(--radius-xl);
		max-width: 500px;
		width: 100%;
		padding: 32px 28px;
		position: relative;
		transform: scale(0.95) translateY(20px);
		transition: transform 0.3s ease;
		max-height: 90vh;
		overflow-y: auto;
	}

	.modal-overlay.active .modal {
		transform: scale(1) translateY(0);
	}

	.modal-close {
		position: absolute;
		top: 16px;
		right: 16px;
		width: 32px;
		height: 32px;
		border: none;
		background: var(--bg);
		border-radius: 50%;
		font-size: 18px;
		cursor: pointer;
		transition: all var(--transition);
		display: flex;
		align-items: center;
		justify-content: center;
		color: var(--text-secondary);
	}

	.modal-close:hover {
		background: var(--border);
		color: var(--text-primary);
		transform: rotate(90deg);
	}

	.modal h3 {
		font-size: 22px;
		font-weight: 700;
		margin-bottom: 8px;
		letter-spacing: -0.02em;
	}

	.modal p {
		color: var(--text-secondary);
		font-size: 14px;
		margin-bottom: 20px;
	}

	.modal .contact-form {
		gap: 14px;
	}

	.modal .contact-form input,
	.modal .contact-form textarea {
		width: 100%;
		padding: 12px 14px;
		border: 1.5px solid var(--border);
		border-radius: var(--radius);
		font-family: inherit;
		font-size: 14px;
		background: var(--bg);
		transition: all var(--transition);
		outline: none;
		color: var(--text-primary);
	}

	.modal .contact-form input:focus,
	.modal .contact-form textarea:focus {
		border-color: var(--accent);
		box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
		background: var(--surface);
	}

	.modal .contact-form textarea {
		min-height: 100px;
		resize: vertical;
	}

	.modal .contact-form .rating {
		display: flex;
		gap: 8px;
		font-size: 32px;
		cursor: pointer;
		margin-bottom: 4px;
		justify-content: center;
	}

	.modal .contact-form .rating span {
		transition: all var(--transition);
		color: #d1d5db;
		user-select: none;
	}

	.modal .contact-form .rating span.active {
		color: #f59e0b;
	}

	.modal .contact-form .rating span:hover {
		transform: scale(1.2);
		color: #fbbf24;
	}

	.modal .btn-primary {
		width: 100%;
		margin-top: 4px;
	}
	
	/* Анимация для кнопки отправки */
	.modal .btn-primary:disabled {
		opacity: 0.7;
		cursor: not-allowed;
	}
	
	

/* ===== АНИМИРОВАННЫЙ ТАЙМЕР ===== */
.promo-timer-new {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.promo-timer-new .bloc-time {
  text-align: center;
  min-width: 80px;
}

.promo-timer-new .count-title {
  display: block;
  margin-bottom: 12px;
  font: normal 0.85em "Inter", sans-serif;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.promo-timer-new .figure {
  position: relative;
  float: left;
  height: 70px;
  width: 52px;
  margin-right: 6px;
  background-color: #1a2a44;
  border-radius: 6px;
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.3), inset 2px 4px 0 0 rgba(255, 255, 255, 0.05);
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.promo-timer-new .figure:last-child {
  margin-right: 0;
}

.promo-timer-new .figure > span {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  font: normal 3.2em/68px "Inter", sans-serif;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}

.promo-timer-new .figure .top:after,
.promo-timer-new .figure .bottom-back:after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.promo-timer-new .figure .top {
  z-index: 3;
  background-color: #2a4068; /* Светлый фон для верхней половины */
  transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  transform: perspective(200px);
  -webkit-transform: perspective(200px);
}

.promo-timer-new .figure .bottom {
  z-index: 1;
  background-color: #1a2a44; /* Темный фон для нижней половины */
}

.promo-timer-new .figure .bottom:before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: rgba(0, 0, 0, 0.05);
}

.promo-timer-new .figure .bottom-back {
  z-index: 2;
  top: 0;
  height: 50%;
  overflow: hidden;
  background-color: #2a4068;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.promo-timer-new .figure .bottom-back span {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.promo-timer-new .figure .top,
.promo-timer-new .figure .top-back {
  height: 50%;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.promo-timer-new .figure .top-back {
  z-index: 4;
  bottom: 0;
  background-color: #1a2a44;
  transform-origin: 50% 0;
  -webkit-transform-origin: 50% 0;
  transform: perspective(200px) rotateX(180deg);
  -webkit-transform: perspective(200px) rotateX(180deg);
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

.promo-timer-new .figure .top-back span {
  position: absolute;
  top: -100%;
  left: 0;
  right: 0;
  margin: auto;
}

.promo-timer-new .figure .top-back,
.promo-timer-new .figure .bottom-back {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Адаптация для мобильных */
@media (max-width: 700px) {
  .promo-timer-new {
    justify-content: center;
    gap: 12px;
  }
  
  .promo-timer-new .bloc-time {
    min-width: 60px;
  }
  
  .promo-timer-new .figure {
    height: 50px;
    width: 38px;
    margin-right: 4px;
  }
  
  .promo-timer-new .figure > span {
    font: normal 2.2em/48px "Inter", sans-serif;
  }
  
  .promo-timer-new .count-title {
    font-size: 0.7em;
    margin-bottom: 8px;
  }
}

@media (max-width: 480px) {
  .promo-timer-new .bloc-time {
    min-width: 45px;
  }
  
  .promo-timer-new .figure {
    height: 40px;
    width: 30px;
    margin-right: 3px;
  }
  
  .promo-timer-new .figure > span {
    font: normal 1.8em/38px "Inter", sans-serif;
  }
  
  .promo-timer-new .count-title {
    font-size: 0.6em;
  }
}


/* ---------------- */
/* ===== БРЕНДЫ ===== */
.brands-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 20px;
}

.brands-header .section-subtitle {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.brands-collection-light {
  position: relative;
  padding: 40px 24px 32px;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, #f8faff, #eef3fa);
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

/* Тонкая текстура для лёгкого бархатного эффекта */
.brands-collection-light::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 30% 40%, rgba(100, 150, 255, 0.03) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 60%, rgba(200, 150, 255, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
  position: relative;
  z-index: 1;
  padding: 8px 0;
}

/* Бейдж-значок — светлая версия */
.brand-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: #ccdae3;
  border-radius: 50px;
  border: 1px solid var(--border-light);
  cursor: default;
  position: relative;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 
    0 2px 6px rgba(0, 0, 0, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.brand-badge:hover {
  transform: translateY(-4px) scale(1.03);
  border-color: var(--accent);
  box-shadow: 
    0 8px 24px rgba(0, 102, 255, 0.10),
    0 2px 8px rgba(0, 0, 0, 0.04);
  background: #d5efff;
}

.badge-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.2px;
  transition: color 0.3s ease;
}

.brand-badge:hover .badge-name {
  color: var(--accent);
}

/* Свечение под курсором */
.badge-spark {
  position: absolute;
  inset: -2px;
  border-radius: 50px;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), 
    rgba(0, 102, 255, 0.11) 0%, 
    transparent 70%
  );
}

.brand-badge:hover .badge-spark {
  opacity: 1;
}

/* Специальный бейдж "Любой бренд" — светлая версия */
.brand-badge-special {
  background: linear-gradient(145deg, #f0ecff, #e8e0ff);
  border-color: #d4c8ff !important;
}

.brand-badge-special .badge-name {
  color: #6b4c9a;
  font-weight: 600;
}

.brand-badge-special:hover {
  border-color: #9b7fd4 !important;
  box-shadow: 
    0 8px 24px rgba(120, 80, 200, 0.12),
    0 2px 8px rgba(0, 0, 0, 0.04);
}

.brand-badge-special:hover .badge-name {
  color: #5a3a8a;
}

/* Анимация входа */
.brand-badge {
  opacity: 0;
  animation: badgeAppearLight 0.4s ease forwards;
}

.brand-badge:nth-child(1) { animation-delay: 0.02s; }
.brand-badge:nth-child(2) { animation-delay: 0.04s; }
.brand-badge:nth-child(3) { animation-delay: 0.06s; }
.brand-badge:nth-child(4) { animation-delay: 0.08s; }
.brand-badge:nth-child(5) { animation-delay: 0.10s; }
.brand-badge:nth-child(6) { animation-delay: 0.12s; }
.brand-badge:nth-child(7) { animation-delay: 0.14s; }
.brand-badge:nth-child(8) { animation-delay: 0.16s; }
.brand-badge:nth-child(9) { animation-delay: 0.18s; }
.brand-badge:nth-child(10) { animation-delay: 0.20s; }
.brand-badge:nth-child(11) { animation-delay: 0.22s; }
.brand-badge:nth-child(12) { animation-delay: 0.24s; }
.brand-badge:nth-child(13) { animation-delay: 0.26s; }
.brand-badge:nth-child(14) { animation-delay: 0.28s; }
.brand-badge:nth-child(15) { animation-delay: 0.30s; }
.brand-badge:nth-child(16) { animation-delay: 0.32s; }
.brand-badge:nth-child(17) { animation-delay: 0.34s; }
.brand-badge:nth-child(18) { animation-delay: 0.36s; }
.brand-badge:nth-child(19) { animation-delay: 0.38s; }
.brand-badge:nth-child(20) { animation-delay: 0.40s; }
.brand-badge:nth-child(21) { animation-delay: 0.42s; }
.brand-badge:nth-child(22) { animation-delay: 0.44s; }
.brand-badge:nth-child(23) { animation-delay: 0.46s; }
.brand-badge:nth-child(24) { animation-delay: 0.48s; }

@keyframes badgeAppearLight {
  0% {
    opacity: 0;
    transform: scale(0.9) translateY(8px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* CTA под брендами */
.brands-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.brands-call {
  color: var(--text-muted);
  font-size: 14px;
}

.brands-call a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.brands-call a:hover {
  color: var(--accent);
}

/* Адаптив */
@media (max-width: 700px) {
  .brands-collection-light {
    padding: 24px 12px 24px;
    border-radius: var(--radius-lg);
  }
  
  .brand-badge {
    padding: 6px 14px;
  }
  
  .badge-name {
    font-size: 12px;
  }
  
  .brands-grid {
    gap: 8px 10px;
  }
  
  .brand-badge-special {
    padding: 6px 16px;
  }
  
  .brands-cta {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .brands-grid {
    gap: 6px 8px;
  }
  
  .brand-badge {
    padding: 5px 12px;
    border-radius: 30px;
  }
  
  .badge-name {
    font-size: 11px;
  }
}


/* ===== КАРТА ===== */
.map-wrapper {
  margin-top: 32px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  background: var(--surface);
}

.map-container {
  width: 100%;
  height: 320px;
  position: relative;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* Адаптив для карты */
@media (max-width: 600px) {
  .map-container {
    height: 220px;
  }
}

/* ===== ОБЩИЕ СТИЛИ ДЛЯ СЕКЦИИ ===== */
.services-section {
    padding: 60px 0;
    background: #fafcff;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 17px;
    color: #5a6a7e;
    margin: 0 auto;
}

/* ===== СПИСОК УСЛУГ ===== */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 35px;
}

.service-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: white;
    border-radius: 10px;
    border: 1px solid #eef2f7;
    transition: all 0.2s ease;
    position: relative;
}

.service-item:hover {
    border-color: #c8d8e8;
    background: #ffffff;
    box-shadow: 0 4px 16px rgba(0, 40, 80, 0.06);
}

/* ===== ВЫДЕЛЕНИЕ САМОЙ ПОПУЛЯРНОЙ УСЛУГИ ===== */
.service-item.popular {
    border: 2px solid #ff6b35;
    background: #fff8f5;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.12);
}

.service-item.popular:hover {
    border-color: #e55a2a;
    box-shadow: 0 6px 28px rgba(255, 107, 53, 0.18);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: #ff6b35;
    color: white;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 18px;
    border-radius: 20px;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
}

/* ===== ОСТАЛЬНЫЕ ЭЛЕМЕНТЫ ===== */
.service-info {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
}

.service-number {
    font-size: 14px;
    font-weight: 700;
    color: #b0c4db;
    min-width: 30px;
    letter-spacing: 0.5px;
}

.service-content h3 {
    font-size: 17px;
    font-weight: 600;
    color: #1a2a3a;
    margin: 0 0 3px 0;
}

.service-content p {
    font-size: 14px;
    color: #6f7e91;
    margin: 0;
}

.service-price {
    flex-shrink: 0;
    margin-left: 24px;
    text-align: right;
}

.price-tag {
    font-size: 19px;
    font-weight: 700;
    color: #0066cc;
    white-space: nowrap;
}

/* ===== ССЫЛКА НА ПОЛНЫЙ ПРАЙС ===== */
.price-link-wrapper {
    text-align: center;
}

.price-link {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    color: #0066cc;
    text-decoration: none;
    border-bottom: 2px solid rgba(0, 102, 204, 0.25);
    padding-bottom: 5px;
    transition: all 0.2s;
}

.price-link:hover {
    border-bottom-color: #0066cc;
    color: #004d99;
}

/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 600px) {
    .section-header h2 {
        font-size: 24px;
    }

    .service-item {
        flex-direction: column;
        align-items: stretch;
        padding: 16px 18px;
        gap: 8px;
    }

    .service-item.popular {
        padding-top: 24px;
    }

    .popular-badge {
        position: static;
        display: inline-block;
        align-self: flex-start;
        margin-bottom: 8px;
        font-size: 12px;
        padding: 3px 14px;
    }

    .service-info {
        gap: 12px;
    }

    .service-content h3 {
        font-size: 16px;
    }

    .service-price {
        text-align: left;
        margin-left: 42px;
    }

    .price-tag {
        font-size: 17px;
    }
}

/* ===== СТИЛИ БЛОКА РАЙОНОВ ===== */

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 0 auto 24px;
}

.area-tag {
    background: #fff;
    color: #1a3a5c;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.area-tag:hover {
    background: #e3ecfa;
    border-color: #b3d4fc;
    transform: translateY(-2px);
}

.areas-extra {
    text-align: center;
    margin-top: 6px;
}

.areas-extra p {
    font-size: 15px;
    color: #444;
    margin-bottom: 14px;
}

.areas-extra strong {
    color: #0066cc;
}

.areas-price-link {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    color: #0066cc;
    text-decoration: none;
    border: 1.5px solid #0066cc;
    padding: 10px 28px;
    border-radius: 30px;
    transition: all 0.25s;
}

.areas-price-link:hover {
    background: #0066cc;
    color: white;
}




.contact-form .rule_list .polit_access{
    display: none;
}
.contact-form .rule_list .fake{
    height: 1.2rem;
    width:  1.2rem;
    border: 2px solid #999;
    border-radius: .2rem;
    position: relative;
    transition: .2s ease-in-out;
    margin: 0;
    display: block;
    flex-shrink: 0;
}
.contact-form .rule_list .fake::before{
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 3px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: .2s;
}
.contact-form .rule_list .polit_access:checked + .fake{
    background: #0066ff;
    border-color: transparent;
}
.contact-form .rule_list .polit_access:checked + .fake::before{
    opacity: 1;
}
.contact-form .rule_list .rule_item{
    display: flex;
    flex-direction: row;
    gap: .4rem;
    align-items: center;
    cursor: pointer;
    user-select: none;
}
.contact-form .checkFormBtn:disabled{
    opacity: .8 !important;
    user-select: none !important;
    pointer-events: none !important;
}