

:root {
    --theme-color-white: #ffffff;
    --theme-color-white-rgb: 255, 255, 255;
    --theme-color-light: #ffffff;
    --theme-white-bg: #ffffff;
    --theme-color-dark: #000000;
    --theme-color1: #ddff93;
    --theme-color2: #003f2f;
    --theme-color4: #a0b1ac;
    --theme-color5: #f1f3f3;
    --theme-color6: #45DA00;
    --gradient-1: linear-gradient(to right, var(--theme-color2) 0%, rgba(255, 255, 255, 0) 100%);
    --text-color: #62736f;
    --gray-color: #DDE3E3;
    --headings-color: var(--theme-color2);
    --link-color: var(--theme-color2);
    --link-hover-color: var(--theme-color1);
    --body-font-family: "Plus Jakarta Sans", sans-serif;
    --heading-font-family: 'GT Walsheim Pro', 'Outfit', sans-serif;

    --cc-deep: #00281e;
    --cc-green-soft: #0b5140;
    --cc-error: #d23b3b;
    --cc-radius: 14px;
    --cc-container: 1320px;
    --cc-ease: cubic-bezier(.22, .61, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    font-family: var(--body-font-family);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    background: var(--theme-color2);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.cc-lock { overflow: hidden; }

img, svg { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; text-decoration: none; transition: color .25s, background-color .25s, border-color .25s; }

h1, h2, h3, h4 {
    margin: 0;
    font-family: var(--heading-font-family);
    font-weight: 500;
    line-height: 1.15;
    color: var(--headings-color);
}

p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; cursor: pointer; }
input, select, textarea { font: inherit; }

:focus-visible { outline: 2px solid var(--theme-color6); outline-offset: 3px; }

.cc-icon { width: 1em; height: 1em; flex: none; }

.cc-container {
    width: 100%;
    max-width: calc(var(--cc-container) + 48px);
    margin: 0 auto;
    padding: 0 24px;
}

.cc-container--wide { max-width: 1800px; }

.cc-sr {
    position: absolute !important;
    width: 1px; height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.cc-skip {
    position: fixed;
    top: -60px; left: 16px;
    z-index: 2000;
    padding: 10px 18px;
    border-radius: 6px;
    background: var(--theme-color1);
    color: var(--theme-color2);
    font-weight: 700;
    transition: top .2s;
}
.cc-skip:focus { top: 12px; }

.cc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 13px 14px 13px 22px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.2;
    white-space: nowrap;
    transition: background-color .3s, color .3s, border-color .3s, transform .3s, box-shadow .3s;
}

.cc-btn__arrow {
    display: grid;
    place-items: center;
    width: 32px; height: 32px;
    border-radius: 5px;
    background: var(--theme-color2);
    color: var(--theme-color1);
    font-size: 17px;
    transition: transform .3s var(--cc-ease), background-color .3s, color .3s;
}

.cc-btn:hover .cc-btn__arrow { transform: translateX(3px); }

.cc-btn--lime { background: var(--theme-color1); color: var(--theme-color2); }
.cc-btn--lime:hover { background: #fff; box-shadow: 0 12px 30px rgba(221, 255, 147, .25); }

.cc-btn--dark { background: var(--theme-color2); color: #fff; }
.cc-btn--dark .cc-btn__arrow { background: var(--theme-color1); color: var(--theme-color2); }
.cc-btn--dark:hover { background: var(--cc-deep); box-shadow: 0 12px 30px rgba(0, 63, 47, .3); }

.cc-btn--outline-light { padding: 13px 26px; border-color: rgba(255, 255, 255, .45); color: #fff; }
.cc-btn--outline-light:hover { border-color: var(--theme-color1); color: var(--theme-color1); background: rgba(221, 255, 147, .06); }

.cc-btn--sm { padding: 9px 10px 9px 18px; font-size: 14px; }
.cc-btn--sm .cc-btn__arrow { width: 28px; height: 28px; }
.cc-btn--block { width: 100%; }

.cc-label {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--theme-color1);
}
.cc-label--dark { color: var(--theme-color2); }

.cc-title {
    font-size: clamp(32px, 3.6vw, 54px);
    font-weight: 500;
    letter-spacing: -.015em;
    line-height: 1.16;
    color: var(--theme-color2);
}
.cc-title--light { color: #fff; }

.cc-js .cc-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .9s var(--cc-ease), transform .9s var(--cc-ease);
    transition-delay: var(--delay, 0ms);
}
.cc-js .cc-reveal.is-visible { opacity: 1; transform: none; }

.cc-topbar { background: #fff; font-size: 14.5px; color: #55645f; }

.cc-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 56px;
}

.cc-topbar__call { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }
.cc-topbar__call a { color: #2e3d39; }
.cc-topbar__call a:hover { color: var(--theme-color2); }
.cc-topbar__icon { font-size: 17px; margin-right: 4px; color: var(--theme-color2); }
.cc-topbar__muted { color: #7a8985; }
.cc-topbar__call .cc-topbar__accent { color: var(--theme-color2); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--theme-color6); }

.cc-topbar__links { display: flex; align-items: center; }
.cc-topbar__links li { padding: 0 16px; line-height: 1.2; }
.cc-topbar__links li + li { border-left: 1px solid var(--gray-color); }
.cc-topbar__links li:last-child { padding-right: 0; }
.cc-topbar__links a:hover { color: var(--theme-color2); }
.cc-topbar__lang { font-weight: 600; color: var(--theme-color2); }

.cc-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--theme-color2);
    transition: background-color .3s, box-shadow .3s;
}

.cc-header.is-scrolled {
    background: rgba(0, 52, 39, .94);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .22);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.cc-header__inner {
    display: flex;
    align-items: center;
    gap: 32px;
    min-height: 110px;
    transition: min-height .3s;
}
.cc-header.is-scrolled .cc-header__inner { min-height: 82px; }

.cc-logo { display: flex; align-items: center; gap: 12px; flex: none; color: #fff; }
.cc-logo__mark { width: auto; height: 46px; }
.cc-logo__text { display: flex; flex-direction: column; line-height: 1; }
.cc-logo__name {
    font-family: var(--heading-font-family);
    font-size: 23px;
    font-weight: 600;
    letter-spacing: -.01em;
    color: #fff;
    white-space: nowrap;
}
.cc-logo__name em { font-style: normal; color: var(--theme-color1); }
.cc-logo__sub {
    margin-top: 6px;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: .34em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
}

.cc-nav { margin-left: 20px; }
.cc-nav__list { display: flex; gap: 34px; }
.cc-nav__link {
    position: relative;
    display: block;
    padding: 8px 0;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, .72);
}
.cc-nav__link::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--theme-color1);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .35s var(--cc-ease);
}
.cc-nav__link:hover, .cc-nav__link.is-active { color: #fff; }
.cc-nav__link:hover::after, .cc-nav__link.is-active::after { transform: scaleX(1); transform-origin: left; }

.cc-header__actions { display: flex; align-items: center; gap: 26px; margin-left: auto; }

.cc-header__phone { display: flex; align-items: center; gap: 12px; color: #fff; font-weight: 600; font-size: 16px; line-height: 1.25; }
.cc-header__phone-icon {
    display: grid;
    place-items: center;
    width: 48px; height: 48px;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    font-size: 18px;
    transition: background-color .3s, color .3s, border-color .3s;
}
.cc-header__phone:hover .cc-header__phone-icon { background: var(--theme-color1); border-color: var(--theme-color1); color: var(--theme-color2); }
.cc-header__phone-text small { display: block; font-size: 12px; font-weight: 500; color: rgba(255, 255, 255, .55); }

.cc-header__cta { padding-top: 15px; padding-bottom: 15px; }

.cc-burger {
    display: none;
    place-items: center;
    width: 48px; height: 48px;
    border: 0;
    border-radius: 8px;
    background: var(--theme-color1);
    color: var(--theme-color2);
    font-size: 24px;
}

.cc-mobile-menu { position: fixed; inset: 0; z-index: 900; visibility: hidden; }
.cc-mobile-menu.is-open { visibility: visible; }

.cc-mobile-menu__overlay {
    position: absolute; inset: 0;
    background: rgba(0, 20, 15, .6);
    opacity: 0;
    transition: opacity .35s;
}
.cc-mobile-menu.is-open .cc-mobile-menu__overlay { opacity: 1; }

.cc-mobile-menu__panel {
    position: absolute;
    top: 0; right: 0; bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 28px;
    width: min(400px, 100%);
    padding: 24px;
    overflow-y: auto;
    background: var(--theme-color2);
    transform: translateX(100%);
    transition: transform .45s var(--cc-ease);
}
.cc-mobile-menu.is-open .cc-mobile-menu__panel { transform: none; }

.cc-mobile-menu__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.cc-logo--small .cc-logo__mark { width: auto; height: 38px; }
.cc-logo--small .cc-logo__name { font-size: 19px; }

.cc-mobile-menu__close {
    display: grid; place-items: center;
    width: 44px; height: 44px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 50%;
    background: none;
    color: #fff;
    font-size: 22px;
}

.cc-mobile-menu__list li { border-bottom: 1px solid rgba(255, 255, 255, .1); }
.cc-mobile-menu__list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    font-family: var(--heading-font-family);
    font-size: 22px;
    color: #fff;
}
.cc-mobile-menu__list a .cc-icon { color: var(--theme-color1); font-size: 18px; }
.cc-mobile-menu__list a:hover { color: var(--theme-color1); }

.cc-mobile-menu__contacts { display: grid; gap: 14px; font-size: 15px; color: rgba(255, 255, 255, .75); }
.cc-mobile-menu__contacts a, .cc-mobile-menu__contacts p { display: flex; gap: 12px; align-items: flex-start; word-break: break-word; }
.cc-mobile-menu__contacts .cc-icon { margin-top: 4px; color: var(--theme-color1); }

.cc-hero {
    --cc-stat-w: 560px;
    --cc-stat-r: clamp(16px, 5vw, 105px);
    position: relative;
    padding: 0 40px 70px;
    background:
        radial-gradient(40% 50% at 100% 75%, rgba(69, 218, 0, .16), transparent 70%),
        radial-gradient(30% 40% at 0% 100%, rgba(221, 255, 147, .1), transparent 70%),
        var(--theme-color2);
}

.cc-hero__frame {
    position: relative;
    max-width: 1860px;
    margin: 0 auto;
    padding: 0 16px 16px;
    border: 1px solid rgba(221, 255, 147, .55);
    border-radius: var(--cc-radius);
}

.cc-hero__strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: -1px -17px 16px;
    padding: 14px clamp(20px, 8.5vw, 165px);
    border-radius: var(--cc-radius) var(--cc-radius) 0 0;
    background: var(--theme-color1);
    color: var(--theme-color2);
    font-size: 16px;
}

.cc-hero__strip-left { display: flex; align-items: center; gap: 10px; font-weight: 500; }
.cc-hero__strip-icon {
    display: grid; place-items: center;
    width: 24px; height: 24px;
    border-radius: 50%;
    background: var(--theme-color2);
    color: var(--theme-color1);
    font-size: 13px;
}

.cc-hero__strip-right { display: flex; align-items: center; gap: 18px; }
.cc-hero__rating {
    padding-right: 20px;
    border-right: 1px solid rgba(0, 63, 47, .2);
    font-family: var(--heading-font-family);
    font-size: 24px;
    font-weight: 500;
    line-height: 1;
}
.cc-hero__stars { display: flex; gap: 3px; font-size: 22px; }
.cc-hero__rating-text { font-size: 15px; font-weight: 500; }

.cc-hero__stage {
    position: relative;
    min-height: clamp(560px, 46vw, 870px);
    overflow: hidden;
    border-radius: 10px;
    background: #0c2a22;
}

.cc-hero__slides { position: relative; display: grid; min-height: inherit; }

.cc-hero__slide {
    position: relative;
    grid-area: 1 / 1;
    display: flex;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s;
}
.cc-hero__slide.is-active { opacity: 1; visibility: visible; }

.cc-hero__slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 40, 30, .93) 0%, rgba(0, 48, 36, .78) 38%, rgba(0, 63, 47, .4) 72%, rgba(0, 63, 47, .28) 100%);
}

.cc-hero__img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 8s linear;
}
.cc-hero__slide.is-active .cc-hero__img { transform: scale(1); }

.cc-hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    max-width: 1000px;
    padding: 70px clamp(24px, 7.5vw, 125px) 150px;
}

.cc-hero__title {
    margin-bottom: 34px;
    font-size: clamp(40px, 5vw, 92px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -.025em;
    text-transform: uppercase;
    color: #fff;
}

.cc-hero__line { display: block; }
.cc-hero__slide .cc-hero__line,
.cc-hero__slide .cc-hero__text,
.cc-hero__slide .cc-hero__buttons {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s var(--cc-ease), transform .8s var(--cc-ease);
}
.cc-hero__slide.is-active .cc-hero__line,
.cc-hero__slide.is-active .cc-hero__text,
.cc-hero__slide.is-active .cc-hero__buttons { opacity: 1; transform: none; }
.cc-hero__slide.is-active .cc-hero__line:nth-child(1) { transition-delay: .25s; }
.cc-hero__slide.is-active .cc-hero__line:nth-child(2) { transition-delay: .4s; }
.cc-hero__slide.is-active .cc-hero__line:nth-child(3) { transition-delay: .55s; }
.cc-hero__slide.is-active .cc-hero__text { transition-delay: .7s; }
.cc-hero__slide.is-active .cc-hero__buttons { transition-delay: .85s; }

.cc-hero__hl { position: relative; display: inline-block; color: var(--theme-color1); }
.cc-hero__swash {
    position: absolute;
    left: 0;
    bottom: -.14em;
    width: 104%;
    height: .2em;
    overflow: visible;
}
.cc-hero__swash path {
    fill: none;
    stroke: var(--theme-color1);
    stroke-width: 4;
    stroke-linecap: round;
    vector-effect: non-scaling-stroke;
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    transition: stroke-dashoffset 1.3s .9s var(--cc-ease);
}
.cc-hero__slide.is-active .cc-hero__swash path { stroke-dashoffset: 0; }

.cc-hero__text {
    max-width: 640px;
    margin-bottom: 40px;
    font-size: clamp(16px, 1.15vw, 19px);
    line-height: 1.8;
    color: rgba(255, 255, 255, .88);
}

.cc-hero__buttons { display: flex; flex-wrap: wrap; gap: 16px; }

@keyframes cc-spin { to { transform: rotate(360deg); } }

.cc-hero__nav {
    position: absolute;
    z-index: 3;
    right: calc(var(--cc-stat-r) + var(--cc-stat-w) + 36px);
    bottom: 50px;
    display: flex;
    gap: 12px;
}

.cc-hero__arrow {
    display: grid;
    place-items: center;
    width: 58px; height: 58px;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 50%;
    background: transparent;
    color: #fff;
    font-size: 22px;
    transition: background-color .3s, color .3s, border-color .3s;
}
.cc-hero__arrow:hover { background: var(--theme-color1); border-color: var(--theme-color1); color: var(--theme-color2); }

.cc-hero__dots {
    position: absolute;
    z-index: 3;
    left: clamp(24px, 7.5vw, 125px);
    bottom: 64px;
    display: flex;
    gap: 8px;
}
.cc-hero__dot {
    width: 28px; height: 4px;
    padding: 0;
    border: 0;
    border-radius: 4px;
    background: rgba(255, 255, 255, .35);
    transition: width .4s var(--cc-ease), background-color .3s;
}
.cc-hero__dot.is-active { width: 56px; background: var(--theme-color1); }

.cc-hero__stat {
    position: absolute;
    z-index: 4;
    right: var(--cc-stat-r);
    bottom: -1px;
    display: flex;
    align-items: stretch;
    width: min(var(--cc-stat-w), calc(100% - 32px));
    min-height: 130px;
    background: #fff;
}
.cc-hero__stat-icon {
    display: grid;
    place-items: center;
    flex: 0 0 104px;
    background: var(--theme-color1);
    color: var(--theme-color2);
    font-size: 44px;
}
.cc-hero__stat-label {
    display: flex;
    align-items: center;
    flex: 1;
    padding: 20px 28px 20px 36px;
    font-size: 16.5px;
    line-height: 1.7;
    color: var(--theme-color2);
}
.cc-hero__stat-value {
    display: flex;
    align-items: center;
    margin: 26px 0;
    padding: 0 36px 0 30px;
    border-left: 1px solid var(--gray-color);
    font-family: var(--heading-font-family);
    font-size: 34px;
    font-weight: 500;
    color: var(--theme-color2);
    white-space: nowrap;
}

.cc-about {
    position: relative;
    padding: 110px 0 190px;
    background: var(--theme-color2);
    overflow: hidden;
}
.cc-about::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 100%;
    background: url("img/footer-bg.png") center top / 1920px auto repeat-x;
    opacity: .9;
    pointer-events: none;
}

.cc-about .cc-container { position: relative; max-width: 1800px; }

.cc-about__grid {
    display: grid;
    grid-template-columns: 38% minmax(0, 1fr) 23%;
    gap: 60px 64px;
    align-items: start;
    margin-top: -50px;
}

.cc-about__head { padding-left: 13%; max-width: 820px; }

.cc-about__visual { position: relative; aspect-ratio: 1 / .96; margin-top: 60px; }
.cc-about__frame {
    position: absolute;
    top: 0; left: 0;
    width: 94%;
    aspect-ratio: 1;
    border: 4px solid var(--theme-color1);
    border-radius: 0 50% 50% 50%;
}
.cc-about__circle {
    position: absolute;
    top: 1%; right: 0;
    width: 94%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 50%;
}
.cc-about__circle img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--cc-ease); }
.cc-about__visual:hover .cc-about__circle img { transform: scale(1.05); }

.cc-about__years {
    position: absolute;
    left: 4%;
    bottom: 4%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 132px; height: 132px;
    border-radius: 50%;
    background: var(--theme-color1);
    color: var(--theme-color2);
    text-align: center;
    box-shadow: 0 0 0 10px var(--theme-color2);
}
.cc-about__years strong { font-family: var(--heading-font-family); font-size: 34px; font-weight: 700; line-height: 1; }
.cc-about__years span { margin-top: 4px; font-size: 12.5px; font-weight: 600; line-height: 1.3; }

.cc-about__body { padding-top: 110px; }
.cc-about__lead { margin-bottom: 32px; font-size: 17px; line-height: 2; color: rgba(255, 255, 255, .66); }

.cc-about__checks { display: grid; gap: 18px; padding-bottom: 44px; border-bottom: 1px solid rgba(255, 255, 255, .12); }
.cc-about__checks li { display: flex; align-items: center; gap: 14px; font-size: 17px; color: #fff; }

.cc-check-box {
    display: grid;
    place-items: center;
    flex: none;
    width: 28px; height: 28px;
    border-radius: 7px;
    background: var(--theme-color1);
    color: var(--theme-color2);
    font-size: 16px;
}

.cc-about__actions {
    display: grid;
    gap: 22px;
    padding: 44px 0;
    margin-bottom: 44px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.cc-about__action { display: flex; align-items: center; gap: 22px; color: #fff; font-family: var(--heading-font-family); font-size: 21px; line-height: 1.3; }
.cc-about__action small { display: block; margin-bottom: 2px; font-family: var(--body-font-family); font-size: 13.5px; color: rgba(255, 255, 255, .55); }
.cc-about__action-icon {
    display: grid;
    place-items: center;
    flex: none;
    width: 96px; height: 96px;
    border: 1px solid rgba(221, 255, 147, .3);
    border-radius: 50%;
    background: var(--cc-green-soft);
    color: var(--theme-color1);
    font-size: 34px;
    transition: background-color .3s, color .3s, transform .4s var(--cc-ease);
}
.cc-about__action:hover .cc-about__action-icon { background: var(--theme-color1); color: var(--theme-color2); transform: rotate(-8deg); }
.cc-about__action:hover { color: var(--theme-color1); }

.cc-about__side { grid-column: 3; }
.cc-about__clients { display: grid; gap: 14px; margin: 58px 0 50px; }
.cc-about__clients li { display: flex; align-items: center; gap: 12px; font-size: 17px; color: #fff; }
.cc-about__clients .cc-icon { color: var(--theme-color1); font-size: 18px; }

.cc-about__photo { overflow: hidden; border-radius: 8px; aspect-ratio: 410 / 480; }
.cc-about__photo img { width: 100%; height: 100%; object-fit: cover; }

.cc-about__chart {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 16px;
    margin-top: 18px;
    padding: 26px 24px;
    border: 2px solid var(--theme-color1);
    border-radius: 8px;
}
.cc-about__chart-info { display: flex; flex-direction: column; gap: 10px; }
.cc-about__chart-info strong { font-family: var(--heading-font-family); font-size: 28px; font-weight: 500; color: var(--theme-color1); line-height: 1; }
.cc-about__chart-info span { font-family: var(--heading-font-family); font-size: 18px; line-height: 1.35; color: #fff; }

.cc-about__bars { display: flex; align-items: flex-end; gap: 12px; height: 150px; padding-bottom: 4px; border-bottom: 1px solid rgba(255, 255, 255, .2); }
.cc-about__scale { display: flex; flex-direction: column; justify-content: space-between; align-self: stretch; font-size: 10px; color: rgba(255, 255, 255, .6); }
.cc-about__group { display: flex; align-items: flex-end; gap: 5px; height: 100%; }
.cc-about__group i {
    display: block;
    width: 7px;
    height: 0;
    border-radius: 4px 4px 0 0;
    background: #fff;
    transition: height 1.2s var(--cc-ease);
}
.cc-about__group i.is-lime { background: var(--theme-color1); }
.cc-about__group i.is-gray { background: var(--theme-color4); }
.cc-about__chart.is-animated i, .cc-no-anim .cc-about__group i { height: var(--h); }
.cc-about__group:nth-child(3) i { transition-delay: .15s; }
.cc-about__group:nth-child(4) i { transition-delay: .3s; }

.cc-achieve {
    position: relative;
    margin-top: -120px;
    background: linear-gradient(to bottom, transparent 0, transparent 50%, var(--theme-color5) 50%, var(--theme-color5) 100%);
}
.cc-achieve .cc-container { max-width: 1900px; }

.cc-achieve__panel {
    position: relative;
    margin-top: 64px;
    padding: 70px clamp(24px, 4vw, 70px);
    border-radius: var(--cc-radius);
    background: var(--theme-color1);
    box-shadow: 0 30px 60px rgba(0, 40, 30, .12);
}

.cc-achieve__tab {
    position: absolute;
    bottom: 100%;
    left: clamp(20px, 15%, 290px);
    padding: 18px 38px 16px;
    border-radius: var(--cc-radius) var(--cc-radius) 0 0;
    background: var(--theme-color1);
    font-family: var(--heading-font-family);
    font-size: 20px;
    color: var(--theme-color2);
    white-space: nowrap;
}

.cc-achieve__grid { display: grid; grid-template-columns: repeat(4, 1fr); }

.cc-achieve__item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 4px 20px;
    color: var(--theme-color2);
}
.cc-achieve__item + .cc-achieve__item { border-left: 1px solid rgba(0, 63, 47, .15); }

.cc-achieve__icon { display: flex; flex: none; font-size: clamp(40px, 3vw, 54px); }
.cc-achieve__icon .cc-icon { stroke-width: 2; }
.cc-achieve__num {
    font-family: var(--heading-font-family);
    font-size: clamp(40px, 3.4vw, 64px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -.02em;
    white-space: nowrap;
}
.cc-achieve__meta { display: flex; flex-direction: column; gap: 12px; max-width: 150px; font-size: 16.5px; line-height: 1.25; }
.cc-achieve__arrow {
    display: grid;
    place-items: center;
    width: 28px; height: 28px;
    border-radius: 5px;
    background: var(--theme-color2);
    color: var(--theme-color1);
    font-size: 16px;
    transition: transform .3s var(--cc-ease);
}
.cc-achieve__item:hover .cc-achieve__arrow { transform: rotate(-45deg); }

.cc-services { position: relative; padding: 120px 0; background: var(--theme-color5); }

.cc-services__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
}
.cc-services__intro { max-width: 520px; font-size: 17px; line-height: 1.85; }

.cc-services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

.cc-service {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: var(--cc-radius);
    background: var(--theme-color2);
    transition: transform .45s var(--cc-ease), box-shadow .45s var(--cc-ease), opacity .9s var(--cc-ease);
}
.cc-js .cc-service.cc-reveal { transition: opacity .9s var(--cc-ease), transform .9s var(--cc-ease), box-shadow .45s; }
.cc-service:hover, .cc-js .cc-service.cc-reveal.is-visible:hover { transform: translateY(-8px); box-shadow: 0 26px 50px rgba(0, 63, 47, .28); }

.cc-service::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 4px;
    background: var(--theme-color1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s var(--cc-ease);
}
.cc-service:hover::after { transform: scaleX(1); }

.cc-service__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.cc-service__media::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0, 63, 47, 0) 45%, rgba(0, 63, 47, .85) 100%);
}
.cc-service__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--cc-ease); }
.cc-service:hover .cc-service__media img { transform: scale(1.07); }

.cc-service__num {
    position: absolute;
    z-index: 1;
    top: 18px; right: 18px;
    padding: 6px 12px;
    border-radius: 6px;
    background: var(--theme-color1);
    font-family: var(--heading-font-family);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--theme-color2);
}

.cc-service__body { position: relative; display: flex; flex: 1; flex-direction: column; padding: 0 30px 30px; }

.cc-service__icon {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 80px; height: 80px;
    margin-top: -40px;
    border: 6px solid var(--theme-color2);
    border-radius: 50%;
    background: var(--theme-color1);
    color: var(--theme-color2);
    font-size: 32px;
    transition: transform .5s var(--cc-ease);
}
.cc-service:hover .cc-service__icon { transform: rotateY(180deg); }

.cc-service__title { margin: 20px 0 12px; font-size: 23px; color: #fff; }
.cc-service__text { margin-bottom: 20px; font-size: 15.5px; line-height: 1.75; color: rgba(255, 255, 255, .66); }

.cc-service__features { display: grid; gap: 8px; margin-bottom: 26px; }
.cc-service__features li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: #fff; }
.cc-service__features .cc-icon { color: var(--theme-color1); font-size: 16px; }

.cc-service__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}
.cc-service__price { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0 8px; color: #fff; }
.cc-service__price small { flex-basis: 100%; font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--theme-color1); }
.cc-service__price strong { font-family: var(--heading-font-family); font-size: 32px; font-weight: 500; line-height: 1.1; }
.cc-service__price span { font-size: 14px; color: rgba(255, 255, 255, .6); }

.cc-service__link {
    display: grid;
    place-items: center;
    flex: none;
    width: 54px; height: 54px;
    border-radius: 10px;
    background: var(--theme-color1);
    color: var(--theme-color2);
    font-size: 22px;
    transition: background-color .3s, transform .4s var(--cc-ease);
}
.cc-service__link:hover { background: #fff; transform: rotate(45deg); }

.cc-services__note {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    max-width: 980px;
    margin: 44px auto 0;
    padding: 18px 24px;
    border-radius: 10px;
    background: #fff;
    font-size: 14.5px;
    line-height: 1.7;
}
.cc-services__note .cc-icon { margin-top: 2px; font-size: 22px; color: var(--theme-color2); }

.cc-why { position: relative; padding: 120px 0; overflow: hidden; background: var(--theme-color2); }
.cc-why::before {
    content: "";
    position: absolute;
    right: -5%; bottom: -8%;
    width: 75%; height: 90%;
    background: url("img/platform-1.png") right bottom / contain no-repeat;
    pointer-events: none;
}
.cc-why .cc-container { position: relative; max-width: 1800px; }

.cc-why__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; }

.cc-why__call { display: flex; align-items: center; gap: 26px; padding-top: 30px; }
.cc-why__call p { font-size: 17px; line-height: 1.75; color: #fff; }
.cc-why__squiggle { width: 54px; height: 64px; margin-top: 70px; }
.cc-why__squiggle path { fill: none; stroke: var(--theme-color1); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

.cc-why__grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 64px;
}

.cc-why__visual { position: relative; }
.cc-why__visual > img { width: 100%; aspect-ratio: 1052 / 676; object-fit: cover; border-radius: 10px; }

.cc-why__card {
    position: absolute;
    right: 0; bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: min(320px, 46%);
    min-height: 330px;
    padding: 46px 46px 40px;
    border-radius: 10px;
    background: var(--theme-color1);
    box-shadow: 0 0 0 24px var(--theme-color2);
}
.cc-why__card p { font-family: var(--heading-font-family); font-size: 29px; line-height: 1.4; color: var(--theme-color2); }
.cc-why__card-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 30px; }
.cc-why__card-line { flex: 1; max-width: 100px; height: 7px; border-top: 1px solid rgba(0, 63, 47, .35); border-bottom: 1px solid rgba(0, 63, 47, .35); }
.cc-why__card-icon {
    display: grid;
    place-items: center;
    width: 96px; height: 96px;
    border-radius: 50%;
    background: var(--theme-color2);
    color: var(--theme-color1);
    font-size: 44px;
    transition: transform .5s var(--cc-ease);
}
.cc-why__card:hover .cc-why__card-icon { transform: scale(1.08) rotate(-10deg); }

.cc-why__list { display: grid; gap: 50px; }
.cc-why__item { position: relative; display: flex; gap: 38px; }
.cc-why__item:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 48px;
    top: 110px;
    bottom: -40px;
    width: 1px;
    background: rgba(255, 255, 255, .2);
}
.cc-why__icon {
    display: grid;
    place-items: center;
    flex: none;
    width: 96px; height: 96px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    color: var(--theme-color1);
    font-size: 40px;
    transition: background-color .3s, color .3s;
}
.cc-why__item:hover .cc-why__icon { background: var(--theme-color1); color: var(--theme-color2); }
.cc-why__item h3 { margin: 6px 0 14px; font-size: 25px; font-weight: 600; color: #fff; }
.cc-why__item p { font-size: 17px; line-height: 1.9; color: rgba(255, 255, 255, .62); }

.cc-process {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: linear-gradient(180deg, #e3f8a6 0%, var(--theme-color1) 45%, #d4eb8f 100%);
}
.cc-process::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("img/footer-bg.png") center top / 1920px auto repeat-x;
    pointer-events: none;
}

.cc-process__grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(360px, .44fr) 1fr;
    gap: 64px;
    align-items: center;
    max-width: 1850px;
}

.cc-process__intro p { max-width: 560px; margin: 26px 0 44px; font-size: 17px; line-height: 1.95; color: #4f615b; }

.cc-process__call { position: relative; display: inline-flex; align-items: center; gap: 0; padding-left: 150px; color: var(--theme-color2); }
.cc-process__curl { position: absolute; left: 0; top: 50%; width: 160px; transform: translateY(-58%); }
.cc-process__curl path { fill: none; stroke: var(--theme-color2); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.cc-process__pulse {
    position: relative;
    display: grid;
    place-items: center;
    width: 230px; height: 230px;
    border-radius: 50%;
    background: rgba(0, 63, 47, .12);
}
.cc-process__pulse::before {
    content: "";
    position: absolute;
    inset: 38px;
    border-radius: 50%;
    border: 2px solid rgba(0, 63, 47, .45);
    animation: cc-pulse 2.4s ease-out infinite;
}
.cc-process__btn {
    position: relative;
    display: grid;
    place-items: center;
    width: 126px; height: 126px;
    border-radius: 50%;
    background: var(--theme-color2);
    color: var(--theme-color1);
    font-size: 36px;
    box-shadow: 0 0 0 14px rgba(0, 63, 47, .38);
    transition: transform .4s var(--cc-ease);
}
.cc-process__call:hover .cc-process__btn { transform: scale(1.07); }
.cc-process__call-text {
    margin-left: -46px;
    font-family: var(--heading-font-family);
    font-size: 19px;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
}

@keyframes cc-pulse {
    0% { transform: scale(.85); opacity: 1; }
    100% { transform: scale(1.35); opacity: 0; }
}

.cc-steps { display: flex; gap: 24px; height: 590px; }

.cc-step {
    position: relative;
    flex: 0 0 132px;
    overflow: hidden;
    border-radius: var(--cc-radius);
    cursor: pointer;
    outline: none;
    transition: flex .7s var(--cc-ease);
}
.cc-step.is-active { flex: 1 1 auto; cursor: default; }
.cc-step:focus-visible { box-shadow: 0 0 0 3px var(--theme-color2); }

.cc-step__num {
    position: absolute;
    z-index: 2;
    top: 0; right: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 162px;
    padding-left: 28px;
    background: var(--theme-color2);
    font-family: var(--heading-font-family);
    font-size: 62px;
    font-weight: 500;
    line-height: 1;
    color: #fff;
    transition: width .7s var(--cc-ease), padding .7s var(--cc-ease), box-shadow .5s;
}
.cc-step.is-active .cc-step__num { width: 162px; padding-left: 30px; box-shadow: 0 0 0 24px var(--theme-color1); }

.cc-step__body {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    top: 186px;
    background:
        radial-gradient(55% 55% at 45% 80%, rgba(130, 175, 115, .55), transparent 70%),
        var(--theme-color2);
    transition: top .7s var(--cc-ease);
}
.cc-step.is-active .cc-step__body { top: 0; }
.cc-step:not(.is-active):hover .cc-step__body, .cc-step:not(.is-active):hover .cc-step__num { background-color: #0a4e3c; }

.cc-step__vtitle {
    position: absolute;
    top: 42px;
    left: 50%;
    transform: translateX(-50%);
    writing-mode: vertical-rl;
    font-family: var(--heading-font-family);
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    transition: opacity .3s;
}
.cc-step.is-active .cc-step__vtitle { opacity: 0; }

.cc-step__content {
    position: absolute;
    top: 0; left: 0; bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    min-width: 460px;
    padding: 62px 60px 58px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity .3s, transform .3s, visibility .3s;
}
.cc-step.is-active .cc-step__content {
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: opacity .5s .35s, transform .5s .35s var(--cc-ease), visibility 0s .35s;
}

.cc-step__icon {
    display: grid;
    place-items: center;
    width: 148px; height: 148px;
    border-radius: 50%;
    background: var(--theme-color1);
    color: var(--theme-color2);
    font-size: 64px;
}
.cc-step__title { margin: auto 0 20px; padding-top: 30px; font-size: 32px; font-weight: 600; color: #fff; }
.cc-step__text { max-width: 640px; margin-bottom: 34px; font-size: 17px; line-height: 1.95; color: rgba(255, 255, 255, .72); }

.cc-faq { padding: 120px 0; background: #fff; }
.cc-faq__grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; align-items: start; }

.cc-faq__card { position: relative; margin-top: 40px; overflow: hidden; border-radius: var(--cc-radius); }
.cc-faq__card img { width: 100%; aspect-ratio: 4 / 3.2; object-fit: cover; }
.cc-faq__card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0, 63, 47, .1) 30%, rgba(0, 40, 30, .92) 100%); }
.cc-faq__card-body { position: absolute; z-index: 1; left: 30px; right: 30px; bottom: 30px; }
.cc-faq__card-body p { margin-bottom: 14px; font-family: var(--heading-font-family); font-size: 26px; color: #fff; }
.cc-faq__card-body a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 6px;
    background: var(--theme-color1);
    font-weight: 700;
    color: var(--theme-color2);
}
.cc-faq__card-body a:hover { background: #fff; }

.cc-faq__list { display: grid; gap: 16px; }
.cc-faq__item {
    border: 1px solid var(--gray-color);
    border-radius: 12px;
    background: #fff;
    transition: background-color .35s, border-color .35s;
}
.cc-faq__item[open] { border-color: var(--theme-color2); background: var(--theme-color2); }

.cc-faq__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 26px;
    font-family: var(--heading-font-family);
    font-size: 19px;
    font-weight: 500;
    color: var(--theme-color2);
    list-style: none;
    cursor: pointer;
}
.cc-faq__q::-webkit-details-marker { display: none; }
.cc-faq__item[open] .cc-faq__q { color: #fff; }

.cc-faq__toggle {
    display: grid;
    place-items: center;
    flex: none;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--theme-color5);
    color: var(--theme-color2);
    font-size: 18px;
    transition: transform .35s var(--cc-ease), background-color .3s;
}
.cc-faq__item[open] .cc-faq__toggle { background: var(--theme-color1); transform: rotate(45deg); }

.cc-faq__a { padding: 0 26px 24px; }
.cc-faq__a p { font-size: 16px; line-height: 1.85; color: rgba(255, 255, 255, .72); }

.cc-contact { padding: 120px 0; background: var(--theme-color5); }
.cc-contact__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 30px; align-items: stretch; }

.cc-contact__info { position: relative; overflow: hidden; border-radius: var(--cc-radius); background: var(--theme-color2); }
.cc-contact__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cc-contact__info::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(170deg, rgba(0, 45, 34, .95) 0%, rgba(0, 63, 47, .86) 55%, rgba(0, 63, 47, .72) 100%);
}
.cc-contact__info-inner { position: relative; z-index: 1; padding: 60px 50px; }
.cc-contact__info-inner > p { margin: 22px 0 40px; font-size: 17px; line-height: 1.85; color: rgba(255, 255, 255, .75); }

.cc-contact__list { display: grid; gap: 26px; }
.cc-contact__list li { display: flex; align-items: center; gap: 18px; color: #fff; font-size: 16.5px; font-weight: 600; line-height: 1.45; word-break: break-word; }
.cc-contact__list small { display: block; margin-bottom: 2px; font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(255, 255, 255, .55); }
.cc-contact__list a:hover { color: var(--theme-color1); }
.cc-contact__icon {
    display: grid;
    place-items: center;
    flex: none;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--theme-color1);
    color: var(--theme-color2);
    font-size: 22px;
}

.cc-contact__form-wrap {
    padding: 50px;
    border-radius: var(--cc-radius);
    background: #fff;
    box-shadow: 0 20px 60px rgba(0, 63, 47, .08);
}

.cc-form__title { font-size: 30px; }
.cc-form__subtitle { margin: 8px 0 30px; font-size: 15px; }
.cc-req { color: var(--cc-error); }

.cc-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }

.cc-field { margin-bottom: 20px; }
.cc-field label { display: block; margin-bottom: 8px; font-size: 14.5px; font-weight: 600; color: var(--theme-color2); }

.cc-field input[type="text"],
.cc-field input[type="email"],
.cc-field input[type="tel"],
.cc-field select,
.cc-field textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--gray-color);
    border-radius: 8px;
    background: #fbfcfc;
    font-size: 15.5px;
    line-height: 1.5;
    color: var(--theme-color2);
    transition: border-color .25s, box-shadow .25s, background-color .25s;
    -webkit-appearance: none;
    appearance: none;
}
.cc-field textarea { min-height: 140px; resize: vertical; }
.cc-field ::placeholder { color: #9aa8a4; }
.cc-field input:focus,
.cc-field select:focus,
.cc-field textarea:focus {
    border-color: var(--theme-color2);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(221, 255, 147, .7);
    outline: none;
}

.cc-field.is-valid input, .cc-field.is-valid select, .cc-field.is-valid textarea { border-color: var(--theme-color6); }
.cc-field.is-invalid input, .cc-field.is-invalid select, .cc-field.is-invalid textarea { border-color: var(--cc-error); background: #fff7f7; }
.cc-field.is-invalid input:focus, .cc-field.is-invalid select:focus, .cc-field.is-invalid textarea:focus { box-shadow: 0 0 0 4px rgba(210, 59, 59, .15); }

.cc-field__error { display: block; margin-top: 6px; font-size: 13px; font-weight: 500; color: var(--cc-error); }
.cc-field__error:empty { display: none; }

.cc-select { position: relative; }
.cc-select select { padding-right: 46px; cursor: pointer; }
.cc-select .cc-icon { position: absolute; top: 50%; right: 16px; font-size: 18px; color: var(--theme-color2); transform: translateY(-50%); pointer-events: none; }

.cc-field--check { margin: 6px 0 26px; }
.cc-checkbox { position: relative; display: flex !important; align-items: flex-start; gap: 12px; font-size: 14px !important; font-weight: 500 !important; line-height: 1.6; color: var(--text-color) !important; cursor: pointer; }
.cc-checkbox input { position: absolute; opacity: 0; width: 22px; height: 22px; margin: 0; }
.cc-checkbox__box {
    display: grid;
    place-items: center;
    flex: none;
    width: 22px; height: 22px;
    margin-top: 1px;
    border: 1.5px solid #b8c4c1;
    border-radius: 6px;
    background: #fff;
    color: var(--theme-color1);
    font-size: 14px;
    transition: background-color .2s, border-color .2s;
}
.cc-checkbox__box .cc-icon { opacity: 0; transform: scale(.5); transition: opacity .2s, transform .2s; stroke-width: 3; }
.cc-checkbox input:checked + .cc-checkbox__box { border-color: var(--theme-color2); background: var(--theme-color2); }
.cc-checkbox input:checked + .cc-checkbox__box .cc-icon { opacity: 1; transform: none; }
.cc-checkbox input:focus-visible + .cc-checkbox__box { outline: 2px solid var(--theme-color6); outline-offset: 2px; }
.cc-field.is-invalid .cc-checkbox__box { border-color: var(--cc-error); }
.cc-checkbox a { font-weight: 700; color: var(--theme-color2); text-decoration: underline; text-underline-offset: 2px; }

.cc-form__submit { position: relative; padding-top: 17px; padding-bottom: 17px; font-size: 16px; }
.cc-form__spinner {
    display: none;
    width: 22px; height: 22px;
    border: 2.5px solid rgba(255, 255, 255, .3);
    border-top-color: var(--theme-color1);
    border-radius: 50%;
    animation: cc-spin .8s linear infinite;
}
.cc-form.is-loading .cc-form__submit { pointer-events: none; opacity: .85; }
.cc-form.is-loading .cc-form__spinner { display: block; }
.cc-form.is-loading .cc-form__submit .cc-btn__arrow { display: none; }

.cc-form__secure { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 16px; font-size: 13.5px; text-align: center; }
.cc-form__secure .cc-icon { color: var(--theme-color2); }
.cc-form__status { margin-top: 12px; font-size: 14px; font-weight: 600; text-align: center; color: var(--cc-error); }
.cc-form__status:empty { display: none; }

.cc-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

.cc-form-alert { display: flex; gap: 12px; margin-bottom: 24px; padding: 16px 20px; border-radius: 10px; font-size: 15px; line-height: 1.6; }
.cc-form-alert .cc-icon { margin-top: 3px; font-size: 20px; }
.cc-form-alert--ok { border: 1px solid #b9e46a; background: #f3ffd9; color: var(--theme-color2); }
.cc-form-alert--error { border: 1px solid #f2b8b8; background: #fff3f3; color: var(--cc-error); }

.cc-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    padding: 16px;
    visibility: hidden;
    opacity: 0;
    transition: opacity .35s, visibility .35s;
}
.cc-modal.is-open { visibility: visible; opacity: 1; }
.cc-modal__overlay { position: absolute; inset: 0; background: rgba(0, 25, 19, .7); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.cc-modal__box {
    position: relative;
    width: min(480px, 100%);
    padding: 54px 40px 40px;
    border-radius: 18px;
    background: #fff;
    text-align: center;
    transform: translateY(30px) scale(.95);
    transition: transform .45s var(--cc-ease);
}
.cc-modal.is-open .cc-modal__box { transform: none; }
.cc-modal__close {
    position: absolute;
    top: 16px; right: 16px;
    display: grid; place-items: center;
    width: 40px; height: 40px;
    border: 0;
    border-radius: 50%;
    background: var(--theme-color5);
    color: var(--theme-color2);
    font-size: 18px;
}
.cc-modal__close:hover { background: var(--theme-color1); }
.cc-modal__icon {
    display: inline-grid;
    place-items: center;
    width: 92px; height: 92px;
    border-radius: 50%;
    background: var(--theme-color1);
    color: var(--theme-color2);
    font-size: 44px;
    box-shadow: 0 0 0 12px rgba(221, 255, 147, .35);
}
.cc-modal__icon .cc-icon { stroke-width: 2.6; stroke-dasharray: 30; stroke-dashoffset: 30; }
.cc-modal.is-open .cc-modal__icon .cc-icon { animation: cc-draw .6s .3s forwards; }
@keyframes cc-draw { to { stroke-dashoffset: 0; } }
.cc-modal__title { margin: 30px 0 14px; font-size: 30px; }
.cc-modal__text { margin-bottom: 30px; font-size: 16px; line-height: 1.8; }

.cc-footer { position: relative; overflow: hidden; background: var(--cc-deep); color: rgba(255, 255, 255, .65); }
.cc-footer__bg {
    position: absolute;
    inset: auto 0 0;
    height: 100%;
    background: url("img/footer-bg.png") center bottom / cover no-repeat;
    pointer-events: none;
}
.cc-footer .cc-container { position: relative; }

.cc-footer__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 80px;
    padding: 38px 48px;
    border-radius: var(--cc-radius);
    background: var(--theme-color1);
}
.cc-footer__cta-text { display: flex; align-items: center; gap: 24px; }
.cc-footer__cta-icon {
    display: grid;
    place-items: center;
    flex: none;
    width: 76px; height: 76px;
    border-radius: 50%;
    background: var(--theme-color2);
    color: var(--theme-color1);
    font-size: 34px;
}
.cc-footer__cta-title { margin-bottom: 6px; font-size: clamp(22px, 2.2vw, 30px); }
.cc-footer__cta p { color: rgba(0, 63, 47, .8); }

.cc-footer__grid { display: grid; grid-template-columns: 1.5fr .75fr 1fr 1.35fr; gap: 50px; padding: 80px 0 60px; }

.cc-footer__about { margin-top: 24px; font-size: 15.5px; line-height: 1.85; }
.cc-footer__note { margin-top: 20px; padding-left: 14px; border-left: 3px solid var(--theme-color1); font-size: 13.5px; line-height: 1.7; color: rgba(255, 255, 255, .55); }

.cc-footer__title { position: relative; margin-bottom: 26px; padding-bottom: 14px; font-size: 21px; color: #fff; }
.cc-footer__title::after { content: ""; position: absolute; left: 0; bottom: 0; width: 36px; height: 2px; border-radius: 2px; background: var(--theme-color1); }

.cc-footer__links li { margin-bottom: 12px; }
.cc-footer__links a { display: inline-block; font-size: 15.5px; transition: color .25s, transform .25s; }
.cc-footer__links a:hover { color: var(--theme-color1); transform: translateX(4px); }

.cc-footer__contacts li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; font-size: 15.5px; line-height: 1.6; word-break: break-word; }
.cc-footer__contacts .cc-icon { margin-top: 4px; font-size: 18px; color: var(--theme-color1); }
.cc-footer__contacts strong { color: #fff; font-weight: 600; }
.cc-footer__contacts a:hover { color: var(--theme-color1); }

.cc-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px 30px;
    flex-wrap: wrap;
    padding: 26px 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: 14.5px;
}
.cc-footer__legal { display: flex; flex-wrap: wrap; gap: 8px 26px; }
.cc-footer__legal a:hover, .cc-footer__cookie-btn:hover { color: var(--theme-color1); }
.cc-footer__cookie-btn { padding: 0; border: 0; background: none; font-size: inherit; color: inherit; transition: color .25s; }

.cc-totop {
    position: fixed;
    z-index: 90;
    right: 24px; bottom: 24px;
    display: grid;
    place-items: center;
    width: 50px; height: 50px;
    border: 0;
    border-radius: 10px;
    background: var(--theme-color1);
    color: var(--theme-color2);
    font-size: 22px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity .3s, visibility .3s, transform .3s, background-color .3s;
}
.cc-totop.is-visible { opacity: 1; visibility: visible; transform: none; }
.cc-totop:hover { background: #fff; }

.cc-cookie {
    position: fixed;
    z-index: 950;
    left: 24px; bottom: 24px;
    width: min(460px, calc(100% - 48px));
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    padding: 26px;
    border-top: 4px solid var(--theme-color1);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(0, 25, 19, .3);
    animation: cc-cookie-in .6s var(--cc-ease);
}
.cc-cookie[hidden] { display: none; }
@keyframes cc-cookie-in { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }

.cc-cookie__head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.cc-cookie__icon {
    display: grid; place-items: center;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--theme-color1);
    color: var(--theme-color2);
    font-size: 22px;
}
.cc-cookie__title { font-size: 21px; }
.cc-cookie__text { font-size: 14px; line-height: 1.65; }
.cc-cookie__text a { font-weight: 700; color: var(--theme-color2); text-decoration: underline; }

.cc-cookie__prefs { margin-top: 16px; }
.cc-cookie__prefs[hidden] { display: none; }
.cc-cookie__pref { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 0; border-top: 1px solid var(--gray-color); }
.cc-cookie__pref strong { display: block; font-size: 14.5px; color: var(--theme-color2); }
.cc-cookie__pref span { display: block; font-size: 13px; line-height: 1.5; }

.cc-switch { position: relative; flex: none; width: 48px; height: 28px; cursor: pointer; }
.cc-switch input { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: pointer; }
.cc-switch__slider { position: absolute; inset: 0; border-radius: 28px; background: #c9d3d1; transition: background-color .25s; pointer-events: none; }
.cc-switch__slider::before {
    content: "";
    position: absolute;
    top: 4px; left: 4px;
    width: 20px; height: 20px;
    border-radius: 50%;
    background: #fff;
    transition: transform .25s var(--cc-ease), background-color .25s;
}
.cc-switch input:checked + .cc-switch__slider { background: var(--theme-color2); }
.cc-switch input:checked + .cc-switch__slider::before { transform: translateX(20px); background: var(--theme-color1); }
.cc-switch input:focus-visible + .cc-switch__slider { outline: 2px solid var(--theme-color6); outline-offset: 2px; }
.cc-switch--locked { opacity: .55; cursor: not-allowed; }

.cc-cookie__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.cc-cookie__btn { flex: 1 1 auto; padding: 12px 16px; border-radius: 8px; font-size: 14px; font-weight: 700; transition: background-color .25s, border-color .25s, color .25s; }
.cc-cookie__btn[hidden] { display: none; }
.cc-cookie__btn--ghost { border: 1.5px solid var(--gray-color); background: var(--theme-color5); color: var(--theme-color2); }
.cc-cookie__btn--ghost:hover { border-color: var(--theme-color2); }
.cc-cookie__btn--solid { border: 1.5px solid var(--theme-color2); background: var(--theme-color2); color: #fff; }
.cc-cookie__btn--solid:hover { background: var(--cc-deep); }

.cc-page-hero { position: relative; padding: 80px 0 96px; overflow: hidden; background: var(--theme-color2); }
.cc-page-hero::before {
    content: "";
    position: absolute; inset: 0;
    background: url("img/footer-bg.png") center / cover no-repeat;
    pointer-events: none;
}
.cc-page-hero::after {
    content: "";
    position: absolute;
    right: -120px; top: -120px;
    width: 420px; height: 420px;
    border: 2px solid rgba(221, 255, 147, .25);
    border-radius: 0 50% 50% 50%;
    pointer-events: none;
}
.cc-page-hero .cc-container { position: relative; z-index: 1; }
.cc-breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 20px; font-size: 15px; color: rgba(255, 255, 255, .6); }
.cc-breadcrumbs a:hover { color: var(--theme-color1); }
.cc-breadcrumbs .cc-icon { font-size: 14px; color: var(--theme-color1); }
.cc-page-hero__title { font-size: clamp(38px, 5vw, 64px); font-weight: 600; color: #fff; }
.cc-page-hero__meta { margin-top: 18px; font-size: 16px; color: var(--theme-color1); }

.cc-legal { padding: 90px 0 110px; background: #fff; }
.cc-legal__grid { display: grid; grid-template-columns: 300px minmax(0, 1fr); gap: 64px; align-items: start; }

.cc-legal__toc { position: sticky; top: 110px; padding: 28px; border-radius: var(--cc-radius); background: var(--theme-color5); }
.cc-legal__toc-title { margin-bottom: 14px; font-size: 19px; }
.cc-legal__toc ol { counter-reset: toc; }
.cc-legal__toc li { counter-increment: toc; }
.cc-legal__toc a { display: flex; gap: 10px; padding: 7px 0; font-size: 14.5px; line-height: 1.45; color: var(--text-color); }
.cc-legal__toc a::before { content: counter(toc, decimal-leading-zero); font-weight: 700; color: var(--theme-color2); }
.cc-legal__toc a:hover, .cc-legal__toc a.is-active { color: var(--theme-color2); }

.cc-legal__content { max-width: 880px; }
.cc-legal__content h2 { margin: 50px 0 18px; font-size: 28px; scroll-margin-top: 110px; }
.cc-legal__content h2:first-child { margin-top: 0; }
.cc-legal__content h3 { margin: 28px 0 12px; font-size: 20px; }
.cc-legal__content p { margin-bottom: 16px; font-size: 16px; line-height: 1.85; color: #4b5b57; }
.cc-legal__content ul { margin: 0 0 18px; padding-left: 4px; }
.cc-legal__content ul li { position: relative; margin-bottom: 9px; padding-left: 26px; font-size: 16px; line-height: 1.75; color: #4b5b57; }
.cc-legal__content ul li::before { content: ""; position: absolute; left: 4px; top: .7em; width: 8px; height: 8px; border-radius: 2px; background: var(--theme-color2); box-shadow: 2px 2px 0 var(--theme-color1); }
.cc-legal__content a { font-weight: 600; color: var(--theme-color2); text-decoration: underline; text-underline-offset: 2px; }
.cc-legal__content strong { color: var(--theme-color2); }
.cc-link-btn { padding: 0; border: 0; background: none; font-weight: 700; color: var(--theme-color2); text-decoration: underline; text-underline-offset: 2px; }

.cc-legal__box { margin: 0 0 26px; padding: 22px 26px; border-left: 4px solid var(--theme-color1); border-radius: 8px; background: var(--theme-color5); }
.cc-legal__box p:last-child { margin-bottom: 0; }

.cc-legal__contact { display: grid; gap: 12px; margin-top: 10px; padding: 28px; border-radius: var(--cc-radius); background: var(--theme-color2); color: rgba(255, 255, 255, .8); }
.cc-legal__contact p { display: flex; gap: 12px; margin: 0; color: rgba(255, 255, 255, .85); }
.cc-legal__contact .cc-icon { margin-top: 5px; color: var(--theme-color1); }
.cc-legal__contact a { color: #fff; }
.cc-legal__contact strong { color: #fff; }

@media (max-width: 1599px) {
    .cc-header__phone-text { display: none; }
    .cc-about__grid { grid-template-columns: 36% minmax(0, 1fr) 24%; gap: 50px 44px; }
    .cc-about__head { padding-left: 0; }
    .cc-steps { height: 560px; }
    .cc-process__grid { grid-template-columns: 1fr; gap: 50px; max-width: calc(var(--cc-container) + 48px); }
    .cc-process__intro { display: grid; grid-template-columns: 1fr auto; gap: 0 40px; align-items: center; }
    .cc-process__intro .cc-label, .cc-process__intro .cc-title, .cc-process__intro p { grid-column: 1; }
    .cc-process__intro p { margin-bottom: 0; }
    .cc-process__call { grid-column: 2; grid-row: 1 / span 3; }
}

@media (max-width: 1399px) {
    .cc-nav__list { gap: 24px; }
    .cc-header__inner { gap: 24px; }
    .cc-hero { --cc-stat-w: 500px; }
    .cc-why__grid { gap: 50px; }
    .cc-why__card p { font-size: 25px; }
}

@media (max-width: 1199px) {
    .cc-topbar__links li:nth-child(2) { display: none; }
    .cc-nav { display: none; }
    .cc-burger { display: grid; }
    .cc-header__actions { gap: 16px; }

    .cc-hero { padding: 0 20px 50px; --cc-stat-w: 440px; }
    .cc-hero__rating-text { display: none; }

    .cc-about__grid { grid-template-columns: 1fr 1fr; margin-top: 30px; }
    .cc-about__side { grid-column: 1 / -1; grid-row: auto; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 30px; align-items: start; }
    .cc-about__clients { margin: 0; }
    .cc-about__chart { margin-top: 0; }
    .cc-about__body { padding-top: 40px; }

    .cc-achieve__grid { grid-template-columns: repeat(2, 1fr); gap: 40px 0; }
    .cc-achieve__item:nth-child(3) { border-left: 0; }

    .cc-services__grid { grid-template-columns: repeat(2, 1fr); }

    .cc-why__grid { grid-template-columns: 1fr; }
    .cc-why__visual { max-width: 900px; }

    .cc-faq__grid { grid-template-columns: 1fr; gap: 50px; }
    .cc-faq__card { display: none; }

    .cc-contact__grid { grid-template-columns: 1fr; }
    .cc-contact__info-inner { padding: 50px 40px; }

    .cc-footer__grid { grid-template-columns: 1fr 1fr; }
    .cc-legal__grid { grid-template-columns: 1fr; gap: 40px; }
    .cc-legal__toc { position: static; }
}

@media (max-width: 991px) {
    html { scroll-padding-top: 80px; }
    .cc-topbar__links { display: none; }
    .cc-topbar__inner { justify-content: center; }
    .cc-header__inner, .cc-header.is-scrolled .cc-header__inner { min-height: 80px; }
    .cc-header__phone { display: none; }

    .cc-hero__strip { flex-wrap: wrap; justify-content: center; margin-bottom: 12px; padding: 12px 20px; font-size: 14.5px; text-align: center; }
    .cc-hero__frame { padding: 0 10px 10px; }
    .cc-hero__strip { margin-left: -11px; margin-right: -11px; }
    .cc-hero__stage { min-height: 640px; }
    .cc-hero__content { padding: 60px 30px 150px; }
                .cc-hero__nav { display: none; }
    .cc-hero__dots { left: 30px; bottom: 50px; }
    .cc-hero__stat { position: relative; right: auto; bottom: auto; width: 100%; margin-top: 10px; min-height: 110px; }

    .cc-about { padding: 90px 0 170px; }
    .cc-about__grid { grid-template-columns: 1fr; }
    .cc-about__visual { max-width: 560px; width: 100%; margin: 20px auto 0; }
    .cc-about__body { padding-top: 0; }
    .cc-about__side { grid-template-columns: 1fr 1fr; }
    .cc-about__clients { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; }

    .cc-services, .cc-why, .cc-process, .cc-faq, .cc-contact { padding: 90px 0; }
    .cc-services__head { flex-direction: column; align-items: flex-start; gap: 18px; margin-bottom: 44px; }

    .cc-why__head { flex-direction: column; gap: 10px; }
    .cc-why__call { padding-top: 10px; }
    .cc-why__squiggle { display: none; }

    .cc-process__intro { display: block; }
    .cc-process__call { padding-left: 0; }
    .cc-process__curl { display: none; }

    .cc-steps { flex-direction: column; height: auto; gap: 16px; }
    .cc-step, .cc-step.is-active { display: grid; grid-template-columns: 90px 1fr; flex: none; background: var(--theme-color2); cursor: default; }
    .cc-step__num, .cc-step.is-active .cc-step__num {
        position: static;
        align-items: flex-start;
        width: auto; height: auto;
        padding: 30px 0 0 26px;
        background: none;
        font-size: 36px;
        box-shadow: none;
    }
    .cc-step__body, .cc-step.is-active .cc-step__body { position: static; background: none; }
    .cc-step:not(.is-active):hover .cc-step__body, .cc-step:not(.is-active):hover .cc-step__num { background: none; }
    .cc-step__vtitle { display: none; }
    .cc-step__content, .cc-step.is-active .cc-step__content {
        position: static;
        min-width: 0;
        padding: 30px 26px 30px 0;
        opacity: 1;
        visibility: visible;
        transform: none;
    }
    .cc-step__icon { display: none; }
    .cc-step__title { margin: 0 0 10px; padding-top: 0; font-size: 23px; }
    .cc-step__text { margin-bottom: 20px; font-size: 16px; line-height: 1.8; }

    .cc-footer__cta { flex-direction: column; align-items: flex-start; padding: 32px; }
}

@media (max-width: 767px) {
    .cc-title { font-size: clamp(30px, 8vw, 40px); }
    .cc-title br, .cc-about__head .cc-title br { display: none; }

    .cc-hero { padding: 0 12px 40px; }
    .cc-hero__rating { font-size: 20px; padding-right: 14px; }
    .cc-hero__stars { font-size: 18px; }
    .cc-hero__stage { min-height: 620px; }
    .cc-hero__content { justify-content: flex-start; padding: 50px 22px 170px; }
    .cc-hero__title { font-size: clamp(34px, 10vw, 52px); margin-bottom: 24px; }
    .cc-hero__text { margin-bottom: 30px; font-size: 15.5px; }
    .cc-hero__stat-icon { flex-basis: 80px; font-size: 34px; }
    .cc-hero__stat-label { padding: 16px 18px; font-size: 14.5px; line-height: 1.5; }
    .cc-hero__stat-value { padding: 0 20px; font-size: 28px; }

    .cc-about__side { grid-template-columns: 1fr; }
    .cc-about__clients { grid-template-columns: 1fr; }
    .cc-about__action-icon { width: 72px; height: 72px; font-size: 26px; }
    .cc-about__action { font-size: 18px; gap: 16px; }
    .cc-about__years { width: 104px; height: 104px; }
    .cc-about__years strong { font-size: 26px; }

    .cc-achieve__grid { grid-template-columns: 1fr; gap: 0; }
    .cc-achieve__item { justify-content: flex-start; padding: 22px 0; flex-wrap: nowrap; }
    .cc-achieve__item + .cc-achieve__item { border-left: 0; border-top: 1px solid rgba(0, 63, 47, .15); }
    .cc-achieve__panel { padding: 30px 24px; }
    .cc-achieve__tab { left: 24px; padding: 14px 22px 12px; font-size: 16px; }
    .cc-achieve__icon { font-size: 42px; }

    .cc-services__grid { grid-template-columns: 1fr; }
    .cc-service__body { padding: 0 24px 26px; }

    .cc-why__card { position: relative; width: 100%; min-height: 0; margin-top: 20px; padding: 32px; box-shadow: none; }
    .cc-why__card p { font-size: 23px; }
    .cc-why__card-icon { width: 72px; height: 72px; font-size: 32px; }
    .cc-why__item { gap: 20px; }
    .cc-why__icon { width: 68px; height: 68px; font-size: 28px; }
    .cc-why__item:not(:last-child)::before { left: 34px; top: 80px; }
    .cc-why__item h3 { font-size: 21px; }
    .cc-why__item p { font-size: 16px; }
    .cc-why__call { flex-wrap: wrap; gap: 16px; }

    .cc-process__pulse { width: 180px; height: 180px; }
    .cc-process__btn { width: 100px; height: 100px; font-size: 30px; }
    .cc-process__call-text { margin-left: -30px; font-size: 16px; }

    .cc-step, .cc-step.is-active { grid-template-columns: 70px 1fr; }
    .cc-step__num, .cc-step.is-active .cc-step__num { padding: 26px 0 0 20px; font-size: 28px; }
    .cc-step__content, .cc-step.is-active .cc-step__content { padding: 26px 20px 26px 0; }

    .cc-faq__q { padding: 18px 20px; font-size: 17px; }
    .cc-faq__a { padding: 0 20px 20px; }

    .cc-contact__form-wrap { padding: 32px 22px; }
    .cc-contact__info-inner { padding: 40px 24px; }
    .cc-form__row { grid-template-columns: 1fr; }

    .cc-footer__grid { grid-template-columns: 1fr; gap: 36px; padding: 60px 0 40px; }
    .cc-footer__cta-text { flex-direction: column; align-items: flex-start; }
    .cc-footer__bottom { flex-direction: column; align-items: flex-start; }

    .cc-cookie { left: 12px; right: 12px; bottom: 12px; width: auto; padding: 22px 20px; }
    .cc-cookie__btn { flex-basis: calc(50% - 5px); }
    .cc-cookie__btn--solid { flex-basis: 100%; }

    .cc-legal { padding: 60px 0 80px; }
    .cc-legal__content h2 { font-size: 24px; margin-top: 40px; }
    .cc-page-hero { padding: 60px 0 70px; }
}

@media (max-width: 575px) {
    .cc-container { padding: 0 16px; }
    .cc-topbar { font-size: 13.5px; }
    .cc-topbar__muted, .cc-topbar__accent { display: none; }
    .cc-header__cta { display: none; }
    .cc-logo__mark { width: auto; height: 38px; }
    .cc-logo__name { font-size: 19px; }
    .cc-logo__sub { font-size: 9px; letter-spacing: .28em; }

    .cc-hero__strip-left { display: none; }
        .cc-hero__content { padding-bottom: 110px; }
    .cc-hero__buttons .cc-btn { flex: 1 1 100%; }
    .cc-hero__stat-label br { display: none; }

    .cc-process__call { transform: scale(.9); transform-origin: left center; }
    .cc-footer__cta { padding: 26px 22px; }
    .cc-footer__cta .cc-btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; transition-delay: 0s !important; }
    .cc-js .cc-reveal { opacity: 1; transform: none; }
}
