
:root {
    --theme-color: #f3c548;
    --graphite: #23262b;
    --paper: #f7f5ef;
    --green: #2f6f52;
    --sand: #d9d6ce;
    --ink: #16181b;
    --muted: #6e706f;
    --white: #ffffff;
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --shadow: 0 20px 60px rgba(19, 22, 26, 0.12);
    --shadow-strong: 0 24px 80px rgba(0, 0, 0, 0.22);
    --container: 1280px;
    --header-offset: 112px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: var(--graphite);
    background: var(--paper);
    line-height: 1.6;
}

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

img {
    display: block;
    max-width: 100%;
}

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

.site-shell {
    min-height: 100vh;
    overflow: visible;
}


.container {
    width: min(calc(100% - 32px), var(--container));
    margin: 0 auto;
}

.container--narrow {
    width: min(calc(100% - 32px), 920px);
}



.topbar {
    background: #16181b;
    color: rgba(255, 255, 255, 0.86);
    font-size: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 8px 0;
}

.topbar__text {
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--theme-color);
}

.topbar__contacts {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 18px;
}

.topbar__contacts a {
    opacity: 0.86;
}

.header-main {
    background: rgba(35, 38, 43, 0.92);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header-main__inner {
    display: grid;
    grid-template-columns: 260px 1fr auto;
    align-items: center;
    gap: 18px;
    min-height: 78px;
}

.logo {
    display: inline-flex;
    align-items: center;
}

.logo__svg {
    width: 220px;
    height: auto;
}

.main-nav {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
}

.main-nav a {
    font-family: 'Unbounded', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    padding: 8px 12px;
    border-radius: 999px;
    transition: 0.2s ease;
}



.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}
.header-actions .btn {
    min-height: 42px;
    padding: 0 16px;
    border-radius: 12px;
    font-size: 11px;
    line-height: 1;
    letter-spacing: 0.01em;
    white-space: nowrap;
    word-break: keep-all;
    flex: 0 0 auto;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(255,255,255,0.15);
    background: transparent;
    border-radius: 12px;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: #fff;
    border-radius: 999px;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 50px;
    padding: 0 22px;
    border: 0;
    border-radius: 14px;
    background: var(--theme-color);
    color: var(--ink);
    font-family: 'Unbounded', sans-serif;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    box-shadow: 0 12px 30px rgba(243, 197, 72, 0.22);
}

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

.btn--ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: none;
}

.section {
    position: relative;
    padding: 96px 0;
}

.section-light {
    background: var(--paper);
}


.section-pattern::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(22,24,27,0.84), rgba(22,24,27,0.90)),
        var(--bg) center/cover no-repeat;
    z-index: 0;
}

.section-pattern > .container,
.hero > .container {
    position: relative;
    z-index: 1;
}

.section-head {
    margin-bottom: 34px;
}

.section-head--center {
    text-align: center;
    max-width: 860px;
    margin-inline: auto;
    margin-bottom: 40px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(243, 197, 72, 0.12);
    border: 1px solid rgba(243, 197, 72, 0.24);
    color: var(--theme-color);
    font-family: 'Unbounded', sans-serif;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: 'Unbounded', sans-serif;
    letter-spacing: -0.03em;
    line-height: 1.05;
}

h1 {
    font-size: clamp(42px, 7vw, 78px);
}

h2 {
    font-size: clamp(30px, 4vw, 54px);
    margin-top: 16px;
}

h3 {
    font-size: clamp(18px, 2vw, 24px);
}

.section-head p,
.hero__text,
.card p,
.note-box,
.footer-text,
.info-strip,
.lead-form span,
.faq-answer p {
    opacity: 0.88;
}

.light-text p {
    color: black;
}

.hero {
    position: relative;
    min-height: calc(100vh - var(--header-offset));
    display: flex;
    align-items: center;
    padding: 100px 0 90px;
    background:
        linear-gradient(90deg, rgba(18,20,23,0.82) 0%, rgba(18,20,23,0.62) 45%, rgba(18,20,23,0.18) 100%),
        var(--bg) center/cover no-repeat;
}

.hero__inner {
    max-width: 860px;
}

.hero h1 {
    margin-top: 18px;
    max-width: 860px;
}

.hero__text {
    max-width: 720px;
    margin: 24px 0 34px;
    font-size: clamp(17px, 2vw, 20px);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cards {
    display: grid;
    gap: 22px;
}

.cards--services,
.cards--attachments {
    grid-template-columns: repeat(12, 1fr);
}

.service-card,
.mini-card {
    grid-column: span 4;
}

.service-card--wide {
    grid-column: 3 / span 8;
}

.cards--equipment,
.cards--pricing,
.cards--process,
.cards--cases {
    grid-template-columns: repeat(12, 1fr);
}

.equip-card,
.price-card,
.process-card,
.case-card {
    grid-column: span 3;
}

.cards--cases .case-card {
    grid-column: span 4;
}

.card {
    position: relative;
    border-radius: var(--radius-lg);
    background: #fff;
    color: var(--graphite);
    padding: 28px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.section-dark .card {
    background: rgba(247, 245, 239, 0.98);
}

.card-num,
.process-card__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    margin-bottom: 16px;
    background: var(--theme-color);
    color: var(--ink);
    font-family: 'Unbounded', sans-serif;
    font-size: 16px;
    font-weight: 900;
}

.service-card h3,
.mini-card h3,
.equip-card h3,
.case-card h3,
.why-item h3,
.faq-question {
    margin-bottom: 10px;
}

.equip-card,
.case-card {
    padding: 0;
}

.equip-card img,
.case-card img,
.photo {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.equip-card h3,
.equip-card p,
.case-card h3,
.case-card p {
    padding-inline: 24px;
}

.equip-card h3,
.case-card h3 {
    padding-top: 20px;
}

.equip-card p,
.case-card p {
    padding-bottom: 24px;
    margin: 0;
}

.badge {
    position: absolute;
    top: 18px;
    left: 18px;
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--green);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.info-strip,
.note-box {
    margin-top: 26px;
    padding: 18px 22px;
    border: 1px solid var(--sand);
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.72);
}

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

.split__media--stack,
.split__media--duo {
    display: grid;
    gap: 18px;
}

.split__media--stack {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: end;
}

.split__media--stack .photo--main {
    height: 520px;
}

.split__media--stack .photo--side {
    height: 380px;
    margin-bottom: 28px;
}

.split__media--duo {
    grid-template-columns: 1fr 1fr;
}

.split__media--duo .photo {
    height: 420px;
}

.why-list,
.footer-links {
    display: grid;
    gap: 14px;
}

.why-item {
    padding: 20px 22px;
    border-radius: var(--radius-md);
    background: linear-gradient(145deg, #193127 0%, #2f6f52 54%, #69b18d 100%);
    border: 1px solid var(--sand);
    box-shadow: 0 10px 30px rgba(18, 20, 23, 0.06);
    color: white;
}

.check-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid var(--sand);
    font-weight: 700;
}

.check-list li::before {
    content: '✓';
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
}

.price-card {
    grid-column: span 4;
    text-align: center;
    padding: 34px 24px;
}

.price-card__title {
    font-size: 16px;
    font-weight: 700;
    opacity: 0.9;
    margin-bottom: 18px;
    min-height: 51px;
}

.price-card__value {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 64px;
    padding: 0 22px;
    border-radius: 18px;
    background: var(--theme-color);
    color: var(--ink);
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(22px, 2.2vw, 32px);
    font-weight: 900;
}

.process-card {
    grid-column: span 3;
    background: rgba(255,255,255,0.96);
}

.faq {
    display: grid;
    gap: 14px;
}

.faq-item {
    border: 1px solid var(--sand);
    border-radius: 20px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(18, 20, 23, 0.05);
}

.faq-question {
    width: 100%;
    padding: 22px 58px 22px 24px;
    border: 0;
    background: transparent;
    color: var(--graphite);
    text-align: center;
    position: relative;
    font-size: 18px;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--theme-color);
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.faq-item.active .faq-question::after {
    content: '–';
}

.faq-answer {
    display: none;
    padding: 0 24px 22px;
    text-align: center;
}

.faq-item.active .faq-answer {
    display: block;
}

.section-cta {
    background:linear-gradient(145deg, #1f2328 0%, #2f343c 44%, #505864 100%);
}

.cta-box {
    padding: 34px;
    border-radius: var(--radius-xl);
    background: #fff;
    border: 1px solid var(--sand);
    box-shadow: var(--shadow);
}

.lead-form__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.lead-form__full {
    grid-column: 1 / -1;
}

.lead-form label {
    display: grid;
    gap: 8px;
}

.lead-form span {
    font-size: 13px;
    font-weight: 700;
}

.lead-form input,
.lead-form textarea {
    width: 100%;
    border: 1px solid var(--sand);
    border-radius: 14px;
    background: #fff;
    color: var(--graphite);
    padding: 15px 16px;
    outline: none;
}

.lead-form textarea {
    resize: vertical;
    min-height: 140px;
}

.lead-form__upload input {
    padding: 12px;
}

.lead-form__actions {
    margin-top: 18px;
    display: flex;
    justify-content: center;
}

.site-footer {
    background: var(--graphite);
    color: #fff;
    padding-top: 72px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
    gap: 26px;
    padding-bottom: 40px;
}

.logo--footer .logo__svg {
    width: 240px;
}

.footer-title {
    margin-bottom: 14px;
    font-family: 'Unbounded', sans-serif;
    font-size: 16px;
    font-weight: 800;
}

.footer-text,
.footer-links a,
.footer-links span {
    color: rgba(255,255,255,0.74);
}

.footer-links a:hover {
    color: var(--theme-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom__inner {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0;
    color: rgba(255,255,255,0.72);
    font-size: 14px;
}

.site-header.is-scrolled .topbar {
    max-height: 0;
    opacity: 0;
    padding: 0;
    border: 0;
    overflow: hidden;
    display: block;
}

.site-header.is-scrolled {
    box-shadow: 0 12px 40px rgba(0,0,0,0.16);
}

@media (max-width: 1199px) {
    .header-main__inner {
        grid-template-columns: 220px 1fr;
    }

    .menu-toggle {
        display: inline-block;
        justify-self: end;
    }

    .main-nav,
    .header-actions {
        display: none;
    }

    .main-nav.is-open {
        display: grid;
        grid-column: 1 / -1;
        justify-content: stretch;
        background: #1b1e22;
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 18px;
        padding: 12px;
        margin-bottom: 16px;
    }

    .main-nav.is-open a {
        text-align: center;
    }

    .header-actions.is-open {
        display: grid;
        grid-column: 1 / -1;
        grid-template-columns: 1fr 1fr;
        margin-bottom: 18px;
    }

    .equip-card,
    .process-card,
    .price-card {
        grid-column: span 6;
    }

    .service-card,
    .mini-card,
    .cards--cases .case-card {
        grid-column: span 6;
    }

    .service-card--wide {
        grid-column: span 12;
    }

    .split,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 991px) {
    :root {
        --header-offset: 94px;
    }

    .topbar__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .topbar__contacts {
        justify-content: flex-start;
        gap: 10px 16px;
    }

    .section {
        padding: 76px 0;
    }

    .hero {
        min-height: auto;
        padding: 90px 0 76px;
    }

    .split,
    .split__media--stack,
    .split__media--duo,
    .footer-grid,
    .lead-form__grid {
        grid-template-columns: 1fr;
    }

    .split__media--stack .photo--main,
    .split__media--stack .photo--side,
    .split__media--duo .photo {
        height: 320px;
        margin-bottom: 0;
    }

    .equip-card,
    .process-card,
    .price-card,
    .service-card,
    .mini-card,
    .cards--cases .case-card {
        grid-column: span 12;
    }

    .faq-question,
    .faq-answer {
        text-align: left;
    }
}

@media (max-width: 767px) {
    .section-cta {
        background: none;
    }
    .container {
        width: min(calc(100% - 24px), var(--container));
    }

    .logo__svg,
    .logo--footer .logo__svg {
        width: 168px;
    }

    .header-main__inner {
        min-height: 68px;
        grid-template-columns: 1fr auto;
    }

    .btn,
    .header-actions.is-open {
        width: 100%;
    }

    .header-actions.is-open {
        grid-template-columns: 1fr;
    }

    .card,
    .cta-box {
        padding: 22px;
    }

    .equip-card,
    .case-card {
        padding: 0;
    }

    .equip-card h3,
    .equip-card p,
    .case-card h3,
    .case-card p {
        padding-inline: 18px;
    }

    .faq-question {
        font-size: 16px;
        padding: 18px 52px 18px 18px;
    }

    .faq-answer {
        padding: 0 18px 18px;
    }

    .footer-bottom__inner {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* Все обычные заголовки чёрные */
h1,
h2,
h3,
h4,
h5,
h6 {;
}

/* Только главные заголовки секций белые */
.section-dark .section-head h2,
.hero h1 {
}
/* Центрирование карточек в блоке "Техника в наличии" */
.cards--equipment {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
}

.cards--equipment .equip-card {
    width: 100%;
    max-width: 240px;
    flex: 0 0 240px;
}
/* Сделать карточки "Техника в наличии" шире */
.cards--equipment {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
}

.cards--equipment .equip-card {
    width: 100%;
    max-width: 320px;
    flex: 0 0 320px;
}
/* Блок 4 — сделать карточки 2 в ряд */
.cards--attachments {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.cards--attachments .mini-card {
    grid-column: auto !important;
    width: 100%;
    max-width: none;
}

/* На телефоне — по 1 в ряд */
@media (max-width: 767px) {
    .cards--attachments {
        grid-template-columns: 1fr;
    }
}
.logo,
.veresk-logo{
  display:flex;
  align-items:center;
  gap:16px;
  text-decoration:none;
}

.logo__image,
.veresk-logo__image{
  display:block;
  width:78px;
  height:73px;
  object-fit:contain;
  flex:0 0 78px;
}

.logo__text,
.veresk-logo__text{
  display:flex;
  flex-direction:column;
  min-width:0;
}

.logo__title,
.veresk-logo__title{
  display:block;
  font-family:'Unbounded', Inter, sans-serif;
  font-size:28px;
  font-weight:800;
  line-height:.95;
  letter-spacing:-0.05em;
  color:#23262B;
}

.logo__sub,
.veresk-logo__sub{
  display:block;
  margin-top:4px;
  font-size:11px;
  line-height:1.2;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
  color:rgba(35,38,43,.72);
}
@media (max-width: 767px){

  .logo,
  .veresk-logo{
    gap:10px;
    max-width:calc(100% - 52px);
  }

  .logo__image,
  .veresk-logo__image{
    width:68px;
    height:62px;
    flex:0 0 68px;
  }

  .logo__title,
  .veresk-logo__title{
    font-size:24px;
  }

  .logo__sub,
  .veresk-logo__sub{
    font-size:9px;
  }
}
/* ===== VERESK LOGO FIX ===== */
.veresk-mainbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.veresk-logo{
  display:flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
  min-width:0;
  flex:0 0 auto;
  max-width:420px;
}

.veresk-logo__image{
  display:block;
  width:78px;
  height:78px;
  flex:0 0 78px;
  object-fit:contain;
}

.veresk-logo__text{
  display:flex;
  flex-direction:column;
  min-width:0;
}

.veresk-logo__title{
  display:block;
  margin:0;
  font-family:'Unbounded', Inter, sans-serif;
  font-size:28px;
  font-weight:800;
  line-height:.92;
  letter-spacing:-0.05em;
  color:#23262B;
}

.veresk-logo__sub{
  display:block;
  margin-top:4px;
  font-size:11px;
  line-height:1.2;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
  color:rgba(35,38,43,.62);
  white-space:normal;
}

/* чтобы меню не ломало логотип */
.veresk-nav--desktop{
  flex:1 1 auto;
  min-width:0;
}

@media (max-width: 991px){
  .veresk-logo{
    gap:10px;
    max-width:calc(100% - 52px);
  }

  .veresk-logo__image{
    width:64px;
    height:64px;
    flex:0 0 64px;
  }

  .veresk-logo__title{
    font-size:24px;
  }

  .veresk-logo__sub{
    font-size:9px;
    line-height:1.15;
  }
}
/* ===== LOGO TEXT COLOR FIX FOR index2 ===== */

/* шапка */
.header-main .logo__title{
  display: inline-block;
  color: transparent !important;
  background: linear-gradient(180deg, #FFE27A 0%, #F3C548 45%, #D9A300 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.header-main .logo__sub{
  color: #ffffff !important;
}

/* футер */
.site-footer .logo__title{
  display: inline-block;
  color: transparent !important;
  background: linear-gradient(180deg, #FFE27A 0%, #F3C548 45%, #D9A300 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.site-footer .logo__sub{
  color: rgba(255,255,255,.88) !important;
}
/* ===== GRAPHITE LINEAR GRADIENT FOR ALL DARK BLOCKS ===== */
:root{
  --graphite-gradient: linear-gradient(
    180deg,
    #343840 0%,
    #23262B 55%,
    #17191D 100%
  );
}

/* обычные тёмные секции */
.section-dark,
.header-main,
.site-footer{
}

/* верхняя тонкая панель */
.topbar{
  background: linear-gradient(
    180deg,
    #2B2F35 0%,
    #1F2227 100%
  ) !important;
}

/* hero с картинкой */
.hero{
  background:
    linear-gradient(
      90deg,
      rgba(35,38,43,.92) 0%,
      rgba(35,38,43,.76) 45%,
      rgba(35,38,43,.34) 100%
    ),
    var(--bg) center/cover no-repeat !important;
}

/* тёмные секции с фоновыми картинками */
.section-pattern::before{
  background:
    linear-gradient(
      180deg,
      rgba(52,56,64,.90) 0%,
      rgba(35,38,43,.92) 55%,
      rgba(23,25,29,.96) 100%
    ),
    var(--bg) center/cover no-repeat !important;
}
/* ===== YELLOW LINEAR GRADIENT, BUT NOT BUTTONS ===== */
:root{
  --yellow-gradient: linear-gradient(
    180deg,
    #FFE27A 0%,
    #F3C548 48%,
    #D9A300 100%
  );
}

.main-nav a:hover,
.main-nav a.is-active{
  color: white;
}

.card-num,
.process-card__num{
  background: var(--yellow-gradient) !important;
  color: #16181b !important;
}

.price-card__value{
  background:linear-gradient(145deg, #193127 0%, #2f6f52 54%, #69b18d 100%);
  color:white;
}

.faq-question::after{
  background: var(--yellow-gradient) !important;
  color: #16181b !important;
}
/* Жёлтый градиент для заголовка hero */
.hero h1{
  color: transparent !important;
  background: linear-gradient(180deg, #FFE27A 0%, #F3C548 48%, #D9A300 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.hero__text {
    color: white;
}

#equipment {
    background: linear-gradient(145deg, #1f2328 0%, #2f343c 44%, #505864 100%);
}
.texnik { 
color:white; }
#why-us{
    background: linear-gradient(145deg, #1f2328 0%, #2f343c 44%, #505864 100%);
}
.nas {
    color: white;
}
#geography{
    background:linear-gradient(145deg, #1f2328 0%, #2f343c 44%, #505864 100%) ;
}
.geogr{
    color: white;
}
.geogrtext{
    color: white;
}
.kak{
    color: white;
}
html,
body {
    overflow-x: visible !important;
}

/* липкая шапка */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-main {
    position: relative;
    z-index: 2;
    background: rgba(35, 38, 43, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.topbar {
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: max-height .3s ease, opacity .3s ease, padding .3s ease;
    max-height: 60px;
}

/* старое display:none убрать */
.site-header.is-scrolled .topbar {
    display: block !important;
    max-height: 0;
    opacity: 0;
    padding-top: 0;
    padding-bottom: 0;
    border: 0;
}

.site-header.is-scrolled {
    box-shadow: 0 12px 40px rgba(0,0,0,0.16);
}

/* липкое фото */
#why-us .split {
    align-items: start;
}

#why-us .split__media--stack {
    display: block;
    position: sticky;
    top: 96px;
    align-self: start;
}

#why-us .photo--main {
    display: block;
    width: 100%;
}

@media (max-width: 991px) {
    .site-header {
        top: 0;
    }

    #why-us .split__media--stack {
        position: static;
    }
}
@media (max-width: 767px) {
    .topbar {
        padding: 0;
    }

    .topbar__inner {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 6px;
        padding: 10px 0 12px;
    }

    .topbar__text {
        width: 100%;
        font-size: 11px;
        line-height: 1.35;
        letter-spacing: 0.02em;
    }

    .topbar__contacts {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 6px 14px;
    }

    .topbar__contacts a {
        font-size: 15px;
        line-height: 1.2;
        white-space: nowrap;
    }

    /* email в мобильной верхней плашке лучше убрать */
    .topbar__contacts a[href^="mailto:"] {
        display: none;
    }

    .header-main__inner {
        min-height: 72px;
        grid-template-columns: 1fr auto;
        gap: 12px;
    }

    .logo {
        gap: 10px;
        max-width: calc(100% - 56px);
    }

    .logo__image {
        width: 64px;
        height: 58px;
        flex: 0 0 64px;
    }

    .logo__title {
        font-size: 22px;
        line-height: 1;
    }

    .logo__sub {
        font-size: 8px;
        line-height: 1.15;
        letter-spacing: 0.03em;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
    }
}
.nas{
    color: white;
}
.cta-box .wpcf7 {
    margin-top: 30px;
}

.cta-cf7__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 18px;
}

.cta-cf7__field {
    display: flex;
    flex-direction: column;
}

.cta-cf7__field--full {
    grid-column: 1 / -1;
}

.cta-cf7__field label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #2b2e38;
}

.cta-cf7__field .wpcf7-form-control-wrap {
    display: block;
}

.cta-cf7 input[type="text"],
.cta-cf7 input[type="tel"],
.cta-cf7 input[type="email"],
.cta-cf7 textarea,
.cta-cf7 input[type="file"] {
    width: 100%;
    border: 1px solid #d9dde5;
    border-radius: 16px;
    background: #fff;
    color: #2b2e38;
    font-size: 16px;
    line-height: 1.4;
    box-sizing: border-box;
    box-shadow: none;
    outline: none;
    transition: 0.2s ease;
}

.cta-cf7 input[type="text"],
.cta-cf7 input[type="tel"],
.cta-cf7 input[type="email"] {
    height: 56px;
    padding: 0 18px;
}

.cta-cf7 textarea {
    min-height: 160px;
    padding: 18px;
    resize: vertical;
}

.cta-cf7 input[type="file"] {
    padding: 14px 18px;
    min-height: 56px;
}

.cta-cf7 input:focus,
.cta-cf7 textarea:focus {
    border-color: #f4c63d;
}

.cta-cf7 input::placeholder,
.cta-cf7 textarea::placeholder {
    color: #8b9099;
    opacity: 1;
}

.cta-cf7__submit {
    margin-top: 28px;
    text-align: center;
}

.cta-cf7__button,
.cta-cf7 input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 230px;
    height: 56px;
    padding: 0 28px;
    border: none;
    border-radius: 16px;
    background: #f4c63d;
    color: #1f2430;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(244, 198, 61, 0.35);
    transition: 0.2s ease;
}

.cta-cf7__button:hover,
.cta-cf7 input[type="submit"]:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(244, 198, 61, 0.42);
}

.cta-cf7 .wpcf7-spinner {
    display: block;
    margin: 12px auto 0;
}

.cta-cf7 .wpcf7-not-valid-tip {
    margin-top: 8px;
    font-size: 13px;
}

.cta-cf7 .wpcf7-response-output {
    margin: 20px 0 0 !important;
    border-radius: 12px;
    font-size: 14px;
}

@media (max-width: 767px) {
    .cta-cf7__grid {
        grid-template-columns: 1fr;
    }

    .cta-cf7__field--full {
        grid-column: auto;
    }

    .cta-cf7__button,
    .cta-cf7 input[type="submit"] {
        width: 100%;
        min-width: 100%;
    }
}
.powered-by{
    display:flex;
    align-items:center;
    gap:8px;
    font-size:14px;
}

.powered-by img{
    width:20px;
    height:20px;
    object-fit:contain;
}

.powered-by a{
    color:inherit;
    text-decoration:none;
}

.powered-by a:hover{
    text-decoration:underline;
}
.site-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease, visibility .25s ease;
}

.site-popup.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.site-popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.site-popup__dialog {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 520px;
    background: #fff;
    border-radius: 20px;
    padding: 40px 32px 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.site-popup__close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.site-popup__close span {
    position: absolute;
    top: 15px;
    left: 6px;
    width: 20px;
    height: 2px;
    background: #23262B;
    border-radius: 2px;
}

.site-popup__close span:first-child {
    transform: rotate(45deg);
}

.site-popup__close span:last-child {
    transform: rotate(-45deg);
}

.site-popup__title {
    margin: 0 0 14px;
    font-size: 28px;
    line-height: 1.2;
}

.site-popup__text {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.5;
    color: #4b5563;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.popup-form__field input,
.popup-form__field textarea,
.popup-form__field select,
.site-popup .wpcf7-form-control:not(.wpcf7-submit) {
    width: 100%;
    height: 54px;
    padding: 0 18px;
    border: 1px solid #d9dee7;
    border-radius: 14px;
    background: #fff;
    font-size: 16px;
    color: #23262B;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
    box-sizing: border-box;
}

.popup-form__field input:focus,
.popup-form__field textarea:focus,
.site-popup .wpcf7-form-control:not(.wpcf7-submit):focus {
    border-color: #23262B;
    box-shadow: 0 0 0 3px rgba(35, 38, 43, 0.08);
}

.popup-form__submit .btn,
.site-popup .wpcf7-submit {
    width: 100%;
    min-height: 54px;
    border: 0;
    border-radius: 14px;
    cursor: pointer;
}

.site-popup .wpcf7-spinner {
    display: none;
}

.site-popup .wpcf7-response-output {
    display: none !important;
}

body.popup-open {
    position: fixed;
    left: 0;
    width: 100%;
    overflow: hidden;
}

@media (max-width: 767px) {
    .site-popup {
        padding: 16px;
    }

    .site-popup__dialog {
        max-width: 100%;
        padding: 36px 20px 24px;
        border-radius: 16px;
    }

    .site-popup__title {
        font-size: 24px;
    }
}
.reveal,
.reveal-left,
.reveal-right,
.reveal-zoom,
.stagger-item {
    opacity: 0;
    will-change: transform, opacity;
    backface-visibility: hidden;
}

.reveal {
    transform: translateY(70px);
    transition: opacity .9s ease, transform .9s ease;
}

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

.reveal-left {
    transform: translateX(-80px);
    transition: opacity .9s ease, transform .9s ease;
}

.reveal-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    transform: translateX(80px);
    transition: opacity .9s ease, transform .9s ease;
}

.reveal-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-zoom {
    transform: scale(.88);
    transition: opacity .9s ease, transform .9s ease;
}

.reveal-zoom.is-visible {
    opacity: 1;
    transform: scale(1);
}

.stagger-item {
    transform: translateY(55px);
    transition: opacity .85s ease, transform .85s ease;
}

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

@media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-zoom,
    .stagger-item {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}
.machine-page {
    background: #fff;
    color: #1f2328;
}

.container {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}

.section {
    padding: 72px 0;
}

.section-title {
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.1;
    margin: 0 0 28px;
    font-weight: 700;
}

.machine-hero {
    padding: 64px 0;
}

.machine-hero__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 36px;
    align-items: center;
}

.machine-hero__title {
    margin: 0 0 18px;
    font-size: clamp(36px, 5vw, 62px);
    line-height: 0.98;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.machine-hero__price {
    display: inline-flex;
    flex-direction: column;
    padding: 18px 22px;
    border-radius: 20px;
    margin-bottom: 24px;
    background: linear-gradient(145deg, #193127 0%, #2f6f52 54%, #69b18d 100%);
}

.machine-hero__price span {
    font-size: 14px;
    color: white;
    margin-bottom: 8px;
}

.machine-hero__price strong {
    font-size: 28px;
    line-height: 1.1;
    color: white;
}

.machine-hero__text {
    font-size: 18px;
    line-height: 1.65;
    color: #4b5563;
    margin-bottom: 24px;
}

.machine-hero-specs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 24px;
}

.machine-hero-spec {
    background: #f3f4f6;
    border-radius: 18px;
    padding: 16px;
}

.machine-hero-spec__label {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 6px;
}

.machine-hero-spec__value {
    font-size: 18px;
    font-weight: 600;
}

.machine-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 26px;
    background: #111827;
    color: #fff;
    text-decoration: none;
    border-radius: 14px;
    font-weight: 600;
    transition: .2s ease;
}

.machine-btn:hover {
    opacity: .92;
    transform: translateY(-1px);
}

.machine-hero__media img {
    width: 100%;
    display: block;
    border-radius: 24px;
    object-fit: cover;
}

.machine-about__text {
    max-width: 900px;
    font-size: 18px;
    line-height: 1.7;
    color: #4b5563;
}

.machine-specs {
    background: #f8f9fa;
}

.machine-specs__grid,
.machine-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: start;
}

.machine-spec-card,
.machine-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    padding: 20px;
    height: 100%;
}

.machine-spec-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 4px;
}

.machine-spec-card__label {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 0;
    line-height: 1.2;
}

.machine-spec-card__value {
    margin-top: 0;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.28;
    white-space: pre-line;
    overflow-wrap: anywhere;
    word-break: break-word;
}


.machine-card h3 {
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.2;
}

.machine-card__text {
    color: #4b5563;
    line-height: 1.65;
}

@media (max-width: 980px) {
    .machine-hero__grid,
    .machine-hero-specs,
    .machine-specs__grid,
    .machine-cards {
        grid-template-columns: 1fr;
    }
}
.texn{
    color: white;
}
.service-page .hero__inner {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 32px;
    align-items: center;
}

.service-page .hero-price {
    margin: 18px 0 24px;
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 18px;
    border-radius: 18px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
}

.service-page .hero-price__label {
    font-size: 14px;
    opacity: .75;
}

.service-page .hero-price__value {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.1;
}

.service-page .hero__media img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
}

.service-page .cards--services,
.service-page .cards--attachments,
.service-page .cards--equipment,
.service-page .why-list {
    margin-top: 24px;
}

.service-page .cards--attachments {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

@media (max-width: 991px) {
    .service-page .hero__inner {
        grid-template-columns: 1fr;
    }

    .service-page .cards--attachments {
        grid-template-columns: 1fr;
    }
}
.single-services .hero__text {
    color: #000 !important;
}
.services-page .hero__inner {
    display: block;
}

.cards--services .service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card__actions {
    margin-top: auto;
    padding-top: 20px;
}

.service-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.service-card__btn {
    color: #111 !important;
    border-color: #111 !important;
    background: transparent !important;
}
/* ===== Уменьшить CTA-форму ===== */
.section-cta .container--narrow{
    max-width: 900px;
}

.section-cta .cta-box{
    max-width: 760px;
    margin: 0 auto;
    padding: 32px 24px;
}

.section-cta .cta-form-wrap{
    max-width: 520px;
    margin: 0 auto;
}

.section-cta .wpcf7 form{
    max-width: 520px;
    margin: 0 auto;
}

.section-cta .wpcf7-form-control-wrap{
    display: block;
    margin-bottom: 12px;
}

.section-cta .wpcf7 input[type="text"],
.section-cta .wpcf7 input[type="tel"],
.section-cta .wpcf7 input[type="email"],
.section-cta .wpcf7 textarea,
.section-cta .wpcf7 select{
    width: 100%;
    min-height: 46px;
    padding: 12px 14px;
    font-size: 14px;
    border-radius: 10px;
    box-sizing: border-box;
}

.section-cta .wpcf7 textarea{
    min-height: 110px;
    resize: vertical;
}

.section-cta .wpcf7 input[type="submit"],
.section-cta .wpcf7 button,
.section-cta .wpcf7 .wpcf7-submit{
    min-height: 46px;
    padding: 12px 18px;
    font-size: 14px;
    border-radius: 10px;
    width: 100%;
    max-width: 260px;
    display: block;
    margin: 14px auto 0;
}

/* Мобильная версия */
@media (max-width: 767px){
    .section-cta .cta-box{
        max-width: 100%;
        padding: 24px 16px;
    }

    .section-cta .cta-form-wrap,
    .section-cta .wpcf7 form{
        max-width: 100%;
    }

    .section-cta .wpcf7 input[type="text"],
    .section-cta .wpcf7 input[type="tel"],
    .section-cta .wpcf7 input[type="email"],
    .section-cta .wpcf7 textarea,
    .section-cta .wpcf7 select{
        min-height: 42px;
        font-size: 13px;
        padding: 10px 12px;
    }

    .section-cta .wpcf7 textarea{
        min-height: 96px;
    }

    .section-cta .wpcf7 input[type="submit"],
    .section-cta .wpcf7 button,
    .section-cta .wpcf7 .wpcf7-submit{
        max-width: 100%;
        min-height: 42px;
        font-size: 13px;
    }
}
/* Уменьшить высоту блока с формой */
.section-cta .cta-box{
    max-width: 760px;
    margin: 0 auto;
    padding: 0px 24px;
}

.section-cta .section-head{
    margin-bottom: 18px;
}

.section-cta .section-head h2{
    font-size: 44px;
    line-height: 0.95;
    margin-bottom: 10px;
}

.section-cta .section-head p{
    font-size: 14px;
    line-height: 1.35;
    margin-bottom: 0;
}

.section-cta .wpcf7 form{
    max-width: 560px;
    margin: 0 auto;
}

.section-cta .wpcf7-form-control-wrap{
    display: block;
    margin-bottom: 10px;
}

.section-cta .wpcf7 input[type="text"],
.section-cta .wpcf7 input[type="tel"],
.section-cta .wpcf7 input[type="email"],
.section-cta .wpcf7 input[type="file"],
.section-cta .wpcf7 textarea{
    min-height: 42px;
    padding: 10px 12px;
    font-size: 14px;
    border-radius: 10px;
    box-sizing: border-box;
}

.section-cta .wpcf7 textarea{
    min-height: 95px;
    height: 95px;
    resize: vertical;
}

.section-cta .wpcf7 p{
    margin-bottom: 12px;
}

.section-cta .wpcf7 input[type="submit"],
.section-cta .wpcf7 .wpcf7-submit{
    min-height: 42px;
    padding: 10px 18px;
    font-size: 14px;
    border-radius: 10px;
    margin-top: 8px;
}
/* Аренада мини-экскаватора — одинаковые вертикальные расстояния между блоками */
body.postid-266 {
  --page-section-space: 72px;
  --page-inner-space: 32px;
  --page-subsection-space: 56px;
}

/* верхний блок и все секции страницы */
body.postid-266 .hero,
body.postid-266 .section {
  margin: 0;
  padding-top: var(--page-section-space);
  padding-bottom: var(--page-section-space);
}

/* заголовок внутри секции */
body.postid-266 .section-head {
  margin-top: 0;
  margin-bottom: var(--page-inner-space);
}

/* сразу после заголовка не даём лишних скачков */
body.postid-266 .section-head + .cards,
body.postid-266 .section-head + .why-list,
body.postid-266 .section-head + .faq,
body.postid-266 .section-head + .cta-box {
  margin-top: 0;
}

/* одинаковый отступ между внутренними блоками внутри одной секции */
body.postid-266 .cards + .section-head,
body.postid-266 .why-list + .section-head,
body.postid-266 .faq + .section-head,
body.postid-266 .cards + .cards,
body.postid-266 .why-list + .cards {
  margin-top: var(--page-subsection-space);
}

/* убираем случайные лишние отступы у последнего внутреннего блока */
body.postid-266 .cards:last-child,
body.postid-266 .why-list:last-child,
body.postid-266 .faq:last-child,
body.postid-266 .cta-box:last-child {
  margin-bottom: 0;
}

/* мобильная версия */
@media (max-width: 767px) {
  body.postid-266 {
    --page-section-space: 48px;
    --page-inner-space: 24px;
    --page-subsection-space: 36px;
  }
}
.service-card__image {
  margin-bottom: 16px;
  border-radius: 18px;
  overflow: hidden;
}

.service-card__img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.section {
    padding: 80px 0;
}

.container {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}

.section-title,
.price-hero__title {
    margin: 0 0 20px;
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.1;
    font-weight: 700;
}

.section-text,
.price-hero__text {
    max-width: 820px;
    color: #555;
    font-size: 18px;
    line-height: 1.6;
}

.price-hero__note {
    margin-top: 16px;
    color: #111;
    font-weight: 600;
}

.price-regions__grid,
.factors-grid,
.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.price-card,
.factor-card,
.step-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 24px;
    padding: 28px;
}

.price-card.is-featured {
    border-color: #111;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    background: linear-gradient(145deg, #193127 0%, #2f6f52 54%, #69b18d 100%);
    color: white;
}

.price-card__regions {
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 1.5;
    color: #222;
}

.price-card__price {
    font-size: 34px;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 10px;
}

.price-card__note {
    color: black;
    font-size: 14px;
}

.factor-card__icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 16px;
}

.factor-card__title,
.step-card__title {
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.3;
}

.factor-card__text,
.step-card__text {
    color: #555;
    line-height: 1.6;
}

.step-card__num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 18px;
}

@media (max-width: 767px) {
    .section {
        padding: 56px 0;
    }

    .price-regions__grid,
    .factors-grid,
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .price-card,
    .factor-card,
    .step-card {
        padding: 20px;
        border-radius: 18px;
    }

    .price-card__price {
        font-size: 28px;
    }
}
.section {
    padding: 80px 0;
}

.container {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}

.section-title,
.hero__title {
    margin: 0 0 20px;
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.05;
    font-weight: 700;
}

.section-text,
.hero__text,
.info-card__text {
    color: #555;
    line-height: 1.6;
    font-size: 18px;
}

.hero__note,
.about-geo__bottom-note {
    margin-top: 16px;
    color: #111;
    font-weight: 600;
}

.cards-grid,
.about-geo__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.info-card,
.geo-card {
    padding: 28px;
    border: 1px solid #e8e8e8;
    border-radius: 24px;
    background: #fff;
}

.info-card__title,
.geo-card__title {
    margin: 0 0 12px;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
}

.geo-card__note {
    color: #666;
    font-size: 15px;
}

@media (max-width: 767px) {
    .section {
        padding: 56px 0;
    }

    .cards-grid,
    .about-geo__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .info-card,
    .geo-card {
        padding: 20px;
        border-radius: 18px;
    }
}
.hero_text{
    color: white;
}
.contacts-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: start;
}

.contacts-grid__info {
    display: grid;
    gap: 32px;
}

.contacts-cards {
    display: grid;
    gap: 16px;
}

.contact-card__label {
    margin-bottom: 10px;
    font-size: 14px;
    color: #6b7280;
}

.contact-card__value {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
}

.contact-card__value a {
    color: inherit;
    text-decoration: none;
}

.contact-card__note {
    margin-top: 10px;
    color: #6b7280;
}

.requisites-card {
    padding: 28px;
}

.requisites-card__row {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
}

.requisites-card__row:last-child {
    border-bottom: 0;
}

.requisites-card__name {
    color: #6b7280;
}

.requisites-card__value {
    font-weight: 600;
    text-align: right;
}

.requisites-card__text {
    margin-top: 20px;
}

.requisites-card__note {
    margin-top: 16px;
    color: #6b7280;
}

.contacts-form-section .cta-box {
    height: 100%;
}

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

@media (max-width: 767px) {
    .contact-card__value {
        font-size: 20px;
    }

    .requisites-card__row {
        flex-direction: column;
        gap: 6px;
    }

    .requisites-card__value {
        text-align: left;
    }
}
.geogrr{
    color: black;

}
.contacts-page #final-cta {
    background: transparent;
    padding-top: 0;
    padding-bottom: 0;

}

.contacts-page #final-cta .container--narrow {
    max-width: 100%;
}

.contacts-page #final-cta .cta-box {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
    max-width: 100%;
}
.contacts-page .contacts-hero {
    min-height: auto;
    padding: 32px 0 24px;
    align-items: flex-start;
    background: none;
}

.contacts-page .contacts-hero .container {
    width: 100%;
}

.contacts-page .contacts-hero h1,
.contacts-page .contacts-hero .hero__title {
    margin-top: 0;
    margin-bottom: 0;
    /* margin-left: 350px; */
    text-align: center;
}

.contacts-page .contacts-hero .hero__text {
    margin: 12px 0 0;
}
.price-card.is-featured,
.price-card.is-featured .price-card__regions,
.price-card.is-featured .price-card__price,
.price-card.is-featured .price-card__note {
    color: #fff;
}
.about-trust .card,
.about-trust .info-card,
.about-trust .about-trust__item {
    background: linear-gradient(145deg, #193127 0%, #2f6f52 54%, #69b18d 100%);
    color: #fff;
    border: 0;
}

.about-trust .card h3,
.about-trust .card p,
.about-trust .info-card h3,
.about-trust .info-card p,
.about-trust .about-trust__item h3,
.about-trust .about-trust__item p {
    color: #fff;
}
.contacts-page .contact-card__label,
.contacts-page .contact-card__note {
    display: none;
}

@media (min-width: 992px) {
    .contacts-page .contacts-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 36px;
    align-items: start;
}


    .contacts-page .contacts-grid__info {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
        align-items: start;
    }

    .contacts-page .contacts-phones .section-title,
    .contacts-page .contacts-email .section-title {
        display: none;
    }

    .contacts-page .contacts-phones,
    .contacts-page .contacts-email {
        margin: 0;
        width: 100%;
    }

    .contacts-page .contacts-phones .contacts-cards {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
        width: 100%;
    }

    .contacts-page .contacts-phones .contact-card,
    .contacts-page .contacts-email .contact-card {
        width: 100%;
        max-width: none;
        min-width: 0;
        margin: 0;
        padding: 20px 24px;
    }

    .contacts-page .contact-card__value {
        font-size: 20px;
        line-height: 1.25;
    }

    .contacts-page .contact-card__value a {
        display: block;
        overflow-wrap: anywhere;
    }

    .contacts-page .contacts-requisites {
        width: 100%;
        margin-top: 12px;
    }

    .contacts-page .contacts-requisites .section-title {
        margin-bottom: 20px;
    }

    .contacts-page .contacts-requisites .requisites-card {
        width: 100%;
        max-width: none;
        padding: 34px 32px;
        border-radius: 24px;
    }

    .contacts-page .requisites-card__row {
        padding: 14px 0;
    }

    .contacts-page .requisites-card__name {
        font-size: 15px;
    }

    .contacts-page .requisites-card__value {
        font-size: 16px;
    }

    .contacts-page .requisites-card__text,
    .contacts-page .requisites-card__note {
        font-size: 16px;
        line-height: 1.6;
    }

    .contacts-page .contacts-grid__form {
        align-self: start;
    }

    .contacts-page .contacts-grid__form .contacts-form-section {
        background: transparent;
        padding-top: 0;
        padding-bottom: 0;
    }

    .contacts-page .contacts-grid__form .contacts-form-section::before,
    .contacts-page .contacts-grid__form .contacts-form-section::after {
        display: none;
        content: none;
    }

    .contacts-page .contacts-grid__form .contacts-form-section .cta-box {
        background: #fff;
    }
}

@media (max-width: 991px) {
    .contacts-page .contacts-phones .contacts-cards {
        grid-template-columns: 1fr;
    }

    .contacts-page .contacts-phones .contact-card,
    .contacts-page .contacts-email .contact-card,
    .contacts-page .contacts-requisites .requisites-card {
        width: 100%;
        max-width: none;
    }
}
.policy-page-simple {
    background: var(--paper);
}

.policy-page-simple__section {
    padding: 48px 0 72px;
}

.policy-text {
    max-width: 900px;
    margin: 0 auto;
    color: var(--graphite);
    font-size: 16px;
    line-height: 1.75;
}

.policy-text h1 {
    margin: 0 0 28px;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.05;
}

.policy-text h2 {
    margin: 32px 0 16px;
    font-size: clamp(22px, 3vw, 32px);
    line-height: 1.15;
}

.policy-text p {
    margin: 0 0 16px;
}

.policy-text ul {
    margin: 0 0 20px;
    padding-left: 22px;
}

.policy-text li + li {
    margin-top: 8px;
}

@media (max-width: 767px) {
    .policy-page-simple__section {
        padding: 24px 0 48px;
    }

    .policy-text {
        font-size: 15px;
        line-height: 1.7;
    }

    .policy-text h1 {
        margin-bottom: 22px;
    }

    .policy-text h2 {
        margin-top: 26px;
        margin-bottom: 12px;
    }
}
