:root {
  --green-950: #0c2419;
  --green-900: #123526;
  --green-800: #184632;
  --green-700: #226145;
  --green-100: #e6f0e7;
  --warm-50: #fbf7ef;
  --warm-100: #f2eadc;
  --orange-600: #d96b27;
  --orange-700: #b9561f;
  --graphite: #26302d;
  --muted: #68736e;
  --line: #e2dacd;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(12, 36, 25, 0.14);
  --shadow-sm: 0 4px 12px rgba(12, 36, 25, 0.08);
  --radius: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--graphite);
  background: var(--warm-50);
  font-family: 'Inter', Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
input,
select,
textarea {
  transition: all 0.2s ease-out;
}

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

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 1000;
  padding: 12px 24px;
  color: var(--white);
  background: var(--green-700);
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 16px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  text-align: center;
  line-height: 1.2;
}

.btn-small {
  padding: 10px 20px;
  font-size: 0.95rem;
}

.btn-full {
  width: 100%;
}

.btn-accent {
  color: var(--white);
  background: var(--orange-600);
}

.btn-accent:hover {
  background: var(--orange-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-ghost {
  color: var(--green-900);
  background: transparent;
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  background: var(--warm-100);
  border-color: var(--muted);
}

.btn-ghost-dark {
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-ghost-dark:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn-light {
  color: var(--green-900);
  background: var(--white);
}

.btn-light:hover {
  background: var(--warm-100);
}

.btn-hero-primary {
  padding: 18px 36px;
  font-size: 1.1rem;
  color: var(--white);
  background: var(--orange-600);
}

.btn-hero-primary:hover {
  background: var(--orange-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(217, 107, 39, 0.4);
}

.btn-hero-secondary {
  padding: 18px 36px;
  font-size: 1.1rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
}

.link-more {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  color: var(--green-700);
  gap: 4px;
}

.link-more::after {
  content: "→";
}

.link-more:hover {
  color: var(--orange-600);
  gap: 8px;
}

/* ──────────────────────────────────────────────
   HEADER — modern frosted glass, always light
   ────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: none;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Scrolled state — более непрозрачная, с тенью, текст не меняется */
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 24px rgba(12, 36, 25, 0.1);
}

/* Push page content below fixed header */
body {
  padding-top: 72px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1440px;
  height: 72px;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-logo {
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-logo-header {
  width: 178px;
  height: auto;
  max-height: 55px;
}

.brand-logo-footer {
  width: 210px;
  height: auto;
}

.brand span:not(.brand-logo) {
  display: flex;
  flex-direction: column;
}

.brand strong {
  font-size: 1.1rem;
  line-height: 1.2;
}

.brand small {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Navigation links */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  position: relative;
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 8px;
  color: var(--graphite);
  transition: color 0.2s, background 0.2s;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--green-700);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.22s ease;
}

.main-nav a:hover {
  color: var(--green-700);
  background: rgba(34, 97, 69, 0.07);
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.mobile-nav-contacts {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex-shrink: 0;
}

.header-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  flex-shrink: 0;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--green-900);
  white-space: nowrap;
  transition: color 0.2s, background-color 0.2s;
  text-decoration: none;
}

.phone-link:hover {
  color: var(--green-700);
}

.phone-icon {
  flex-shrink: 0;
  color: var(--green-700);
  transition: transform 0.2s;
}

.phone-link:hover .phone-icon {
  transform: scale(1.08);
}

.header-actions .btn {
  padding-inline: 18px;
  white-space: nowrap;
}

.header-contact span {
  font-size: 0.8rem;
  color: var(--muted);
  transition: color 0.2s;
}

/* Hide empty placeholders */
.phone-link[href^="tel:[]"],
.header-contact span:contains("[") {
    display: none;
}


.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: transparent;
  border: none;
}

.nav-toggle > span:not(.sr-only) {
  width: 100%;
  height: 2px;
  background: var(--graphite);
  border-radius: 2px;
}

@media (max-width: 1480px) {
  .main-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
    order: 3;
    flex-shrink: 0;
  }

  .main-nav.is-open {
    position: fixed;
    top: 72px;
    left: 0;
    z-index: 199;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    height: calc(100vh - 72px);
    height: calc(100dvh - 72px);
    gap: 0;
    padding: 24px 20px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow-y: auto;
  }

  .main-nav.is-open .nav-link,
  .main-nav.is-open > a:not([class*="mobile-nav"]) {
    padding: 10px 0;
    font-size: 1.05rem;
    color: var(--graphite);
    border-bottom: 1px solid var(--line);
  }

  .main-nav.is-open .nav-link--desktop-only {
    display: none !important;
  }

  .main-nav.is-open .nav-link:hover,
  .main-nav.is-open > a:not([class*="mobile-nav"]):hover {
    color: var(--green-700);
    background: transparent;
  }

  .main-nav.is-open .nav-link::after,
  .main-nav.is-open > a:not([class*="mobile-nav"])::after {
    display: none;
  }

  .main-nav.is-open .mobile-nav-contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1.5px solid var(--line);
    flex-shrink: 0;
  }

  .mobile-nav-contacts-title {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
  }

  .mobile-nav-phone-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 48px;
    padding: 10px 14px;
    background: var(--green-900);
    color: var(--white) !important;
    border: none !important;
    border-radius: 10px;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(18, 53, 38, 0.18);
    transition: background 0.18s ease, transform 0.15s ease;
    box-sizing: border-box;
    width: 100%;
  }

  .mobile-nav-phone-btn:hover,
  .mobile-nav-phone-btn:active {
    background: var(--green-800);
    color: var(--white) !important;
    transform: translateY(-1px);
  }

  .mobile-nav-phone-icon {
    flex-shrink: 0;
    color: #34d399;
  }

  .mobile-nav-phone-content {
    display: flex;
    flex-direction: column;
    min-width: 0;
    text-align: left;
  }

  .mobile-nav-phone-num {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    white-space: nowrap;
  }

  .mobile-nav-phone-hours {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.2;
    margin-top: 2px;
  }

  .mobile-nav-messengers {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    box-sizing: border-box;
  }

  .mobile-nav-msg-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 46px;
    min-width: 0;
    padding: 8px 4px;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none !important;
    border: none !important;
    transition: transform 0.15s ease, filter 0.15s ease;
    white-space: nowrap;
    box-sizing: border-box;
  }

  .mobile-nav-msg-btn:hover,
  .mobile-nav-msg-btn:active {
    transform: translateY(-1px);
    filter: brightness(1.06);
  }

  .mobile-nav-msg-btn svg {
    flex-shrink: 0;
  }

  .mobile-nav-msg-wa {
    background: #25d366;
    color: #ffffff !important;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.28);
  }

  .mobile-nav-msg-tg {
    background: #229ed9;
    color: #ffffff !important;
    box-shadow: 0 2px 8px rgba(34, 158, 217, 0.28);
  }

  .mobile-nav-msg-max {
    background: #5b4bdf;
    color: #ffffff !important;
    box-shadow: 0 2px 8px rgba(91, 75, 223, 0.28);
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 60px;
  }

  .header-inner {
    height: 60px;
    gap: 8px;
  }

  .brand-logo-header {
    width: 125px;
    max-height: 40px;
  }

  .header-actions {
    margin-left: auto;
    gap: 4px;
  }

  .header-actions .btn {
    display: none;
  }

  .header-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    justify-content: center;
  }

  .header-contact .phone-link {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--green-900);
    gap: 4px;
    line-height: 1.2;
    padding: 3px 6px;
    border-radius: 6px;
  }

  .header-contact .phone-icon {
    width: 13px;
    height: 13px;
    color: var(--green-700);
  }

  .header-contact .header-hours {
    font-size: 0.68rem;
    line-height: 1.1;
    color: var(--muted);
  }

  .nav-toggle {
    display: flex;
    width: 38px;
    height: 38px;
    padding: 7px;
  }

  .main-nav.is-open {
    position: fixed;
    top: 60px;
    left: 0;
    z-index: 199;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: calc(100vh - 60px);
    height: calc(100dvh - 60px);
    padding: 16px 20px calc(env(safe-area-inset-bottom, 0px) + 20px);
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .main-nav.is-open .nav-link,
  .main-nav.is-open > a:not([class*="mobile-nav"]) {
    font-size: 1.15rem;
    padding: 9px 0;
    color: var(--graphite);
    border-bottom: 1px solid var(--line);
  }

  .main-nav.is-open .mobile-nav-contacts {
    margin-top: 12px;
    padding-top: 12px;
    gap: 8px;
  }
}

.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  color: var(--white);
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-shade {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(12, 36, 25, 0.9) 0%, rgba(12, 36, 25, 0.6) 50%, rgba(12, 36, 25, 0.2) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: center;
}

.hero-copy {
  max-width: 640px;
}

.hero-badge {
  display: inline-block;
  padding: 6px 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-950);
  background: var(--orange-600); /* Use accent color for visibility */
  color: #fff;
  border-radius: 20px;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 24px;
  letter-spacing: -1px;
}

.hero-lead {
  font-size: 1.25rem;
  line-height: 1.6;
  margin: 0 0 40px;
  opacity: 0.9;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 0;
}

.hero-cta-note {
  max-width: 560px;
  margin: 14px 0 0;
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.82;
}

.hero-prices {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.hero-prices-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 24px;
  opacity: 0.8;
}

.hero-prices ul {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.hero-prices li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-prices li:last-child {
  border-bottom: none;
}

.hero-prices span {
  font-size: 1.1rem;
}

.hero-prices strong {
  font-size: 1.25rem;
  color: var(--orange-600);
}

.hero-prices-note {
  font-size: 0.85rem;
  opacity: 0.7;
  margin: 0 0 24px;
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-shade {
      background: linear-gradient(to bottom, rgba(12, 36, 25, 0.8) 0%, rgba(12, 36, 25, 0.9) 100%);
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 80px 0 60px;
    min-height: auto;
  }
  .hero h1 {
    font-size: 2.25rem;
  }
  .hero-lead {
    font-size: 1.1rem;
  }
  .hero-actions {
    flex-direction: column;
  }
}

.quick-lead-section {
    background: var(--green-900);
    padding: 40px 0;
    color: var(--white);
    position: relative;
    z-index: 10;
}

.quick-lead-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.quick-lead-text h2 {
    margin: 0 0 8px;
    font-size: 1.5rem;
}

.quick-lead-text p {
    margin: 0;
    opacity: 0.8;
}

.quick-lead-actions {
    flex: 1;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.quick-lead-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-lead-field {
    display: flex;
    gap: 8px;
}

.quick-lead-field input {
    flex: 1;
    padding: 0 16px;
    border: none;
    border-radius: var(--radius);
    height: 52px;
}

.quick-lead-field button {
    height: 52px;
}

.quick-lead-hint {
    margin: 0;
    font-size: 0.8rem;
    opacity: 0.6;
    text-align: right;
}

.quick-lead-consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.78rem;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.78);
}

.quick-lead-consent input {
    margin-top: 2px;
    flex: 0 0 auto;
}

.quick-lead-consent a {
    color: var(--white);
    text-decoration: underline;
}

.quick-lead-success {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-color: rgba(255,255,255,0.2);
}


.form-success.is-error {
  background: #fff4dd;
  border-color: var(--orange-600);
}


.quick-lead-success.is-error {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.45);
}

@media(max-width: 768px) {
    .quick-lead-inner {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    .quick-lead-field {
        flex-direction: column;
    }
    .quick-lead-hint {
        text-align: center;
    }
}

.section {
  padding: 100px 0;
}

.section-muted {
  background: var(--warm-100);
}

.section-dark {
  background: var(--green-950);
  color: var(--white);
}

.section-head {
  max-width: 680px;
  margin-bottom: 64px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange-600);
  margin: 0 0 16px;
}

.section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 24px;
  letter-spacing: -0.5px;
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }
  .section h2 {
    font-size: 2rem;
  }
  .section-head {
    margin-bottom: 40px;
  }
}

.price-table-wrap {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 40px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  padding: 20px 24px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.price-table th {
  background: var(--green-950);
  color: var(--white);
  font-weight: 600;
}

.price-table td:first-child {
  font-weight: 600;
}

.price-cell {
  color: var(--orange-600);
  font-weight: 700;
  white-space: nowrap;
}

.price-factors-cell {
  color: var(--muted);
  font-size: 0.9rem;
}

.price-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.price-cta-note {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
  .price-table-wrap {
    overflow-x: auto;
  }
  .price-table th, .price-table td {
    padding: 16px;
  }
}

.factors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.factor-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  font-weight: 600;
  font-size: 1.1rem;
}

.factor-icon {
  font-size: 2rem;
  opacity: 0.8;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.service-card img {
  aspect-ratio: 3/2;
  object-fit: cover;
}

.service-card > div {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card h3 {
  font-size: 1.5rem;
  margin: 0 0 16px;
}

.service-card p {
  color: var(--muted);
  margin: 0 0 24px;
}

.card-note {
  font-size: 0.85rem;
  background: var(--warm-50);
  padding: 12px;
  border-radius: 8px;
  margin-bottom: auto !important;
}

.card-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}


.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.work-card {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 24px;
}

.before-after figure {
  margin: 0;
  position: relative;
}

.before-after img {
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 8px;
}

.before-after figcaption {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--white);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
}

.work-card h3 {
  font-size: 1.25rem;
  margin: 0 0 8px;
}

.work-card p {
  color: var(--orange-600);
  font-weight: 600;
  margin: 0 0 16px;
}

.work-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 0.9rem;
}

.work-card li {
  margin-bottom: 8px;
}

.experience-proof {
  padding-bottom: 72px;
}

.experience-head {
  margin-bottom: 40px;
}

.experience-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.experience-stat {
  min-width: 0;
  padding: 0 28px;
  border-left: 1px solid var(--line);
}

.experience-stat:first-child {
  padding-left: 0;
  border-left: 0;
}

.experience-stat:last-child {
  padding-right: 0;
}

.experience-stat dt {
  margin: 0 0 8px;
  color: var(--green-900);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.experience-stat-placeholder dt {
  font-size: 1.6rem;
}

.experience-stat dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.proof-transition {
  margin: 32px 0 0;
  color: var(--green-900);
  font-size: 1.15rem;
  font-weight: 700;
}

.video-proof-subhead {
  max-width: 800px;
  margin: -16px 0 36px;
}

.video-proof-subhead p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.5;
  margin: 0;
}

.video-section {
  padding: 80px 0;
  border-top: 1px solid var(--line);
}

.video-group-head {
  margin-bottom: 32px;
}

.video-group-head h2,
.video-group-head h3 {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--green-950);
  margin: 0 0 10px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.video-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  width: 100%;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.video-media {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: var(--green-950);
}

.work-video,
.video-media iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.work-video {
  object-fit: contain;
  background: var(--green-950);
}

.yt-facade {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: var(--green-950);
  text-decoration: none;
  overflow: hidden;
}

.yt-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.yt-facade::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.22), transparent 45%);
  pointer-events: none;
}

.yt-facade:hover img,
.yt-facade:focus-visible img {
  transform: scale(1.04);
}

.yt-facade:focus-visible {
  outline: 3px solid var(--orange-600);
  outline-offset: -3px;
}

.yt-play-btn {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: rgba(0, 0, 0, 0.72);
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 3px;
  color: var(--white);
  font-size: 22px;
  transition: background 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.yt-facade:hover .yt-play-btn,
.yt-facade:focus-visible .yt-play-btn {
  background: var(--orange-600);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-caption {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 190px;
  padding: 16px 18px;
}

.video-caption h3 {
  margin: 0 0 10px;
  color: var(--green-900);
  font-size: 1rem;
  line-height: 1.35;
}

.video-caption p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.video-marker {
  display: block;
  margin-top: auto;
  color: var(--green-700);
  font-size: 0.82rem;
  font-weight: 700;
}

.video-safety {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

.video-safety-head {
  max-width: 680px;
  margin-bottom: 28px;
}

.video-safety h3 {
  margin: 0;
  font-size: 1.75rem;
  line-height: 1.25;
}

.video-safety-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
}

.video-safety-steps article,
.safety-step-card {
  min-width: 0;
  padding: 0 18px;
  border-left: 1px solid var(--line);
  position: relative;
}

.video-safety-steps article:first-child,
.safety-step-card:first-child {
  padding-left: 0;
  border-left: 0;
}

.video-safety-steps article:last-child,
.safety-step-card:last-child {
  padding-right: 0;
}

.safety-step-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 14px;
}

.safety-flow-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  background: rgba(224, 90, 43, 0.12);
  color: var(--orange-700, #c8491c);
  font-size: 0.76rem;
  font-weight: 700;
  border-radius: 6px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  white-space: nowrap;
}

.safety-flow-arrow {
  display: inline-flex;
  align-items: center;
  color: var(--orange-600);
  opacity: 0.85;
  animation: safetyArrowPulse 2s infinite ease-in-out;
}

.safety-flow-done {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(45, 134, 89, 0.16);
  color: var(--green-800);
  font-size: 0.82rem;
  font-weight: 800;
}

@keyframes safetyArrowPulse {
  0%, 100% { transform: translateX(0); opacity: 0.7; }
  50% { transform: translateX(3px); opacity: 1; }
}

.video-safety-steps h4 {
  margin: 0 0 10px;
  color: var(--green-700);
  font-size: 1rem;
  line-height: 1.35;
}

.video-safety-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.video-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 40px;
  padding: 28px 32px;
  color: var(--white);
  background: var(--green-900);
  border-radius: 8px;
}

.video-cta h3 {
  margin: 0 0 8px;
  font-size: 1.35rem;
}

.video-cta p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

.video-cta .btn {
  flex: 0 0 auto;
}

@media (max-width: 1024px) {
  .experience-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .experience-stat {
    padding: 24px;
  }

  .experience-stat:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .experience-stat:nth-child(-n + 2) {
    padding-top: 0;
  }

  .experience-stat:nth-child(n + 3) {
    padding-bottom: 0;
    border-top: 1px solid var(--line);
  }

  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .video-safety-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 0;
  }

  .video-safety-steps article:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 640px) {
  .service-grid,
  .work-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .experience-proof {
    padding-bottom: 56px;
  }

  .experience-head {
    margin-bottom: 32px;
  }

  .experience-stats {
    padding: 22px 0;
  }

  .experience-stat {
    padding: 20px 14px;
  }

  .experience-stat dt {
    font-size: 1.55rem;
  }

  .experience-stat-placeholder dt {
    font-size: 1rem;
    white-space: nowrap;
  }

  .experience-stat dd {
    font-size: 0.8rem;
  }

  .proof-transition {
    margin: 28px 0 44px;
    font-size: 1rem;
  }

  .video-section {
    padding: 56px 0;
  }

  .video-group-head h2 {
    font-size: 1.6rem;
  }

  .video-grid {
    grid-template-columns: 1fr;
    max-width: 390px;
    margin-inline: auto;
    gap: 20px;
  }

  .video-caption {
    min-height: 174px;
  }

  .video-safety {
    margin-top: 40px;
    padding-top: 32px;
  }

  .video-safety h3 {
    font-size: 1.45rem;
  }

  .video-safety-steps {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .video-safety-steps article,
  .video-safety-steps article:nth-child(odd) {
    padding: 20px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .video-safety-steps article:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .video-cta {
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
    padding: 24px 20px;
  }

  .video-cta .btn {
    width: 100%;
  }
}


.trust-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.trust-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.trust-card h3 {
  font-size: 1.25rem;
  margin: 0 0 12px;
  color: var(--green-900);
}

.trust-card p {
  margin: 0;
  color: var(--muted);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin-bottom: 48px;
}

.timeline article,
.timeline-step-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

.timeline-step-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.timeline-icon-bubble {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--green-950);
  color: #6ee7b7;
  border-radius: 16px;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(20, 61, 43, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.timeline-step-card:hover .timeline-icon-bubble {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(20, 61, 43, 0.24);
}

.timeline-flow-connector {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 32px;
}

.flow-track {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--green-600, #2d8659), var(--green-300, #86efac));
  border-radius: 2px;
}

.flow-arrow-icon {
  color: var(--green-700, #1b5e3f);
  flex-shrink: 0;
  animation: flowArrowPulse 2s infinite ease-in-out;
}

.timeline-flow-connector.is-final .flow-track {
  background: linear-gradient(90deg, var(--green-600, #2d8659), var(--green-700, #1b5e3f));
}

.flow-badge-done {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--green-800);
  background: rgba(45, 134, 89, 0.15);
  padding: 3px 8px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

@keyframes flowArrowPulse {
  0%, 100% { transform: translateX(0); opacity: 0.75; }
  50% { transform: translateX(4px); opacity: 1; }
}

.timeline h3 {
  font-size: 1.25rem;
  margin: 0 0 12px;
  font-weight: 700;
}

.timeline p {
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
  font-size: 0.95rem;
}

.mini-steps article {
  position: relative;
}

.mini-step-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--green-950);
  color: #6ee7b7;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.process-cta {
    background: var(--warm-100);
    padding: 32px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.process-cta p {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

@media(max-width: 768px) {
    .process-cta {
        flex-direction: column;
        text-align: center;
    }
}


.org-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.org-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.org-grid li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 24px;
  font-size: 1.1rem;
}

.org-grid li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange-600);
  font-weight: 700;
}

@media (max-width: 768px) {
  .org-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}


.area-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.area-grid span {
  display: inline-block;
}

.area-grid a {
  display: block;
  padding: 12px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-weight: 500;
}

.area-grid a:hover {
  border-color: var(--green-700);
  color: var(--green-700);
}


.faq-list {
  max-width: 800px;
}

details {
  background: var(--white);
  margin-bottom: 16px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

summary {
  padding: 24px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 48px;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--orange-600);
}

details[open] summary::after {
  content: "-";
}

details p {
  padding: 0 24px 24px;
  margin: 0;
  color: var(--muted);
}


.lead-section {
  background: var(--green-950);
  color: var(--white);
}

.lead-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.lead-grid p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 40px;
}

.lead-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.call-note {
  font-size: 0.85rem !important;
  opacity: 0.6 !important;
}

.lead-form {
  background: var(--white);
  color: var(--graphite);
  padding: 40px;
  border-radius: 24px;
}

.form-progress {
  height: 4px;
  background: var(--line);
  border-radius: 2px;
  margin-bottom: 32px;
  overflow: hidden;
}

.form-progress span {
  display: block;
  height: 100%;
  background: var(--orange-600);
  transition: width 0.3s;
}

.lead-form legend {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.lead-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.lead-form label.consent {
  flex-direction: row;
  align-items: flex-start;
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--muted);
}
.consent a {
    text-decoration: underline;
}

.lead-form input[type="text"],
.lead-form input[type="tel"],
.lead-form textarea,
.lead-form select {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--warm-50);
}

.lead-form input:focus,
.lead-form textarea:focus,
.lead-form select:focus {
  outline: none;
  border-color: var(--green-700);
  background: var(--white);
}

.required {
  color: var(--orange-600);
}

.service-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}
.service-option-label {
    flex-direction: row !important;
    align-items: center;
    gap: 8px;
    margin-bottom: 0 !important;
    padding: 12px 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.2s;
}
.service-option-label:has(input:checked) {
    border-color: var(--green-700);
    background: var(--green-100);
}
.service-option-label input {
    margin: 0;
}
.branch-after-block {
    margin-bottom: 32px;
    padding: 24px;
    background: var(--warm-50);
    border-radius: 12px;
}
.branch-after-block p {
    margin: 0 0 16px 0 !important;
    font-weight: 600;
    color: var(--graphite);
    font-size: 1rem;
}
.branch-after-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}


.file-drop {
  border: 2px dashed var(--line);
  padding: 24px;
  text-align: center;
  align-items: center;
  border-radius: 8px;
  background: var(--warm-50);
  cursor: pointer;
}

.file-drop input {
  display: none;
}

.file-drop:hover {
  border-color: var(--green-700);
}

.form-hint {
  font-size: 0.85rem;
  color: var(--muted);
}

.form-buttons {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.hp-field {
  display: none !important;
}

.form-success {
  padding: 40px;
  text-align: center;
  background: var(--green-100);
  border-radius: 16px;
  border: 1px solid var(--green-700);
  color: var(--green-900);
}

.form-success h3 {
  color: var(--green-900);
  margin: 0 0 12px;
}

.form-success p {
  margin: 0;
}


@media (max-width: 1024px) {
  .lead-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .lead-form {
    padding: 24px;
  }
}


.site-footer {
  background: var(--graphite);
  color: var(--white);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 64px;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.site-footer h2 {
  font-size: 1.1rem;
  margin: 0 0 24px;
}

.site-footer a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}

.site-footer a:hover {
  color: var(--white);
}

.site-footer .phone-link {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 8px;
}

.footer-messengers {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 10px 0 14px;
}

.footer-msg-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.9) !important;
  margin-bottom: 0 !important;
  transition: all 0.2s ease;
}

.footer-msg-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff !important;
  transform: translateY(-1px);
}

.footer-msg-wa svg {
  color: #25d366;
}

.footer-msg-tg svg {
  color: #29b6f6;
}

.footer-msg-max svg {
  color: #ffb066;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
}

.footer-bottom span {
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
  margin: 0;
}

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

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


.floating-contact-rail {
  position: fixed;
  left: 24px;
  top: 50%;
  z-index: 90;
  display: grid;
  gap: 12px;
  transform: translateY(-50%) translateX(-20px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-contact-rail.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(-50%) translateX(0);
}

.floating-contact-button {
  position: relative;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  color: var(--white);
  box-shadow: 0 8px 20px rgba(20, 35, 29, 0.24);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.floating-contact-button:hover,
.floating-contact-button:focus-visible {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(20, 35, 29, 0.32);
}

.floating-contact-button:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 3px;
}

.floating-contact-button svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.floating-contact-max {
  background: #5b4bdf;
}

.floating-contact-max-mark {
  font-size: 0.72rem;
  font-weight: 800;
}

.floating-contact-whatsapp {
  background: #20bd5a;
}

.floating-contact-telegram {
  background: #229ed9;
}

.floating-contact-email {
  background: var(--orange-600);
}

.floating-contact-label {
  position: absolute;
  left: calc(100% + 12px);
  top: 50%;
  padding: 8px 10px;
  border-radius: 6px;
  background: var(--graphite);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translate(-4px, -50%);
  transition: opacity 160ms ease, transform 160ms ease;
  white-space: nowrap;
}

.floating-contact-button:hover .floating-contact-label,
.floating-contact-button:focus-visible .floating-contact-label {
  opacity: 1;
  transform: translate(0, -50%);
}

@media (max-width: 1024px) {
  .floating-contact-rail {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-contact-button,
  .floating-contact-label {
    transition: none;
  }
}

.mobile-action-bar {
  display: none;
}

@media (max-width: 768px) {
  .mobile-action-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 95;
    display: flex;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.12);
    padding: 8px 10px calc(env(safe-area-inset-bottom, 0px) + 8px);
    gap: 8px;
    box-sizing: border-box;
  }

  .mobile-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 8px;
    border-radius: 10px;
    font-size: 0.92rem;
    font-weight: 700;
    min-height: 48px;
    cursor: pointer;
    border: none;
    text-decoration: none;
    line-height: 1;
  }

  .mobile-btn-icon {
    font-size: 1.15rem;
    line-height: 1;
  }

  .mobile-btn-call {
    color: var(--white);
    background: var(--green-700);
    box-shadow: 0 2px 8px rgba(27, 99, 67, 0.28);
  }

  .mobile-btn-call:active {
    filter: brightness(0.95);
  }

  .mobile-btn-calc {
    color: var(--white);
    background: var(--orange-600);
    box-shadow: 0 2px 8px rgba(234, 88, 12, 0.28);
  }

  .mobile-btn-calc:active {
    filter: brightness(0.95);
  }

  .site-footer {
    padding-bottom: calc(85px + env(safe-area-inset-bottom, 0px));
  }
}


.inner-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  color: var(--white);
  padding: 120px 0 80px;
}

.inner-hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.inner-hero-shade {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 36, 25, 0.75);
  z-index: 1;
}

.inner-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.inner-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 24px;
}

.inner-hero p:not(.eyebrow) {
  font-size: 1.2rem;
  opacity: 0.9;
}

.simple-hero {
  background: var(--green-950);
  color: var(--white);
  padding: 80px 0;
}

.simple-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin: 0 0 24px;
}

.simple-hero p:not(.eyebrow) {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
}

@media (max-width: 768px) {
  .inner-hero h1, .simple-hero h1 {
    font-size: 2rem;
  }
}


.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  margin-bottom: 40px;
  color: var(--muted);
}

.breadcrumbs a {
  color: var(--graphite);
}

.breadcrumbs a:hover {
  color: var(--orange-600);
}


.content-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
}

.content-main h2 {
  font-size: 2rem;
  margin: 48px 0 24px;
}

.rich-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
}

.rich-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.rich-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--orange-600);
  font-weight: 700;
}

.honest-note {
  background: var(--warm-100);
  padding: 24px;
  border-left: 4px solid var(--orange-600);
  border-radius: 0 8px 8px 0;
  margin-bottom: 40px;
  font-weight: 500;
}

.factor-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.factor-cloud span {
  background: var(--white);
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid var(--line);
  font-weight: 500;
}

.branch-what-block {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}
.branch-what-block div {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--line);
}
.branch-what-block strong {
    display: block;
    margin-bottom: 8px;
    color: var(--orange-600);
}
.branch-what-block p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--muted);
}


.mini-steps {
  display: grid;
  gap: 24px;
}

.mini-steps article {
  display: flex;
  gap: 16px;
  background: var(--white);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.mini-steps span {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-100);
  color: var(--green-900);
  font-weight: 700;
  border-radius: 50%;
}

.mini-steps h3 {
  font-size: 1.1rem;
  margin: 0 0 8px;
}

.mini-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.side-panel {
  align-self: start;
  position: sticky;
  top: 100px;
  background: var(--white);
  padding: 32px;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}

.side-panel h2 {
  font-size: 1.5rem;
  margin: 0 0 16px;
}

.side-panel p {
  color: var(--muted);
  margin-bottom: 24px;
}

.side-panel .btn {
  margin-bottom: 16px;
}

@media (max-width: 1024px) {
  .content-grid {
    grid-template-columns: 1fr;
  }
  .side-panel {
    position: static;
  }
}


.text-page {
  max-width: 800px;
  margin: 0 auto;
}

.text-page h2 {
  font-size: 1.5rem;
  margin: 40px 0 24px;
}

.text-page p {
  margin-bottom: 16px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-card {
  background: var(--white);
  padding: 40px;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}

.big-contact {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange-600);
  margin-bottom: 20px;
  white-space: nowrap;
}

.contact-messenger-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.contact-messenger-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 1.5px solid var(--line);
  color: var(--green-900);
  background: var(--white);
  transition: background 0.18s, border-color 0.18s, transform 0.18s, box-shadow 0.18s;
  min-height: 52px;
}

.contact-messenger-btn:hover,
.contact-messenger-btn:active {
  background: var(--warm-100);
  border-color: var(--muted);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.contact-messenger-btn--whatsapp:hover,
.contact-messenger-btn--whatsapp:active {
  border-color: #25d366;
  color: #128c3e;
  background: #f0fbf4;
}

.contact-messenger-btn--telegram:hover,
.contact-messenger-btn--telegram:active {
  border-color: #229ed9;
  color: #0e6d9a;
  background: #f0f8fd;
}

.contact-messenger-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.contact-max-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--green-900);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.contact-email-block {
  padding-top: 4px;
}

.contact-email-label {
  margin: 0 0 4px;
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-email-link {
  font-weight: 500;
  color: var(--green-700);
  word-break: break-all;
}

.contact-email-link:hover {
  text-decoration: underline;
}

.form-consent {
  margin: 10px 0 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}

.form-consent a {
  color: inherit;
  text-decoration: underline;
  opacity: 0.8;
}

.lead-form .form-consent {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
  margin-top: 10px;
}

.lead-field-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
}

.lead-field-label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 6px;
  color: var(--graphite);
}

.lead-field-opt {
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--muted);
}

.lead-field-req {
  color: var(--orange-600);
  font-weight: 700;
}

.lead-form [data-form-fields] input[type="text"],
.lead-form [data-form-fields] input[type="tel"] {
  display: block;
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-size: 1rem;
  color: var(--graphite);
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.lead-form [data-form-fields] input[type="text"]:focus,
.lead-form [data-form-fields] input[type="tel"]:focus {
  outline: none;
  border-color: var(--green-700);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(20, 94, 60, 0.15);
}

.lead-photo-note {
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--muted);
  margin: 10px 0 0;
  text-align: center;
}

.form-success {
  padding: 16px 18px;
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  border-radius: 12px;
  color: var(--green-950);
}

.form-success-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0;
}

.form-success-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: #10b981;
  color: #fff;
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
  line-height: 1;
}

.form-success-title {
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  color: var(--green-950);
}

.form-success-text {
  flex: 1;
}

.form-success-heading {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--green-950);
  margin: 0;
  line-height: 1.25;
}

.form-success-sub {
  font-size: 0.88rem;
  line-height: 1.45;
  margin: 0;
  color: var(--muted);
}

.form-success-channels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.btn-channel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff !important;
  transition: transform 0.15s, opacity 0.15s;
}

.btn-channel:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.btn-channel-whatsapp {
  background: #25d366;
}

.btn-channel-telegram {
  background: #229ed9;
}

.btn-channel-max {
  background: #5b21b6;
}

.channel-max-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: #fff;
  color: #5b21b6;
  border-radius: 4px;
  font-weight: 800;
  font-size: 0.72rem;
  line-height: 1;
}

.btn-channel-email {
  background: var(--green-800);
}

.channel-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.quick-lead-error, .form-error {
  padding: 12px 16px;
  font-size: 0.88rem;
  margin-top: 8px;
  border-radius: var(--radius);
}

.quick-lead-error {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,100,100,0.4);
  color: #ffc8c8;
}

.form-error {
  background: #fff3f3;
  border: 1px solid #e07070;
  color: #b33;
}

@media (max-width: 767px) {
  .contact-card--contacts {
    display: none;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

body:not(.motion-ready) .hero-motion,
body:not(.motion-ready) .reveal-item {
  opacity: 1;
  transform: none;
}

.hero-motion {
  opacity: 0;
  transform: translateY(20px);
}

.hero-animated .hero-motion {
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--motion-index) * 0.1s);
}

.reveal-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--reveal-index) * 0.05s);
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════════════════════
   HIGH-CONVERSION DIRECT LANDINGS & COMMERCIAL HUB STYLES
   ══════════════════════════════════════════════════════════════ */

/* ─── Trust Bar ─── */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
}

.trust-bar-dot {
  opacity: 0.4;
}

.hero .trust-bar {
  margin-top: 20px;
}

/* ─── Commercial Hub (3 Main Directions on Home) ─── */
.commercial-hub {
  padding: 50px 0 60px;
  background: var(--warm-50);
}

.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.hub-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.hub-card-image {
  position: relative;
  height: 200px;
  background: var(--green-950);
}

.hub-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hub-card-price {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(18, 53, 38, 0.92);
  color: #fff;
  padding: 5px 12px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.hub-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.hub-card-body h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--green-950);
  margin: 0 0 10px;
}

.hub-card-body p {
  color: var(--graphite);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0 0 16px;
}

.hub-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex-grow: 1;
}

.hub-card-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--muted);
}

.hub-card-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-700);
  font-weight: 700;
}

.hub-card-actions {
  margin-top: auto;
}

/* ─── Landing Hero ─── */
.landing-hero {
  position: relative;
  background: linear-gradient(135deg, var(--green-950) 0%, var(--green-900) 55%, var(--green-800) 100%);
  color: var(--white);
  padding: 60px 0 55px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.landing-hero-inner {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 40px;
  align-items: start;
}

.landing-hero-content h1 {
  font-size: 2.35rem;
  line-height: 1.2;
  font-weight: 800;
  margin: 12px 0 16px;
  color: var(--white);
}

.hero-subline {
  display: block;
  font-weight: 600;
  color: #a7f3d0;
  font-size: 1.85rem;
  margin-top: 4px;
}

.landing-hero-content .hero-lead {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 24px;
  max-width: 600px;
}

.landing-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.landing-hero-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  color: var(--graphite);
}

.landing-hero-media {
  position: relative;
  height: 220px;
  background: var(--green-950);
}

.landing-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.landing-hero-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(18, 53, 38, 0.9);
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.landing-hero-prices {
  padding: 18px 24px 14px;
}

.hero-prices-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 10px;
}

.hero-prices-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}

.hero-prices-list li:last-child {
  border-bottom: none;
}

.hero-prices-list strong {
  color: var(--green-900);
  font-size: 1.05rem;
  font-weight: 700;
}

.landing-hero-form-box {
  padding: 20px 24px 24px;
  background: #f8faf9;
  border-top: 1px solid var(--line);
}

.landing-form-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-950);
  margin: 0 0 6px;
  line-height: 1.3;
}

.landing-form-sub {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0 0 16px;
  line-height: 1.45;
}

.lead-form--hero {
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

/* ─── Operator Notice Badge ─── */
.operator-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(217, 107, 39, 0.22);
  border: 1px solid var(--orange-600);
  color: #ffedd5;
  padding: 6px 14px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 14px;
}

.operator-badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: var(--orange-600);
  color: #fff;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 800;
}

/* ─── 3 Scenarios Block ─── */
.section-scenarios {
  background: var(--white);
  padding: 60px 0;
}

.scenarios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.scenario-card {
  position: relative;
  background: var(--warm-50);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
}

.scenario-card--featured {
  background: #f0fdf4;
  border-color: #86efac;
  box-shadow: 0 4px 18px rgba(34, 197, 94, 0.12);
}

.scenario-number {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 2rem;
  font-weight: 800;
  color: rgba(18, 53, 38, 0.12);
  line-height: 1;
}

.scenario-condition {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--orange-700);
  margin: 0 0 8px;
}

.scenario-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--green-950);
  margin: 0 0 12px;
}

.scenario-card p {
  font-size: 0.95rem;
  color: var(--graphite);
  line-height: 1.55;
  margin: 0 0 20px;
  flex-grow: 1;
}

.scenario-meta {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 12px;
  margin-top: auto;
}

.scenario-meta span {
  color: var(--green-900);
  font-weight: 700;
}

/* ─── Trust Grid Landing ─── */
.trust-grid-lp {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.trust-item-lp {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.trust-icon-lp {
  font-size: 2rem;
  display: block;
  margin-bottom: 12px;
}

.trust-item-lp h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-950);
  margin: 0 0 8px;
}

.trust-item-lp p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

/* ─── Video Proof Block in Works ─── */
.video-proof-block {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.video-proof-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-950);
  margin: 0 0 8px;
}

.video-proof-sub {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 0 24px;
}

/* ─── Features Grid (Raschistka / Chipping) ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
}

.feature-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 10px;
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-950);
  margin: 0 0 8px;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
  margin: 0;
}

/* ─── Clearing Showcase (Before / After) ─── */
.clearing-showcase {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  margin-top: 36px;
}

.clearing-before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.clearing-before-after figure {
  margin: 0;
}

.clearing-before-after img {
  border-radius: 8px;
  height: 240px;
  object-fit: cover;
}

.clearing-before-after figcaption {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.4;
}

.clearing-case-details h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-950);
  margin: 0 0 16px;
}

/* ─── Honest Banner ─── */
.honest-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-top: 36px;
}

.honest-banner-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-950);
  margin: 0 0 8px;
}

.honest-banner-content p {
  margin: 0;
  color: var(--graphite);
  font-size: 0.95rem;
}

/* ─── Photo Hint Box (Callout by the Lead Form) ─── */
.photo-hint-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 20px;
  margin: 20px 0 24px;
  color: rgba(255, 255, 255, 0.92);
}

.photo-hint-title {
  font-weight: 700;
  font-size: 0.98rem;
  margin: 0 0 10px;
  color: #fef08a;
}

.photo-hint-list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}

.photo-hint-list li {
  position: relative;
  padding-left: 18px;
  font-size: 0.9rem;
  line-height: 1.45;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.88);
}

.photo-hint-list li::before {
  content: '•';
  position: absolute;
  left: 4px;
  color: #fef08a;
  font-weight: bold;
}

.photo-hint-note {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  font-style: italic;
}

/* ─── Extended Lead Form (File upload + optional fields) ─── */
.lead-file-box {
  margin-bottom: 16px;
}

.lead-file-trigger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 14px;
  background: var(--warm-50);
  border: 2px dashed #cbd5e1;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
}

.lead-file-trigger:hover {
  border-color: var(--green-700);
  background: #f0fdf4;
}

.lead-file-icon {
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.lead-file-title {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--green-950);
}

.lead-file-sub {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 2px;
}

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

.lead-file-status {
  display: block;
  font-size: 0.85rem;
  color: var(--green-800);
  font-weight: 600;
  margin-top: 6px;
}

.lead-extra-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}



.section-related-bottom {
  border-top: 1px solid var(--line);
  padding: 50px 0;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE ADAPTATIONS (360px - 1024px)
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hub-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .landing-hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .clearing-showcase {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .hub-grid {
    grid-template-columns: 1fr;
  }
  .timeline {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .timeline-flow-connector {
    justify-content: flex-end;
  }
  .timeline-step-card {
    padding-bottom: 16px;
    border-bottom: 1px dashed var(--line);
  }
  .timeline-step-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .safety-flow-arrow svg {
    transform: rotate(90deg);
  }
  .scenarios-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .trust-grid-lp {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .landing-hero-content h1 {
    font-size: 1.85rem;
  }
  .hero-subline {
    font-size: 1.4rem;
  }
  .lead-extra-fields {
    grid-template-columns: 1fr;
  }
  .honest-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  .clearing-before-after {
    grid-template-columns: 1fr;
  }
  .clearing-before-after img {
    height: 200px;
  }
  .landing-hero-media {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .landing-hero {
    padding: 36px 0 30px;
  }
  .landing-hero-content h1 {
    font-size: 1.65rem;
  }
  .hero-subline {
    font-size: 1.25rem;
  }
  .landing-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .landing-hero-actions .btn {
    text-align: center;
  }
  .trust-bar {
    font-size: 0.84rem;
    gap: 6px;
  }
  .landing-hero-media {
    height: 150px;
  }
  .landing-hero-prices {
    padding: 14px 16px 10px;
  }
  .landing-hero-form-box {
    padding: 16px 16px 20px;
  }
  .form-success-channels {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   КОММЕРЧЕСКИЕ БЛОКИ ПОСАДОЧНЫХ СТРАНИЦ
   ========================================================================== */

.section-what-we-do {
  background: var(--surface-muted, #f7f4ee);
}

.quick-scenarios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.quick-scenario-card {
  background: var(--white, #ffffff);
  border: 1px solid var(--line, rgba(0, 0, 0, 0.08));
  border-radius: 12px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quick-scenario-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(20, 61, 43, 0.08);
}

.quick-scenario-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 12px;
  line-height: 1;
}

.quick-scenario-card h3 {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--primary-dark, #143d2b);
  margin: 0 0 8px;
  line-height: 1.3;
}

.quick-scenario-card p {
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--text-muted, #55695d);
  margin: 0;
}

.section-cta-repeat {
  text-align: center;
  margin-top: 36px;
}

.section-cta-repeat .btn {
  min-width: 260px;
}

/* Карточка цен и факторов */
.section-pricing-lp {
  background: var(--surface, #fcfaf7);
}

.pricing-summary-card {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 32px;
  background: var(--white, #ffffff);
  border: 1px solid var(--line, rgba(0, 0, 0, 0.08));
  border-radius: 16px;
  padding: 36px 32px;
  margin-top: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.pricing-summary-prices {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.pricing-summary-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--line, rgba(0, 0, 0, 0.1));
}

.pricing-summary-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.pricing-name {
  font-weight: 600;
  color: var(--primary-dark, #143d2b);
  font-size: 1.05rem;
}

.pricing-dots {
  flex: 1;
  border-bottom: 1px dotted var(--line, rgba(0, 0, 0, 0.2));
}

.pricing-val {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary, #1b5e20);
  white-space: nowrap;
}

.pricing-summary-explanation {
  background: var(--surface-muted, #f7f4ee);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.pricing-calc-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-dark, #1c2b22);
  margin: 0;
}

.pricing-calc-text strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--primary-dark, #143d2b);
}

.pricing-summary-cta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.work-grid--felling {
  grid-template-columns: repeat(2, 1fr);
}

.work-grid--single {
  grid-template-columns: minmax(0, 600px);
  justify-content: center;
}

@media (max-width: 900px) {
  .quick-scenarios-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-summary-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 20px;
  }
}

@media (max-width: 600px) {
  .quick-scenarios-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .quick-scenario-card {
    padding: 18px 16px;
  }
  .section-cta-repeat .btn {
    width: 100%;
  }
  .pricing-summary-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .pricing-dots {
    display: none;
  }
  .work-grid--felling {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   КОНВЕРСИОННЫЙ ЛЕНДИНГ ГЛАВНОЙ СТРАНИЦЫ (ЯНДЕКС ДИРЕКТ)
   ========================================================================== */

/* Отступ при якорных переходах с учётом фиксированной шапки */
#hero,
#services,
#spil,
#raschistka,
#izmelchenie,
#pni,
#obrezka,
#avariynye,
#scenarios,
#safety,
#works,
#complex,
#prices,
#why-trust,
#process,
#organizations,
#faq,
#lead-form,
#lead,
#contacts,
.main-service-card {
  scroll-margin-top: 84px;
}

.lead-anchor {
  display: block;
  position: relative;
  top: 0;
  visibility: hidden;
  height: 0;
  margin: 0;
  padding: 0;
}

/* 1. ЭКРАН HERO ДЛЯ ДИРЕКТА */
.hero-direct {
  min-height: 88vh;
  padding: 110px 0 70px;
}

.hero-direct .hero-content {
  grid-template-columns: 1.25fr 390px;
  gap: 48px;
  align-items: center;
}

.hero-direct .hero-copy {
  max-width: none;
}

.hero-direct h1 {
  font-size: 3.1rem;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 18px;
  letter-spacing: -0.5px;
}

.hero-direct .hero-lead {
  font-size: 1.18rem;
  line-height: 1.55;
  margin: 0 0 24px;
  opacity: 0.92;
}

/* Стартовые плашки цен в первом экране */
.hero-price-anchors {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.hero-price-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 100px;
  padding: 8px 18px;
  color: var(--white);
  transition: all 0.2s ease;
  font-size: 0.9rem;
}

.hero-price-pill span {
  opacity: 0.92;
}

.hero-price-pill strong {
  color: #ffb066;
  font-weight: 800;
  font-size: 0.98rem;
}

.hero-price-pill:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: var(--orange-600);
  transform: translateY(-2px);
}

/* Кнопки в первом экране — 2 главных CTA + компактные мессенджеры */
.hero-direct .hero-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 22px;
  max-width: 520px;
}

.hero-actions-primary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.hero-actions-primary .btn {
  height: 52px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
  box-sizing: border-box;
}

/* Компактная строка мессенджеров под главными CTA */
.hero-messengers-compact {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-msgr-label {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
  white-space: nowrap;
}

.hero-msgr-links {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-msgr-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  box-sizing: border-box;
  transition: all 0.2s ease;
}

.hero-msgr-chip svg {
  flex-shrink: 0;
}

.hero-msgr-chip:hover {
  transform: translateY(-1px);
}

.hero-msgr-wa:hover {
  background: rgba(37, 211, 102, 0.22);
  border-color: rgba(37, 211, 102, 0.7);
  color: #25d366;
  box-shadow: 0 2px 10px rgba(37, 211, 102, 0.25);
}

.hero-msgr-tg:hover {
  background: rgba(0, 136, 204, 0.22);
  border-color: rgba(0, 136, 204, 0.7);
  color: #38bdf8;
  box-shadow: 0 2px 10px rgba(0, 136, 204, 0.25);
}

.hero-msgr-max:hover {
  background: rgba(147, 51, 234, 0.22);
  border-color: rgba(147, 51, 234, 0.7);
  color: #c084fc;
  box-shadow: 0 2px 10px rgba(147, 51, 234, 0.25);
}

/* Строка ключевых преимуществ */
.hero-key-benefits {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  margin-bottom: 12px;
}

.benefit-dot {
  opacity: 0.5;
  font-weight: bold;
}

/* Строка доверия Hero (Trust Line) */
.hero-trust-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
  margin-top: 14px;
}

.hero-trust-line .trust-dot {
  opacity: 0.5;
  font-weight: bold;
}

/* МОДАЛЬНЫЙ POPUP: ОЦЕНКА ПО ФОТО */
body.has-modal-open {
  overflow: hidden;
  touch-action: none;
}

.photo-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.photo-popup-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.photo-popup-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 25, 18, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.photo-popup-dialog {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  padding: 24px 20px 20px;
  z-index: 1;
  transform: translateY(12px) scale(0.98);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: calc(100vh - 32px);
  overflow-y: auto;
}

.photo-popup-overlay.is-active .photo-popup-dialog {
  transform: translateY(0) scale(1);
}

.photo-popup-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.photo-popup-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--graphite, #1f2937);
  line-height: 1.25;
  margin: 0 0 4px;
}

.photo-popup-subtitle {
  font-size: 0.88rem;
  color: var(--muted, #6b7280);
  margin: 0;
}

.photo-popup-close {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: var(--muted, #6b7280);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s ease, background-color 0.15s ease;
  flex-shrink: 0;
}

.photo-popup-close:hover {
  color: var(--graphite, #1f2937);
  background: var(--warm-50, #f3f4f6);
}

.photo-popup-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.popup-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  border: none;
  box-sizing: border-box;
}

.popup-action-btn:active {
  transform: scale(0.98);
}

.popup-action-wa {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.28);
}

.popup-action-wa:hover {
  filter: brightness(1.05);
}

.popup-action-tg {
  background: #0088cc;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 136, 204, 0.25);
}

.popup-action-tg:hover {
  filter: brightness(1.05);
}

.popup-action-phone {
  background: var(--warm-50, #f3f4f6);
  color: var(--graphite, #1f2937);
  border: 1px solid #e5e7eb;
}

.popup-action-phone:hover {
  background: #e5e7eb;
}

.popup-lead-form {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #e5e7eb;
}

.popup-photo-note {
  font-size: 0.78rem;
  color: var(--muted, #6b7280);
  margin: 6px 0 0;
  text-align: center;
}

/* Карточка формы в первом экране */
.hero-form-panel {
  position: relative;
  z-index: 5;
}

.hero-form-card {
  background: var(--white);
  color: var(--graphite);
  border-radius: 18px;
  padding: 24px 22px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.85);
}

.hero-form-head {
  margin-bottom: 14px;
}

.hero-form-badge {
  display: inline-block;
  background: rgba(217, 107, 39, 0.12);
  color: var(--orange-600);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 8px;
}

.hero-form-head h2,
.hero-form-head h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--green-950);
  margin: 0 0 4px;
  line-height: 1.25;
}

.hero-form-head p {
  font-size: 0.86rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
}

.hero-task-chips {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 14px;
}

.task-chip {
  background: var(--warm-50, #fbf7ef);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 4px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--graphite);
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.task-chip:hover {
  border-color: var(--green-700);
  background: var(--warm-100);
}

.task-chip.is-active {
  background: var(--green-900);
  color: var(--white);
  border-color: var(--green-900);
}

.hero-form .lead-field-group {
  margin-bottom: 10px;
}

.hero-form input {
  width: 100%;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0 14px;
  font-size: 0.95rem;
  color: var(--graphite);
  background: #fdfdfd;
}

.hero-form input:focus {
  outline: none;
  border-color: var(--green-700);
  box-shadow: 0 0 0 3px rgba(34, 97, 69, 0.15);
}

.hero-form .btn {
  height: 48px;
  font-size: 1.02rem;
}

.hero-photo-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 10px 0 0;
  text-align: center;
  line-height: 1.35;
}

/* Карточка успеха в Hero-форме */
.hero-form .form-success {
  padding: 16px 18px;
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.08);
  margin-top: 0;
}

.hero-form .form-success-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0;
}

/* 2. ПОЛОСА ДОВЕРИЯ (TRUST BAR) */
.trust-bar-section {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-bar-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.trust-bar-card-icon {
  font-size: 1.75rem;
  line-height: 1;
  flex-shrink: 0;
}

.trust-bar-card h3 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--green-950);
  margin: 0 0 4px;
  line-height: 1.3;
}

.trust-bar-card p {
  font-size: 0.84rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
}

/* 3. КАРТОЧКИ ОСНОВНЫХ УСЛУГ (3×2) */
.main-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 36px;
}

.main-service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.main-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(12, 36, 25, 0.09);
  border-color: var(--green-700);
}

.main-service-image {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #f0f0f0;
}

.main-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.main-service-card:hover .main-service-image img {
  transform: scale(1.04);
}

.main-service-price {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(12, 36, 25, 0.9);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  padding: 6px 14px;
  border-radius: 100px;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.main-service-body {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.main-service-body h3 {
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--green-950);
  margin: 0 0 10px;
  line-height: 1.3;
}

.main-service-result {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0 0 20px;
  flex: 1;
}

.main-service-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.main-service-link-more {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green-700);
  text-align: center;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.main-service-link-more:hover {
  color: var(--orange-600);
}

/* 4. СЦЕНАРИИ КЛИЕНТА (КАКАЯ У ВАС ЗАДАЧА) */
.scenarios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.scenario-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.scenario-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(34, 97, 69, 0.4);
}

.scenario-card h3 {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--green-950);
  margin: 0 0 10px;
  line-height: 1.3;
}

.scenario-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0 0 18px;
  flex: 1;
}

.scenario-btn {
  width: 100%;
  text-align: center;
}

/* 5. БЕЗОПАСНОСТЬ И СОХРАННОСТЬ ИМУЩЕСТВА */
.safety-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: center;
}

.safety-media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.safety-media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  display: block;
}

.safety-media-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(12, 36, 25, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  padding: 10px 16px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.safety-content h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-950);
  margin: 0 0 14px;
  line-height: 1.25;
}

.safety-lead {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 24px;
}

.safety-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.safety-list li {
  position: relative;
  padding-left: 28px;
}

.safety-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green-700);
  font-weight: 800;
  font-size: 1.1rem;
}

.safety-list strong {
  display: block;
  font-size: 1rem;
  color: var(--green-950);
  margin-bottom: 4px;
}

.safety-list p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.45;
}


/* 7. КОМПЛЕКС РАБОТ — ЦЕЛЬНЫЙ ПРОЦЕСС */
.complex-flow {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 8px;
  margin: 28px 0 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow-sm);
}

.complex-flow-step {
  flex: 1 1 0;
  min-width: 0;
  background: var(--warm-50);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
}

.complex-flow-step h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green-950);
  margin: 0 0 5px;
  line-height: 1.25;
}

.complex-flow-step p {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.35;
}

.complex-flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green-700);
  opacity: 0.75;
  padding: 0 2px;
}

.complex-flow-arrow svg {
  display: block;
}

.complex-footer-note {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.complex-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.complex-badge {
  background: var(--warm-50);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green-950);
}

.complex-desc-note {
  max-width: 700px;
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* 8. ТАБЛИЦА ЦЕН И ФАКТОРЫ */
.price-table-wrap {
  overflow-x: auto;
  margin: 32px 0 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
}

.price-table th,
.price-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}

.price-table th {
  background: var(--warm-50);
  font-weight: 700;
  color: var(--green-950);
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
}

.price-table tr:last-child td {
  border-bottom: none;
}

.price-cell {
  font-weight: 800;
  color: var(--orange-600);
  white-space: nowrap;
  font-size: 1.05rem;
}

.price-factors-cell {
  color: var(--muted);
  font-size: 0.9rem;
}

.price-factors-block {
  margin-top: 48px;
}

.price-factors-block h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--green-950);
  margin: 0 0 20px;
  text-align: center;
}

.factors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.factor-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.factor-card span {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 8px;
}

.factor-card strong {
  display: block;
  font-size: 0.95rem;
  color: var(--green-950);
  margin-bottom: 4px;
}

.factor-card p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
}

.price-photo-callout {
  background: linear-gradient(135deg, var(--green-950) 0%, var(--green-900) 100%);
  color: #fff;
  border-radius: 16px;
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 40px;
  box-shadow: var(--shadow);
}

.price-photo-callout h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 0 8px;
  color: #fff;
}

.price-photo-callout p {
  font-size: 0.95rem;
  margin: 0;
  opacity: 0.9;
  max-width: 600px;
  line-height: 1.5;
}

.price-photo-callout .btn {
  flex-shrink: 0;
  white-space: nowrap;
}

/* 9. ПОЧЕМУ НАМ ДОВЕРЯЮТ (WHY TRUST) */
.trust-groups-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.trust-group-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
}

.trust-group-category {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--green-800);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  display: block;
  border-bottom: 2px solid var(--warm-100);
  padding-bottom: 8px;
}

.trust-group-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--graphite);
  line-height: 1.4;
}

.trust-group-list li {
  position: relative;
  padding-left: 18px;
}

.trust-group-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--orange-600);
  font-size: 1.2rem;
  line-height: 1;
  top: -1px;
}

/* 10. SEO CONTENT */
.seo-content-section {
  padding-top: 20px;
}

.seo-content-inner {
  max-width: 860px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.seo-content-inner h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--green-950);
  margin: 0 0 16px;
}

.seo-content-inner p {
  margin: 0 0 14px;
}

/* АДАПТИВНОСТЬ ДЛЯ НОВЫХ БЛОКОВ */
@media (max-width: 1024px) {
  .hero-direct .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .trust-bar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

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

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

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

  .trust-groups-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .complex-flow {
    flex-direction: column;
    padding: 12px;
    gap: 6px;
  }

  .complex-flow-step {
    width: 100%;
    padding: 12px 14px;
  }

  .complex-flow-arrow {
    transform: rotate(90deg);
    margin: 2px 0;
    height: 18px;
  }
}

@media (max-width: 768px) {
  .hero-direct {
    padding: 72px 0 28px;
    min-height: auto;
  }

  .hero-direct h1 {
    font-size: 1.85rem;
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .hero-direct .hero-lead {
    font-size: 0.98rem;
    line-height: 1.4;
    margin-bottom: 14px;
  }

  .hero-price-anchors {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin-bottom: 14px;
  }

  .hero-price-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.82rem;
    line-height: 1.2;
    background: rgba(255, 255, 255, 0.1);
  }

  .hero-price-pill span {
    font-size: 0.8rem;
  }

  .hero-price-pill strong {
    font-size: 0.85rem;
  }

  .hero-direct .hero-actions {
    max-width: 100%;
    margin-bottom: 10px;
    gap: 10px;
  }

  .hero-actions-primary {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .hero-messengers-compact {
    display: none;
  }

  .hero-trust-line {
    font-size: 0.8rem;
    gap: 6px;
    margin-top: 10px;
  }

  .hero-cta-note {
    display: none;
  }

  .trust-bar-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .main-services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .scenarios-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .safety-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .factors-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .trust-groups-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .price-photo-callout {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
    gap: 20px;
  }

  .price-photo-callout .btn {
    width: 100%;
  }

  .price-table th,
  .price-table td {
    padding: 12px 14px;
    font-size: 0.88rem;
  }
}

@media (max-width: 560px) {
  .hero-actions-primary {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-actions-primary .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .brand-logo-header {
    width: 110px;
    max-height: 36px;
  }

  .header-contact .phone-link {
    font-size: 0.80rem;
    gap: 3px;
    padding: 2px 4px;
  }

  .header-contact .phone-icon {
    width: 12px;
    height: 12px;
  }

  .header-contact .header-hours {
    font-size: 0.62rem;
  }

  .nav-toggle {
    width: 36px;
    height: 36px;
    padding: 6px;
  }

  .hero-direct {
    padding: 66px 0 20px;
    min-height: auto;
  }

  .hero-badge {
    font-size: 0.74rem;
    padding: 3px 8px;
    margin-bottom: 8px;
  }

  .hero-direct h1 {
    font-size: 1.45rem;
    line-height: 1.22;
    margin-bottom: 8px;
  }

  .hero-direct .hero-lead {
    font-size: 0.88rem;
    line-height: 1.35;
    margin-bottom: 10px;
  }

  .hero-task-chips {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-price-anchors {
    gap: 6px;
    margin-bottom: 10px;
  }

  .hero-price-pill {
    padding: 4px 8px;
    font-size: 0.78rem;
    gap: 4px;
  }

  .hero-price-pill span {
    font-size: 0.75rem;
  }

  .hero-price-pill strong {
    font-size: 0.8rem;
  }

  .hero-direct .hero-actions {
    margin-bottom: 8px;
    gap: 8px;
  }

  .hero-actions-primary {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-actions-primary .btn {
    width: 100%;
    height: 46px;
    font-size: 0.94rem;
    padding: 0 14px;
  }

  .hero-actions-primary .btn-hero-secondary {
    height: 42px;
    font-size: 0.9rem;
  }

  .hero-trust-line {
    font-size: 0.74rem;
    line-height: 1.35;
    gap: 4px 6px;
    margin-top: 8px;
  }

  .hero-form-card {
    padding: 20px 16px;
    border-radius: 14px;
  }
}

@media (max-width: 360px) {
  .brand-logo-header {
    width: 98px;
    max-height: 32px;
  }

  .header-contact .phone-link {
    font-size: 0.74rem;
  }

  .header-contact .header-hours {
    display: none;
  }

  .mobile-nav-phone-num {
    font-size: 0.95rem;
  }

  .mobile-nav-messengers {
    gap: 6px;
  }

  .mobile-nav-msg-btn {
    flex-direction: column;
    font-size: 0.72rem;
    gap: 2px;
    padding: 6px 2px;
    min-height: 48px;
  }

  .mobile-nav-msg-btn svg {
    width: 18px;
    height: 18px;
  }
}

