@font-face {
    font-family: 'Inter Tight';
    src: url('../fonts/InterTight-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter Tight';
    src: url('../fonts/InterTight-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter Tight';
    src: url('../fonts/InterTight-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter Tight';
    src: url('../fonts/InterTight-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Serpantin';
    src: url('../fonts/Serpantin.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Segoe Script';
    src: url('../fonts/segoescript.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --black: #1D1C1C;
    --s-white: #E6FFE9;
    --dark-green: #135130;
    --green: #217A4B;
    --brand: #FF851A;
    --white: #FFFFFF;
    --bg: #F9FFF7;
    --orange-hover-1: #D97706;
    --orange-hover-2: #B96504;
    --orange-base: #EF880D;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
    font-family: 'Inter Tight', system-ui, -apple-system, sans-serif;
    color: var(--black);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, p { margin: 0; }

.container {
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 30px;
}

/* HEADER */
.header {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 100;
}

.header__container {
    padding: 0 30px;
}

.header__inner {
    max-width: 1420px;
    height: 86px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-radius: 24px;
    border: 2px solid var(--black);
    background: rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.header__logo {
    flex-shrink: 0;
    display: block;
}
.header__logo-img {
    width: 207px;
    height: 56px;
}

.header__nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header__nav-link {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    color: var(--black);
    text-align: center;
    transition: color .2s ease;
}
.header__nav-link:hover { color: var(--green); }

.header__contacts {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.header__phone {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 130%;
    color: var(--black);
    text-align: center;
}

.header__call-btn {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 130%;
    color: var(--green);
    text-align: center;
    text-decoration: underline;
    padding: 0;
}

.header__burger {
    display: none;
    width: 55px;
    height: 54px;
    padding: 0;
}
.header__burger-icon { width: 100%; height: 100%; }

.header__nav-tablet {
    display: none;
    margin-top: 16px;
}
.header__nav-tablet-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 28px;
}

/* MOBILE MENU */
.mobile-menu {
    position: absolute;
    top: 110px;
    right: 16px;
    width: 220px;
    padding: 16px 14px;
    display: none;
    flex-direction: column;
    gap: 10px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: var(--dark-green);
    z-index: 99;
}
.mobile-menu.is-open { display: flex; }

.mobile-menu__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-menu__link {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 500;
    font-size: 13px;
    line-height: 130%;
    color: var(--white);
    text-align: right;
    display: block;
}

.mobile-menu__divider {
    height: 1px;
    width: 100%;
    background-image: linear-gradient(to right, #fff 50%, transparent 50%);
    background-size: 4px 1px;
    background-repeat: repeat-x;
}

.mobile-menu__phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 130%;
    color: var(--white);
    text-align: center;
}
.mobile-menu__phone-icon { width: 20px; height: 20px; }

.mobile-menu__btn {
    width: 210px;
    height: 42px;
    border-radius: 10px;
    background: var(--orange-base);
    color: var(--white);
    font-family: 'Inter Tight', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    transition: background .2s ease;
    align-self: center;
}
.mobile-menu__btn:hover { background: var(--orange-hover-1); }
.mobile-menu__btn:active { background: var(--orange-hover-2); }

/* HERO */
.hero {
    position: relative;
    padding: 160px 0 90px;
    overflow: hidden;
    background: var(--bg);
}

.hero__pattern {
    position: absolute;
    top: 180px;
    height: auto;
    width: 380px;
    max-width: none;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}
.hero__pattern--left {
    left: 0;
    transform: scaleX(-1);
}
.hero__pattern--right {
    right: 0;
}

.hero__pattern-mobile {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.hero__banner-mobile { display: none; }

.hero__container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero__badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

.hero__badge {
    height: 36px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    border-radius: 164px;
    border: 1px solid var(--black);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: var(--black);
    white-space: nowrap;
}

.hero__title {
    font-family: 'Serpantin', 'Times New Roman', serif;
    font-weight: 400;
    font-size: 88px;
    line-height: 100%;
    color: var(--black);
    text-align: center;
    margin-bottom: 32px;
    text-transform: uppercase;
}

.hero__subtitle {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 130%;
    color: var(--black);
    text-align: center;
    margin-bottom: 28px;
}

.hero__meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.hero__meta-item {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 130%;
    color: #111111;
}

.hero__meta-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange-base);
    flex-shrink: 0;
}

.hero__cta {
    width: 414px;
    max-width: 100%;
    height: 79px;
    border-radius: 10px;
    background: var(--orange-base);
    color: var(--white);
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    transition: background .2s ease;
    margin-bottom: 18px;
}
.hero__cta:hover { background: var(--orange-hover-1); }
.hero__cta:active { background: var(--orange-hover-2); }

.hero__date {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 130%;
    color: #111111;
    text-align: center;
}

/* STAGE BADGES */
.hero__stages {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.stage-badge {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    height: 63px;
    padding: 11px 27px 11px 11px;
    border-radius: 24px;
    border: 1px solid var(--black);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30.8px);
    -webkit-backdrop-filter: blur(30.8px);
    pointer-events: auto;
    transition: transform .35s ease, box-shadow .35s ease;
}
.stage-badge:hover {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 12px 28px rgba(29, 28, 28, .12);
}

.stage-badge__icon {
    width: 41px;
    height: 41px;
    border-radius: 50%;
    background: var(--brand);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.stage-badge__icon img {
    width: 15px;
    height: 15px;
}

.stage-badge__text {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    color: var(--black);
    white-space: nowrap;
}

/* Desktop positions */
.stage-badge--design      { top: 110px;  right: 60px;  }
.stage-badge--foundation  { top: 280px;  left: 60px;   }
.stage-badge--walls       { top: 370px;  left: 110px;  }
.stage-badge--engineering { top: 380px;  right: 50px;  }
.stage-badge--finishing   { top: 470px;  right: 95px;  }

@keyframes stageFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}

/* HERO — появление на загрузке */
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroBadgePop {
    0%   { opacity: 0; transform: translateY(20px) scale(0.85); }
    60%  { opacity: 1; transform: translateY(-6px) scale(1.04); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes stageBadgeIn {
    0%   { opacity: 0; transform: translateY(40px) scale(0.7); }
    70%  { opacity: 1; transform: translateY(-10px) scale(1.05); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.hero__badges .hero__badge {
    opacity: 0;
    animation: heroBadgePop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.hero__badges .hero__badge:nth-child(1) { animation-delay: 0.10s; }
.hero__badges .hero__badge:nth-child(2) { animation-delay: 0.20s; }
.hero__badges .hero__badge:nth-child(3) { animation-delay: 0.30s; }
.hero__badges .hero__badge:nth-child(4) { animation-delay: 0.40s; }

.hero__title    { opacity: 0; animation: heroFadeUp 0.8s ease-out 0.55s forwards; }
.hero__subtitle { opacity: 0; animation: heroFadeUp 0.7s ease-out 0.75s forwards; }
.hero__meta     { opacity: 0; animation: heroFadeUp 0.6s ease-out 0.90s forwards; }
.hero__cta      { opacity: 0; animation: heroFadeUp 0.6s ease-out 1.00s forwards; }
.hero__date     { opacity: 0; animation: heroFadeUp 0.6s ease-out 1.15s forwards; }

.stage-badge {
    opacity: 0;
    animation: stageBadgeIn 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.stage-badge.is-floating {
    animation: stageFloat 6s ease-in-out infinite;
    opacity: 1;
}
.stage-badge--design      { animation-delay: 0.60s; }
.stage-badge--foundation  { animation-delay: 0.75s; }
.stage-badge--walls       { animation-delay: 0.90s; }
.stage-badge--engineering { animation-delay: 1.05s; }
.stage-badge--finishing   { animation-delay: 1.20s; }

.stage-badge--design.is-floating      { animation-delay: 0s;   }
.stage-badge--foundation.is-floating  { animation-delay: -0.8s; }
.stage-badge--walls.is-floating       { animation-delay: -1.4s; }
.stage-badge--engineering.is-floating { animation-delay: -2s;   }
.stage-badge--finishing.is-floating   { animation-delay: -2.6s; }

@media (prefers-reduced-motion: reduce) {
    .hero__badges .hero__badge,
    .hero__title,
    .hero__subtitle,
    .hero__meta,
    .hero__cta,
    .hero__date {
        opacity: 1 !important;
        animation: none !important;
    }
    .stage-badge {
        opacity: 1 !important;
        animation: none !important;
    }
}

/* STAGES */
.stages {
    position: relative;
    background: var(--bg);
    padding: 40px 0 0px;
    overflow: hidden;
}

.stages__hero {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1420px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    background: #d9d9d9;
    aspect-ratio: 1416 / 839;
}
.stages__hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.stages__card {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1420px;
    margin: -60px auto 0;
    padding: 80px 60px 90px;
    border-radius: 24px;
    background: var(--white);
    transition: transform .8s cubic-bezier(.2,.7,.2,1);
    will-change: transform;
    transform: translateY(-80px);
}
.stages__card.is-visible {
    transform: translateY(0);
}

.stages__title {
    font-family: 'Serpantin', serif;
    font-weight: 400;
    font-size: 86px;
    line-height: 100%;
    color: var(--black);
    text-transform: uppercase;
    text-align: left;
    margin-bottom: 80px;
}
.stages__title-br-mobile { display: none; }

.stages__title-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: var(--dark-green);
    vertical-align: middle;
    margin: 0 8px;
}
.stages__title-icon img {
    width: 38px;
    height: 38px;
}

.stages__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 32px;
    align-items: start;
}

/* STAGE CARD */
.stage-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    border-radius: 24px;
    padding: 14px;
    background: transparent;
    transition: background .35s ease;
    cursor: pointer;
}

.stage-card__image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 422 / 520;
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
    transition: aspect-ratio .35s ease;
}
.stage-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.stage-card__num {
    position: absolute;
    bottom: 16px;
    left: 16px;
    width: 110px;
    height: 110px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 10px solid var(--green);
    background: rgba(19, 81, 48, 0.30);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    font-family: 'Serpantin', serif;
    font-weight: 400;
    font-size: 56px;
    line-height: 100%;
    color: var(--s-white);
    text-align: center;
    transition: background .35s ease, color .35s ease;
}

.stage-card__title {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 130%;
    color: var(--dark-green);
    margin: 14px 0 0;
    text-align: left;
    align-self: flex-start;
    padding-left: 4px;
    height: calc(24px * 1.4);
    transition: color .35s ease;
}

.stage-card__link {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 130%;
    color: var(--s-white);
    text-decoration: underline;
    text-underline-offset: 4px;
    margin: 8px 0 auto;
    align-self: flex-start;
    padding: 0 0 0 4px;
    background: transparent;
    border: 0;
    text-align: left;
    cursor: pointer;
    min-height: calc(24px * 1.);
    opacity: 0;
    pointer-events: none;
    display: flex;
    align-items: flex-start;
    transition: opacity .35s ease, color .2s ease;
}

.stage-card--wide .stage-card__title {height: calc(24px * 2.4); }
.stage-card--wide .stage-card__link  {min-height: calc(24px * 1.8); }


.stage-card:hover .stage-card__link,
.stage-card.is-open .stage-card__link {
    opacity: 1;
    pointer-events: auto;
}
.stage-card__link:hover {
    color: #FFFFFF;
}

/* HOVER / OPEN state */
.stage-card:hover,
.stage-card.is-open {
    background: var(--dark-green);
}
.stage-card:hover .stage-card__image-wrap,
.stage-card.is-open .stage-card__image-wrap {
    aspect-ratio: 422 / 490;
}
.stage-card:hover .stage-card__num,
.stage-card.is-open .stage-card__num {
    background: var(--white);
    color: var(--green);
}
.stage-card:hover .stage-card__title,
.stage-card.is-open .stage-card__title {
    color: var(--s-white);
}
.stage-card:hover .stage-card__link,
.stage-card.is-open .stage-card__link {
    opacity: 1;
    pointer-events: auto;
}

/* Forest footer */
.stages__forest {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -50px;
    width: 130%;
    min-width: 1200px;
    max-width: 2118px;
    height: auto;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

/* WHAT WE DO */
.wwd {
    position: relative;
    background: var(--green);
    padding: 110px 0 120px;
    overflow: hidden;
}

.wwd__leaves {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
    opacity: 0.05;
    z-index: 0;
}

.wwd::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 360px;
    background: linear-gradient(180deg, var(--green) 0%, rgba(33, 122, 75, 0.85) 35%, rgba(33, 122, 75, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

.wwd::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 360px;
    background: linear-gradient(0deg, var(--green) 0%, rgba(33, 122, 75, 0.85) 35%, rgba(33, 122, 75, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

.wwd__container {
    position: relative;
    z-index: 2;
}

.wwd__title {
    font-family: 'Serpantin', serif;
    font-weight: 400;
    font-size: 86px;
    line-height: 100%;
    color: var(--white);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 24px;
}

.wwd__badge {
    display: block;
    width: max-content;
    margin: 0 auto 64px;
    padding: 10px 26px;
    border-radius: 164px;
    border: 1px solid var(--white);
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    color: var(--white);
    text-align: center;
}

.wwd__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: start;
}

.wwd-card--up   { transform: translateY(30px); }
.wwd-card--down { transform: translateY(-30px); }

.wwd-card {
    position: relative;
    aspect-ratio: 460 / 636;
    border-radius: 24px;
    overflow: hidden;
    background: #2a4a3a;
}

.wwd-card__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.wwd-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(36, 36, 36, 0) -10.61%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
    pointer-events: none;
}

.wwd-card__icon {
    position: absolute;
    top: 26px;
    left: 26px;
    width: 90px;
    height: 90px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 6px solid var(--dark-green);
    background: #1C1B1B;
    backdrop-filter: blur(17.6px);
    -webkit-backdrop-filter: blur(17.6px);
    z-index: 3;
}
.wwd-card__icon img {
    width: 44px;
    height: 44px;
}

.wwd-card__body {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 22px 28px;
    border-radius: 24px;
    border: 6px solid var(--dark-green);
    background: rgba(19, 81, 48, 0.30);
    backdrop-filter: blur(17.6px);
    -webkit-backdrop-filter: blur(17.6px);
    z-index: 3;
}

.wwd-card__title {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 110%;
    color: var(--white);
    margin: 0 0 10px;
}

.wwd-card__text {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 130%;
    color: var(--white);
    margin: 0;
}

/* TOUR */
.tour {
    position: relative;
    background: #F9FFF7;
    padding: 0 0 80px;
    overflow: hidden;
}

.tour__transition {
    display: block;
    width: 100%;
    height: auto;
    pointer-events: none;
    user-select: none;
    position: relative;
    z-index: 1;
}
.tour__transition--top {
    margin-top: -120px;
    margin-bottom: 20px;
}
.tour__transition--bottom {
    margin-top: 20px;
    margin-bottom: -220px;
}

@media (max-width: 1400px) {
    .tour__transition--top    { margin-top: -80px; }
    .tour__transition--bottom { margin-bottom: -160px; }

    .stage-card .stage-card__title { height: calc(24px * 2.6); }
    .stage-card .stage-card__link  { min-height: calc(20px * 1.4); }

}

@media (max-width: 1200px) {
    .tour__transition--top    { margin-top: -80px; }
    .tour__transition--bottom { margin-bottom: -150px; }

    .stage-card .stage-card__title { height: calc(24px * 2.4); }
    .stage-card .stage-card__link  { min-height: calc(20px * 1.4); }
}

@media (max-width: 1100px) {

    .stage-card .stage-card__title { height: calc(24px * 2.6); }
}

@media (max-width: 1020px) {

    .stage-card .stage-card__title { height: calc(24px * 3.8); }
}

@media (max-width: 1000px) {
    .tour__transition--bottom { margin-bottom: -130px; }

    .stage-card .stage-card__title { height: calc(24px * 1.3); }
    .stage-card .stage-card__link  { min-height: calc(20px * 1.2); }
}

@media (max-width: 900px) {
    .tour__transition--top    { margin-top: -50px; margin-bottom: 12px; }
    .tour__transition--bottom { margin-bottom: -120px; margin-top: 12px; }

        .stage-card .stage-card__title { height: calc(24px * 2.3); }
    .stage-card .stage-card__link  { min-height: calc(20px * 1.2); }
}

@media (max-width: 770px) {
    .tour__transition--bottom { margin-bottom: -90px; margin-top: 12px; }

    .stage-card--wide .stage-card__title { height: calc(20px * 1.4); }
    .stage-card--wide .stage-card__link  { min-height: calc(20px * 1.6); }

    .stage-card .stage-card__title { height: calc(20px * 1.4); }
    .stage-card .stage-card__link  { min-height: calc(20px * 1.4); }
}

@media (max-width: 600px) {
    .tour__transition--top    { margin-top: -35px; margin-bottom: 8px; }
    .tour__transition--bottom { margin-bottom: -80px; margin-top: 8px; }
}
@media (max-width: 400px) {
    .tour__transition--top    { margin-top: -25px; }
    .tour__transition--bottom { margin-bottom: -65px; }
}

@media (max-width: 410px) {
    .stage-card .stage-card__title { height: calc(24px * 1.4); }
    .stage-card .stage-card__link  { min-height: calc(20px * 1.4); }
}

@media (max-width: 391px) {
    .stage-card .stage-card__title { height: calc(24px * 2); }
    .stage-card .stage-card__link  { min-height: calc(20px * 1.4); }
}

.tour__container {
    position: relative;
    z-index: 2;
}

/* FORM CARD */
.tour-form {
    max-width: 1420px;
    margin: 0 auto;
    padding: 32px 78px 52px 59px;
    border-radius: 24px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 10px 40px rgba(33, 122, 75, 0.06);
}

.tour-form__title {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: 56px;
    line-height: 100%;
    color: var(--green);
    margin: 0;
    flex-shrink: 0;
}

.tour-form__form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 414px;
    flex-shrink: 0;
}

.tour-form__field {
    width: 100%;
    border-bottom: 1px solid var(--green);
}

.tour-form__input {
    width: 100%;
    height: 44px;
    padding: 10px;
    border: none;
    outline: none;
    background: transparent;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 100%;
    color: var(--black);
}
.tour-form__input::placeholder {
    color: var(--black);
    opacity: .55;
}
.tour-form__input.is-invalid {
    border-bottom: 1px solid #D9342B;
}
.tour-form__field:has(.is-invalid) {
    border-bottom-color: #D9342B;
}

.tour-form__btn {
    width: 100%;
    height: 79px;
    border-radius: 10px;
    padding: 20px 30px;
    background: var(--brand);
    color: var(--white);
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    transition: background .2s ease;
    margin-top: 8px;
}
.tour-form__btn:hover  { background: var(--orange-hover-1); }
.tour-form__btn:active { background: var(--orange-hover-2); }

.tour-form__check {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    align-self: flex-start;
    gap: 8px;
    cursor: pointer;
    user-select: none;
}
.tour-form__check-input {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    pointer-events: none;
}
.tour-form__check-box {
    width: 16px;
    height: 16px;
    border-radius: 3px;
    border: 1px solid var(--black);
    background: var(--white);
    flex-shrink: 0;
    display: inline-block;
    position: relative;
    transition: background .2s ease, border-color .2s ease;
}
.tour-form__check-input:checked + .tour-form__check-box {
    background: var(--green);
    border-color: var(--green);
}
.tour-form__check-input:checked + .tour-form__check-box::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 1px;
    width: 5px;
    height: 9px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.tour-form__check.is-invalid .tour-form__check-box {
    border-color: #D9342B;
}
.tour-form__check-text {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: var(--black);
    text-align: left;
}
.tour-form__check-link {
    color: inherit;
    text-decoration: underline;
    cursor: pointer;
    position: relative;
    z-index: 2;
}
.tour-form__check-link:hover { opacity: 0.7; }

/* HEADING */
.tour__heading {
    max-width: 1420px;
    margin: 70px auto 50px;
    padding: 0 10px;
}
.tour__heading-row {
    display: flex;
    align-items: center;
    gap: 28px;
}
.tour__heading-row--top {
    justify-content: flex-start;
    margin-bottom: 28px;
}
.tour__heading-row--bottom {
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.tour__title {
    font-family: 'Serpantin', serif;
    font-weight: 400;
    font-size: 86px;
    line-height: 100%;
    color: #010101;
    text-transform: uppercase;
    margin: 0;
}
.tour__title--right {
    text-align: right;
    flex-shrink: 0;
    white-space: nowrap;
}

.tour__divider {
    display: inline-block;
    width: 228px;
    max-width: 228px;
    height: 0;
    border-top: 2px solid #1D1C1C;
    vertical-align: middle;
    margin-left: 28px;
    margin-bottom: 14px;
}

.tour__title-nowrap {
    white-space: nowrap;
}

.tour__title-line {
    display: inline-block;
    white-space: nowrap;
}

.tour__title-br-mobile { display: none; }

.tour__text {
    max-width: 600px;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 130%;
    color: var(--green);
    margin: 0;
    flex-shrink: 1;
}

/* CARDS GRID */
.tour__grid {
    max-width: 1420px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.tour-card {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #48924E;
    background: #F5F8F4;
    padding: 0 0 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    overflow: hidden;
    transition: background 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: pointer;
}
.tour-card:focus-visible { outline: 2px solid var(--brand); outline-offset: 4px; }
.tour-card:hover { background: var(--dark-green); }
.tour-card:hover .tour-card__name,
.tour-card:hover .tour-card__stage,
.tour-card:hover .tour-card__place { color: var(--white); }

.tour-card__image-wrap {
    width: 100%;
    aspect-ratio: 340 / 404;
    overflow: hidden;
}
.tour-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.tour-card__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 0 16px;
    text-align: center;
}

.tour-card__date {
    min-width: 187px;
    min-height: 50px;
    padding: 8px 10px;
    border-radius: 4px;
    background: #DAEBD4;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 500;
    font-size: 17px;
    line-height: 13px;
    color: #033012;
}
.tour-card__date span {
    font-weight: 400;
    font-size: 14px;
    line-height: 13px;
}

.tour-card__name {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 130%;
    text-transform: uppercase;
    color: var(--green);
    margin: 0;
    transition: color .55s ease-in-out;
}

.tour-card__stage {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    font-size: 15px;
    line-height: 120%;
    color: #4C4C4C;
    margin: 0;
    transition: color .55s ease-in-out;
}

.tour-card__place {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 120%;
    color: #7B7B7B;
    margin: 0;
    transition: color .55s ease-in-out;
}

.tour__bottom {
    max-width: 1420px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: start;
}

.tour__cta {
    grid-column: 1 / 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding-top: 10px;
}

.tour__cta-text {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 130%;
    color: #030303;
    margin: 0;
}

.tour__cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 340px;
    max-width: 100%;
    height: 79px;
    border-radius: 10px;
    padding: 20px 30px;
    background: var(--orange-base);
    color: var(--white);
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    transition: background .2s ease;
}
.tour__cta-btn:hover  { background: var(--orange-hover-1); }
.tour__cta-btn:active { background: var(--orange-hover-2); }

.tour-card--last {
    grid-column: 2 / 3;
}

.tour-card--tablet { display: none; }

@media (max-width: 1440px) {
    .header__inner {
        max-width: calc(100% - 40px);
        padding: 0 24px;
        gap: 16px;
    }
    .header__logo-img { width: 180px; height: auto; }
    .header__nav-list { gap: 20px; }
    .header__nav-link { font-size: 15px; }
    .header__phone { font-size: 19px; }
    .header__call-btn { font-size: 16px; }

    .hero__pattern--left  { left: -60px; }
    .hero__pattern--right { right: -60px; }

    .stage-badge {
        height: 56px;
        padding: 9px 22px 9px 9px;
        gap: 10px;
    }
    .stage-badge__icon { width: 38px; height: 38px; }
    .stage-badge__icon img { width: 14px; height: 14px; }
    .stage-badge__text { font-size: 16px; }

    .stage-badge--design { top: 150px; right: 40px; }

    .stages__title { font-size: 72px; margin-bottom: 60px; }
    .wwd__title { font-size: 72px; }
    .stages__card { padding: 70px 40px 80px; }
    .stage-card__title { font-size: 26px; }
    .stage-card__link { font-size: 20px; }

    .tour-form {
        max-width: calc(100% - 60px);
        padding: 28px 50px 40px 50px;
        gap: 28px;
    }
    .tour-form__title { font-size: 44px; }
    .tour-form__form { width: 380px; }
    .tour-form__btn { height: 70px; font-size: 22px; }

    .tour__heading { max-width: calc(100% - 60px); }
    .tour__title { font-size: 68px; }
    .tour__divider { max-width: 180px; }
    .tour__text { font-size: 20px; max-width: 520px; }

    .tour__grid { max-width: calc(100% - 60px); gap: 20px; }
    .tour-card__name { font-size: 21px; }

    .tour__bottom { max-width: calc(100% - 60px); gap: 20px; }
    .tour__cta-text { font-size: 26px; }
    .tour__cta-btn { width: 100%; height: 70px; font-size: 22px; }
}

@media (max-width: 1280px) {
    .header__nav-list { gap: 14px; }
    .header__nav-link { font-size: 13px; }
    .header__phone { font-size: 17px; }
    .header__call-btn { font-size: 14px; }
    .header__logo-img { width: 150px; }
    .header__inner { gap: 12px; padding: 0 18px; }

    .hero__title { font-size: 72px; }
    .hero__pattern--left  { left: -130px; }
    .hero__pattern--right { right: -130px; }

    .stage-badge {
        height: 52px;
        padding: 8px 20px 8px 8px;
    }
    .stage-badge__icon { width: 36px; height: 36px; }
    .stage-badge__text { font-size: 15px; }

    .stage-badge--design { top: 180px; right: 30px; }
}

@media (max-width: 1100px) {
    .header__nav-list { gap: 12px; }
    .header__nav-link { font-size: 12px; }
    .header__phone { font-size: 15px; }
    .header__call-btn { font-size: 12px; }
    .header__logo-img { width: 130px; }

    .hero__pattern--left  { left: -210px; }
    .hero__pattern--right { right: -210px; }

    .stage-badge {
        height: 48px;
        padding: 7px 18px 7px 7px;
        gap: 8px;
    }
    .stage-badge__icon { width: 34px; height: 34px; }
    .stage-badge__text { font-size: 14px; }

    .stage-badge--design { top: 210px; right: 20px; }
}

@media (max-width: 1000px) {
    .header__inner {
        max-width: 100%;
        border: none;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        padding: 0 30px;
        height: 86px;
        gap: 16px;
    }
    .header__nav { display: none; }
    .header__nav-tablet { display: block; }
    .header__nav-tablet-list {
        justify-content: flex-start;
        padding: 0 30px;
        gap: 26px;
    }
    .header__nav-link { font-size: 14px; }
    .header__logo-img { width: 220px; height: auto; }

    .header__contacts {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    .header__phone { font-size: 22px; }
    .header__call-btn { font-size: 16px; }

    .hero {
        padding: 200px 0 220px;
    }
    .hero__title { font-size: 56px; }

    .hero__pattern { top: 120px; }
    .hero__pattern--left  { left: -180px; }
    .hero__pattern--right { right: -180px; }

    .stage-badge {
        height: 60px;
        padding: 10px 26px 10px 10px;
        gap: 12px;
    }
    .stage-badge__icon { width: 40px; height: 40px; }
    .stage-badge__icon img { width: 15px; height: 15px; }
    .stage-badge__text { font-size: 18px; }

    .stages__title { font-size: 56px; margin-bottom: 48px; }
    .wwd { padding: 80px 0 90px; }
    .wwd__title { font-size: 56px; }
    .wwd__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
    .wwd-card--up, .wwd-card--down { transform: none; }
    .wwd-card__title { font-size: 22px; }
    .stages__title-icon { width: 60px; height: 60px; }
    .stages__title-icon img { width: 30px; height: 30px; }
    .stages__card { padding: 60px 36px 70px; margin-top: -100px; }
    .stages__grid { grid-template-columns: repeat(2, 1fr); gap: 32px 28px; }
    .stage-card__title { font-size: 24px; }
    .stage-card__link { font-size: 18px; }
    .stage-card__num { width: 100px; height: 100px; border-width: 10px; font-size: 52px; }

    .stage-badge--foundation  { top: auto; bottom: 140px; left: 20px;  right: auto; }
    .stage-badge--walls       { top: auto; bottom: 60px;  left: 40px;  right: auto; }
    .stage-badge--engineering { top: auto; bottom: 140px; right: 20px; left: auto;  }
    .stage-badge--finishing   { top: auto; bottom: 60px;  right: 70px; left: auto;  }
    .stage-badge--design {
        top: auto;
        bottom: -100px;
        left: 38%;
        right: auto;
        transform: translateX(-50%);
    }
    .stage-badge--design:hover {
        transform: translateX(-50%) translateY(-6px) scale(1.04);
    }

    .tour { padding: 0 0 60px; }
    .tour-form {
        max-width: calc(100% - 32px);
        padding: 28px 32px 36px;
        flex-direction: row;
        align-items: flex-start;
        gap: 28px;
    }
    .tour-form__title { font-size: 32px; }
    .tour-form__form { width: 360px; gap: 14px; }
    .tour-form__input { font-size: 20px; }
    .tour-form__btn { height: 64px; font-size: 20px; }

    .tour__heading {
        max-width: calc(100% - 32px);
        margin: 50px auto 36px;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 18px;
    }
    .tour__heading-row--top {
        flex-direction: row;
        align-items: flex-start;
        justify-content: flex-start;
        text-align: left;
        gap: 0;
        margin-bottom: 0;
        order: 1;
    }
    .tour__heading-row--top .tour__divider { display: none; }

    .tour__heading-row--bottom {
        display: contents;
    }
    .tour__heading-row--bottom .tour__title { order: 2; }
    .tour__heading-row--bottom .tour__text { order: 3; }

    .tour__heading {
        position: relative;
    }
    .tour__title--right {
        order: 2;
        align-self: flex-start;
        text-align: left;
        white-space: normal;
        flex-shrink: 1;
        position: relative;
        padding-left: 168px;
    }
    .tour__title--right::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0.55em;
        width: 140px;
        height: 0;
        border-top: 2px solid #1D1C1C;
    }

    .tour__title {
        font-size: 44px;
        text-align: left;
        white-space: normal;
    }
    .tour__divider {
        max-width: 140px;
        width: 140px;
        flex: 0 0 auto;
    }

    .tour__text {
        font-size: 18px;
        text-align: left;
        max-width: 100%;
        color: var(--green);
        margin-top: 8px;
    }

    .tour__grid {
        max-width: calc(100% - 32px);
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
    .tour-card__name { font-size: 20px; }
    .tour-card--tablet { display: flex; }

    .tour__bottom {
        max-width: calc(100% - 32px);
        display: flex;
        justify-content: center;
        margin-top: 28px;
    }
    .tour__cta {
        align-items: center;
        text-align: center;
        padding-top: 0;
    }
    .tour__cta-text { font-size: 24px; text-align: center; }
    .tour__cta-btn { width: 340px; max-width: 100%; }
    .tour-card--last { display: none; }
}

@media (max-width: 900px) {
    .hero__pattern--left  { left: -200px; }
    .hero__pattern--right { right: -200px; }
    .hero__title { font-size: 48px; }

    .stage-badge {
        height: 54px;
        padding: 8px 22px 8px 8px;
        gap: 10px;
        border-radius: 20px;
    }
    .stage-badge__icon { width: 36px; height: 36px; }
    .stage-badge__icon img { width: 13px; height: 13px; }
    .stage-badge__text { font-size: 16px; }
}

@media (max-width: 820px) {
    .hero__pattern--left  { left: -220px; }
    .hero__pattern--right { right: -220px; }

    .hero__badge {
        height: 32px;
        padding: 0 14px;
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .header {
        top: 0;
    }
    .container { padding: 0 16px; }
    .header__container { padding: 0; }

    .header__inner {
        max-width: 100%;
        width: 100%;
        height: 99px;
        padding: 0 20px;
        border-radius: 0 0 24px 24px;
        background: var(--white);
        border: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .header__logo-img {
        width: 160px;
        height: auto;
    }

    .header__contacts { display: none; }
    .header__nav-tablet { display: none; }
    .header__burger { display: block; }

    .mobile-menu {
        top: 110px;
        right: 16px;
    }
    .mobile-menu__list { gap: 12px; }
    .mobile-menu__link {
        font-size: 16px;
        text-align: left;
    }

    .hero {
        padding: 130px 0 0;
        overflow: visible;
        z-index: 1;
    }

    .hero__pattern { display: none; }
    .hero__pattern-mobile { display: block; }

    .hero__badges {
        gap: 8px;
        margin-bottom: 24px;
        max-width: 340px;
    }
    .hero__badge {
        height: 32px;
        padding: 0 14px;
        font-size: 12px;
    }

    .hero__title {
        font-size: 32px;
        margin-bottom: 18px;
    }

    .hero__subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }
    .hero__subtitle br { display: none; }

    .hero__meta {
        gap: 8px;
        margin-bottom: 22px;
    }
    .hero__meta-item { font-size: 14px; }
    .hero__meta-dot { width: 6px; height: 6px; }

    .hero__cta {
        width: 100%;
        max-width: 343px;
        height: 64px;
        font-size: 18px;
        margin-bottom: 14px;
    }

    .hero__date { font-size: 14px; }

    .hero__stages {
        position: static;
        margin-top: 36px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        pointer-events: auto;
    }
    .stage-badge {
        position: static;
        height: 46px;
        padding: 5px 16px 5px 5px;
        gap: 8px;
        border-radius: 18px;
        animation: heroFadeUp 0.6s ease-out forwards;
        opacity: 0;
        transform: none;
    }
    .stage-badge.is-floating { animation: none; opacity: 1; }
    .stage-badge--design      { animation-delay: 0.55s; }
    .stage-badge--foundation  { animation-delay: 0.65s; }
    .stage-badge--walls       { animation-delay: 0.75s; }
    .stage-badge--engineering { animation-delay: 0.85s; }
    .stage-badge--finishing   { animation-delay: 0.95s; }
    .stage-badge:hover {
        transform: none !important;
        box-shadow: none;
    }
    .stage-badge__icon { width: 34px; height: 34px; }
    .stage-badge__icon img { width: 13px; height: 13px; }
    .stage-badge__text { font-size: 13px; }

    .stages__hero { display: none; }

    .stages {
        padding: 0 0 0px;
        background: transparent;
        position: relative;
        z-index: 10;
    }
    .stages > .container { padding: 0 16px; }

    .hero {
        padding-bottom: 200px;
    }
    .hero__banner-mobile {
        display: block;
        position: absolute;
        left: 16px;
        right: 16px;
        bottom: -120px;
        height: 380px;
        border-radius: 16px;
        overflow: hidden;
        z-index: 0;
    }
    .hero__banner-mobile-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center bottom;
        display: block;
    }

    .hero__container { position: relative; z-index: 2; }
    .hero__stages { position: relative; z-index: 2; }

    .stages > .container > .stages__card {
        position: relative;
        z-index: 50;
        margin-top: 0;
        transform: none !important;
        background: #FFFFFF !important;
        border-radius: 16px;
        isolation: isolate;
    }
    .stages__card {
        padding: 36px 16px 50px;
        margin-top: -40px;
        border-radius: 16px;
        transform: translateY(0);
    }
    .stages__card.is-visible { transform: translateY(0); }

    .stages__title {
        font-size: 28px;
        margin-bottom: 28px;
    }
    .stages__title-icon { width: 28px; height: 28px; margin: 0 4px; }
    .stages__title-icon img { width: 14px; height: 14px; }
    .stages__title-br-mobile { display: inline; }

    .wwd { padding: 60px 0 70px; }
    .wwd__title { font-size: 28px; margin-bottom: 16px; }
    .wwd__badge { font-size: 14px; padding: 8px 18px; margin-bottom: 32px; }
    .wwd__grid { grid-template-columns: 1fr; gap: 18px; }
    .wwd-card { aspect-ratio: 360 / 480; }
    .wwd-card__icon { width: 72px; height: 72px; top: 18px; left: 18px; border-width: 5px; }
    .wwd-card__icon img { width: 34px; height: 34px; }
    .wwd-card__body { padding: 18px 22px; border-radius: 20px; border-width: 4px; left: 12px; right: 12px; bottom: 12px; }
    .wwd-card__title { font-size: 20px; }
    .wwd-card__text { font-size: 14px; }

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

    .stage-card { padding: 6px; border-radius: 16px; }
    .stage-card__image-wrap { border-radius: 14px; aspect-ratio: 330 / 420; }
    .stage-card:hover .stage-card__image-wrap,
    .stage-card.is-open .stage-card__image-wrap {
        aspect-ratio: 350 / 390;
    }
    .stage-card__num {
        width: 80px;
        height: 80px;
        border-width: 7px;
        font-size: 40px;
    }
    .stage-card__title { font-size: 20px; margin-top: 14px; padding-left: 4px; }
    .stage-card__link { font-size: 18px; }

    .stages__forest { bottom: -20px; min-width: 0; width: 140%; }
}

@media (max-width: 768px) {
    .tour { padding: 0 0 40px; }

    .tour-form {
        max-width: calc(100% - 32px);
        margin: 0 auto;
        padding: 28px 24px 32px;
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
        text-align: center;
    }
    .tour-form__title {
        font-size: 24px;
        text-align: center;
    }
    .tour-form__form {
        width: 100%;
        gap: 14px;
    }
    .tour-form__input { font-size: 18px; }
    .tour-form__btn {
        height: 60px;
        font-size: 18px;
        padding: 16px 20px;
    }
    .tour-form__check {
        align-items: flex-start;
        text-align: left;
        gap: 10px;
    }
    .tour-form__check-text {
        text-align: left;
        line-height: 130%;
    }

    .tour__heading {
        max-width: calc(100% - 32px);
        margin: 36px auto 28px;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 22px;
    }

    .tour__heading-row--top {
        display: block;
        text-align: left;
        margin-bottom: 0;
        order: 1;
    }
    .tour__heading-row--top .tour__title {
        display: inline;
    }
    .tour__title-nowrap {
        white-space: nowrap;
    }
    .tour__title-br-mobile { display: inline; }
    .tour__title-br-desktop { display: none; }
    .tour__heading-row--top .tour__divider {
        display: inline-block;
        width: 180px;
        max-width: 180px;
        flex: none;
        vertical-align: middle;
        margin-left: 14px;
        margin-bottom: 8px;
    }

    .tour__heading-row--bottom {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 18px;
        order: 2;
    }
    .tour__heading-row--bottom .tour__title { order: 1; }
    .tour__heading-row--bottom .tour__text { order: 2; }

    .tour__title { font-size: 34px; text-align: left; }
    .tour__title--right {
        text-align: left;
        font-size: 34px;
        padding-left: 0;
        margin-left: 40px;
        white-space: normal;
    }
    .tour__title--right::before { display: none; }

    .tour__text {
        font-size: 14px;
        text-align: left;
        max-width: 100%;
        color: var(--green);
        font-weight: 400;
        line-height: 140%;
    }

    .tour__grid {
        max-width: calc(100% - 32px);
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .tour-card {
        padding: 0 0 20px;
        gap: 14px;
    }
    .tour-card__body { padding: 0 10px; gap: 8px; }
    .tour-card__date {
        min-width: 0;
        width: 100%;
        min-height: 44px;
        font-size: 14px;
    }
    .tour-card__date span { font-size: 12px; }
    .tour-card__name { font-size: 16px; line-height: 120%; }
    .tour-card__stage { font-size: 12px; }
    .tour-card__place { font-size: 12px; }

    .tour-card--tablet { display: flex; }
    .tour-card--last { display: none; }

    .tour__bottom {
        max-width: calc(100% - 32px);
        display: flex;
        justify-content: center;
        margin-top: 22px;
    }
    .tour__cta {
        align-items: center;
        text-align: center;
        width: 100%;
        padding-top: 0;
    }
    .tour__cta-text { font-size: 22px; text-align: center; }
    .tour__cta-btn {
        width: 100%;
        max-width: 343px;
        height: 64px;
        font-size: 18px;
        padding: 18px 24px;
    }
}

@media (max-width: 500px) {
    .tour__title { font-size: 34px; }
    .tour__title--right { font-size: 34px; margin-left: 30px; }
    .tour__heading-row--top .tour__divider {
        width: 140px;
        max-width: 140px;
        margin-left: 12px;
        margin-bottom: 6px;
    }
}

@media (max-width: 400px) {
    .tour__title { font-size: 32px; }
    .tour__title--right { font-size: 32px; margin-left: 24px; }
}

@media (max-width: 380px) {
    .hero__title { font-size: 26px; }
    .stage-badge { height: 42px; padding: 4px 12px 4px 4px; }
    .stage-badge__icon { width: 30px; height: 30px; }
    .stage-badge__text { font-size: 12px; }

    .tour__title { font-size: 28px; }
    .tour__title--right { font-size: 28px; margin-left: 20px; }
    .tour__heading-row--top .tour__divider {
        width: 110px;
        max-width: 110px;
    }
}

/* HOW IT WORKS */
.how {
  position: relative;
  width: 100%;
  background: #217A4B;
  overflow: hidden;
  padding: 80px 0 100px;
}

.how__forest-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.how__forest-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.08);
  transition: transform 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.how--visible .how__forest-bg img {
  transform: scale(1);
}

.how__content {
  position: relative;
  z-index: 10;
  max-width: 1310px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  padding: 0 70px;
}

.how__title {
  font-family: 'Serpantin', serif;
  font-weight: 400;
  font-size: 96px;
  line-height: 86px;
  text-align: center;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.how__title-line {
  display: block;
}

.how__cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  width: 100%;
}

.how__card {
  flex: 1;
  max-width: 410px;
  height: 490px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.how__card--1 {
  background: #1A9342;
  padding: 30px 0 0 0;
  gap: 14px;
}
.how__card--1 .how__card-top {
  padding: 0 20px;
}

.how__card--2 {
  background: #1A623C;
  padding: 30px 0 0 0;
  justify-content: space-between;
}
.how__card--2 .how__card-top {
  padding: 0 20px;
}

.how__card--3 {
  background: #EF880D;
  padding: 30px 0 0 0;
  gap: 10px;
}
.how__card--3 .how__card-top {
  padding: 0 20px;
}

.how__card-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.how__card-number {
  font-family: 'Serpantin', serif;
  font-weight: 400;
  font-size: 72px;
  line-height: 68px;
  text-align: center;
  color: #FFFFFF;
}

.how__card-text {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  text-align: center;
  color: #FFFFFF;
}

.how__card-dates {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4px;
}

.how__card-date {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 35px;
  padding: 6px 8px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: #FFFFFF;
  white-space: nowrap;
}

.how__card-date-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4EFF89;
  flex-shrink: 0;
}

.how__card-image {
  flex: 1;
  display: flex;
  overflow: visible;
  position: relative;
  min-height: 0;
}

.how__card-image img {
  display: block;
}

.how__card--1 .how__card-image {
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
  margin: 0;
  padding: 0;
}
.how__card--1 .how__card-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transform: translateY(7%);
}

.how__card--2 .how__card-image {
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.how__card--2 .how__card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.how__card--3 .how__card-image {
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.how__card--3 .how__card-image img {
  width: 115%;
  max-width: none;
  height: auto;
  object-fit: contain;
  transform: translateY(5%);
}

.how__anim {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.how--visible .how__anim--1 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.how__anim--2 {
  opacity: 0;
  transform: translateX(-60px) translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.how--visible .how__anim--2 {
  opacity: 1;
  transform: translateX(0) translateY(0);
  transition-delay: 0.3s;
}

.how__anim--3 {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.how--visible .how__anim--3 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.how__anim--4 {
  opacity: 0;
  transform: translateX(60px) translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.how--visible .how__anim--4 {
  opacity: 1;
  transform: translateX(0) translateY(0);
  transition-delay: 0.7s;
}

@media (max-width: 1440px) {
  .how__content {
    max-width: 1100px;
    padding: 0 40px;
    gap: 40px;
  }
  .how__title {
    font-size: 80px;
    line-height: 74px;
  }
  .how__cards {
    gap: 16px;
  }
  .how__card {
    height: 450px;
  }
  .how__card-number {
    font-size: 60px;
    line-height: 56px;
  }
  .how__card-text {
    font-size: 16px;
  }
  .how__card-date {
    font-size: 13px;
    height: 32px;
    padding: 5px 7px;
  }
}

@media (max-width: 1200px) {
  .how {
    padding: 60px 0 80px;
  }
  .how__content {
    max-width: 100%;
    padding: 0 30px;
    gap: 36px;
  }
  .how__title {
    font-size: 68px;
    line-height: 62px;
  }
  .how__cards {
    gap: 12px;
  }
  .how__card {
    height: 420px;
  }
  .how__card--1 {
    padding: 24px 12px 0 0px;
  }
  .how__card--2 {
    padding: 24px 0 0 0;
  }
  .how__card--2 .how__card-top {
    padding: 0 16px;
  }
  .how__card--3 {
    padding: 24px 0 0 0;
  }
  .how__card--3 .how__card-top {
    padding: 0 16px;
  }
  .how__card-number {
    font-size: 52px;
    line-height: 48px;
  }
  .how__card-text {
    font-size: 15px;
  }
  .how__card-text br {
    display: none;
  }
}

@media (max-width: 990px) {
  .how__content {
    padding: 0 24px;
    gap: 30px;
  }
  .how__title {
    font-size: 58px;
    line-height: 54px;
  }
  .how__cards {
    gap: 10px;
  }
  .how__card {
    height: 400px;
  }
  .how__card-number {
    font-size: 46px;
    line-height: 42px;
  }
  .how__card-text {
    font-size: 14px;
  }
  .how__card-date {
    font-size: 11px;
    height: 28px;
    padding: 4px 6px;
  }
  .how__card-date-dot {
    width: 6px;
    height: 6px;
  }
}

@media (max-width: 768px) {
  .how {
    padding: 50px 0 60px;
  }
  .how__content {
    padding: 0 24px;
    gap: 30px;
  }
  .how__title {
    font-size: 52px;
    line-height: 48px;
  }
  .how__cards {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .how__card {
    width: 100%;
    max-width: 420px;
    height: 420px;
    flex: none;
  }
  .how__card--1 {
    padding: 24px 18px 0 0px;
  }
  .how__card--2 {
    padding: 24px 0 0 0;
  }
  .how__card--2 .how__card-top {
    padding: 0 18px;
  }
  .how__card--3 {
    padding: 24px 0 0 0;
  }
  .how__card--3 .how__card-top {
    padding: 0 18px;
  }
  .how__card-number {
    font-size: 56px;
    line-height: 52px;
  }
  .how__card-text {
    font-size: 16px;
  }
  .how__card-text br {
    display: none;
  }
}

@media (max-width: 576px) {
  .how {
    padding: 40px 0 50px;
  }
  .how__content {
    padding: 0 16px;
    gap: 24px;
  }
  .how__title {
    font-size: 40px;
    line-height: 38px;
  }
  .how__cards {
    gap: 12px;
  }
  .how__card {
    max-width: 100%;
    height: 380px;
  }
  .how__card--1 {
    padding: 20px 14px 0 0px;
    gap: 12px;
  }
  .how__card--1 .how__card-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transform: translateY(18%);
  }
  .how__card--2 {
    padding: 20px 0 0 0;
  }
  .how__card--2 .how__card-top {
    padding: 0 14px;
  }
  .how__card--3 {
    padding: 20px 0 0 0;
    gap: 8px;
  }
  .how__card--3 .how__card-top {
    padding: 0 14px;
  }
  .how__card-number {
    font-size: 48px;
    line-height: 44px;
  }
  .how__card-text {
    font-size: 15px;
  }
  .how__card-date {
    font-size: 12px;
    height: 30px;
    padding: 4px 6px;
  }
  .how__card-date-dot {
    width: 6px;
    height: 6px;
  }
}

.how__subtitle {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    text-align: center;
    color: var(--s-white, #E6FFE9);
    margin: -30px 0 0;
    max-width: 720px;
}

.how__note {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 130%;
    text-align: center;
    color: var(--s-white, #E6FFE9);
    margin: 0;
    max-width: 1100px;
}

.how__anim--5 {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.how--visible .how__anim--5 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.9s;
}

@media (max-width: 1000px) {
    .how__subtitle,
    .how__note { display: none; }
}

.expect {
    position: relative;
    width: 100%;
    background: #F9FFF7;
    padding: 120px 0 140px;
    overflow-x: clip;
}

.expect__container {
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 70px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 80px;
    align-items: flex-start;
}

/* ЛЕВАЯ КОЛОНКА (sticky) */
.expect__left {
    position: sticky;
    top: 110px;
    align-self: flex-start;
}

.expect__left-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
}

.expect__title {
    font-family: 'Serpantin', serif;
    font-weight: 400;
    font-size: 86px;
    line-height: 100%;
    color: #010101;
    margin: 0;
    text-transform: uppercase;
}

.expect__lead {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 130%;
    color: var(--green, #217A4B);
    max-width: 520px;
    margin: 0;
}

.expect__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 414px;
    max-width: 100%;
    height: 79px;
    padding: 20px 30px;
    border-radius: 10px;
    background: var(--orange-base);
    color: var(--white);
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    transition: background .2s ease;
    margin-top: 6px;
}
.expect__cta:hover  { background: var(--orange-hover-1); }
.expect__cta:active { background: var(--orange-hover-2); }

.expect__cta--mobile { display: none; }

.expect__right {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    min-width: 0;
}

.expect__row {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.expect__head-text {
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
    min-width: 0;
}

.expect__num {
    font-family: 'Serpantin', serif;
    font-weight: 400;
    font-size: 156px;
    line-height: 0.85;
    color: var(--dark-green, #135130);
    letter-spacing: 0;
    flex-shrink: 0;
    align-self: flex-start;
}

.expect__num--right {
    margin-left: auto;
}

.expect__num--inline {
    align-self: flex-end;
}

.br-desktop { display: inline; }
.br-mobile { display: none; }
.br-pc { display: inline; }

.expect__item-title {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 110%;
    color: var(--dark-green, #135130);
    margin: 0;
}

.expect__item-text {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 130%;
    color: var(--black, #1D1C1C);
    margin: 0;
}

/* БЛОК 01 */
.expect__row--01 {
    align-items: flex-start;
    gap: 24px;
}
.expect__row--01 .expect__head-text {
    padding-top: 0px;
}

/* ФОТО-1 + ЦИФРА 02 */
.expect__row--photo1 {
    align-items: flex-end;
    justify-content: flex-start;
    gap: 30px;
    margin-left: -40px;
}

.expect__photo {
    border-radius: 24px;
    overflow: hidden;
    flex-shrink: 0;
}

.expect__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.expect__photo--1 {
    width: 338px;
    height: 246px;
}

.expect__photo--2 {
    width: 340px;
    height: 252px;
    margin-right: auto;
    margin-left: -10px;
}

/* БЛОК 02 (Чек-лист) */
.expect__row--02 {
    margin-left: auto;
    padding-top: 10px;
    max-width: 520px;
    width: 100%;
    padding-left: 60px;
}

/* БЛОК 03 */
.expect__row--03 {
    align-items: flex-start;
    gap: 30px;
    margin-top: 30px;
}

/* 03 */
.expect__03-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    flex-shrink: 0;
}
.expect__03-left .expect__num {
    margin-bottom: -10px;
}
.expect__03-left .expect__item-title {
    padding-bottom: 0;
}

/* Текст блока 03 */
.expect__row--03-text {
    margin-top: 10px;
}
.expect__row--03-text .expect__item-text {
    max-width: 560px;
}

/* БЛОК 04 */
.expect__row--04 {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-top: 60px;
}

/* Заголовок 04 */
.expect__04-head {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: auto;
}
.expect__04-head .expect__item-title {
    flex-shrink: 1;
}
.expect__04-head .expect__num {
    flex-shrink: 0;
}

.expect__item-text--04 {
    max-width: 560px;
}

/* СТРЕЛКИ */
.expect__arrow {
    display: block;
    pointer-events: none;
    position: absolute;
    z-index: 3;
}

/* Стрелка 1  */
.expect__arrow--1 {
    width: 95px;
    height: auto;
    right: -10px;
    bottom: -150px;
}

/* Стрелка 2*/
.expect__arrow--2 {
    width: 95px;
    height: auto;
    left: -80px;
    top: 40px;
}

/* Стрелка 3 */
.expect__arrow--3 {
    width: 70px;
    height: auto;
    right: -20px;
    bottom: -90px;
    transform: rotate(-20deg);
}

.expect__anim {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s ease, transform .8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.expect--visible .expect__anim {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1440px) {
    .expect { padding: 100px 0 120px; }
    .expect__container { padding: 0 50px; gap: 60px; }
    .expect__title { font-size: 72px; }
    .expect__lead { font-size: 22px; }
    .expect__num { font-size: 132px; }
    .expect__item-title { font-size: 42px; }
    .expect__item-text { font-size: 19px; }
    .expect__photo--1 { width: 300px; height: 218px; }
    .expect__photo--2 { width: 300px; height: 222px; }
    .expect__row--02 { margin-left: 40px; }
}

@media (max-width: 1200px) {
    .expect { padding: 90px 0 110px; }
    .expect__container { padding: 0 40px; gap: 40px; }
    .expect__title { font-size: 60px; }
    .expect__lead { font-size: 20px; }
    .expect__num { font-size: 110px; }
    .expect__item-title { font-size: 34px; }
    .expect__item-text { font-size: 18px; }
    .expect__cta { width: 360px; height: 70px; font-size: 22px; }
    .expect__photo--1 { width: 240px; height: 174px; }
    .expect__photo--2 { width: 250px; height: 184px; }
    .expect__row--photo1 { margin-left: -20px; gap: 24px; }
    .expect__row--02 { max-width: 440px; padding-left: 40px; }
    .expect__03-left .expect__num { margin-bottom: -8px; }
    .expect__arrow--1 { width: 75px; right: 0; bottom: -90px; }
    .expect__arrow--2 { width: 75px; left: -50px; }
    .expect__arrow--3 { width: 56px; right: 20px; bottom: -70px; }
}

@media (max-width: 990px) {
    .expect { padding: 70px 0 90px; }
    .expect__container {
        grid-template-columns: 1fr;
        padding: 0 40px;
        gap: 50px;
        justify-items: center;
    }
    .expect__left {
        position: static;
        top: auto;
        width: 100%;
        max-width: 720px;
    }
    .expect__left-inner { gap: 22px; align-items: flex-start; }

    .expect__title { font-size: 64px; }

    .expect__lead { font-size: 20px; max-width: 480px; }


    .expect__cta--desktop { display: none; }
    .expect__cta--mobile {
        display: inline-flex;
        margin: 30px auto 0;
        width: 414px;
    }

    .expect__right {
        width: 100%;
        max-width: 720px;
    }

    .expect__photo--1 { width: 440px; height: 232px; }
    .expect__photo--2 { width: 440px; height: 252px; }

    .expect__num { font-size: 120px; }
    .expect__item-title { font-size: 38px; }
    .expect__item-text { font-size: 18px; }

    .expect__row--photo1 { margin-left: -20px; gap: 30px; }
    .expect__row--02 {
        max-width: 460px;
        padding-left: 100px;
    }
    .expect__03-left .expect__num { margin-bottom: -6px; }

    .expect__arrow--1 { width: 80px; right: -10px; bottom: -90px; }
    .expect__arrow--2 { width: 80px; left: -30px; top: 30px; }
    .expect__arrow--3 { width: 60px; right: 60px; bottom: -50px; }

    .expect__04-head { gap: 60px; }

    .expect__row--03-text { margin-top: -30px; }
}

@media (max-width: 768px) {
    .expect { padding: 50px 0 70px; }
    .expect__container {
        grid-template-columns: 1fr;
        padding: 0 20px;
        gap: 36px;
        justify-items: stretch;
    }
    .expect__left { max-width: 100%; }
    .expect__left-inner { gap: 18px; }
    .expect__title { font-size: 44px; }
    .expect__lead { font-size: 18px; max-width: 80%; }

    .expect__cta--mobile {
        width: 100%;
        max-width: 360px;
        height: 70px;
        font-size: 20px;
    }

    .expect__right {
        max-width: 100%;
        gap: 40px;
    }

    .expect__num {
        font-size: 130px;
        line-height: 0.85;
    }
    .expect__item-title { font-size: 36px; }
    .expect__item-text { font-size: 17px; }

    .expect__row--01 {
        flex-direction: row;
        align-items: flex-start;
        gap: 18px;
        margin: 0;
    }
    .expect__row--01 .expect__num { font-size: 100px; }
    .expect__row--01 .expect__head-text {
        padding-top: 6px;
        max-width: calc(100% - 130px);
    }

    .expect__arrow--1 {
        width: 90px;
        right: 0;
        bottom: -60px;
    }

    .expect__row--photo1 {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        margin: 0 !important;
        gap: 0 !important;
    }
    .expect__photo--1 {
        width: 55% !important;
        height: auto !important;
        aspect-ratio: 4 / 3;
        margin: 0 !important;
        flex-shrink: 0;
    }
    .expect__photo--1 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .expect__row--photo1 .expect__num--inline {
        align-self: center !important;
        font-size: 130px;
        margin: 0 auto !important;
        line-height: 0.85;
        flex: 1;
        text-align: center;
    }

    .expect__row--02 {
        max-width: 100% !important;
        width: 100% !important;
        padding-left: 0 !important;
        margin: -95px 0 0 !important;
        align-items: stretch;
    }
    .expect__row--02 .expect__head-text {
        width: 100%;
        gap: 30px;
    }
    .expect__row--02 .expect__item-title {
        align-self: flex-start;
        text-align: center;
        margin: 0 0 0 55%;
        padding: 0;
        width: 45%;
    }
    .expect__row--02 .expect__item-text {
        max-width: 100%;
        width: 100%;
    }

    .expect__arrow--2 {
        width: 90px;
        left: 60px;
        top: auto;
        bottom: -150px;
        transform: rotate(-70deg);
    }

    .expect__row--03 {
        flex-direction: column !important;
        align-items: flex-end !important;
        gap: 0 !important;
        margin: 0 !important;
        padding-right: 0;
    }
    .expect__row--03 .expect__03-left {
        margin-right: 10%;
    }
    .expect__03-left {
        flex-direction: column;
        align-items: flex-end;
        gap: 0;
    }
    .expect__03-left .expect__num {
        margin-bottom: -6px !important;
        margin-right: -20px !important;
        font-size: 100px;
        transform: translateX(0px);
    }
    .expect__03-left .expect__item-title {
        text-align: right;
        padding-bottom: 0;
        font-size: 32px;
    }

    .br-desktop { display: none; }
    .br-mobile { display: inline; }
    .br-pc { display: none; }
    .expect__photo--2 {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 16 / 9;
        margin: 16px 0 0 !important;
    }
    .expect__photo--2 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .expect__row--03-text {
        margin-top: 0 !important;
    }
    .expect__row--03-text .expect__item-text {
        max-width: 100%;
    }

    .expect__arrow--3 {
        width: 60px;
        right: 10px;
        bottom: -80px;
    }

    .expect__row--04 {
        align-items: stretch;
        gap: 16px;
        margin-top: 30px;
    }
    .expect__04-head {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
        width: 100%;
    }
    .expect__04-head .expect__item-title { text-align: right; }
    .expect__item-text--04 { max-width: 100%; }
}

@media (max-width: 576px) {
    .expect { padding: 40px 0 60px; }
    .expect__container { padding: 0 16px; gap: 30px; }
    .expect__title { font-size: 36px; }
    .expect__lead { font-size: 16px; max-width: 85%; }
    .expect__cta--mobile { height: 64px; font-size: 18px; }

    .expect__arrow--1 { width: 50px; }
    .expect__arrow--2 { width: 60px; }
    .expect__arrow--3 { width: 40px; }

    .expect__04-head .expect__item-title {
        font-size: 24px;
        text-align: left;
    }

    .expect__arrow--1 {
        width: 60px;
        right: 0;
        bottom: -40px;
    }

    .expect__row--02 {
        max-width: 100% !important;
        width: 100% !important;
        padding-left: 0 !important;
        margin: -65px 0 0 !important;
        align-items: stretch;
    }
    .expect__row--02 .expect__head-text {
        width: 100%;
        gap: 30px;
    }
    .expect__row--02 .expect__item-title {
        align-self: flex-start;
        text-align: center;
        margin: 0 0 0 55%;
        padding: 0;
        width: 45%;
    }
    .expect__row--02 .expect__item-text {
        max-width: 100%;
        width: 100%;
    }

    .expect__arrow--2 {
        width: 60px;
        left: 10px;
        top: auto;
        bottom: -120px;
        transform: rotate(-70deg);
    }

    .expect__row--03 {
        flex-direction: column !important;
        align-items: flex-end !important;
        gap: 0 !important;
        margin: 0 !important;
        padding-right: 0;
    }
    .expect__row--03 .expect__03-left {
        margin-right: 0%;
    }
    .expect__03-left {
        flex-direction: column;
        align-items: flex-end;
        gap: 0;
    }
    .expect__03-left .expect__num {
        margin-bottom: -6px !important;
        margin-right: -20px !important;
        font-size: 100px;
        transform: translateX(20px);
    }
    .expect__03-left .expect__item-title {
        text-align: right;
        padding-bottom: 0;
        font-size: 32px;
    }

    .br-desktop { display: none; }
    .br-mobile { display: inline; }
    .br-pc { display: none; }

    .expect__photo--2 {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 16 / 9;
        margin: 8px 0 0 !important;
    }
    .expect__photo--2 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .expect__row--03-text {
        margin-top: 0 !important;
    }
    .expect__row--03-text .expect__item-text {
        max-width: 100%;
    }

    .expect__arrow--3 {
        width: 50px;
        right: 10px;
        bottom: -80px;
    }


    .expect__row--04 {
        align-items: stretch;
        gap: 16px;
        margin-top: 30px;
    }
    .expect__04-head {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
        width: 100%;
    }
    .expect__04-head .expect__item-title { text-align: left; }
    .expect__item-text--04 { max-width: 100%; }
}


.for-whom {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0 0 100px;
}

.for-whom__gradient-top {
    display: none;
}


.for-whom__gradient-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 360px;
    background: linear-gradient(
        to bottom,
        rgba(33, 122, 75, 0) 0%,
        rgba(33, 122, 75, 0.45) 40%,
        rgba(33, 122, 75, 0.85) 75%,
        #217A4B 100%
    );
    z-index: 3;
    pointer-events: none;
}

.for-whom__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.for-whom__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.for-whom__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.for-whom__content {
    position: relative;
    z-index: 10;
    max-width: 1920px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 70px 0 70px;
}

.for-whom__title {
    font-family: 'Serpantin', serif;
    font-weight: 400;
    font-size: 106px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
}

.for-whom__title-line {
    display: block;
}

.for-whom__card {
    width: 400px;
    border-radius: 10px;
    padding: 26px 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(110px);
    -webkit-backdrop-filter: blur(110px);
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.for-whom__card-icon {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.for-whom__card-title {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 130%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #FFFFFF;
}

.for-whom__card-text {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0%;
    color: #FFFFFF;
    opacity: 0.8;
}

.for-whom__cards-desktop {
    position: relative;
    width: 100%;
    height: 880px;
}

.for-whom__cards-desktop .for-whom__card {
    position: absolute;
}

.for-whom__card--1 { left: 1%; top: 80px; }
.for-whom__card--3 { left: 4%; top: 490px; }
.for-whom__card--2 { left: 38%; top: 200px; }
.for-whom__card--4 { right: -3%; top: 0px; }
.for-whom__card--5 { right: -1%; top: 430px; }

.for-whom__cards-mobile {
    display: none;
}

.for-whom__anim-title {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.for-whom--visible .for-whom__anim-title {
    opacity: 1;
    transform: translateY(0);
}

.for-whom__anim-card {
    opacity: 0;
    transition: opacity 1s ease, transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.for-whom__anim-card--1 {
    transform: translate(calc(50vw - 250px - 1%), calc(50vh - 500px - 80px)) scale(0.8);
}
.for-whom--visible .for-whom__anim-card--1 {
    opacity: 1;
    transform: translate(0, 0) scale(1);
    transition-delay: 0.3s;
}

.for-whom__anim-card--2 {
    transform: translate(calc(50vw - 450px - 38%), calc(50vh - 500px - 200px)) scale(0.8);
}
.for-whom--visible .for-whom__anim-card--2 {
    opacity: 1;
    transform: translate(0, 0) scale(1);
    transition-delay: 0.5s;
}

.for-whom__anim-card--3 {
    transform: translate(calc(50vw - 250px - 4%), calc(50vh - 500px - 490px)) scale(0.8);
}
.for-whom--visible .for-whom__anim-card--3 {
    opacity: 1;
    transform: translate(0, 0) scale(1);
    transition-delay: 0.7s;
}

.for-whom__anim-card--4 {
    transform: translate(calc(-50vw + 250px + 3%), calc(50vh - 500px)) scale(0.8);
}
.for-whom--visible .for-whom__anim-card--4 {
    opacity: 1;
    transform: translate(0, 0) scale(1);
    transition-delay: 0.4s;
}

.for-whom__anim-card--5 {
    transform: translate(calc(-50vw + 250px + 1%), calc(50vh - 500px - 430px)) scale(0.8);
}
.for-whom--visible .for-whom__anim-card--5 {
    opacity: 1;
    transform: translate(0, 0) scale(1);
    transition-delay: 0.6s;
}

.for-whom__anim-mobile {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.for-whom__anim-mobile--visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1440px) {
    .for-whom__content { padding: 70px 40px 0 40px; }
    .for-whom__title { font-size: 86px; margin-bottom: 40px; }
    .for-whom__card { width: 340px; padding: 22px 18px; gap: 18px; }
    .for-whom__card-title { font-size: 18px; }
    .for-whom__card-text { font-size: 16px; }
    .for-whom__cards-desktop { height: 800px; }
    .for-whom__card--1 { left: 2%; top: 70px; }
    .for-whom__card--3 { left: 5%; top: 450px; }
    .for-whom__card--2 { left: 38%; top: 180px; }
    .for-whom__card--4 { right: -2%; top: 0px; }
    .for-whom__card--5 { right: -1%; top: 390px; }
}

@media (max-width: 1200px) {
    .for-whom { padding-bottom: 80px; }
    .for-whom__content { padding: 60px 30px 0 30px; }
    .for-whom__title { font-size: 68px; margin-bottom: 36px; }
    .for-whom__card { width: 280px; padding: 20px 16px; gap: 16px; }
    .for-whom__card-title { font-size: 16px; }
    .for-whom__card-text { font-size: 14px; }
    .for-whom__card-icon { width: 38px; height: 38px; }
    .for-whom__cards-desktop { height: 720px; }
    .for-whom__card--1 { left: 1%; top: 60px; }
    .for-whom__card--3 { left: 6%; top: 400px; }
    .for-whom__card--2 { left: 38%; top: 150px; }
    .for-whom__card--4 { right: -1%; top: 0px; }
    .for-whom__card--5 { right: 1%; top: 340px; }
}

@media (max-width: 990px) {
    .for-whom__content { padding: 50px 24px 0 24px; }
    .for-whom__title { font-size: 56px; margin-bottom: 30px; }
    .for-whom__card { width: 240px; padding: 18px 14px; gap: 14px; }
    .for-whom__card-title { font-size: 15px; }
    .for-whom__card-text { font-size: 13px; }
    .for-whom__card-icon { width: 34px; height: 34px; }
    .for-whom__cards-desktop { height: 660px; }
    .for-whom__card--1 { left: 0%; top: 50px; }
    .for-whom__card--3 { left: 2%; top: 370px; }
    .for-whom__card--2 { left: 35%; top: 130px; }
    .for-whom__card--4 { right: -2%; top: 0px; }
    .for-whom__card--5 { right: -2%; top: 310px; }
    .for-whom__gradient-top { height: 200px; }
    .for-whom__gradient-bottom { height: 280px; }
}

@media (max-width: 768px) {
    .for-whom { padding: 0 0 60px; }
    .for-whom__content { padding: 50px 24px 0 24px; }
    .for-whom__title { font-size: 48px; margin-bottom: 24px; }
    .for-whom__gradient-top { height: 180px; }
    .for-whom__gradient-bottom { height: 240px; }
    .for-whom__cards-desktop { display: none; }
    .for-whom__cards-mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 14px;
        width: 100%;
    }
    .for-whom__cards-mobile .for-whom__card {
        width: 100%;
        max-width: 420px;
        position: static;
        padding: 22px 18px;
        gap: 18px;
    }
    .for-whom__card-title { font-size: 18px; }
    .for-whom__card-text { font-size: 16px; }
    .for-whom__card-icon { width: 40px; height: 40px; }
}

@media (max-width: 576px) {
    .for-whom { padding: 0 0 50px; }
    .for-whom__content { padding: 40px 16px 0 16px; }
    .for-whom__title { font-size: 38px; margin-bottom: 20px; }
    .for-whom__gradient-top { height: 150px; }
    .for-whom__gradient-bottom { height: 200px; }
    .for-whom__cards-mobile { gap: 12px; }
    .for-whom__cards-mobile .for-whom__card {
        max-width: 100%;
        padding: 20px 16px;
        gap: 16px;
    }
    .for-whom__card-title { font-size: 17px; }
    .for-whom__card-text { font-size: 15px; line-height: 130%; }
    .for-whom__card-icon { width: 36px; height: 36px; }
}

.about {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 80px 0 80px;
}

.about__top-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 68%;
    z-index: 1;
    pointer-events: none;
    background: #217A4B;
}
.about__top-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    display: block;
    transform-origin: center bottom;
}

.about__forest-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 32%;
    background: #135130;
    z-index: 1;
    pointer-events: none;
}
.about__forest-bg img {
    display: none;
}

.about__content {
    position: relative;
    z-index: 10;
    max-width: 1780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 0 70px;
}

.about__title {
    font-family: 'Serpantin', serif;
    font-weight: 400;
    font-size: 86px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #E6FFE9;
}

.about__card {
    display: flex;
    width: 100%;
    max-width: 1200px;
    border-radius: 10px;
    overflow: hidden;
}

.about__card-photo {
    width: 45%;
    flex-shrink: 0;
    background: #D8EDE4;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}
.about__card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.about__card-info {
    width: 55%;
    padding: 24px 22px 0px 22px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    background: #0E3D24;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.about__card-text {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 124%;
    letter-spacing: 0%;
    color: #FFFFFF;
}

.about__card-highlight {
    padding: 10px;
    border-left: 5px solid #07B240;
    background: rgba(7, 178, 64, 0.2);
    border-radius: 0 4px 4px 0;
}
.about__card-highlight p {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 124%;
    letter-spacing: 0%;
    color: #FFFFFF;
}

.about__card-signature {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 20px;
    gap: 16px;
}

.about__card-signature-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex-shrink: 1;
    min-width: 0;
}

.about__card-name {
    font-family: 'Segoe Script', cursive;
    font-weight: 400;
    font-size: 22px;
    line-height: 124%;
    color: #FFFFFF;
}

.about__card-role {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: #FFFFFF;
    opacity: 0.8;
}

.about__card-quote {
    width: 180px;
    height: 180px;
    object-fit: contain;
    flex-shrink: 0;
}

@keyframes aboutQuoteFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(3deg); }
}
.about__card-quote {
    animation: aboutQuoteFloat 4s ease-in-out infinite;
}

.about__stats {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
}

.about__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.about__stat-number {
    font-family: 'Serpantin', serif;
    font-weight: 400;
    font-size: 60px;
    line-height: 100%;
    text-align: center;
    color: #E6FFE9;
    font-variant-numeric: tabular-nums;
}

.about__stat-label {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    text-align: center;
    color: #E6FFE9;
}

.about__divider {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    height: 0;
    border: none;
    border-top: 1px dashed #FFFFFF;
    transform-origin: center;
    transform: scaleX(0);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.about__divider.is-visible {
    transform: scaleX(1);
}

.about__bottom-wrapper {
    display: flex;
    align-items: flex-start;
    width: 100%;
    max-width: 1200px;
    gap: 0;
}

.about__bottom-brand-col {
    width: 45%;
    flex-shrink: 0;
}

.about__bottom-brand {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: 4%;
    text-transform: uppercase;
    color: #FFFFFF;
    white-space: nowrap;
}

.about__bottom-right {
    width: 55%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.about__bottom-text {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    color: #FFFFFF;
    width: 100%;
}

.about__button {
    width: 219px;
    height: 58px;
    border-radius: 10px;
    padding: 20px 30px;
    border: 1px solid #FFFFFF;
    background: transparent;
    cursor: pointer;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    color: #FFFFFF;
    text-align: center;
    white-space: nowrap;
}
.about__button:hover {
    background: rgba(255, 255, 255, 0.1);
}

.about__anim {
    opacity: 0;
    will-change: transform, opacity;
    transition:
        opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
        background 0.3s ease;
}
.about__anim--fade-up {
    transform: translateY(50px);
}
.about__anim--delay-1 { transition-delay: 0.15s; }
.about__anim--delay-2 { transition-delay: 0.3s; }
.about__anim--delay-3 { transition-delay: 0.45s; }
.about__anim.is-visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 1440px) {
    .about__content { padding: 0 40px; gap: 36px; }
    .about__title { font-size: 72px; }
    .about__card { max-width: 1060px; }
    .about__card-text { font-size: 19px; }
    .about__card-highlight p { font-size: 19px; }
    .about__card-info { padding: 30px 24px; gap: 18px; }
    .about__stat-number { font-size: 50px; }
    .about__stat-label { font-size: 16px; }
    .about__card-quote { width: 150px; height: 150px; }
    .about__stats { max-width: 1060px; }
    .about__bottom-wrapper { max-width: 1060px; }
}

@media (max-width: 1200px) {
    .about { padding: 60px 0 60px; }
    .about__content { padding: 0 30px; gap: 30px; }
    .about__title { font-size: 60px; }
    .about__card { max-width: 900px; }
    .about__card-text { font-size: 17px; }
    .about__card-highlight p { font-size: 17px; }
    .about__card-info { padding: 26px 20px; gap: 16px; }
    .about__card-name { font-size: 20px; }
    .about__card-role { font-size: 14px; }
    .about__stat-number { font-size: 42px; }
    .about__stat-label { font-size: 15px; }
    .about__bottom-text { font-size: 16px; }
    .about__card-quote { width: 120px; height: 120px; }
    .about__stats { max-width: 900px; }
    .about__bottom-wrapper { max-width: 900px; }
}

@media (max-width: 990px) {
    .about__content { padding: 0 24px; gap: 26px; }
    .about__title { font-size: 50px; }
    .about__card { max-width: 100%; }
    .about__card-text { font-size: 15px; }
    .about__card-highlight p { font-size: 15px; }
    .about__card-info { padding: 22px 18px; gap: 14px; }
    .about__card-name { font-size: 18px; }
    .about__card-role { font-size: 13px; }
    .about__stat-number { font-size: 36px; }
    .about__stat-label { font-size: 14px; }
    .about__bottom-text { font-size: 15px; }
    .about__card-quote { width: 110px; height: 110px; }
    .about__stats { max-width: 100%; }
    .about__bottom-wrapper { max-width: 100%; }
}

@media (max-width: 768px) {
    .about { padding: 50px 0 50px; }
    .about__top-bg { height: 55%; }
    .about__forest-bg { height: 55%; }
    .about__content { padding: 0 24px; gap: 24px; }
    .about__title { font-size: 44px; }
    .about__card { flex-direction: column; }
    .about__card-photo { width: 100%; aspect-ratio: 4 / 5; height: auto; }
    .about__card-photo img { object-position: center top; }
    .about__card-info {
        width: 100%;
        padding: 24px 20px;
        gap: 18px;
        border-radius: 0 0 10px 10px;
        border-top-right-radius: 0;
    }
    .about__card-text { font-size: 17px; }
    .about__card-highlight p { font-size: 17px; }
    .about__card-quote { width: 100px; height: 100px; }
    .about__stats { max-width: 100%; gap: 20px; }
    .about__stat-number { font-size: 32px; }
    .about__stat-label { font-size: 14px; }
    .about__bottom-wrapper { flex-direction: column; gap: 16px; max-width: 100%; }
    .about__bottom-brand-col { display: none; }
    .about__bottom-right { width: 100%; align-items: center; }
    .about__bottom-text { font-size: 15px; max-width: 100%; }
    .about__button { align-self: center; }
    .about__anim--fade-up { transform: translateY(30px); }
}

@media (max-width: 576px) {
    .about { padding: 40px 0 40px; }
    .about__content { padding: 0 16px; gap: 20px; }
    .about__title { font-size: 36px; }
    .about__card-photo { aspect-ratio: 3 / 4; }
    .about__card-info { padding: 20px 16px; gap: 16px; }
    .about__card-text { font-size: 16px; }
    .about__card-highlight p { font-size: 16px; }
    .about__card-name { font-size: 18px; }
    .about__card-role { font-size: 13px; }
    .about__card-quote { width: 90px; height: 90px; }
    .about__stats { gap: 16px; }
    .about__stat-number { font-size: 28px; }
    .about__stat-label { font-size: 13px; }
    .about__bottom-text { font-size: 14px; line-height: 130%; }
    .about__button { width: 100%; height: 56px; font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
    .about__anim {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        will-change: auto;
    }
    .about__divider {
        transform: scaleX(1) !important;
        transition: none !important;
    }
    .about__card-quote {
        animation: none !important;
    }
}

/* Универсальный reveal */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition-delay: var(--reveal-delay, 0s);
    will-change: opacity, transform;
}
.reveal-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-fade {
    opacity: 0;
    transition: opacity 0.7s ease;
    transition-delay: var(--reveal-delay, 0s);
    will-change: opacity;
}
.reveal-fade.is-visible { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
    .reveal-up,
    .reveal-fade {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

.faq {
    position: relative;
    width: 100%;
    background: #F9FFF7;
    padding: 0 0 120px;
    overflow: hidden;
}

.faq__anim {
    opacity: 0;
    transition: opacity 0.6s ease-out;
    will-change: opacity;
}
.faq__list .faq__anim {
    transform: translateY(16px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    transition-delay: var(--faq-delay, 0s);
    will-change: opacity, transform;
}
.faq__anim.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.faq__transition {
    display: block;
    width: 100%;
    height: auto;
    pointer-events: none;
    user-select: none;
    position: relative;
    z-index: 1;
    margin-top: -120px;
    margin-bottom: 20px;
}

.faq__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 50px;
}

.faq__title {
    font-family: 'Serpantin', serif;
    font-weight: 400;
    font-size: 106px;
    line-height: 100%;
    text-align: center;
    color: #010101;
    margin: 0 0 50px;
}

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

.faq__item {
    width: 100%;
    border-radius: 12px;
    border: 4px solid var(--dark-green);
    background: var(--green);
    overflow: hidden;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.faq__head {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 30px;
    min-height: 82px;
    background: transparent;
    border: 0;
    cursor: pointer;
    text-align: left;
    font: inherit;
    color: inherit;
}

.faq__question {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 130%;
    color: var(--white);
    transition: color 0.3s ease;
}

.faq__toggle {
    flex-shrink: 0;
    position: relative;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--brand);
    transition: background 0.2s ease;
}

.faq__toggle::before,
.faq__toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 2px;
    background: var(--white);
    transform: translate(-50%, -50%);
    transition: opacity 0.2s ease;
}

.faq__toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq__head:hover .faq__toggle {
    background: var(--orange-hover-1);
}

.faq__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq__answer {
    margin: 0;
    padding: 0 30px 28px;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    color: var(--black);
}

.faq__item.is-open {
    background: var(--s-white);
}
.faq__item.is-open .faq__question {
    color: var(--black);
}
.faq__item.is-open .faq__toggle::after {
    opacity: 0;
}
.faq__item.is-open .faq__body {
    max-height: 500px;
}


@media (max-width: 1100px) {
    .faq { padding: 0 0 100px; }
    .faq__transition { margin-top: -80px; }
    .faq__container { max-width: 820px; padding: 0 40px; }
    .faq__title { font-size: 80px; margin-bottom: 40px; }
    .faq__head { padding: 14px 24px; min-height: 76px; gap: 16px; }
    .faq__question { font-size: 22px; }
    .faq__answer { padding: 0 24px 26px; font-size: 17px; }
}

@media (max-width: 900px) {
    .faq__transition { margin-top: -60px; }
    .faq__title { font-size: 64px; margin-bottom: 36px; }
}


@media (max-width: 768px) {
    .faq { padding: 0 0 70px; }
    .faq__transition { margin-top: -40px; margin-bottom: 12px; }
    .faq__container { padding: 0 20px; }
    .faq__title { font-size: 40px; margin-bottom: 28px; }
    .faq__list { gap: 12px; }
    .faq__item { border-width: 3px; }
    .faq__head {
        padding: 14px 16px;
        min-height: 70px;
        gap: 12px;
    }
    .faq__question { font-size: 15px; line-height: 130%; }
    .faq__toggle { width: 42px; height: 42px; }
    .faq__toggle::before,
    .faq__toggle::after { width: 12px; }
    .faq__answer { padding: 0 16px 20px; font-size: 14px; }
}

@media (max-width: 480px) {
    .faq { padding: 0 0 50px; }
    .faq__transition { margin-top: -25px; }
    .faq__container { padding: 0 16px; }
    .faq__title { font-size: 32px; margin-bottom: 22px; }
    .faq__head { padding: 12px 14px; min-height: 64px; }
    .faq__question { font-size: 12px; }
    .faq__toggle { width: 38px; height: 38px; }
    .faq__answer { padding: 0 14px 18px; font-size: 13px; }
}

@media (max-width: 380px) {
    .faq__question { font-size: 10px; }
}

@media (prefers-reduced-motion: reduce) {
    .faq__item,
    .faq__body,
    .faq__toggle,
    .faq__toggle::before,
    .faq__toggle::after,
    .faq__question { transition: none !important; }
    .faq__anim {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

.footer-section {
    position: relative;
    width: 100%;
    background: var(--green);
}

.footer-section__anim {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    will-change: opacity, transform;
}
.footer-section__anim.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.footer-section__form-wrap .footer-section__anim {
    transition-delay: var(--fs-delay, 0s);
}

@media (prefers-reduced-motion: reduce) {
    .footer-section__anim {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

.footer-section__content {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.footer-section__inner {
    position: relative;
    width: 100%;
    padding: 100px 70px 110px;
    overflow: hidden;
}

.footer-section__footprints {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
    z-index: 1;
    opacity: 0.6;
}

.footer-section__form-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-section__title {
    font-family: 'Serpantin', serif;
    font-weight: 400;
    font-size: 76px;
    line-height: 100%;
    text-align: center;
    color: var(--s-white);
    margin: 0;
    white-space: nowrap;
}
.footer-section__title-br { display: none; }

.footer-section__subtitle {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    text-align: center;
    color: var(--white);
    max-width: 520px;
    margin: 0;
}

.footer-section__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 460px;
    margin-top: 10px;
}

.footer-section__input-group { width: 100%; }

.footer-section__input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
    padding: 12px 0;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: var(--white);
    outline: none;
    transition: border-color 0.3s ease;
}
.footer-section__input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}
.footer-section__input:focus {
    border-bottom-color: var(--white);
}
.footer-section__input.is-invalid {
    border-bottom-color: #ff7a7a;
}

.footer-section__dates-block {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-section__dates-label {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    color: rgba(255, 255, 255, 0.65);
}

.footer-section__dates {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-section__date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 35px;
    padding: 6px 12px;
    border-radius: 30px;
    border: 1px solid rgba(18, 94, 54, 0.44);
    background: #18683E;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: var(--white);
    white-space: nowrap;
}
.footer-section__date:hover {
    background: #1f7847;
}
.footer-section__date--active {
    background: var(--brand);
    border-color: var(--brand);
}
.footer-section__date--active:hover {
    background: var(--orange-hover-1);
    border-color: var(--orange-hover-1);
}
.footer-section__date-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.footer-section__submit {
    width: 100%;
    height: 62px;
    border: none;
    border-radius: 10px;
    background: var(--brand);
    padding: 0 30px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    color: var(--white);
    text-align: center;
    white-space: nowrap;
    margin-top: 4px;
}
.footer-section__submit:hover { background: var(--orange-hover-1); }

.footer-section__checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    width: 100%;
}
.footer-section__checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.footer-section__checkbox-box {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    border: 1px solid var(--white);
    border-radius: 3px;
    background: transparent;
    position: relative;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.footer-section__checkbox input:checked + .footer-section__checkbox-box {
    background: var(--brand);
    border-color: var(--brand);
}
.footer-section__checkbox input:checked + .footer-section__checkbox-box::after {
    content: "";
    position: absolute;
    top: 1px;
    left: 5px;
    width: 4px;
    height: 8px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.footer-section__checkbox.is-invalid .footer-section__checkbox-box {
    border-color: #ff7a7a;
}
.footer-section__checkbox-text {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    color: var(--white);
}
.footer-section__checkbox-link {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer {
    background: var(--white);
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
    padding: 60px 70px 30px;
    color: var(--black);
    position: relative;
    z-index: 2;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 40px;
}

.footer__col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.footer__col--left { max-width: 280px; }

.footer__logo img {
    width: 240px;
    height: auto;
    object-fit: contain;
    display: block;
}

.footer__address {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    color: var(--black);
    opacity: 0.85;
    margin: 0;
}

.footer__col--center {
    gap: 18px;
    align-items: flex-start;
    margin-left: auto;
}

.footer__phone {
    font-family: 'Serpantin', serif;
    font-weight: 400;
    font-size: 46px;
    line-height: 100%;
    color: var(--black);
    text-decoration: none;
    transition: opacity 0.3s ease;
}
.footer__phone:hover { opacity: 0.7; }

.footer__nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer__nav-link {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: var(--black);
    text-decoration: none;
    transition: opacity 0.3s ease;
}
.footer__nav-link:hover { opacity: 0.6; text-decoration: underline; }

.footer__col--right {
    align-items: flex-end;
    gap: 18px;
}

.footer__email {
    font-family: 'Serpantin', serif;
    font-weight: 400;
    font-size: 46px;
    line-height: 100%;
    text-align: right;
    color: var(--black);
    text-decoration: none;
    transition: opacity 0.3s ease;
}
.footer__email:hover { opacity: 0.7; }

.footer__socials {
    display: flex;
    gap: 10px;
}
.footer__social {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(182, 182, 182, 0.14);
    transition: background 0.3s ease, border-color 0.3s ease;
    text-decoration: none;
}
.footer__social:hover {
    background: rgba(182, 182, 182, 0.28);
    border-color: rgba(255, 255, 255, 0.3);
}
.footer__social img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}
.footer__social-img--tg {
    width: 25px !important;
    height: 25px !important;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
}

.footer__copyright,
.footer__privacy {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: var(--black);
}
.footer__privacy {
    text-decoration: none;
    transition: opacity 0.3s ease;
}
.footer__privacy:hover { opacity: 0.6; }

@media (max-width: 1440px) {
    .footer-section__inner { padding: 90px 50px 100px; }
    .footer-section__title { font-size: 64px; }
    .footer { padding: 50px 50px 26px; }
    .footer__phone, .footer__email { font-size: 38px; }
    .footer__logo img { width: 220px; }
}

@media (max-width: 1200px) {
    .footer-section__inner { padding: 80px 40px 90px; }
    .footer-section__title { font-size: 56px; }
    .footer-section__subtitle { font-size: 16px; }
    .footer { padding: 44px 40px 24px; }
    .footer__phone, .footer__email { font-size: 32px; }
    .footer__logo img { width: 200px; }
}

@media (max-width: 990px) {
    .footer-section__inner { padding: 70px 30px 80px; }
    .footer-section__title { font-size: 48px; }
    .footer__top { flex-wrap: wrap; gap: 30px; }
    .footer__phone, .footer__email { font-size: 28px; }
    .footer__col--center { margin-left: 0; }
    .footer { padding: 40px 30px 22px; }
}

@media (max-width: 768px) {
    .footer-section__inner { padding: 60px 24px 70px; }
    .footer-section__title {
        font-size: 40px;
        white-space: normal;
    }
    .footer-section__title-br { display: inline; }
    .footer-section__subtitle { font-size: 15px; }
    .footer-section__subtitle br { display: none; }

    .footer {
        padding: 40px 24px 24px;
        border-top-left-radius: 24px;
        border-top-right-radius: 24px;
        display: flex;
        flex-direction: column;
    }

    .footer__top { display: contents; }
    .footer__col { display: contents; }

    .footer__logo {
        order: 1;
        display: flex;
        justify-content: center;
        margin: 0 auto 12px;
    }
    .footer__logo img { width: 240px; }

    .footer__address {
        order: 2;
        text-align: center;
        margin: 0 auto 18px;
    }

    .footer__socials {
        order: 3;
        justify-content: center;
        margin: 0 auto 18px;
    }

    .footer__phone {
        order: 4;
        font-size: 26px;
        text-align: center;
        margin: 0 auto 14px;
    }

    .footer__email {
        order: 5;
        font-size: 22px;
        text-align: center;
        margin: 0 auto 18px;
    }

    .footer__nav {
        order: 6;
        align-items: center;
        gap: 10px;
        margin: 0 auto 18px;
    }

    .footer__bottom {
        order: 7;
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
        text-align: center;
        padding-top: 16px;
    }
    .footer__privacy { order: 1; }
    .footer__copyright { order: 2; }
}

@media (max-width: 576px) {
    .footer-section__inner { padding: 44px 16px 56px; }
    .footer-section__form-wrap { gap: 16px; }
    .footer-section__title { font-size: 32px; }
    .footer-section__subtitle { font-size: 14px; }
    .footer-section__form { gap: 16px; max-width: 100%; }
    .footer-section__submit { height: 56px; font-size: 16px; }
    .footer-section__date { font-size: 13px; padding: 6px 10px; }

    .footer { padding: 32px 16px 20px; }
    .footer__phone { font-size: 22px; }
    .footer__email { font-size: 18px; }
    .footer__address { font-size: 13px; }
    .footer__nav-link { font-size: 15px; }
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal.is-open {
    display: flex;
}
.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    animation: modalOverlayIn 0.25s ease-out;
}
.modal__dialog {
    position: relative;
    width: 100%;
    max-width: 1100px;
    background: var(--white);
    border-radius: 64px;
    padding: 56px 80px 56px;
    z-index: 1;
    animation: modalDialogIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
}
.modal__dialog--thanks {
    max-width: 720px;
    text-align: center;
    padding: 72px 60px 56px;
}

@keyframes modalOverlayIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes modalDialogIn {
    from { opacity: 0; transform: translateY(40px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.modal__close {
    position: absolute;
    top: 28px;
    right: 32px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 0;
}
.modal__close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 26px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: background 0.2s ease;
}
.modal__close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}
.modal__close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.modal__close:hover span { background: var(--green); }

.modal__title {
    font-family: 'Serpantin', serif;
    font-weight: 400;
    font-size: 76px;
    line-height: 100%;
    text-align: center;
    color: var(--dark-green);
    margin: 0 0 20px;
}
.modal__title-br { display: none; }

.modal__subtitle {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    text-align: center;
    color: var(--black);
    margin: 0 auto 30px;
    max-width: 620px;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
    max-width: 620px;
    margin: 0 auto;
}

.modal-form__field { width: 100%; }

.modal-form__input {
    width: 100%;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(29, 28, 28, 0.25);
    padding: 10px 0;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    color: var(--black);
    outline: none;
    transition: border-color 0.3s ease;
}
.modal-form__input::placeholder { color: rgba(29, 28, 28, 0.45); }
.modal-form__input:focus { border-bottom-color: var(--black); }
.modal-form__input.is-invalid { border-bottom-color: #d6443a; }

.modal-form__dates-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.modal-form__dates-label {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    color: rgba(29, 28, 28, 0.7);
}
.modal-form__dates { display: flex; gap: 10px; flex-wrap: wrap; }
.modal-form__date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 35px;
    padding: 6px 12px;
    border-radius: 30px;
    border: 1px solid transparent;
    background: #19693F;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: var(--white);
    white-space: nowrap;
}
.modal-form__date:hover { background: #1f7847; }
.modal-form__date--active {
    background: var(--brand);
    border-color: var(--brand);
}
.modal-form__date--active:hover {
    background: var(--orange-hover-1);
    border-color: var(--orange-hover-1);
}
.modal-form__date-icon { width: 16px; height: 16px; object-fit: contain; }

.modal-form__submit {
    width: 100%;
    height: 70px;
    border: 0;
    border-radius: 12px;
    background: var(--brand);
    padding: 0 30px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    color: var(--white);
    margin-top: 8px;
}
.modal-form__submit:hover { background: var(--orange-hover-1); }

.modal-form__submit--thanks {
    margin: 32px auto 0;
    max-width: 320px;
    height: 62px;
    font-size: 18px;
}

.modal-form__checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}
.modal-form__checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.modal-form__checkbox-box {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    border: 1px solid var(--black);
    border-radius: 3px;
    background: transparent;
    position: relative;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.modal-form__checkbox input:checked + .modal-form__checkbox-box {
    background: var(--brand);
    border-color: var(--brand);
}
.modal-form__checkbox input:checked + .modal-form__checkbox-box::after {
    content: "";
    position: absolute;
    top: 1px;
    left: 5px;
    width: 4px;
    height: 8px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.modal-form__checkbox.is-invalid .modal-form__checkbox-box {
    border-color: #d6443a;
}
.modal-form__checkbox-text {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    color: var(--black);
}
.modal-form__checkbox-link {
    color: var(--black);
    text-decoration: underline;
    text-underline-offset: 2px;
}

body.is-modal-open { overflow: hidden; }

/* Адаптив */
@media (max-width: 1100px) {
    .modal__dialog { padding: 52px 60px 52px; max-width: 880px; }
    .modal__title { font-size: 64px; }
}
@media (max-width: 900px) {
    .modal__dialog { padding: 48px 44px; border-radius: 48px; }
    .modal__title { font-size: 52px; }
}
@media (max-width: 768px) {
    .modal { padding: 12px; }
    .modal__dialog {
        border-radius: 32px;
        padding: 56px 24px 32px;
    }
    .modal__dialog--thanks { padding: 64px 24px 36px; }
    .modal__close { top: 18px; right: 18px; width: 32px; height: 32px; }
    .modal__close span { width: 22px; }
    .modal__title { font-size: 36px; }
    .modal__title-br { display: inline; }
    .modal__subtitle { font-size: 15px; margin-bottom: 22px; }
    .modal__subtitle br { display: none; }
    .modal-form { gap: 18px; }
    .modal-form__input { font-size: 16px; }
    .modal-form__submit { height: 62px; font-size: 17px; }
    .modal-form__date { font-size: 13px; padding: 6px 10px; }
}
@media (max-width: 480px) {
    .modal__dialog { padding: 50px 18px 28px; border-radius: 28px; }
    .modal__title { font-size: 30px; }
}

@media (prefers-reduced-motion: reduce) {
    .modal__overlay,
    .modal__dialog { animation: none !important; }
}


/* MODAL OFFICE */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal-overlay.is-open { display: flex; }

.modal-office__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    animation: modalOverlayIn 0.25s ease-out;
}

.modal-office {
    position: relative;
    width: 100%;
    max-width: 750px;
    background: var(--green);
    border-radius: 10px;
    padding: 50px 60px;
    z-index: 2;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    animation: modalDialogIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-office__close {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    cursor: pointer;
    padding: 0;
    z-index: 2;
    transition: background 0.2s ease;
}
.modal-office__close:hover { background: rgba(255, 255, 255, 0.18); }
.modal-office__close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
}
.modal-office__close span:first-child { transform: translate(-50%, -50%) rotate(45deg); }
.modal-office__close span:last-child  { transform: translate(-50%, -50%) rotate(-45deg); }

.modal-office__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.modal-office__title {
    font-family: 'Serpantin', serif;
    font-weight: 400;
    font-size: 36px;
    line-height: 110%;
    text-align: center;
    color: var(--white);
    max-width: 500px;
    margin: 0;
}

.modal-office__subtitle {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    text-align: center;
    color: var(--white);
    opacity: 0.85;
    max-width: 480px;
    margin: 0;
}

.modal-office__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 378px;
}

.modal-office__methods-block,
.modal-office__phone-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.modal-office__methods-label,
.modal-office__phone-label {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    color: var(--white);
}

.modal-office__methods {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.modal-office__method {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 40px;
    padding: 6px 18px 6px 10px;
    border-radius: 40px;
    border: 1px solid #125E36;
    background: #19693F;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease;
    font-family: 'Serpantin', serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    color: var(--white);
    white-space: nowrap;
}
.modal-office__method:hover { background: #1f7847; }
.modal-office__method--active {
    background: var(--brand);
    border-color: var(--brand);
}
.modal-office__method--active:hover {
    background: var(--orange-hover-1);
    border-color: var(--orange-hover-1);
}
.modal-office__method-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.modal-office__phone-input {
    width: 100%;
    height: 50px;
    padding: 12px 20px;
    border-radius: 6px;
    border: 1px solid #125E36;
    background: #19693F;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: var(--white);
    outline: none;
    transition: border-color 0.3s ease;
}
.modal-office__phone-input::placeholder { color: rgba(255, 255, 255, 0.45); }
.modal-office__phone-input:focus { border-color: var(--white); }
.modal-office__phone-input.is-invalid { border-color: #ff7a7a; }

.modal-office__submit {
    width: 100%;
    height: 60px;
    border: 0;
    border-radius: 10px;
    background: var(--brand);
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    color: var(--white);
    text-align: center;
}
.modal-office__submit:hover { background: var(--orange-hover-1); }

.modal-office__checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    width: 100%;
}
.modal-office__checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.modal-office__checkbox-box {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    border: 1px solid var(--white);
    border-radius: 3px;
    background: transparent;
    position: relative;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.modal-office__checkbox input:checked + .modal-office__checkbox-box {
    background: var(--brand);
    border-color: var(--brand);
}
.modal-office__checkbox input:checked + .modal-office__checkbox-box::after {
    content: "";
    position: absolute;
    top: 1px;
    left: 5px;
    width: 4px;
    height: 8px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.modal-office__checkbox.is-invalid .modal-office__checkbox-box {
    border-color: #ff7a7a;
}
.modal-office__checkbox-text {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    color: var(--white);
}
.modal-office__checkbox-link {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 2px;
}

@media (max-width: 768px) {
    .modal-office {
        padding: 40px 24px;
        border-radius: 24px;
    }
    .modal-office__title { font-size: 28px; }
    .modal-office__form { max-width: 100%; }
    .modal-office__close { top: 16px; right: 16px; }
}
@media (max-width: 480px) {
    .modal-office { padding: 36px 16px 30px; border-radius: 20px; }
    .modal-office__title { font-size: 24px; }
    .modal-office__method { font-size: 16px; padding: 6px 14px 6px 8px; height: 38px; }
    .modal-office__phone-input { font-size: 16px; height: 48px; }
    .modal-office__submit { height: 56px; font-size: 16px; }
}

/* Modal: contact mode (без дат) */
#modal-signup.is-mode-contact .modal-form__dates-block { display: none; }

/* MODAL THANKS */
.modal-thanks__dialog {
    position: relative;
    width: 100%;
    max-width: 1100px;
    background: var(--white);
    border-radius: 32px;
    padding: 70px 80px 80px;
    z-index: 2;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    text-align: center;
    animation: modalDialogIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
}

.modal-thanks__close {
    position: absolute;
    top: 28px;
    right: 32px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 0;
    z-index: 3;
}
.modal-thanks__close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 26px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: background 0.2s ease;
}
.modal-thanks__close span:first-child { transform: translate(-50%, -50%) rotate(45deg); }
.modal-thanks__close span:last-child  { transform: translate(-50%, -50%) rotate(-45deg); }
.modal-thanks__close:hover span { background: var(--green); }

.modal-thanks__title {
    font-family: 'Serpantin', serif;
    font-weight: 400;
    font-size: 56px;
    line-height: 110%;
    text-align: center;
    color: var(--dark-green);
    margin: 0;
    text-transform: uppercase;
}

.modal-thanks__check {
    width: 150px;
    height: 150px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.modal-thanks__check img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.modal-thanks__text {
    font-family: 'Serpantin', serif;
    font-weight: 400;
    font-size: 36px;
    line-height: 130%;
    text-align: center;
    color: var(--dark-green);
    margin: 0;
    text-transform: uppercase;
}

@media (max-width: 1100px) {
    .modal-thanks__dialog { padding: 60px 60px 70px; max-width: 880px; }
    .modal-thanks__title  { font-size: 48px; }
    .modal-thanks__text   { font-size: 30px; }
}
@media (max-width: 900px) {
    .modal-thanks__dialog { padding: 56px 40px 60px; border-radius: 28px; }
    .modal-thanks__title  { font-size: 40px; }
    .modal-thanks__text   { font-size: 26px; }
}
@media (max-width: 768px) {
    .modal-thanks__dialog {
        padding: 56px 28px 70px;
        border-radius: 32px;
        gap: 36px;
        max-width: 100%;
    }
    .modal-thanks__close { top: 18px; right: 18px; width: 32px; height: 32px; }
    .modal-thanks__close span { width: 22px; }
    .modal-thanks__title { font-size: 28px; }
    .modal-thanks__title br { display: inline; }
    .modal-thanks__text  { font-size: 18px; line-height: 130%; }
    .modal-thanks__text br { display: inline; }
    .modal-thanks__check { width: 120px; height: 120px; }
}
@media (max-width: 480px) {
    .modal-thanks__dialog {
        padding: 50px 22px 60px;
        border-radius: 28px;
        gap: 30px;
    }
    .modal-thanks__title { font-size: 24px; }
    .modal-thanks__text  { font-size: 16px; }
    .modal-thanks__check { width: 120px; height: 120px; }
}
