﻿/* РЎС‚СЂРѕРёС‚РµР»СЊРЅР°СЏ РєРѕРјРїР°РЅРёСЏ вЂ” MVP | Mobile First | РњРёРЅРёРјР°Р»РёСЃС‚РёС‡РЅС‹Р№ РєРѕСЂРїРѕСЂР°С‚РёРІРЅС‹Р№ СЃС‚РёР»СЊ */
/* РР·РѕР±СЂР°Р¶РµРЅРёСЏ: РїСЂРё РґРѕР±Р°РІР»РµРЅРёРё РёСЃРїРѕР»СЊР·РѕРІР°С‚СЊ loading="lazy" */

/* === РџРµСЂРµРјРµРЅРЅС‹Рµ === */
:root {
  --color-primary: #1a365d;
  --color-secondary: #2d3748;
  --color-accent: #c56f1a;
  --color-bg: #ffffff;
  --color-bg-alt: #f7fafc;
  --color-text: #2d3748;
  --color-text-muted: #718096;
  --color-border: #e2e8f0;
  --font-main: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-size-base: 16px;
  --line-height: 1.5;
  --container-padding: 1rem;
  --section-gap: 2.5rem;
}

/* === РЎР±СЂРѕСЃ Рё Р±Р°Р·Р° === */
*, *::before, *::after { box-sizing: border-box; }
html {
  font-size: var(--font-size-base);
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--color-text);
  line-height: var(--line-height);
  background: var(--color-bg);
}

/* === РўРёРїРѕРіСЂР°С„РёРєР° === */
h1, h2, h3, h4 { margin: 0 0 0.5em; font-weight: 600; }
h1 { font-size: 1.75rem; line-height: 1.2; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }
a { color: var(--color-accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* === РљРѕРЅС‚РµР№РЅРµСЂ === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* === Header === */
.header {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.header .logo { margin-right: 2rem; }
.header-actions{
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.logo {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--color-primary);
}
.header-phone {
  font-weight: 600;
  color: var(--color-primary);
  font-size: 1.35rem;
}
.btn {
  display: inline-block;
  padding: 0.7rem 1.4rem;

  background: var(--color-accent);
  color: #fff;

  border: none;
  border-radius: 6px;

  font-weight: 600;
  font-size: 0.9rem;

  cursor: pointer;
  text-decoration: none;

  transition:
          background 0.25s ease,
          transform 0.15s ease,
          box-shadow 0.2s ease;
}
.btn:hover { opacity: 0.9; text-decoration: none; }
.btn-outline {
  background: transparent;
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
}

/* === РќР°РІРёРіР°С†РёСЏ === */
.nav { display: none; }
.nav-toggle {
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--color-primary);
}
.nav.is-open { display: block; width: 100%; }
.nav > ul {
  list-style: none;
  margin: 0;
  padding: 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.nav a {
  color: var(--color-text);
  padding: 0.5rem 0;
  display: block;
}
.nav a:hover { color: var(--color-accent); }

/* Р’С‹РїР°РґР°СЋС‰РµРµ РјРµРЅСЋ РЈСЃР»СѓРіРё вЂ” С‚РѕР»СЊРєРѕ РїСЂРё РЅР°РІРµРґРµРЅРёРё/РєР»РёРєРµ */
.nav-item-has-dropdown {
  position: relative;
}
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  min-width: 240px;
  z-index: 1000;
}
.nav-item-has-dropdown:hover > .nav-dropdown,
.nav-item-has-dropdown.is-open > .nav-dropdown {
  display: block;
}
.nav-item-has-dropdown > a::after {
  content: '';
  display: inline-block;
  margin-left: 0.35rem;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  vertical-align: middle;
}
.nav-dropdown li {
  margin: 0;
}
.nav-dropdown a {
  display: block;
  padding: 0.65rem 1.25rem;
  font-size: 0.95rem;
  white-space: nowrap;
}
.nav-dropdown a:hover {
  background: rgba(0,0,0,0.04);
}
@media (max-width: 767px) {
  .nav-dropdown { padding-left: 1rem; margin-top: 0.25rem; }
}
@media (min-width: 768px) {

  .nav-item-has-dropdown {
    position: relative;
  }

  .nav-dropdown {
    position: absolute;
    top: calc(100% - 2px);
    left: 0;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    min-width: 240px;
    padding-top: 0.4rem;
  }

}

/* === Hero === */
.hero {
  padding: 2.5rem 0;
  text-align: center;
}
.hero h1 { margin-bottom: 0.75rem; }
.hero-subtitle {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  font-size: 1rem;
  padding-top: 10px;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* === РЎРµРєС†РёРё === */
section {
  padding: var(--section-gap) 0;
}

.bg-alt { background: var(--color-bg-alt); }
.bg-white { background: var(--color-bg); }
.section-title {
  text-align: center;
  margin-bottom: 1.5rem;
}

/* === РљР°СЂС‚РѕС‡РєРё СѓСЃР»СѓРі === */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  justify-content: center;
}

.service-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 15px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  min-height: 200px;
  position: relative;
  z-index: 1;

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card h3 {
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  flex: 1;
}
.service-card-wrapper {
  display: flex;
}
.service-card-links {
  margin-top: 1.25rem;
}

.service-card-links a {
  font-weight: 600;
}

.service-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 14px 32px rgba(0,0,0,0.1);
}

/* === РџСЂРµРёРјСѓС‰РµСЃС‚РІР° === */
.advantages-grid {
  display: grid;
  gap: 1.5rem;
}
.advantage-item {
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
}
.advantage-item h3 { font-size: 1rem; margin-bottom: 0.25rem; }

/* === Р­С‚Р°РїС‹ СЂР°Р±РѕС‚С‹ === */
.steps-section-inner {
  display: grid;
  gap: 2rem;
}
.steps-image { display: none; }
.steps-placeholder {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}
@media (min-width: 768px) {
  .steps-section-inner { grid-template-columns: 1fr 1fr; align-items: start; }
  .steps-image { display: block; }
}
.steps-list {
  counter-reset: step;
  padding: 0 0;
}
.step-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  margin: 10px;
}
.step-item:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}
.step-item::before {
  content: counter(step);
  counter-increment: step;

  flex-shrink: 0;
  width: 2.2rem;
  height: 2.2rem;

  background: var(--color-accent);
  color: var(--color-bg);

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 700;
  font-size: 0.9rem;

  border-radius: 10px;

  box-shadow: 0 4px 10px rgba(0,0,0,0.08);

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wall-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--color-border);
}

/* === Р¦РµРЅС‹ === */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.pricing-table th,
.pricing-table td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}
.pricing-table th { background: var(--color-bg-alt); font-weight: 600; }
.prices-intro {
  text-align: center;
  color: var(--color-text-muted);
  max-width: 720px;
  margin: 0 auto 1.25rem;
}
.pricing-cards {
  display: grid;
  gap: 1rem;
}
.pricing-card {
  border: 1px solid var(--color-border);
  padding: 1.5rem;
  background: var(--color-bg);
}

/* === FAQ === */
.faq-list { margin: 0; padding: 0; list-style: none; }
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-item summary {
  padding: 1rem 0;
  cursor: pointer;
  font-weight: 600;
}
.faq-item p {
  padding: 0 0 1rem;
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* === Р¤РѕСЂРјС‹ === */
/* Р¤РѕСЂРјР° */
.form-request-wrapper {
    background: var(--color-bg);
    border: 2px solid var(--color-accent);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    padding: 2rem;
    max-width: 540px;
    margin: 0 auto;
    transition: box-shadow 0.25s ease;
}

.form-request-wrapper:hover {
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

/* РџРѕР»СЏ */
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.7rem;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

/* Р¤РѕРєСѓСЃ */
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 2px rgba(255,165,0,0.15);
}

/* РљРЅРѕРїРєР° */
.form-request .btn {
    width: 100%;
    margin-top: 0.75rem;
    padding: 0.75rem;
    font-size: 1rem;
    border-radius: 6px;
}

.form-group textarea {
  width: 100%;
  min-height: 100px;
  resize: vertical;   /* СЂР°Р·СЂРµС€Р°РµРј СЂР°СЃС‚СЏРіРёРІР°С‚СЊ С‚РѕР»СЊРєРѕ РІРЅРёР· */
  box-sizing: border-box; /* С‡С‚РѕР±С‹ С€РёСЂРёРЅР° РЅРµ РІС‹Р»РµР·Р°Р»Р° Р·Р° С„РѕСЂРјСѓ */
}

/* === CTA-Р±Р»РѕРє В«РћСЃС‚Р°РІРёС‚СЊ Р·Р°СЏРІРєСѓВ» === */
.cta-block-section { /* С„РѕРЅ РЅР°СЃР»РµРґСѓРµС‚СЃСЏ РѕС‚ С‡РµСЂРµРґРѕРІР°РЅРёСЏ СЃРµРєС†РёР№ */ }
.cta-block {
  max-width: 560px;
  margin: 0 auto;
  padding: 2.2rem;
  background: white;
  border-left: 5px solid var(--color-accent);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
  text-align: center;
}
.cta-block-title {
  margin-bottom: 0.8rem;
  font-size: 1.6rem;
}
.cta-block-desc {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.4rem;
  line-height: 1.6;
}

.cta-block-phrase {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-primary);
}
.cta-block .btn {
  margin-bottom: 0.8rem;
}
.cta-block-link {
  display: block;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.form-group input[type="checkbox"] {
  width: 15px;
}

/* === РљР°СЂС‚Р° Р·Р°РіР»СѓС€РєР° === */
.map-placeholder {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* === Р”РѕРєСѓРјРµРЅС‚С‹ / Р»РёС†РµРЅР·РёРё === */
/*.licenses-grid {*/
/*  display: flex;*/
/*  justify-content: center;*/
/*  gap: 20px;*/
/*  margin-top: 30px;*/
/*  flex-wrap: nowrap;*/
/*}*/

/*.license-card {*/
/*  text-align: center;*/
/*  max-width: 130px;*/
/*}*/

/*.license-card img {*/
/*  width: 100%;*/
/*  border: 1px solid #e3e3e3;*/
/*  border-radius: 6px;*/
/*  transition: transform 0.2s ease, box-shadow 0.2s ease;*/
/*}*/

/*.license-card img:hover {*/
/*  transform: scale(1.05);*/
/*  box-shadow: 0 6px 14px rgba(0,0,0,0.12);*/
/*}*/

/*.license-caption {*/
/*  display: block;*/
/*  margin-top: 6px;*/
/*  font-size: 12px;*/
/*  color: #718096;*/
/*  text-decoration: none;*/
/*  line-height: 1.3;*/
/*}*/

/*.license-caption:hover {*/
/*  text-decoration: underline;*/
/*}*/
/* === РџР°СЂС‚РЅС‘СЂС‹ === */
.partners-slider {
  overflow: hidden;
  position: relative;
  height: 140px;
  top: 15px;
}

/* С‚СЂРµРє */
.partners-track {
  display: flex;
  gap: 2rem;
  align-items: center;
  will-change: transform;
}

/* РєР°СЂС‚РѕС‡РєР° Р»РѕРіРѕС‚РёРїР° */
.partner-item {
  flex: 0 0 auto;

  width: 180px;
  height: 110px;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* СЃР°РјР° "СЂР°РјРєР°" */
.partner-logo {
  width: 100%;
  height: 100%;

  background: rgba(255,255,255,0.6);
  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 12px;

  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
}

/* Р»РѕРіРѕС‚РёРї РІРЅСѓС‚СЂРё */
.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;

  filter: grayscale(100%) opacity(0.6);
  transition: all 0.3s ease;
}

/* РҐРћР’Р•Р  вЂ” вЂњРІР·Р»С‘С‚ + РѕР¶РёРІР°РЅРёРµвЂќ */
.partner-item:hover .partner-logo {
  background: #fff;
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.partner-item:hover img {
  filter: grayscale(0%) opacity(1);
}

/* Р°РґР°РїС‚РёРІ */
@media (max-width: 768px) {
  .partner-item {
    width: 140px;
    height: 90px;
  }

  .partners-track {
    gap: 1.5rem;
  }
}
/* === Р‘Р»РѕРє РљРѕРЅС‚Р°РєС‚С‹ СЃ РєР°СЂС‚РѕР№ === */
.contacts-map-block {
  position: relative;
  min-height: 360px;
  overflow: hidden;
}

/* РєР°СЂС‚Р° */
.contacts-map-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.contacts-map-bg iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* СЃР»РѕР№ СЃ РєР°СЂС‚РѕС‡РєРѕР№ */
.contacts-map-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  pointer-events: none;
}

/* РєРѕРЅС‚РµР№РЅРµСЂ РїСЂРѕСЃС‚Рѕ РґР»СЏ РїРѕР·РёС†РёРѕРЅРёСЂРѕРІР°РЅРёСЏ */
.contacts-map-overlay .container {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

/* РєР°СЂС‚РѕС‡РєР° */
.contacts-card {
  background: var(--color-bg);
  border: 2px solid var(--color-accent);

  padding: 1.75rem;
  max-width: 320px;

  border-radius: 14px;

  box-shadow: 0 6px 18px rgba(0,0,0,0.08);

  transition: transform 0.25s ease, box-shadow 0.25s ease;

  pointer-events: auto;
}

.contacts-card h3 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.contacts-card p {
  margin: 0 0 0.6rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.contacts-card p:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {

  .contacts-map-overlay .container {
    justify-content: center;
  }

  .contacts-card {
    max-width: 100%;
  }

}

/* === Footer === */
.footer {
  background: var(--color-primary);
  color: var(--color-bg);
  padding: 2rem 0;
  margin-top: 2rem;
}
.footer a { color: rgba(255,255,255,0.9); }
.footer a:hover { color: var(--color-accent); }
.footer-grid {
  display: grid;
  gap: 1.5rem;
}
.footer-section h3 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  opacity: 0.8;
}
.footer-section ul { list-style: none; margin: 0; padding: 0; }
.footer-section li { margin-bottom: 0.5rem; }
.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 0.85rem;
  opacity: 0.8;
}

/* === Breadcrumbs === */
.breadcrumbs {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  padding: 0.5rem 0;
}
.breadcrumbs a { color: var(--color-text-muted); }
.breadcrumbs span { color: var(--color-text); }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* === Stats Р±Р»РѕРє === */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.stat-item {
  text-align: center;
  padding: 1rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
}
.stat-item .number { font-size: 2rem; font-weight: 700; color: var(--color-accent); display: block; }
.stat-item .label { font-size: 0.85rem; color: var(--color-text-muted); }

/* === Team РєР°СЂС‚РѕС‡РєРё === */
.team-grid { display: grid; gap: 1rem; }
.team-card {
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  text-align: center;
  padding: 1rem;
}
.team-card .avatar {
  width: 80px;
  height: 80px;
  background: var(--color-bg-alt);
  margin: 0 auto 0.75rem;
  border-radius: 50%;
}

/* === Page header === */
.page-header {
  padding: 2rem 0;
  margin-bottom: 0;
}
.page-header h1 { margin: 0; }
.about-hero::after {
  content: "";
  position: absolute;

  width: 1200px;
  height: 33px;

  background: var(--color-accent);

  top: 38%;
  left: 25%;

  transform: rotate(-144deg);

  opacity: 0.5;

  z-index: 1;
  pointer-events: none;
}
.about-hero .container {
  position: relative;
  z-index: 2;
}
.about-hero{
  padding: 0 0;
  position: relative;
  overflow: hidden;
}
.about-hero .bg-alt{
  padding-bottom: 30px;
}
.main-hero-bg {
  background-image: url("../images/bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* === РЎР»Р°Р№РґРµСЂ (РїР°РєРµС‚ СѓСЃР»СѓРі) === */
.slider-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 720px;
  margin: 0 auto;
}
.slider-track {
  display: flex;
  transition: transform 0.3s ease;
}
.slider-item {
  flex: 0 0 100%;
  height: 260px;
  overflow: hidden;
}
.slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}
.slider-item.paket{
  flex: 0 0 100%;
  height: clamp(220px, 45vw, 500px);
  overflow: hidden;
}
.slider-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

/* === Р‘Р»РѕРєРё СѓСЃР»СѓРі (СЃС‚СЂР°РЅРёС†Р° РЈСЃР»СѓРіРё) === */
.service-block {
  display: grid;
  gap: 2.5rem;
}

.service-block-title {
  margin-bottom: 0.6rem;
  font-size: 1.6rem;
}

.service-block-content p {
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  max-width: 420px;
}

.service-block-links {
  display: flex;
  gap: 1rem;
}

.service-block-links a {
  font-weight: 600;
}

/* === РЎР»Р°Р№РґРµСЂ === */

.service-slider-mini {
  overflow: hidden;
  position: relative;
  border-radius: 8px;
}

.service-slider-mini .slider-track {
  display: flex;
  transition: transform 0.35s ease;
}

.service-slider-mini .slider-item {
  flex: 0 0 100%;
  min-width: 100%;
}

.service-slider-mini .slider-placeholder {
  min-height: 260px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* === РљРЅРѕРїРєРё СЃР»Р°Р№РґРµСЂР° === */

.service-slider-mini .slider-controls {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}

.slider-btn {
  pointer-events: auto;
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(220, 220, 220, 0.6); /* РјСЏРіРєРёР№ СЃРІРµС‚Р»Рѕ-СЃРµСЂС‹Р№, РїРѕР»СѓРїСЂРѕР·СЂР°С‡РЅС‹Р№ */
  font-size: 18px;
  color: var(--color-accent); /* СЃС‚СЂРµР»РєР° РѕСЂР°РЅР¶РµРІР°СЏ */
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.slider-prev {
  margin-left: 12px;
}

.slider-next {
  margin-right: 12px;
}

.slider-btn:hover {
  background: rgba(230, 230, 230, 0.7); /* С‡СѓС‚СЊ СЃРІРµС‚Р»РµРµ РїСЂРё РЅР°РІРµРґРµРЅРёРё */
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  color: var(--color-accent); /* СЃС‚СЂРµР»РєР° РѕСЃС‚Р°С‘С‚СЃСЏ РѕСЂР°РЅР¶РµРІРѕР№ */
}

/* === РЎРµРєС†РёСЏ СЃ С„РѕРЅРѕРј Рё Р±Р»СЋСЂРѕРј === */
.services-feature-block {
  position: relative;
  overflow: hidden;
  color: var(--color-text);
}

.services-feature-block.paket{
  padding: 10rem 0 3rem;
}

.services-feature-content {
  max-width: 520px;
  height: 469px;
}

.services-feature-bg {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);

  width: 100%;
  max-width: 1200px;

  aspect-ratio: 16 / 9;

  background: url('../images/services imgs/дороги бг.jpg') center/cover no-repeat;

  border-radius: 14px;

  z-index: 0;
}

.services-feature-bg.paket {
  background: url('../images/services imgs/строительные работы бг.jpeg') center/cover no-repeat;
}
.services-feature-bg.remont {
  background: url('../images/services imgs/ремонт бг.jpeg') center/cover no-repeat;
}
.services-feature-bg.design {
  background: url('../images/services imgs/дизайн бг.png') center/cover no-repeat;
}
/* Р›РµРІР°СЏ Р·РѕРЅР° Р±Р»СЋСЂР° РїРѕРґ С‚РµРєСЃС‚ */
.services-feature-block::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 90%;

  backdrop-filter: blur(6px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);

  /* Р»С‘РіРєРѕРµ СЃС‚РµРєР»Рѕ */
  background: rgba(255,255,255,0.35);

  /* РїР»Р°РІРЅРѕРµ РёСЃС‡РµР·РЅРѕРІРµРЅРёРµ Р±Р»СЋСЂР° */
  -webkit-mask-image: linear-gradient(
          to right,
          black 0%,
          black 35%,
          rgba(0,0,0,0.6) 55%,
          rgba(0,0,0,0.25) 75%,
          transparent 100%
  );

  mask-image: linear-gradient(
          to right,
          black 0%,
          black 35%,
          rgba(0,0,0,0.6) 55%,
          rgba(0,0,0,0.25) 75%,
          transparent 100%
  );

  z-index: 1;
}

.page-header-services {
  padding-bottom: 3rem;
}

.services-feature-block .container {
  position: relative;
  z-index: 2;
  bottom: -130px;
}

.services-feature-block .container.packet {
  bottom: 60px;
}

.services-feature-block .container.remont {
  bottom: 0;
}

.services-feature-block .container.design {
  bottom: -45px;
  height: 547px;
}
/* Р—Р°РіРѕР»РѕРІРѕРє Рё РѕРїРёСЃР°РЅРёРµ РІР»РµРІРѕ */
.services-feature-title {
  text-align: left;
  margin-bottom: 1rem;
}

.services-feature-desc {
  text-align: left;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* === РЎРїРёСЃРѕРє СЃ РѕСЂР°РЅР¶РµРІС‹РјРё РїРѕР»РѕСЃРєР°РјРё Рё СЃРµСЂРѕР№ Р»РёРЅРёРµР№ === */
.services-feature-list {
  list-style: none;
  margin: 0;
}

.services-feature-list li {
  position: relative;
  padding-left: 24px; /* РјРµСЃС‚Рѕ РїРѕРґ РѕСЂР°РЅР¶РµРІСѓСЋ РїРѕР»РѕСЃРєСѓ */
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: left; /* РїСЂРёС‚СЏРЅСѓС‚СЊ С‚РµРєСЃС‚ РІР»РµРІРѕ */
}

/* РћСЂР°РЅР¶РµРІР°СЏ РїРѕР»РѕСЃРєР° СЃР»РµРІР° */
.services-feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px; /* РІС‹СЂР°РІРЅРёРІР°РЅРёРµ РїРѕ РІРµСЂС‚РёРєР°Р»Рё */
  width: 6px; /* С€РёСЂРёРЅР° РѕСЂР°РЅР¶РµРІРѕР№ РїРѕР»РѕСЃРєРё */
  height: 14px; /* РІС‹СЃРѕС‚Р° РїРѕР»РѕСЃРєРё */
  border-radius: 3px;
  background-color: var(--color-accent);
  transform: rotate(90deg);
}

/* РЎРµСЂР°СЏ СЂР°Р·РґРµР»РёС‚РµР»СЊРЅР°СЏ Р»РёРЅРёСЏ */
.services-feature-list li::after {
  content: '';
  position: absolute;
  left: 17px; /* РѕС‚СЃС‚СѓРї РѕС‚ Р»РµРІРѕР№ РїРѕР»РѕСЃРєРё */
  right: 160px; /* РґР»РёРЅР° Р»РёРЅРёРё РґРѕ РєРѕРЅС†Р° РєРѕРЅС‚РµР№РЅРµСЂР° */
  bottom: -2px;
  height: 1px; /* С‚РѕР»С‰РёРЅР° Р»РёРЅРёРё */
  background-color: rgba(0,0,0,0.08);
}

.services-feature-list.design li::after {
  content: '';
  position: absolute;
  left: 17px; /* РѕС‚СЃС‚СѓРї РѕС‚ Р»РµРІРѕР№ РїРѕР»РѕСЃРєРё */
  right: 80px; /* РґР»РёРЅР° Р»РёРЅРёРё РґРѕ РєРѕРЅС†Р° РєРѕРЅС‚РµР№РЅРµСЂР° */
  bottom: -2px;
  height: 1px; /* С‚РѕР»С‰РёРЅР° Р»РёРЅРёРё */
  background-color: rgba(0,0,0,0.08);
}

/* СЃРїРёСЃРѕРє С€Р°РіРѕРІ СЃРѕ СЃС‚СЂРµР»РєР°РјРё */
.services-feature-flow {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center; /* С†РµРЅС‚СЂСѓРµРј СЌР»РµРјРµРЅС‚С‹ */
}

/* РљР°Р¶РґС‹Р№ РїСѓРЅРєС‚ */
.flow-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 320px;
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.5;
}


/* РЎС‚СЂРµР»РєР° SVG */
.flow-arrow svg {
  display: block;
  width: 24px;
  height: 40px;
  margin: 20px 0;
}
/* РљРѕРјРїР°РЅРёСЏ */
.company-card {
  max-width: 800px;
  margin: 0 auto;
}

.company-row {
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.company-row span:first-child {
  color: #777;
}

.company-row span:last-child {
  text-align: right;
  max-width: 60%;
}

/* === Table Р°РґР°РїС‚РёРІ === */
@media (max-width: 767px) {
  .pricing-table { font-size: 0.8rem; }
  .pricing-table th, .pricing-table td { padding: 0.5rem; }
}

/* === РџР»Р°РЅС€РµС‚ 768px+ === */
@media (min-width: 768px) {
  :root { --container-padding: 1.5rem; --section-gap: 3rem; }
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }
  .nav { display: block; }
  .nav ul {
    flex-direction: row;
    padding: 0;
    gap: clamp(1rem, 2.4vw, 2.5rem);
  }
  .nav-toggle { display: none; }
  .licenses-grid {
    grid-template-columns: 1fr;
    margin-left: auto;
    margin-right: auto;
  }
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .hero { padding: 4rem 0; }
  .hero h1 { font-size: 2.5rem; }
  .service-block {
    grid-template-columns: 35% 65%;
    align-items: center;
  }
  .services-feature-desc {
    text-align: center;
  }
  .flow-item {
    max-width: 90%;
    font-size: 0.95rem;
  }
}

/* === Р”РµСЃРєС‚РѕРї 1024px+ === */
@media (min-width: 1024px) {
  :root { --container-padding: 2rem; --section-gap: 4rem; }
  .advantages-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-cards { grid-template-columns: repeat(3, 1fr); }
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(3, 1fr); }
  .licenses-grid {
    grid-template-columns: repeat(2, minmax(200px, 260px));
  }
}

/* === Unification and adaptive improvements === */
img {
  max-width: 100%;
  height: auto;
}

.form-request-block {
  width: 100%;
}

.form-group {
  margin-bottom: 0.9rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.35rem;
}

.service-block-slider {
  min-width: 0;
}

.hero h1 + h1 {
  margin-top: 0;
}

.header-actions {
  flex-wrap: wrap;
}

@media (max-width: 1023px) {
  .header .logo {
    margin-right: 0;
  }

  .header .container {
    align-items: flex-start;
  }

  .header-actions {
    width: 100%;
    margin-left: 0;
    justify-content: space-between;
  }

  .header-phone {
    font-size: 1.05rem;
  }

  .btn {
    padding: 0.65rem 1.1rem;
  }

  .nav {
    width: 100%;
  }

  .nav > ul {
    width: 100%;
  }

  .nav-dropdown {
    position: static;
    top: auto;
    left: auto;
    box-shadow: none;
    border: none;
    min-width: 0;
    background: transparent;
    padding: 0;
    margin: 0.25rem 0 0;
  }

  .nav-dropdown a {
    white-space: normal;
    padding: 0.45rem 0 0.45rem 1rem;
  }

  .contacts-map-block {
    min-height: auto;
  }

  .contacts-map-bg {
    position: static;
  }

  .contacts-map-bg iframe {
    height: 280px;
  }

  .contacts-map-overlay {
    position: static;
    pointer-events: auto;
    padding: 1rem 0;
  }

  .contacts-map-overlay .container {
    justify-content: center;
  }

  .contacts-card {
    width: 100%;
    max-width: 100%;
  }

  .services-feature-block {
    padding: 1.5rem 0;
  }

  .services-feature-block::before {
    display: none;
  }

  .services-feature-bg {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: none;
    aspect-ratio: auto;
    height: 220px;
    margin-bottom: 1rem;
  }

  .services-feature-content {
    max-width: 100%;
    height: auto;
  }

  .services-feature-block .container,
  .services-feature-block .container.packet,
  .services-feature-block .container.remont,
  .services-feature-block .container.design {
    bottom: auto;
    height: auto;
  }

  .services-feature-desc {
    text-align: left;
  }

  .services-feature-list li::after,
  .services-feature-list.design li::after {
    display: none;
  }

  .services-feature-block.paket {
    padding: 1.5rem 0;
  }

  .company-row {
    flex-direction: column;
    gap: 0.4rem;
  }

  .company-row span:last-child {
    max-width: 100%;
    text-align: left;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 1.45rem;
  }

  .hero {
    padding: 1.8rem 0;
  }

  .header-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
  }

  .header-actions .btn,
  .header-phone {
    text-align: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-card {
    padding: 1.25rem;
  }

  .service-block {
    gap: 1.5rem;
  }

  .service-block-links,
  .service-card-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .section-title {
    margin-bottom: 1rem;
  }

  .form-request-wrapper {
    padding: 1.25rem;
  }

  .pricing-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .cta-block {
    padding: 1.25rem;
  }

  .cta-block-title {
    font-size: 1.35rem;
  }
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
