:root {
    --container: 1200px;
    --gutter: 20px;
    --header-h: 112px;
    --text: #1C1C1C;
    --btn-text: #3E4753;
    --muted: #525252;
    --white: #ffffff;
    --accent: #F7C51E;
    --radius-12: 12px;
    --radius-20: 20px;
    --shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    font-size: 24px;
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--text);
    background: #f1f5f9;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(var(--container), calc(100% - (var(--gutter) * 2)));
    margin-inline: auto;
}

.display-flex {
    display: flex;
    gap: 15px;
}

.col-wrapper {
    width: 100%;
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    padding: 18px;
    background: rgba(15, 23, 42, 0.62);
    backdrop-filter: blur(6px);
}

.modal__dialog {
    position: relative;
    width: min(860px, 100%);
    max-height: min(86vh, 860px);
    overflow: auto;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
}

.modal__body {
    padding: 18px 18px 22px;
}

.modal__close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    border: 0;
    background: rgba(15, 23, 42, 0.08);
    color: #0f172a;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

.modal__close:hover {
    background: rgba(15, 23, 42, 0.12);
}

html.is-modal-open,
body.is-modal-open {
    overflow: hidden;
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    transition: background-color 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header--overlay {
    background: transparent;
    backdrop-filter: none;
    border-bottom-color: transparent;
}

.site-header__row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.site-header__row--primary {
    min-height: 64px;
}

.site-header__row--secondary {
    min-height: 48px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.site-header--overlay .site-header__row--secondary {
    border-top-color: rgba(255, 255, 255, 0.18);
}

.site-header__row--secondary {
    transition: border-color 220ms ease;
}

.site-header__brand {
    flex: 0 0 auto;
    padding: 10px 0;
}

.site-header__logo {
    width: 140px;
    height: auto;
    object-fit: cover;
}

.site-header__nav {
    flex: 1 1 auto;
}

.site-header__phone {
    flex: 0 0 auto;
    margin-left: auto;
}

.site-header__phone-link {
    font-weight: 700;
    white-space: nowrap;
    transition: color 220ms ease;
}

.site-header--overlay .site-header__phone-link {
    color: var(--white);
}

.menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.menu--secondary {
    gap: 14px;
}

.menu__link {
    padding: 10px 8px;
    border-radius: 10px;
    color: #0f172a;
    transition: color 220ms ease, background-color 220ms ease;
}

.site-header--overlay .menu__link {
    color: var(--white);
}

.site-header--overlay .menu__link:hover {
    background: rgba(255, 255, 255, 0.12);
}

.site-header--overlay .menu--secondary .menu__link {
    color: rgba(255, 255, 255, 0.86);
}

.menu__link:hover {
    background: rgba(37, 99, 235, 0.08);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 700;
}

.btn--primary {
    color: var(--btn-text);
    background: var(--accent);
}

.btn--primary:hover {
    filter: brightness(0.85);
}

.link {
    color: var(--text);
    font-weight: 700;
    font-size: 18px;
}

.link--arrow::after {
    content: "→";
    margin-left: 10px;
}

.hero {
    position: relative;
    min-height: calc(100svh - var(--header-h));
    overflow: hidden;
    background: #0b0f14;
}

.hero__media {
    position: absolute;
    inset: 0;
}

.hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.hero__content {
    position: relative;
    height: calc(100svh - var(--header-h));
    display: grid;
    align-items: end;
    padding-bottom: 36px;
}

.hero__card {
    width: min(720px, 100%);
    background: rgba(0, 0, 0, 0.35);
    border-radius: var(--radius-12);
    padding: 22px;
    box-shadow: var(--shadow);
}

.hero__title {
    margin: 0 0 10px;
    color: var(--white);
    font-size: 40px;
    line-height: 1.1;
}

.hero__text {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.5;
}

.section {
    padding: 70px 0;
    background: var(--white);
}

.section--projects,
.section--buildings {
    background: #f8fafc;
}

.section__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.section__title {
    margin: 0;
    font-size: 34px;
    line-height: 1.15;
}

.section__title--light {
    color: var(--white);
}

.section__lead {
    margin: 12px 0 0;
    font-size: 18px;
    color: var(--muted);
}

.section__text {
    margin: 12px 0 0;
    max-width: 70ch;
    line-height: 1.6;
    color: #334155;
}

.section__text--light {
    color: rgba(255, 255, 255, 0.88);
}

.two-col {
    display: grid;
    gap: 28px;
    align-items: start;
}

.two-col--50-50 {

    grid-template-columns: 1fr 1fr;
}

.two-col--60-40 {
    grid-template-columns: 3fr 2fr;
}

.two-col--about {
    grid-template-columns: 3fr 2fr;
}
.two-col__main{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.two-col__aside {
    display: grid;
    gap: 16px;
    justify-items: end;
}

.two-col__aside--about {
    justify-items: stretch;
}
.title-wrapper{
    background-color: #f8fafc;
    padding: 1rem 0;
}
.title__about{
    font-size: 40;
    font-weight: 400;
    color: var(--text);

}
.section--about {
    position: relative;
    background: #0b0f14;
    overflow: hidden;
}

#about {
    min-height: 720px;
}

.section--about {
    --about-bg-x: 0px;
    --about-bg-y: 0px;
}

.section-bg {
    position: absolute;
    inset: 0;
}

.section-bg__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate3d(var(--about-bg-x), var(--about-bg-y), 0) scale(1.12);
    will-change: transform;
}

.section-bg__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.section--about__content {
    position: relative;
}

.about-stats {
    margin: 0;
    padding: 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(0, 0, 0, 0.25);
}

.about-stats__row {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 12px;
    padding: 14px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.about-stats__row:first-child {
    border-top: 0;
}

.about-stats__row dt {
    margin: 0;
}

.about-stats__row dd {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.4;
}

.about-stats__value {
    display: inline-block;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 0.2px;
    color: var(--white);
}

.house-media {
    margin: 0;
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
}

.house-media__img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    clip-path: polygon(50% 0%, 100% 28%, 100% 100%, 0% 100%, 0% 28%);
}

.cards {
    display: grid;
    gap: 18px;
}

.cards--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.section--buildings .cards--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cards--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.project-card {
    background: var(--white);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.project-card__img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.project-card__title {
    margin: 14px 16px 10px;
    font-size: 24px;
    display: block;
    line-height: 28px;
    height: 56px;
}

.project-card__meta {
    margin: 0;
    padding: 0 16px 16px;
    font-size: 18px;
}

.project-card__row {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 12px;
    padding: 8px 0;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.project-card__row:first-child {
    border-top: 0;
}

.project-card__dt {
    color: var(--muted);
}

.project-card__dd {
    color: var(--text);
}

#projects {
    overflow-x: hidden;
}

.projects {
    width: min(var(--container), calc(100% - (var(--gutter) * 2)));
    margin-inline: auto;
}

.projects__viewport {
    position: relative;
    overflow: visible;
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
}

.projects__controls {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: calc(50% - 22px);
    left: 0;
    width: 100%;
    padding: 0 8px;
    pointer-events: auto;
    z-index: 5;
}

.projects__btn {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background-color: var(--accent);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: filter 220ms ease, transform 220ms ease;
    pointer-events: auto;
}

.projects__btn:hover {
    filter: brightness(0.92);
}

.projects__btn:focus-visible {
    outline: 3px solid rgba(247, 197, 30, 0.55);
    outline-offset: 2px;
}

.projects__btn-icon--next {
    transform: rotate(180deg);
}

.projects__track {
    display: flex;
    gap: 18px;
    transform: translate3d(var(--projects-x, 0px), 0, 0);
    transition: transform 520ms ease;
    will-change: transform;
    padding: 2px 0;
}

.projects .project-card {
    flex: 0 0 var(--projects-card-w, 320px);
    opacity: 0.55;
    transition: opacity 220ms ease, transform 220ms ease;
}

.projects .project-card.active {
    opacity: 1;
    transform: translateY(-2px);
}

.purpose-card {
    position: relative;
    display: grid;
    border-radius: var(--radius-20);
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    min-height: 220px;
}

.purpose-card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 180ms ease;
}

.purpose-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    transition: opacity 180ms ease;
}

.purpose-card__content {
    position: relative;
    z-index: 1;
    padding: 20px;
    display: flex;
    align-content: start;
    flex-direction: column;
    justify-content: space-between;
}

.purpose-card__title {
    margin: 0;
    font-size: 28px;
    color: #0f172a;
    font-weight: 400;
}

.purpose-card__text {
    margin: 0;
    color: var(--muted);
    line-height: 1.5;
    font-size: 16px;
}

.purpose-card:hover .purpose-card__img {
    opacity: 1;
}

.purpose-card:hover::after {
    opacity: 1;
}

.purpose-card:hover .purpose-card__title,
.purpose-card:hover .purpose-card__text {
    color: var(--white);
}

.section--steps {
    background: #ffffff;
}

.step-card {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    padding: 18px 18px 54px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.step-card__title {
    margin: 0 0 10px;
    font-size: 18px;
}

.step-card__text {
    margin: 0;
    color: #334155;
    line-height: 1.6;
}

.step-card__num {
    position: absolute;
    right: 14px;
    bottom: 8px;
    font-weight: 900;
    font-size: 64px;
    line-height: 1;
    letter-spacing: -1px;
    color: #F7C51E;
    opacity: 0.95;
    pointer-events: none;
}

.section--advantages {
    background: #f8fafc;
}

.adv-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.adv-card__title {
    margin: 0 0 10px;
    font-size: 18px;
}

.adv-card__text {
    margin: 0;
    color: #334155;
    line-height: 1.6;
}

.section--reviews {
    background: #ffffff;
}

#reviews {
    overflow-x: hidden;
}

.reviews {
    width: min(var(--container), calc(100% - (var(--gutter) * 2)));
    margin-inline: auto;
    overflow: visible;
}

.reviews__controls {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: calc(50% - 22px);
    margin: 0 -55px;
    z-index: 1000;
    width: 100%;
}

.reviews__btn {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background-color: #F7C51E;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.reviews__btn:hover {
    background-color: #FFD530;
}

.reviews__btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.reviews__btn-icon--next {
    transform: rotate(180deg);
}

.reviews__viewport {
    overflow: visible;
    position: relative;
}

.reviews__track {
    display: flex;
    gap: 22px;
    transform: translate3d(var(--reviews-x, 0px), 0, 0);
    transition: transform 520ms ease;
    will-change: transform;
}

.review-slide {
    position: relative;
    flex: 0 0 calc(100% - 140px);
    min-height: 420px;
    opacity: 0.45;
    transition: opacity 320ms ease, filter 320ms ease;
}

.review-slide.active {
    opacity: 1;
    filter: none;
}


.review-slide__photo {
    margin: 0;
    width: 65%;
    margin-left: auto;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.review-slide__img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.review-card {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.30);
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
    z-index: 2;
}

.review-card__person {
    display: grid;
    gap: 2px;
    margin-bottom: 12px;
}

.review-card__name {
    font-weight: 800;
}

.review-card__role {
    color: #64748b;
}

.review-card__text {
    margin: 0;
    line-height: 1.6;
    color: #0f172a;
}

.review-card__object {
    margin-top: 14px;
    font-weight: 800;
    color: #0f172a;
}

.section--faq {
    background: #f8fafc;
}

.faq {
    display: grid;
    gap: 12px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.faq-item__title {
    margin: 0;
}

.faq-item__btn {
    width: 100%;
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 12px;
    align-items: center;
    padding: 16px 18px;
    background: transparent;
    border: 0;
    cursor: pointer;
    text-align: left;
    font: inherit;
}

.faq-item__icon {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: #F7C51E;
    color: #0b1220;
    font-weight: 900;
    font-size: 22px;
    line-height: 32px;
    display: block;
    text-align: center;
}

.faq-item__q {
    font-weight: 800;
    font-size: 18px;
    color: #0f172a;
}

.faq-item__panel {
    overflow: hidden;
    transition: height 280ms ease;
}

.faq-item__text {
    margin: 0;
    padding: 0 18px 18px 66px;
    color: #334155;
    line-height: 1.6;
}

.section--tech {
    background: #ffffff;
}

.tech {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 26px;
    align-items: start;
    margin-top: 1rem;
}

.tech__text .section__text {
    margin: 0 0 14px;
}

.tech__legend {
    display: grid;
    gap: 12px;
}

.tech__item {
    display: grid;
    grid-template-columns: 12px 1fr;
    column-gap: 12px;
    row-gap: 2px;
    align-items: center;
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.tech__dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: #F7C51E;
}

.tech__label {
    font-weight: 600;
    color: #0f172a;
}

.tech__meta {
    grid-column: 2;
    display: flex;
    gap: 10px;
    align-items: baseline;
    color: #334155;
    justify-content: end;
}

.tech__value {
    font-weight: 800;
    color: #0f172a;
}

.tech__pct {
    color: var(--muted);
}

.tech__chart {
    position: relative;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    padding: 18px;
    min-height: 360px;
    display: grid;
    place-items: center;
    height: 100%;
}

.tech-chart {
    width: 320px;
    height: 320px;
    max-width: 100%;
}

.tech-total {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-align: center;
    pointer-events: none;
}

.tech-total__num {
    font-weight: 900;
    font-size: 44px;
    letter-spacing: -1px;
    color: #0f172a;
    line-height: 1;
}

.tech-total__label {
    margin-top: 0;
    color: #64748b;
    font-weight: 800;
}

.tech-chart .ct-series-a .ct-slice-donut {
    stroke: #F7C51E;
}

.tech-chart .ct-series-b .ct-slice-donut {
    stroke: #0b1220;
}

.tech-chart .ct-series-c .ct-slice-donut {
    stroke: #3b82f6;
}

.tech-chart .ct-series-d .ct-slice-donut {
    stroke: #22c55e;
}

.tech-chart .ct-series-e .ct-slice-donut {
    stroke: #a855f7;
}

.tech-chart .ct-slice-donut {
    stroke-width: 26px;
}

.section--calc {
    background: #f8fafc;
}

.calc {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.calc__group {
    border: 0;
    padding: 0;
    margin: 0 0 18px;
}

.calc__legend {
    font-weight: 900;
    margin: 0 0 12px;
}

.calc-grid {
    display: grid;
    gap: 14px;
}

.calc-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.calc-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field {
    display: grid;
    gap: 8px;
    margin-bottom: 14px;
}

.field__label {
    font-weight: 800;
    color: #0f172a;
}

.field__control {
    width: 100%;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.14);
    padding: 10px 12px;
    font: inherit;
    color: #0f172a;
    background: #ffffff;
}

.field__control--textarea {
    height: auto;
    resize: vertical;
    padding: 12px;
}

.field__control:focus {
    outline: none;
    border-color: rgba(247, 197, 30, 0.9);
    box-shadow: 0 0 0 4px rgba(247, 197, 30, 0.25);
}

.calc__checks {
    display: grid;
    gap: 10px;
    margin: 16px 0 18px;
}

.check {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 10px;
    align-items: start;
    color: #334155;
}

.check__control {
    width: 18px;
    height: 18px;
    margin-top: 2px;
}

.check__link {
    color: #0f172a;
}

.calc__actions {
    display: flex;
    justify-content: flex-start;
}

.calc__confirm {
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(247, 197, 30, 0.18);
    border: 1px solid rgba(247, 197, 30, 0.45);
    color: #0f172a;
    line-height: 1.6;
}

.section--contacts {
    background: #ffffff;
}

.contacts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.contacts__subtitle {
    margin: 0 0 14px;
    font-size: 18px;
}

.office-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.office-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.office-card__title {
    margin: 0 0 10px;
    font-size: 18px;
}

.office-card__addr {
    margin: 0 0 14px;
    color: #334155;
    line-height: 1.6;
}

.office-card__links {
    display: grid;
    gap: 8px;
}

.office-card__link {
    color: #0f172a;
    text-decoration: none;
}

.office-card__link:hover {
    text-decoration: underline;
}

.map {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.map__frame {
    display: block;
    width: 100%;
}

.site-footer {
    padding: 28px 0;
    background: #525252;
    color: rgba(255, 255, 255, 0.92);
}

.site-footer__text {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.5;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 2fr 3fr 3fr 3fr;
    gap: 24px;
    align-items: start;
}

.footer-col {
    min-width: 0;
}

.footer-col--office {
    display: grid;
    gap: 10px;
}

.footer__logo {
    display: block;
}

.footer__title {
    margin: 0;
    font-size: 16px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.96);
}

.footer__text {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.6;
}

.footer__links {
    display: grid;
    gap: 6px;
}

.footer__link {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
}

.footer__link:hover {
    text-decoration: underline;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    display: grid;
    gap: 8px;
}

.footer-menu__item {
    margin: 0;
}

.footer-menu__link {
    color: rgba(255, 255, 255, 0.86);
    text-decoration: none;
    line-height: 1.4;
}

.footer-menu__link:hover {
    color: rgba(255, 255, 255, 0.98);
    text-decoration: underline;
}