/* =============================================
   БАЗА
============================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Inter", "SF Pro Text", "Segoe UI", Roboto, sans-serif;
    /* новый фон страницы — более заметный премиальный градиент */
    background-color: #f3f4f6;
    background-image:
        radial-gradient(circle at 0 0, rgba(129, 140, 248, 0.34), transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(251, 191, 36, 0.32), transparent 55%);
    background-attachment: fixed;
    color: #111827;
    line-height: 1.6;
}

/* общий «карточный» центр страницы */
main {
    padding: 32px 0 64px;
}

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

ul {
    list-style: none;
}

a {
    color: inherit;
}

/* контейнер */
.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

/* =============================================
   HEADER
============================================= */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    background: linear-gradient(to bottom, rgba(255,255,255,0.96), rgba(255,255,255,0.9));
    border-bottom: 1px solid rgba(148,163,184,0.35);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

.logo {
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 0.03em;
}

/* NAV desktop */

.nav {
    display: flex;
    gap: 26px;
    font-size: 15px;
    font-weight: 500;
}

.nav a {
    position: relative;
    text-decoration: none;
    color: #111827;
    padding-bottom: 4px;
    transition: color .25s ease;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #2563eb, #22c55e);
    transition: width .25s ease;
}

.nav a:hover {
    color: #2563eb;
}

.nav a:hover::after {
    width: 100%;
}

/* =============================================
   BURGER + OVERLAY
============================================= */

.burger {
    width: 32px;
    height: 24px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    z-index: 1100;
}

.burger span {
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 999px;
    background: #020617;
    transform-origin: 6px center;
    transition:
        transform .45s cubic-bezier(.23,1,.32,1),
        opacity .3s ease,
        background .3s ease;
}

.burger--active span {
    background: #020617;
}

.burger--active span:nth-child(1) {
    transform: rotate(45deg) translate(3px, 3px);
}
.burger--active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-12px);
}
.burger--active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -3px);
}

/* затемнение фона */

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, visibility .35s ease;
    z-index: 900;
}

.overlay--show {
    opacity: 1;
    visibility: visible;
}

.no-scroll {
    overflow: hidden;
}

/* =============================================
   HERO
============================================= */

.hero {
    padding: 32px 0 40px;
}

.hero__inner {
    background: rgba(255,255,255,0.97);
    border-radius: 32px;
    box-shadow:
        0 18px 45px rgba(15,23,42,.12),
        0 0 0 1px rgba(148,163,184,.28);
    padding: 40px 40px 36px;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 32px;
    align-items: center;
}

.hero__content h1 {
    font-size: 40px;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 16px;
}

.hero__subtitle {
    font-size: 18px;
    color: #1f2937;
    margin-bottom: 18px;
}

.hero__subtitle strong {
    font-weight: 700;
}

.hero__bullets {
    margin-bottom: 24px;
    font-size: 15px;
}

.hero__bullets li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
}

.hero__bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: linear-gradient(135deg, #2563eb, #22c55e);
}

.hero__note {
    margin-top: 14px;
    font-size: 13px;
    color: #4b5563;
}

/* hero media */

.hero__media {
    display: flex;
    justify-content: flex-end;
}

.hero__image-placeholder {
    width: 100%;
    max-width: 420px;
    height: 280px;
    border-radius: 24px;
    background: url("/img/interior1.webp") center/cover no-repeat;
    box-shadow:
        0 20px 40px rgba(15,23,42,.25);
    position: relative;
    overflow: hidden;
}

.hero__image-placeholder::after {
    content: "Premium capsule interior";
    position: absolute;
    left: 16px;
    bottom: 16px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: .04em;
    text-transform: uppercase;
    background: rgba(15,23,42,.72);
    color: #e5e7eb;
}

/* =============================================
   BUTTONS
============================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 26px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s.ease, background .25s.ease;
    will-change: transform, box-shadow;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(37,99,235,.35);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(37,99,235,.45);
    background: linear-gradient(135deg, #1d4ed8, #1d4ed8);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 8px 18px rgba(37,99,235,.35);
}

/* =============================================
   СЕКЦИИ
============================================= */

.section {
    padding: 40px 0;
}

.section--light {
    /* фон страницы уже светлый, делаем карточку */
}

.section h2 {
    font-size: 28px;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

/* общий «card wrapper» */
.section > .container {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px 32px 30px;
    box-shadow:
        0 14px 36px rgba(15,23,42,.10),
        0 0 0 1px rgba(148,163,184,.25);
}

/* =============================================
   GRID + CARD
============================================= */

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

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

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

/* карточки преимуществ */

.card {
    position: relative;
    background: linear-gradient(145deg, #ffffff, #f9fafb);
    border-radius: 18px;
    padding: 18px 18px 16px;
    box-shadow: 0 10px 28px rgba(15,23,42,.08);
    border: 1px solid rgba(226,232,240,0.9);
    overflow: hidden;
    transform: translateY(0);
    transition: transform .2s.ease, box-shadow .2s.ease, border-color .2s.ease;
}

.card::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at top left, rgba(59,130,246,.16), transparent 60%);
    opacity: 0;
    transition: opacity .25s ease;
}

.card h3 {
    position: relative;
    font-size: 17px;
    margin-bottom: 8px;
}

.card p {
    position: relative;
    font-size: 14px;
    color: #4b5563;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(15,23,42,.14);
    border-color: rgba(59,130,246,.45);
}

.card:hover::before {
    opacity: 1;
}

/* =============================================
   PRODUCER
============================================= */

.producer {
    display: grid;
    grid-template-columns: minmax(0,1.2fr) minmax(0,0.9fr);
    gap: 26px;
    align-items: center;
}

.producer__text p {
    margin-bottom: 10px;
    font-size: 14px;
    color: #374151;
}

.producer__text a {
    color: #2563eb;
    text-decoration: none;
}

.producer__text a:hover {
    text-decoration: underline;
}

/* Картинка производителя (structure.webp) */
.producer__image {
    width: 100%;
    height: 260px;
    border-radius: 22px;
    background: url("/img/structure.webp") center/cover no-repeat;
    box-shadow: 0 18px 36px rgba(15,23,42,.6);
}

/* старый плейсхолдер, если вдруг понадобится */
.producer__image-placeholder {
    width: 100%;
    height: 260px;
    border-radius: 22px;
    background: linear-gradient(135deg, #111827, #4b5563);
    color: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 13px;
    letter-spacing: .05em;
    text-transform: uppercase;
    box-shadow: 0 18px 36px rgba(15,23,42,.6);
}

/* =============================================
   GALLERY
============================================= */

.gallery {
    margin-top: 8px;
}

.gallery__item {
    border-radius: 18px;
    overflow: hidden;
    background: #0f172a;
    box-shadow: 0 14px 32px rgba(15,23,42,.45);
    position: relative;
}

.gallery__item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform .3s ease, filter .3s ease;
}

.gallery__item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,23,42,.55), transparent 55%);
    opacity: 0;
    transition: opacity .3s ease;
}

.gallery__item:hover img {
    transform: scale(1.06);
    filter: saturate(1.05);
}

.gallery__item:hover::after {
    opacity: 1;
}

.section__note {
    margin-top: 18px;
    font-size: 13px;
    color: #6b7280;
}

/* =============================================
   STEPS
============================================= */

.steps {
    margin-left: 16px;
    font-size: 14px;
    color: #374151;
}

.steps li {
    margin-bottom: 10px;
}

/* =============================================
   CONTACTS + FORM
============================================= */

.contacts {
    display: grid;
    grid-template-columns: minmax(0,1.1fr) minmax(0,0.9fr);
    gap: 26px;
    align-items: flex-start;
}

.contacts__info p {
    font-size: 14px;
    margin-bottom: 8px;
    color: #374151;
}

.contacts__info a {
    color: #2563eb;
    text-decoration: none;
}
.contacts__info a:hover {
    text-decoration: underline;
}

.contacts__form {
    background: #f9fafb;
    border-radius: 18px;
    padding: 18px 18px 16px;
    border: 1px solid rgba(226,232,240,.9);
    box-shadow: 0 10px 26px rgba(15,23,42,.08);
}

.field {
    display: flex;
    flex-direction: column;
    margin-bottom: 14px;
}

.field label {
    font-size: 13px;
    margin-bottom: 4px;
    color: #4b5563;
}

.field input,
.field textarea {
    border-radius: 10px;
    border: 1px solid #d1d5db;
    background: #ffffff;
    padding: 10px 12px;
    font-size: 14px;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s.ease;
}

.field input:focus,
.field textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 1px rgba(37,99,235,.55);
}

textarea {
    resize: vertical;
    min-height: 80px;
}

/* =============================================
   FOOTER
============================================= */

.footer {
    padding: 18px 0 24px;
    color: #6b7280;
    font-size: 13px;
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: min(1120px, 92%);
    margin: 0 auto;
}

/* =============================================
   RESPONSIVE
============================================= */

@media (max-width: 1024px) {
    .hero__inner {
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
        padding: 30px 26px 28px;
    }
}

@media (max-width: 900px) {

    .burger {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -320px;
        height: 100vh;
        width: 260px;
        padding: 90px 28px 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
        background: rgba(248,250,252,0.98);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        box-shadow: -12px 0 40px rgba(15,23,42,.25);
        transition: right .55s cubic-bezier(.22,.61,.36,1);
        z-index: 1000;
    }

    .nav--open {
        right: 0;
    }

    .nav a {
        font-size: 18px;
        opacity: 0;
        transform: translateX(16px);
        transition: opacity .3s ease, transform .3s.ease;
    }

    .nav--open a {
        opacity: 1;
        transform: translateX(0);
    }

    .nav--open a:nth-child(1) { transition-delay: .06s; }
    .nav--open a:nth-child(2) { transition-delay: .1s; }
    .nav--open a:nth-child(3) { transition-delay: .14s; }
    .nav--open a:nth-child(4) { transition-delay: .18s; }
    .nav--open a:nth-child(5) { transition-delay: .22s; }

    .hero {
        padding-top: 20px;
    }

    .hero__inner {
        grid-template-columns: minmax(0, 1fr);
        text-align: left;
        padding: 26px 22px 24px;
    }

    .hero__media {
        justify-content: center;
    }

    .hero__image-placeholder {
        height: 230px;
    }

    .hero__content h1 {
        font-size: 28px;
    }

    .section > .container {
        padding: 24px 18px 22px;
    }

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

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

    .producer,
    .contacts {
        grid-template-columns: minmax(0,1fr);
    }

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

@media (max-width: 540px) {

    main {
        padding-top: 20px;
    }

    .hero__inner {
        border-radius: 22px;
    }

    .section > .container {
        border-radius: 18px;
    }

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

    .gallery__item img {
        height: 220px;
    }
}

/* =============================================
   CATALOG PAGE (homes.html)
============================================= */

.catalog-hero {
    padding: 36px 0 12px;
}

.catalog-hero__inner {
    padding: 26px 0 10px;
}

.catalog-hero__text h1 {
    font-size: 32px;
    line-height: 1.15;
    letter-spacing: -0.04em;
    margin-bottom: 12px;
}

.catalog-hero__text p {
    max-width: 640px;
    font-size: 15px;
    color: #374151;
}

.catalog-hero__note {
    margin-top: 8px;
    font-size: 13px;
    color: #6b7280;
}

/* карточки каталога */

.catalog {
    padding: 8px 0 40px;
}

.catalog__inner {
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.catalog-item {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
    gap: 32px;
    align-items: center;
    padding: 26px 26px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow:
        0 14px 36px rgba(15,23,42,.10),
        0 0 0 1px rgba(148,163,184,.22);
    margin-bottom: 26px;
    overflow: hidden;
    position: relative;
}

.catalog-item--reverse {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
    direction: rtl;
}

.catalog-item--reverse > * {
    direction: ltr;
}

.catalog-item__media {
    display: flex;
    justify-content: center;
}

.catalog-item__image-wrap {
    width: 100%;
    max-width: 460px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(15,23,42,.35);
    transform: translateY(0);
    transition: transform .45s ease, box-shadow .45s.ease;
}

.catalog-item__image-wrap img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform .45s ease, filter .45s.ease;
}

.catalog-item__image-wrap--double img {
    height: 260px;
}

.catalog-item:hover .catalog-item__image-wrap {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(15,23,42,.45);
}

.catalog-item:hover .catalog-item__image-wrap img {
    transform: scale(1.06);
    filter: saturate(1.08);
}

.catalog-item__content {
    max-width: 520px;
}

.catalog-item__title {
    font-size: 24px;
    margin-bottom: 6px;
    letter-spacing: -0.03em;
}

.catalog-item__subtitle {
    font-size: 15px;
    color: #4b5563;
    margin-bottom: 14px;
}

.catalog-item__features {
    margin-bottom: 14px;
    font-size: 14px;
    color: #374151;
}

.catalog-item__features li {
    margin-bottom: 4px;
}

.catalog-item__price {
    font-size: 15px;
    margin-bottom: 12px;
}

.catalog-item__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.catalog-item__link {
    font-size: 14px;
    color: #2563eb;
    text-decoration: none;
}

.catalog-item__link:hover {
    text-decoration: underline;
}

/* =============================================
   MODEL PAGE (model-*.html)
============================================= */

.model-hero {
    padding: 32px 0 24px;
}

.model-hero__inner {
    background: radial-gradient(circle at top left, #e0edff 0, #ffffff 48%);
    border-radius: 28px;
    padding: 32px 32px 30px;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: 30px;
    align-items: center;
    box-shadow:
        0 18px 42px rgba(15,23,42,.12),
        0 0 0 1px rgba(148,163,184,.26);
}

.model-hero__label {
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 6px;
}

.model-hero__inner h1 {
    font-size: 30px;
    line-height: 1.15;
    letter-spacing: -0.04em;
    margin-bottom: 14px;
}

.model-hero__lead {
    font-size: 15px;
    color: #374151;
    margin-bottom: 14px;
}

.model-hero__price {
    font-size: 16px;
    margin-bottom: 16px;
}

.model-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.model-hero__back {
    font-size: 14px;
    color: #4b5563;
    text-decoration: none;
}

.model-hero__back:hover {
    text-decoration: underline;
}

.model-hero__media {
    display: flex;
    justify-content: center;
}

.model-hero__image {
    width: 100%;
    max-width: 420px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(15,23,42,.35);
}

.model-hero__image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

/* блоки ниже hero */

.model-section {
    background: #ffffff;
    border-radius: 22px;
    box-shadow:
        0 14px 34px rgba(15,23,42,.10),
        0 0 0 1px rgba(148,163,184,.22);
    padding: 24px 24px 22px;
}

.model-section h2 {
    font-size: 24px;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}

.model-section p {
    font-size: 14px;
    color: #374151;
    margin-bottom: 10px;
}

/* характеристики */

.model-specs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 16px;
}

.model-specs__col ul {
    list-style: none;
    font-size: 14px;
    color: #374151;
}

.model-specs__col li {
    margin-bottom: 6px;
}

.model-specs__col span {
    font-weight: 600;
}

/* планировка + комплектация */

.model-plan,
.model-equip {
    list-style: none;
    font-size: 14px;
    color: #374151;
}

.model-plan li,
.model-equip li {
    margin-bottom: 6px;
}

.model-section--split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 22px;
}

/* CTA */

.model-section--cta {
    text-align: center;
}

.model-section--cta p {
    max-width: 520px;
    margin: 0 auto 14px;
}

/* =============================================
   REVEAL ANIMATION
============================================= */

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .6s.ease, transform .6s.ease;
}

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

/* =============================================
   RESPONSIVE (дополнение для каталога/моделей)
============================================= */

@media (max-width: 900px) {

    .catalog-item,
    .catalog-item--reverse {
        grid-template-columns: minmax(0,1fr);
        padding: 20px 18px;
    }

    .catalog-item--reverse {
        direction: ltr;
    }

    .catalog-item__image-wrap img {
        height: 230px;
    }

    .model-hero__inner {
        grid-template-columns: minmax(0,1fr);
        padding: 26px 22px 22px;
    }

    .model-hero__image img {
        height: 230px;
    }

    .model-specs {
        grid-template-columns: minmax(0,1fr);
    }

    .model-section--split {
        grid-template-columns: minmax(0,1fr);
    }
}

@media (max-width: 540px) {
    .catalog-item {
        border-radius: 18px;
    }

    .model-hero__inner {
        border-radius: 20px;
    }

    .model-section {
        border-radius: 18px;
    }
}

/* =============================================
   HERO VIDEO (если понадобится)
============================================= */

.hero__video-wrap {
    width: 100%;
    height: 100%;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    background: #000;
}

.hero__video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* === CAROUSEL (на внутренних страницах) === */

.carousel {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    padding: 10px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    margin-top: 20px;
}

.carousel-track {
    display: flex;
    gap: 14px;
    transition: transform 0.5s ease;
}

.carousel-track img {
    width: 300px;
    height: 220px;
    object-fit: cover;
    border-radius: 14px;
    cursor: pointer;
    transition: transform 0.3s.ease;
}

.carousel-track img:hover {
    transform: scale(1.04);
}

/* Кнопки */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    font-size: 26px;
    padding: 8px 14px;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 10;
}

.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
}

/* hero gallery helper */

.hero-text {
    margin-bottom: 30px;
}

.hero-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 10px;
}

.hero-img {
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 18px;
}

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

/* Мобильная версия hero-gallery */
@media (max-width: 768px) {
    .hero-gallery {
        grid-template-columns: 1fr;
    }

    .hero-img {
        height: 240px;
    }
}

/* Контакты над формой (дублируем на всякий случай) */

.contacts__list {
    list-style: none;
    padding: 0;
    margin: 12px 0 8px;
}

.contacts__list li {
    margin-bottom: 4px;
}

.contacts__list a {
    color: #2563eb;
    text-decoration: none;
}

.contacts__list a:hover {
    text-decoration: underline;
}

.contacts__note {
    font-size: 14px;
    color: #6b7280;
    margin-top: 8px;
}