/* ===== АРБОЛЕС — Main Stylesheet ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Open+Sans:wght@400;500;600;700&display=swap');

:root {
  --green-dark: #0F4A2B;
  --green-mid: #1A7A42;
  --green-light: #22A95B;
  --green-accent: #27C968;
  --orange: #E8912D;
  --orange-hover: #D07A1F;
  --white: #FFFFFF;
  --gray-50: #F8FAF9;
  --gray-100: #F0F4F2;
  --gray-200: #DDE5E0;
  --gray-600: #5A6B62;
  --gray-800: #2C3E35;
  --text: #1A2B22;
  --shadow-sm: 0 2px 8px rgba(15,74,43,0.08);
  --shadow-md: 0 4px 20px rgba(15,74,43,0.12);
  --shadow-lg: 0 8px 40px rgba(15,74,43,0.16);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

a { color: inherit; text-decoration: none; transition: color var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--green-dark);
  color: var(--white);
  font-size: 0.85rem;
  padding: 6px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar__min-price { opacity: 0.85; font-size: 0.8rem; }
.top-bar__contacts { display: flex; align-items: center; gap: 16px; }
.top-bar__contacts a { color: var(--white); display: flex; align-items: center; gap: 6px; }
.top-bar__contacts a:hover { color: var(--green-accent); }
.top-bar__schedule { opacity: 0.85; font-size: 0.8rem; }

/* ===== HEADER / NAV ===== */
.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo__icon {
  width: 44px; height: 44px;
  background: var(--green-mid);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  font-size: 1.4rem;
  font-weight: 900;
  font-family: 'Montserrat', sans-serif;
}
.logo__text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--green-dark);
  letter-spacing: 1px;
}
.logo__text span { color: var(--orange); }
.logo__sub {
  font-size: 0.65rem;
  color: var(--gray-600);
  display: block;
  margin-top: -2px;
  letter-spacing: 0.5px;
}

.nav { display: flex; align-items: center; gap: 6px; }
.nav__link {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-800);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}
.nav__link:hover, .nav__link--active {
  color: var(--green-mid);
  background: var(--gray-100);
}

/* Dropdown */
.nav__dropdown { position: relative; }
.nav__dropdown-toggle { cursor: pointer; }
.nav__dropdown-toggle::after {
  content: '▾';
  margin-left: 4px;
  font-size: 0.7em;
}
.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 260px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  z-index: 100;
}
.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.88rem;
  color: var(--gray-800);
  transition: all var(--transition);
}
.nav__dropdown-menu a:hover {
  background: var(--gray-100);
  color: var(--green-mid);
  padding-left: 24px;
}

/* CTA Button Header */
.btn-callback {
  background: var(--orange);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-callback:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(232,145,45,0.4);
}

/* Burger Menu */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.burger span {
  width: 26px; height: 3px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero--main { min-height: 600px; }
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,74,43,0.92) 0%, rgba(26,122,66,0.75) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 650px;
  padding: 60px 0;
}
.hero__content h1 {
  font-size: 2.8rem;
  margin-bottom: 16px;
  font-weight: 800;
}
.hero__content p {
  font-size: 1.15rem;
  opacity: 0.92;
  margin-bottom: 28px;
  line-height: 1.7;
}
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}
.hero__cta:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,145,45,0.4);
}

/* ===== SECTION STYLES ===== */
.section { padding: 70px 0; }
.section--green {
  background: linear-gradient(135deg, var(--green-mid) 0%, var(--green-dark) 100%);
  color: var(--white);
}
.section--gray { background: var(--gray-50); }
.section__title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 16px;
}
.section__subtitle {
  text-align: center;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto 48px;
  font-size: 1.05rem;
}
.section--green .section__subtitle { color: rgba(255,255,255,0.8); }

/* ===== WHY US ===== */
.benefits { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.benefit {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--gray-200);
}
.benefit:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-light);
}
.benefit__icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--green-light), var(--green-mid));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  font-size: 1.5rem;
}
.benefit__title {
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 700;
}
.benefit__text { font-size: 0.9rem; color: var(--gray-600); line-height: 1.6; }

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--gray-200);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card__img {
  height: 200px;
  overflow: hidden;
}
.service-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card__img img { transform: scale(1.05); }
.service-card__body { padding: 24px; }
.service-card__title {
  font-size: 1.15rem;
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--green-dark);
}
.service-card__desc {
  font-size: 0.88rem;
  color: var(--gray-600);
  margin-bottom: 16px;
  line-height: 1.5;
}
.service-card__price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--orange);
  font-size: 1.05rem;
  margin-bottom: 14px;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green-mid);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.service-card__link:hover {
  color: var(--green-dark);
  gap: 10px;
}
.service-card__link::after { content: '→'; }

/* ===== SERVICE PAGE — Method Cards ===== */
.methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.method-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--gray-200);
  transition: all var(--transition);
}
.method-card:hover { border-color: var(--green-light); box-shadow: var(--shadow-md); }
.method-card__img { height: 200px; overflow: hidden; }
.method-card__img img { width: 100%; height: 100%; object-fit: cover; }
.method-card__body { padding: 22px; }
.method-card__title { font-size: 1.05rem; margin-bottom: 8px; color: var(--green-dark); }
.method-card__desc { font-size: 0.85rem; color: var(--gray-600); margin-bottom: 14px; line-height: 1.5; }
.method-card__footer { display: flex; justify-content: space-between; align-items: center; }
.method-card__price { font-weight: 700; color: var(--orange); font-family: 'Montserrat', sans-serif; }
.method-card__btn {
  background: var(--green-mid);
  color: var(--white);
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}
.method-card__btn:hover { background: var(--green-dark); }

/* ===== PRICE TABLE ===== */
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.price-table thead { background: var(--green-dark); color: var(--white); }
.price-table th {
  padding: 14px 20px;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
}
.price-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.9rem;
}
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:hover td { background: var(--gray-50); }
.price-table td:last-child {
  font-weight: 700;
  color: var(--green-dark);
  font-family: 'Montserrat', sans-serif;
  white-space: nowrap;
}

/* ===== CALCULATOR ===== */
.calculator {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  max-width: 800px;
  margin: 0 auto;
  border: 2px solid var(--green-light);
}
.calculator__title {
  font-size: 1.5rem;
  color: var(--green-dark);
  margin-bottom: 8px;
  text-align: center;
}
.calculator__subtitle {
  text-align: center;
  color: var(--gray-600);
  margin-bottom: 28px;
  font-size: 0.9rem;
}
.calc-form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.calc-field { display: flex; flex-direction: column; gap: 6px; }
.calc-field--full { grid-column: 1 / -1; }
.calc-field label {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--gray-800);
}
.calc-field select, .calc-field input {
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: 'Open Sans', sans-serif;
  transition: border-color var(--transition);
  background: var(--white);
  color: var(--text);
}
.calc-field select:focus, .calc-field input:focus {
  outline: none;
  border-color: var(--green-mid);
}
.calc-result {
  grid-column: 1 / -1;
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  display: none;
}
.calc-result.visible { display: block; }
.calc-result__price {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.calc-result__note {
  font-size: 0.88rem;
  color: var(--gray-600);
  margin-bottom: 16px;
  line-height: 1.5;
}
.calc-result__cta {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--green-mid);
  font-weight: 700;
  font-size: 0.95rem;
}
.calc-btn {
  grid-column: 1 / -1;
  background: var(--green-mid);
  color: var(--white);
  padding: 14px;
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
}
.calc-btn:hover { background: var(--green-dark); }

/* ===== URGENCY BANNER ===== */
.urgency {
  position: relative;
  padding: 80px 0;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}
.urgency__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.urgency__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15,74,43,0.85);
}
.urgency__content { position: relative; z-index: 1; }
.urgency__label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.urgency__text {
  font-size: 1.2rem;
  margin-bottom: 4px;
  opacity: 0.9;
}
.urgency__phone {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--orange);
}
.urgency__phone a { color: var(--orange); }
.urgency__phone a:hover { color: var(--white); }

/* ===== EVALUATION BLOCK ===== */
.evaluation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.evaluation__list { font-size: 1.05rem; }
.evaluation__list h3 { font-size: 1.4rem; margin-bottom: 20px; }
.evaluation__list ol { counter-reset: eval; }
.evaluation__list ol li {
  counter-increment: eval;
  padding: 8px 0;
  padding-left: 36px;
  position: relative;
  font-size: 1rem;
}
.evaluation__list ol li::before {
  content: counter(eval) '.';
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--green-mid);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
}
.evaluation__tips { margin-top: 24px; }
.evaluation__tips h4 { margin-bottom: 12px; font-size: 1.1rem; }
.evaluation__tips ul li {
  padding: 4px 0 4px 20px;
  position: relative;
  font-size: 0.92rem;
  color: var(--gray-600);
}
.evaluation__tips ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--green-mid);
  font-weight: bold;
}
.evaluation__warning {
  margin-top: 16px;
  padding: 12px 16px;
  background: #FFF3E0;
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.88rem;
  color: #E65100;
  font-weight: 600;
}
.evaluation__img {
  display: flex;
  justify-content: center;
}
.evaluation__img img {
  max-width: 320px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.evaluation__cta {
  margin-top: 20px;
  text-align: center;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border: 2px solid var(--green-mid);
  color: var(--green-mid);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  transition: all var(--transition);
  background: none;
  cursor: pointer;
}
.btn-outline:hover {
  background: var(--green-mid);
  color: var(--white);
}

/* ===== HOW WE WORK ===== */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; counter-reset: step; }
.step {
  text-align: center;
  padding: 24px;
  position: relative;
}
.step__num {
  width: 56px; height: 56px;
  background: var(--green-mid);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  margin: 0 auto 16px;
}
.step__title {
  font-size: 1rem;
  margin-bottom: 8px;
  font-weight: 700;
}
.step__text { font-size: 0.85rem; color: var(--gray-600); }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item:hover { border-color: var(--green-light); }
.faq-question {
  padding: 18px 24px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  transition: all var(--transition);
}
.faq-question:hover { background: var(--gray-50); }
.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--green-mid);
  font-weight: 300;
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer__inner {
  padding: 0 24px 18px;
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* ===== REVIEWS ===== */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.review {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}
.review__stars { color: var(--orange); margin-bottom: 12px; font-size: 1.1rem; letter-spacing: 2px; }
.review__text { font-size: 0.92rem; color: var(--gray-600); margin-bottom: 16px; line-height: 1.6; font-style: italic; }
.review__author { font-weight: 700; font-size: 0.9rem; }
.review__source { font-size: 0.8rem; color: var(--gray-600); }

/* ===== TEAM ===== */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 28px; }
.team-card { text-align: center; }
.team-card__img {
  width: 200px; height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  border: 4px solid var(--green-light);
  box-shadow: var(--shadow-sm);
}
.team-card__img img { width: 100%; height: 100%; object-fit: cover; }
.team-card__name { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.team-card__role { font-size: 0.88rem; color: var(--gray-600); margin-bottom: 4px; }
.team-card__exp { font-size: 0.82rem; color: var(--green-mid); font-weight: 600; }

/* ===== CONTACT SECTION ===== */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-info h2 { font-size: 2rem; margin-bottom: 24px; }
.contact-info__item {
  margin-bottom: 20px;
}
.contact-info__label { font-size: 0.82rem; color: var(--gray-600); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-info__value { font-size: 1.2rem; font-weight: 700; }
.contact-info__value a { color: var(--text); }
.contact-info__value a:hover { color: var(--green-mid); }
.contact-messengers { display: flex; gap: 12px; margin-top: 12px; }
.contact-messengers a {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  transition: all var(--transition);
}
.messenger--tg { background: #0088CC; }
.messenger--tg:hover { background: #006699; transform: scale(1.1); }
.messenger--wa { background: #25D366; }
.messenger--wa:hover { background: #1FAD54; transform: scale(1.1); }

/* ===== FORM ===== */
.form-card {
  background: var(--green-dark);
  border-radius: var(--radius-lg);
  padding: 36px;
  color: var(--white);
}
.form-card__label {
  font-size: 0.88rem;
  opacity: 0.8;
  margin-bottom: 4px;
  text-align: center;
}
.form-card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  text-align: center;
}
.form-card__subtitle {
  opacity: 0.8;
  margin-bottom: 24px;
  font-size: 0.92rem;
  text-align: center;
}
.form-field { margin-bottom: 14px; }
.form-field input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 0.95rem;
  font-family: 'Open Sans', sans-serif;
  transition: border-color var(--transition);
}
.form-field input::placeholder { color: rgba(255,255,255,0.5); }
.form-field input:focus {
  outline: none;
  border-color: var(--green-accent);
  background: rgba(255,255,255,0.15);
}
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.8rem;
  opacity: 0.8;
  line-height: 1.4;
}
.form-consent input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--green-accent);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.form-consent a {
  color: var(--green-accent);
  text-decoration: underline;
}
.form-consent a:hover { color: var(--white); }
.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
}
.form-submit:hover {
  background: var(--orange-hover);
}
.form-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--green-dark);
  color: var(--white);
  padding: 48px 0 24px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 280px 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
.footer__brand .logo__text { color: var(--white); }
.footer__contacts {
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 2;
}
.footer__contacts a { color: rgba(255,255,255,0.8); }
.footer__contacts a:hover { color: var(--white); }
.footer__nav h4, .footer__services h4 {
  font-size: 0.9rem;
  margin-bottom: 16px;
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.footer__nav ul, .footer__services ul { display: flex; flex-direction: column; gap: 8px; }
.footer__nav a, .footer__services a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  transition: all var(--transition);
}
.footer__nav a:hover, .footer__services a:hover {
  color: var(--white);
  padding-left: 4px;
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  opacity: 0.6;
}
.footer__bottom a { color: rgba(255,255,255,0.7); text-decoration: underline; }
.footer__bottom a:hover { color: var(--white); }

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  padding: 12px 0;
  font-size: 0.82rem;
  color: var(--gray-600);
}
.breadcrumbs a { color: var(--green-mid); }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs span { margin: 0 6px; opacity: 0.5; }

/* ===== GALLERY ===== */
.gallery-slider {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius);
}
.gallery-slider__track { display: flex; transition: transform 0.5s ease; }
.gallery-slider__slide { min-width: 100%; }
.gallery-slider__slide img { width: 100%; height: 400px; object-fit: cover; }
.gallery-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  background: var(--green-mid);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all var(--transition);
  z-index: 5;
}
.gallery-slider__btn:hover { background: var(--green-dark); }
.gallery-slider__btn--prev { left: 12px; }
.gallery-slider__btn--next { right: 12px; }

/* ===== LEGAL PAGES ===== */
.legal-content { max-width: 800px; margin: 0 auto; padding: 40px 20px 60px; }
.legal-content h1 { font-size: 2rem; margin-bottom: 24px; color: var(--green-dark); }
.legal-content h2 { font-size: 1.3rem; margin: 28px 0 12px; color: var(--green-dark); }
.legal-content p { margin-bottom: 14px; line-height: 1.7; font-size: 0.92rem; color: var(--gray-800); }
.legal-content ul { margin-bottom: 14px; padding-left: 20px; }
.legal-content ul li {
  list-style: disc;
  font-size: 0.92rem;
  color: var(--gray-800);
  line-height: 1.7;
  margin-bottom: 6px;
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.active { display: flex; }
.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 480px;
  width: 100%;
  position: relative;
}
.modal__close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gray-600);
  transition: color var(--transition);
}
.modal__close:hover { color: var(--text); }
.modal h3 { font-size: 1.4rem; margin-bottom: 8px; color: var(--green-dark); }
.modal p { color: var(--gray-600); margin-bottom: 20px; font-size: 0.92rem; }
.modal .form-field input {
  color: var(--text);
  background: var(--gray-50);
  border: 2px solid var(--gray-200);
}
.modal .form-field input:focus { border-color: var(--green-mid); }
.modal .form-field input::placeholder { color: var(--gray-600); }
.modal .form-consent { color: var(--gray-600); opacity: 1; }
.modal .form-consent a { color: var(--green-mid); }

/* ===== FLOATING BUTTONS ===== */
.floating-btns {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 900;
}
.floating-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  text-decoration: none;
}
.floating-btn:hover { transform: scale(1.1); }
.floating-btn--wa { background: #25D366; }
.floating-btn--tg { background: #0088CC; }
.floating-btn--phone { background: var(--orange); }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .header .container {
    gap: 10px;
  }

  .nav { display: none; }
  .nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 16px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }

  .nav__dropdown-menu {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    padding-left: 16px;
  }

  .nav__dropdown.open .nav__dropdown-menu { display: block; }

  .btn-callback {
    display: none;
  }

  .logo {
    min-width: 0;
    flex: 1;
  }

  .logo__text {
    font-size: 1.2rem;
    letter-spacing: 0.4px;
  }

  .logo__sub {
    font-size: 0.58rem;
  }

  .burger {
    display: flex;
    flex-shrink: 0;
    margin-left: auto;
  }

  .hero__content h1 { font-size: 2rem; }
  .footer__grid { grid-template-columns: 1fr; }
  .contact-section { grid-template-columns: 1fr; }
  .evaluation { grid-template-columns: 1fr; }
  .calc-form { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero__content h1 { font-size: 1.6rem; }
  .hero__content p { font-size: 0.95rem; }
  .section { padding: 48px 0; }
  .section__title { font-size: 1.5rem; }
  .top-bar .container { flex-direction: column; text-align: center; }
  .services-grid { grid-template-columns: 1fr; }
  .methods-grid { grid-template-columns: 1fr; }

  .calculator {
    padding: 24px 12px;
    overflow: hidden;
  }

  .calc-form {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .calc-field {
    min-width: 0;
    width: 100%;
  }

  .calc-field select,
  .calc-field input,
  .calc-btn {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    display: block;
  }

  .evaluation {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .evaluation__list,
  .evaluation__img,
  .evaluation__cta {
    min-width: 0;
    width: 100%;
  }

  .evaluation__img {
    display: block;
  }

  .evaluation__img img {
    max-width: 100%;
    width: 100%;
    height: auto;
  }

  .evaluation__cta .btn-outline {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    text-align: center;
    white-space: normal;
    box-sizing: border-box;
    padding: 12px 16px;
  }

  .evaluation__list ol li,
  .evaluation__tips ul li {
    word-break: break-word;
  }

  .form-card { padding: 24px 16px; }
  .urgency__label { font-size: 1.4rem; }
  .urgency__phone { font-size: 1.6rem; }
  .gallery-slider__slide img { height: 250px; }
  .price-table { font-size: 0.82rem; }
  .price-table th,
  .price-table td { padding: 10px 12px; }
}
/* ===== Honeypot (антиспам) — скрыто от людей, видно ботам ===== */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  tab-index: -1;
}

/* ===== Оффер «фото со скидкой» в хиро (добавлено 15.07.2026) ===== */
.hero__offer {
  display: inline-block;
  background: rgba(15, 74, 43, 0.55);
  border-left: 3px solid var(--orange);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 1rem !important;
  line-height: 1.6;
  margin-bottom: 28px;
}
.hero__offer a {
  color: var(--green-accent);
  font-weight: 700;
  text-decoration: underline;
  /* удобная цель для пальца на тачскринах */
  padding: 2px 2px;
  text-underline-offset: 2px;
  overflow-wrap: anywhere;
}
.hero__offer b { color: var(--orange); white-space: nowrap; }
@media (max-width: 900px) {
  .hero__offer { font-size: 0.95rem !important; }
}
@media (max-width: 600px) {
  .hero__offer {
    display: block;
    font-size: 0.9rem !important;
    padding: 10px 12px;
    line-height: 1.55;
  }
}
