/* ============================================
   FIGMA DESIGN SYSTEM
   Fonts: Forum (headings) | Manrope (body)
   Colors from Figma:
   #1C1917 | #44403C | #78716C | #D6D3D1
   #E8E0D3 | #F5F5F4 | #FAFAF9 | #FFFFFF
============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #1C1917;
    background: #FFFFFF;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
p { margin-bottom: 0; }

/* ============================================
   FIGMA TYPOGRAPHY
============================================ */

/* h1 — Forum 72px / 96px */
.h1, h1 {
    font-family: 'Forum', serif;
    font-weight: 400;
    font-size: 72px;
    line-height: 96px;
    color: #1C1917;
}

/* h2 — Forum 48px / 64px */
.h2, h2 {
    font-family: 'Forum', serif;
    font-weight: 400;
    font-size: 48px;
    line-height: 64px;
    color: #1C1917;
}

/* h3 — Forum 28px / 40px */
.h3, h3 {
    font-family: 'Forum', serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 40px;
    color: #1C1917;
}

/* h4 — Forum 24px / 32px */
.h4, h4 {
    font-family: 'Forum', serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    color: #1C1917;
}

/* text-l — Manrope 18px / 28px */
.text-l {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #1C1917;
}

/* text-m — Manrope 16px / 24px */
.text-m {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #1C1917;
}

/* title-m — Manrope SemiBold 16px / 24px */
.title-m {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #1C1917;
}

/* btn-l — Manrope Bold 18px / 22px */
.btn-l {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
}

/* ============================================
   КНОПКИ
============================================ */

/* Filled button — bg #44403C, text #F5F5F4, 12px 18px, h=46px */
.btn-filled {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    height: 46px;
    background: #44403C;
    color: #F5F5F4;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}
.btn-filled:hover { background: #1C1917; }

/* Yellow button — bg #EAB308, text #FAFAF9 */
.btn-yellow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    height: 46px;
    background: #EAB308;
    color: #FAFAF9;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}
.btn-yellow:hover { background: #CA8A04; }

/* Outlined button — border #44403C, text #44403C */
.btn-outlined {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    height: 46px;
    background: transparent;
    color: #44403C;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    border: 1px solid #44403C;
    border-radius: 0;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}
.btn-outlined:hover { background: rgba(68,64,60,0.05); }

/* Arrow button — 32x32, border #44403C */
.arrow-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    min-width: 32px;
    height: 32px;
    padding: 6px;
    background: transparent;
    border: 1px solid #44403C;
    border-radius: 0;
    cursor: pointer;
}

/* ============================================
   ШАПКА
============================================ */

.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: #FAFAF9;
    border-bottom: 1px solid #E8E0D3;
    transition: left 0.35s ease, right 0.35s ease, top 0.35s ease,
                border-radius 0.35s ease, box-shadow 0.35s ease,
                border-bottom 0.35s ease;
}
.header.scrolled {
    left: 20px;
    right: 20px;
    top: 10px;
    border-radius: 16px;
    background: rgba(250, 250, 249, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.08);
    border-bottom: none;
}

.header-inner {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 64px;
    height: 98px;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo {
    white-space: nowrap;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.logo-img {
    height: 64px;
    width: auto;
    display: block;
    filter: invert(1);
}

.nav {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
}
.nav a {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 20px;
    color: #44403C;
    white-space: nowrap;
    padding: 7px 14px;
    border: 1.5px solid #D6D3D1;
    border-radius: 8px;
    background: transparent;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.nav a:hover {
    background: #F5F5F4;
    border-color: #78716C;
    color: #1C1917;
}

.header-btn {
    flex-shrink: 0;
    margin-left: 16px;
    font-size: 17px;
    height: 40px;
    padding: 8px 16px;
    background: #EAB308;
    color: #FAFAF9;
    font-weight: 700;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
    padding: 4px;
}
.burger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: #1C1917;
}

/* ============================================
   HERO — 1920×918px
============================================ */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    background: url('first)page.jpg') center/cover no-repeat;
    background-color: #2a2520;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 0;
    isolation: isolate;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.hero.loaded { opacity: 1; }

/* Нет наложения — картинка чистая */
.hero::before {
    display: none;
}

/* title-text: 704px, left-aligned at 64px */
.hero-card {
    position: relative;
    z-index: 1;
    width: 704px;
    max-width: calc(100% - 40px);
    margin-left: 64px;
    margin-top: 110px;
    padding: 48px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
}

.hero-card h1 {
    width: 100%;
}

.hero-btn-group {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.hero-square-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 156px;
    height: 156px;
    background: rgba(28,25,23,0.45);
    border: 1.5px solid rgba(255,255,255,0.4);
    border-radius: 16px;
    color: #FFFFFF;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.35;
    backdrop-filter: blur(6px);
    transition: background 0.2s, border-color 0.2s;
    cursor: pointer;
}

.hero-square-btn:hover {
    background: rgba(28,25,23,0.65);
    border-color: rgba(255,255,255,0.75);
}

.banner-section-label {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #1C1917;
    margin-bottom: 6px;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
}

.hero-sub {
    width: 100%;
    color: #1C1917;
}

/* ============================================
   НАШИ УСЛУГИ — 1920×336px, padding 0 64px, gap 40px
============================================ */

.services {
    width: 100%;
    padding: 0 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    min-height: 336px;
    padding-top: 40px;
    padding-bottom: 40px;
    background: #FFFFFF;
}

.section-wrap {
    width: 100%;
    max-width: 1792px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* title row */
.section-header {
    display: flex;
    align-items: center;
    width: 100%;
    height: 64px;
}
.section-header.center { justify-content: center; text-align: center; }

/* slider — row, gap 40px */
.services-slider {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    width: 100%;
}

/* card — 876×232, bg #F5F5F4, padding 40px, gap 32px */
.card-service {
    flex: 1;
    min-height: 232px;
    background: #F5F5F4;
    box-shadow: 0px -1px 2px rgba(0,0,0,0.05), 0px 1px 3px rgba(0,0,0,0.1);
    border-radius: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px;
    gap: 32px;
}

.card-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.card-text .h3 { align-self: flex-start; color: #CA8A04; }
.card-text .text-m { align-self: flex-start; }

/* ============================================
   ЖИЛОЙ КОМПЛЕКС — 1920×897px
============================================ */

/* Кликабельные зоны левой/правой половины баннера */
.photo-click-zone {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    z-index: 2;
    cursor: pointer;
}
.photo-click-left  { left: 0; }
.photo-click-right { right: 0; }

@media (max-width: 900px) {
    .photo-click-zone {
        display: flex;
        width: 20%;
        height: 62vw;
        bottom: auto;
        align-items: center;
        justify-content: center;
    }
    .photo-click-left  { background: transparent; }
    .photo-click-right { background: transparent; }
    .banner-bg { touch-action: pan-y; }
    .banner::before { pointer-events: none; }
    .photo-arrow { display: none; }
}

/* Стрелки переключения фото — по бокам баннера */
.photo-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 56px;
    height: 56px;
    background: transparent;
    border: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.2s;
}
.photo-arrow:hover { opacity: 0.7; }
.photo-arrow-left  { left: 24px; }
.photo-arrow-right { right: 24px; }

/* Счётчик фото — правый верхний угол */
.photo-counter-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 3;
    background: rgba(28, 25, 23, 0.55);
    color: #FAFAF9;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.banner {
    position: relative;
    width: 100%;
    height: 720px;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.banner-bg {
    position: absolute;
    inset: 0;
    background: url('complex.jpg') center/cover no-repeat;
    transition: opacity 0.6s ease;
    z-index: 0;
}
.banner-bg.fade-out { opacity: 0; }

/* Текст с деталями ЖК в белой карточке */
.banner-details {
    display: flex;
    flex-direction: row;
    gap: 24px;
    width: 100%;
    align-items: flex-start;
}
.details-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.details-right {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: right;
}

.banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(53, 48, 46, 0.55);
    z-index: 1;
    transition: opacity 0.6s ease;
}
.banner:not(.has-image)::before { opacity: 0; }

/* text card */
.banner-card {
    position: relative;
    z-index: 2;
    margin-left: 96px;
    width: 680px;
    max-width: calc(100% - 96px);
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
    background: rgba(250, 250, 249, 0.45);
    backdrop-filter: blur(6.15px);
    -webkit-backdrop-filter: blur(6.15px);
}

.banner-title-row {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 100%;
    height: auto;
}

.banner-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 680px;
    max-width: 100%;
}

.banner-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 100%;
}

.banner-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 100%;
    height: 32px;
}

.banner-counter {
    flex: 1;
    text-align: right;
}

/* ============================================
   ПРЕИМУЩЕСТВА — 1920×408px, padding 0 64px, gap 32px
============================================ */

.advantages {
    width: 100%;
    padding: 0 64px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    min-height: 408px;
    padding-top: 40px;
    padding-bottom: 40px;
    background: #FFFFFF;
}

/* 4 cards row, gap 32px */
.adv-grid {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
    width: 100%;
    max-width: 1792px;
}

/* card — 424×312, bg #F5F5F4, padding 40px, gap 32px, centered */
.card-adv {
    flex: 1;
    min-height: 312px;
    background: #F5F5F4;
    box-shadow: 0px -1px 2px rgba(0,0,0,0.05), 0px 1px 3px rgba(0,0,0,0.1);
    border-radius: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    gap: 32px;
}

.adv-icon {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.adv-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
    text-align: center;
}
.adv-text .h3 { color: #CA8A04; }

/* ============================================
   О НАС — 1920×720, bg #F5F5F4, flex-row
============================================ */

.about {
    width: 100%;
    min-height: 720px;
    background: #F5F5F4;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0;
}

/* left: 960×540, padding 64px, gap 40px */
.about-txt {
    width: 50%;
    min-width: 320px;
    min-height: 540px;
    padding: 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    flex: 1;
}

.about-text-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
}

.about-label { height: 64px; }

.about-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* right: 960×720 */
.about-image {
    width: 50%;
    min-width: 320px;
    height: 720px;
    flex: 1;
    overflow: hidden;
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.about-image img.img-loaded { opacity: 1; }

/* ============================================
   КОМАНДА — 1440px центр, gap 40px
============================================ */

.team {
    width: 100%;
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
}

.team-inner {
    width: 100%;
    max-width: 1440px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 64px 0;
}

.team-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    width: 100%;
}
.team-header .h2 { text-align: center; width: 100%; }

/* 3 cards row, gap 40px, each 453.33×585.33 */
.team-grid {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    width: 100%;
}

/* card — bg #F5F5F4, flex-column */
.card-person {
    flex: 1;
    max-width: 453px;
    background: #F5F5F4;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* photo — square, same width as card */
.person-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #D6D3D1;
}
.person-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

/* info — padding 32px, gap 4px */
.person-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 32px;
    gap: 4px;
    height: 132px;
}

.person-name { text-align: center; width: 100%; color: #CA8A04; }
.person-exp { text-align: center; width: 100%; }

/* ============================================
   PRICING CARDS — 1920×424, bg #F5F5F4, padding 64px, gap 32px
============================================ */

.pricing {
    width: 100%;
    background: #F5F5F4;
    padding: 28px 64px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.pricing-wrap { width: 100%; }

/* 3 cards row */
.pricing-grid {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    max-width: 1792px;
}

/* card — pricing */
.card-pricing {
    flex: 1;
    background: #FAFAF9;
    box-shadow: 0px -1px 2px rgba(0,0,0,0.05), 0px 1px 3px rgba(0,0,0,0.1);
    border-radius: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28px 32px;
    gap: 16px;
}

.card-pricing-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
}
.card-pricing-text .h3 { align-self: flex-start; color: #CA8A04; font-size: 20px; line-height: 28px; }
.card-pricing-text .text-m { align-self: flex-start; font-size: 14px; line-height: 20px; }

/* ============================================
   FAQ (spoiler) — 1440px, bg #F5F5F4, padding 64px, gap 40px
============================================ */

.faq {
    width: 100%;
    background: #F5F5F4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 64px;
    gap: 40px;
}

.faq-inner {
    width: 100%;
    max-width: 1440px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.faq-title { text-align: center; color: #CA8A04; }

/* list — 1312px */
.faq-list {
    width: 100%;
    max-width: 1312px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

/* accordion item — 1312×80, border-bottom #D6D3D1, padding 24px, gap 16px */
.accordion-item { border-bottom: 1px solid #D6D3D1; border-radius: 0; }
.accordion-item:first-child { border-top: 1px solid #D6D3D1; }

/* open state — bg #FAFAF9 */
.accordion-open { background: #FAFAF9; }

.accordion-btn {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 24px;
    gap: 16px;
    min-height: 80px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}
.accordion-btn:hover .h4 { color: #44403C; }

.accordion-btn .h4 { flex: 1; }

/* plus/minus icon — 24×24 */
.accordion-icon {
    position: relative;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}
.icon-v, .icon-h {
    position: absolute;
    background: #CA8A04;
    border-radius: 1px;
}
/* vertical bar */
.icon-v {
    width: 2px;
    height: 62.5%;
    left: 46.88%;
    top: 18.75%;
}
/* horizontal bar */
.icon-h {
    width: 62.5%;
    height: 2px;
    left: 18.75%;
    top: 46.88%;
}
/* open state: only horizontal, color #1C1917 */
.accordion-icon.open .icon-h { background: #1C1917; }

/* answer — padding 0 24px 24px, gap 16px */
.accordion-body {
    overflow: hidden;
    max-height: 0;
    padding: 0 24px;
    gap: 16px;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.accordion-body.open {
    max-height: 600px;
    padding: 0 24px 24px;
}

/* ============================================
   КОНТАКТЫ
   Figma: bg #78716C, padding 64px 96px, gap 96px
   width 1440px (max 1920px), height 540px
============================================ */

.contact {
    width: calc(100% - 128px);
    max-width: 1600px;
    min-height: 540px;
    background: #57534E;
    padding: 64px 96px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 96px;
    margin: 0 auto;
}

/* ---- Левая колонка: 576px, gap 16px ---- */
.contact-text {
    flex: 0 1 576px;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

/* h2 цвет #FAFAF9 */
.contact-title { color: #FAFAF9; }

/* text-l цвет #FAFAF9 */
.contact-desc { color: #FAFAF9; }

/* h3 цвет #FAFAF9 */
.contact-urgent { color: #FAFAF9; }

/* На десктопе кнопка звонка скрыта */
@media (min-width: 901px) {
    .contact-btns a[href^="tel:"] { display: none; }
}

/* btns: row, gap 16px */
.contact-btns {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    margin-top: 8px;
}
.contact-phone-text {
    color: #FAFAF9;
    font-size: 20px;
    font-weight: 700;
    margin-top: 16px;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

/* ---- Правая колонка: форма 576px, gap 32px ---- */
.contact-form {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    max-width: 576px;
    margin-left: auto;
}

/* Группа двух полей: column, gap 16px, 576px */
.field-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

/* Вертикальное поле: label + input, gap 4px */
.field-vertical {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

/* Метка поля — Manrope 14px/22px, цвет #F9FAFB */
.field-label {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #F9FAFB;
}

/* Инпут — 576px h=40px, bg #FAFAF9, border #D6D3D1 */
.field-input {
    width: 100%;
    height: 40px;
    min-height: 40px;
    padding: 8px 12px;
    background: #FAFAF9;
    border: 1px solid #D6D3D1;
    border-radius: 0;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    line-height: 22px;
    color: #1C1917;
    outline: none;
    transition: border-color 0.2s;
}
.field-input::placeholder { color: #78716C; }
.field-input:focus { border-color: #44403C; }

/* Textarea — 576px h=100px, bg #FAFAF9, border #D6D3D1 */
.field-textarea {
    width: 100%;
    height: 100px;
    padding: 8px 12px;
    background: #FAFAF9;
    border: 1px solid #D6D3D1;
    border-radius: 0;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #78716C;
    resize: none;
    outline: none;
    transition: border-color 0.2s;
}
.field-textarea::placeholder { color: #78716C; }
.field-textarea:focus { border-color: #44403C; }

/* Нижняя часть формы: кнопка + чекбокс, gap 24px */
.form-footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

/* Кнопка отправки — 576px x 46px, bg #EAB308 */
.btn-submit-form {
    width: 100%;
    height: 46px;
    padding: 12px 18px;
    background: #EAB308;
    color: #FAFAF9;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: background 0.2s;
}
.btn-submit-form:hover { background: #CA8A04; }

/* Чекбокс + текст политики, gap 8px */
.field-checkbox {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
}

.checkbox-box {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    position: relative;
    margin-top: 1px;
}
.checkbox-box input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    cursor: pointer;
}
/* Кастомный чекбокс 14x14 bg #FAFAF9, border #D6D3D1 */
.checkbox-box::before {
    content: '';
    position: absolute;
    left: 1px; top: 1px;
    width: 14px; height: 14px;
    background: #FAFAF9;
    border: 1px solid #D6D3D1;
    border-radius: 0;
}
.checkbox-box input:checked + .checkbox-box::before,
.checkbox-box:has(input:checked)::before {
    background: #44403C;
    border-color: #44403C;
}
.checkbox-box:has(input:checked)::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 5px;
    height: 9px;
    border: 2px solid #FAFAF9;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

/* Текст чекбокса — Raleway 12px/16px, цвет #F5F5F4 */
.checkbox-text {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #F5F5F4;
}

/* ============================================
   ФУТЕР
============================================ */

.footer {
    width: 100%;
    background: #FAFAF9;
    padding: 32px 64px;
    border-top: 1px solid #E8E0D3;
}

.footer-inner {
    width: 100%;
    max-width: 1792px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-copy { text-align: center; }
.footer .text-m { color: #1C1917; }
.footer a { color: #1C1917; }
.footer a:hover { color: #44403C; }

/* ============================================
   АДАПТИВ
============================================ */

@media (max-width: 1300px) {
    .contact {
        gap: 48px;
        padding-left: 48px;
        padding-right: 48px;
    }
}

@media (max-width: 1200px) {
    .adv-grid { flex-wrap: wrap; }
    .card-adv { flex: 0 0 calc(50% - 16px); }
}

@media (max-width: 1024px) {
    .header-inner,
    .services,
    .advantages,
    .pricing,
    .faq,
    .footer { padding-left: 40px; padding-right: 40px; }

    .contact { width: calc(100% - 80px); padding-left: 40px; padding-right: 40px; gap: 40px; }

    .banner-card { margin-left: 96px; }
    .about-txt { padding: 48px 40px; }

    .team-inner { padding: 48px 40px; }
}

@media (max-width: 900px) {
    .nav, .header-btn { display: none; }
    .burger { display: flex; }

    .nav.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 110px; left: 0; right: 0;
        background: #FAFAF9;
        padding: 20px 40px;
        gap: 1rem;
        border-bottom: 1px solid #E8E0D3;
        z-index: 99;
    }

    .hero { height: 100svh; min-height: 600px; justify-content: center; }
    .hero-card { margin-left: 0; margin-top: 80px; padding: 32px 24px; align-items: center; text-align: center; }
    .hero-card h1 { font-size: 48px; line-height: 64px; }

    .services-slider { flex-direction: column; }
    .adv-grid { flex-direction: column; }
    .card-adv { flex: none; width: 100%; }
    .pricing-grid { flex-direction: column; }

    .about { flex-direction: column; }
    .about-txt { width: 100%; }
    .about-image { width: 100%; height: 300px; }

    .team-grid { flex-direction: column; align-items: center; }
    .card-person { max-width: 360px; width: 100%; }

    .contact { width: calc(100% - 40px); flex-direction: column; gap: 40px; padding: 48px 32px; }
    .contact-text { width: 100%; }
    .contact-form { max-width: 100%; }

    .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 768px) {
    /* Баннер: колонкой — картинка сверху, карточка сразу под ней */
    .banner {
        height: auto;
        min-height: unset;
        flex-direction: column;
        align-items: stretch;
        overflow: visible;
    }

    /* Оверлей затемнения — только на зоне картинки */
    .banner::before {
        bottom: auto;
        height: 62vw;
    }

    /* Картинка — занимает фиксированную высоту, без кропа */
    .banner-bg {
        position: relative;
        inset: unset;
        width: 100%;
        height: 62vw;
        flex-shrink: 0;
        background-size: cover;
        background-position: center center;
        z-index: 0;
    }

    /* Карточка — сразу под картинкой, никакой пустоты */
    .banner-card {
        position: static;
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: start;
        margin: 0;
        width: 100%;
        max-width: 100%;
        overflow: visible;
        padding: 24px 20px 24px;
        gap: 10px;
        background: rgba(250, 250, 249, 0.97);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border-radius: 0;
    }

    /* Текст в карточке — компактнее */
    .banner-card .text-m {
        font-size: 13px;
        line-height: 18px;
    }

    /* Заголовок ЖК */
    .banner-title-row {
        width: 100%;
        height: auto;
        min-height: unset;
    }
    .banner-title-row .h2 {
        font-size: 24px;
        line-height: 30px;
    }

    /* Детали — две колонки */
    .banner-details {
        flex-direction: row;
        gap: 12px;
    }
    .details-left { gap: 2px; }
    .details-right { text-align: right; gap: 2px; }

    /* Кнопки — в ряд */
    .banner-actions {
        width: 100%;
        flex-direction: row;
        gap: 8px;
    }
    .banner-actions .btn-filled,
    .banner-actions .btn-yellow {
        flex: 1;
        justify-content: center;
        font-size: 14px;
        height: 40px;
        padding: 8px 10px;
        white-space: nowrap;
    }

    /* Навигация по ЖК — в карточке, справа, на уровне метки */
    .banner-nav {
        position: static;
        grid-column: 2;
        grid-row: 1;
        align-self: center;
        width: auto;
        background: transparent;
        border: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        padding: 0;
        gap: 8px;
        flex-direction: row;
        align-items: center;
    }
    .banner-nav .arrow-btn {
        border-color: #44403C;
        width: 28px;
        height: 28px;
        min-width: 28px;
        padding: 5px;
    }
    .banner-nav .arrow-btn svg path { stroke: #44403C; }
    .banner-counter { order: 1; }
    #bannerPrev { order: 2; }
    #bannerNext { order: 3; }
    .banner-counter {
        font-family: 'Forum', serif;
        font-size: 16px;
        font-weight: 400;
        line-height: 1.2;
        color: #1C1917;
        flex: none;
        text-align: right;
    }
    .banner-section-label { grid-column: 1; grid-row: 1; }
    .banner-title-row { grid-column: 1 / -1; }
    .banner-details  { grid-column: 1 / -1; }
    .banner-actions  { grid-column: 1 / -1; }

    /* Табы — по центру на фото */
    .properties-tabs-bar {
        top: 12px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        flex-wrap: nowrap;
        overflow: visible;
        justify-content: center;
        max-width: none;
        gap: 8px;
    }
    .prop-tab {
        padding: 8px 12px;
        font-size: clamp(11px, 3vw, 13px);
        line-height: 1.2;
        flex: none;
        min-width: auto;
        overflow: visible;
        text-overflow: clip;
        white-space: nowrap;
    }

    /* Стрелки — по центру зоны картинки (31vw = половина от 62vw) */
    .photo-arrow {
        top: 31vw;
        transform: translateY(-50%);
        width: 44px;
        height: 44px;
    }
    .photo-arrow-left  { left: 10px; }
    .photo-arrow-right { right: 10px; }

    .photo-counter-badge { display: none; }

    .banner-section-label { font-size: 12px; margin-bottom: 10px; }
}

@media (max-width: 600px) {
    .header-inner,
    .services,
    .advantages,
    .pricing,
    .faq,
    .contact,
    .footer { padding-left: 20px; padding-right: 20px; }

    .h2, h2 { font-size: 32px; line-height: 42px; }
    .h1, h1 { font-size: 36px; line-height: 48px; }
    .h3, h3 { font-size: 22px; line-height: 30px; }

    .about-txt { padding: 40px 20px; }
    .team-inner { padding: 40px 20px; }

    .contact { padding: 40px 20px; }
    .contact-btns { flex-direction: column; }
}

/* ============================================
   ДРОПДАУН «ЖИЛЫЕ КОМПЛЕКСЫ»
============================================ */

.nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-dropdown-trigger {
    cursor: pointer;
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    background: #FAFAF9;
    border: 1px solid #E8E0D3;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    min-width: 220px;
    z-index: 200;
    flex-direction: column;
}

.nav-dropdown.open .nav-dropdown-menu {
    display: flex;
}

.nav-dropdown-item {
    padding: 14px 20px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #44403C;
    text-decoration: none;
    border-bottom: 1px solid #E8E0D3;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}
.nav-dropdown-item:last-child { border-bottom: none; }
.nav-dropdown-item:hover {
    background: #CA8A04;
    color: #FAFAF9;
}

/* На мобильном — показываем как обычные ссылки */
@media (max-width: 900px) {
    .nav-dropdown { display: contents; }
    .nav-dropdown-trigger { display: none; }
    .nav-dropdown-menu {
        display: flex !important;
        flex-direction: column;
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        min-width: 0;
        background: transparent;
        padding-left: 0;
        gap: 1rem;
    }
    .nav-dropdown-item {
        border: 1.5px solid #D6D3D1;
        border-radius: 8px;
        padding: 7px 14px;
        font-size: 15px;
        font-weight: 600;
        color: #44403C;
        transition: background 0.2s, border-color 0.2s, color 0.2s;
    }
    .nav-dropdown-item:hover { background: #F5F5F4; border-color: #78716C; color: #1C1917; }
}

/* ============================================
   МОДАЛЬНОЕ ОКНО ПОЛИТИКИ
============================================ */

.privacy-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.privacy-modal.open { display: flex; }

.privacy-modal-inner {
    position: relative;
    width: 100%;
    max-width: 860px;
    height: 80vh;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}

.privacy-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: #44403C;
    color: #FAFAF9;
    border: none;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: background 0.2s;
}
.privacy-modal-close:hover { background: #1C1917; }

.privacy-modal-frame {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== МОДАЛЬНОЕ ОКНО ОТПРАВКИ ===== */
.send-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 2500;
    align-items: center;
    justify-content: center;
}
.send-modal-overlay.open { display: flex; }
.send-modal {
    background: #FAFAF9;
    border-radius: 20px;
    padding: 44px 36px 36px;
    max-width: 380px;
    width: calc(100% - 48px);
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    animation: modalPop 0.3s ease;
}
@keyframes modalPop {
    from { transform: scale(0.85); opacity: 0; }
    to   { transform: scale(1);    opacity: 1; }
}
.send-modal-icon { font-size: 56px; margin-bottom: 14px; }
.send-modal-title { font-family: 'Forum', serif; font-size: 24px; color: #1C1917; margin-bottom: 10px; }
.send-modal-text  { font-family: 'Manrope', sans-serif; font-size: 15px; color: #4A4440; line-height: 1.6; margin-bottom: 24px; }
.send-modal-btn   { cursor: pointer; display: inline-block; }

/* ===== ЧАТ ===== */
.chat-widget {
    position: fixed;
    bottom: 32px;
    right: 24px;
    z-index: 600;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.chat-toggle {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: #CA8A04;
    border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 20px rgba(202,138,4,0.45);
    position: relative;
    transition: transform 0.2s, background 0.2s;
}
.chat-toggle:hover { transform: scale(1.08); background: #b87a03; }
.chat-unread-badge {
    position: absolute; top: -4px; right: -4px;
    background: #ef4444; color: #fff;
    font-size: 11px; font-weight: 700;
    width: 20px; height: 20px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.chat-panel {
    display: none;
    flex-direction: column;
    width: 320px;
    background: #FAFAF9;
    border-radius: 16px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.18);
    overflow: hidden;
    margin-bottom: 12px;
    border: 1px solid #E8E0D3;
}
.chat-panel.open { display: flex; }
.chat-header {
    background: #1C1917;
    padding: 14px 16px;
    display: flex; align-items: center; justify-content: space-between;
}
.chat-header-info { display: flex; align-items: center; gap: 10px; }
.chat-online-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34,197,94,0.25);
    flex-shrink: 0;
}
.chat-header-title { color: #FAFAF9; font-weight: 700; font-size: 14px; }
.chat-header-sub   { color: #A8A29E; font-size: 12px; margin-top: 1px; }
.chat-close {
    background: none; border: none; color: #A8A29E;
    font-size: 16px; cursor: pointer; line-height: 1; padding: 4px;
}
.chat-close:hover { color: #FAFAF9; }
.chat-start {
    padding: 20px 16px;
    display: flex; flex-direction: column; gap: 12px;
}
.chat-start-text { font-size: 14px; color: #44403C; line-height: 1.5; }
.chat-name-input {
    padding: 10px 12px;
    border: 1.5px solid #E8E0D3;
    border-radius: 8px;
    font-size: 14px; font-family: inherit;
    outline: none; transition: border-color 0.2s;
}
.chat-name-input:focus { border-color: #CA8A04; }
.chat-start-btn { text-align: center; cursor: pointer; border: none; }
.chat-messages {
    flex: 1; overflow-y: auto;
    max-height: 280px; min-height: 160px;
    padding: 12px;
    display: flex; flex-direction: column;
    background: #F5F0E8;
}
.chat-msgs-list { display: flex; flex-direction: column; gap: 8px; }
.chat-msg {
    max-width: 85%;
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 13px; line-height: 1.5;
    word-break: break-word;
}
.chat-msg.visitor {
    align-self: flex-end;
    background: #CA8A04; color: #fff;
    border-bottom-right-radius: 4px;
}
.chat-msg.admin {
    align-self: flex-start;
    background: #fff; color: #1C1917;
    border-bottom-left-radius: 4px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.chat-msg-time { font-size: 10px; opacity: 0.65; margin-top: 3px; }
.chat-input-area {
    display: flex; gap: 8px;
    padding: 10px 12px;
    border-top: 1px solid #E8E0D3;
    background: #FAFAF9;
}
.chat-input {
    flex: 1; padding: 9px 12px;
    border: 1.5px solid #E8E0D3;
    border-radius: 8px; font-size: 14px; font-family: inherit;
    outline: none; transition: border-color 0.2s;
}
.chat-input:focus { border-color: #CA8A04; }
.chat-send-btn {
    width: 38px; height: 38px; flex-shrink: 0;
    background: #CA8A04; border: none; border-radius: 8px;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
}
.chat-send-btn:hover { background: #b87a03; }

/* ===== ПОДАРОК: плавающая кнопка ===== */
@keyframes giftFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-12px); }
}

.gift-widget {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-left: -26px;
    transform: translateY(10px);
}
.gift-widget.hidden { display: none; }

.gift-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    animation: giftFloat 3s ease-in-out infinite;
    transition: transform 0.2s;
}
.gift-btn:hover { transform: scale(1.08); animation-play-state: paused; }

.gift-icon {
    width: 52px;
    height: 52px;
    display: block;
}

/* ===== МОДАЛЬНОЕ ОКНО ПОДАРКА ===== */
.gift-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1500;
    align-items: center;
    justify-content: center;
}
.gift-modal-overlay.open { display: flex; }

.gift-modal {
    background: #FAFAF9;
    border-radius: 20px;
    padding: 40px 36px 36px;
    max-width: 380px;
    width: calc(100% - 48px);
    position: relative;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.gift-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #E8E0D3;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.gift-modal-close:hover { background: #d4c9b8; }

.gift-modal-icon { font-size: 52px; margin-bottom: 12px; }

.gift-modal-title {
    font-family: 'Forum', serif;
    font-size: 26px;
    color: #1C1917;
    margin: 0 0 14px;
}

.gift-modal-text {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    color: #4A4440;
    line-height: 1.6;
    margin: 0 0 24px;
}

.gift-modal-cta {
    display: inline-block;
    text-decoration: none;
}

.checkbox-error {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    color: #ef4444;
    margin-top: 4px;
}

.privacy-link {
    background: none;
    border: none;
    color: #CA8A04;
    font-family: inherit;
    font-size: inherit;
    font-weight: 700;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
    display: inline;
}
.privacy-link:hover { color: #a16207; }

/* ============================================
   ТАБЫ ЖК
============================================ */

.properties-tabs-bar {
    position: absolute;
    top: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 0;
    background: transparent;
    white-space: nowrap;
}

.prop-tab {
    padding: 10px 28px;
    border-radius: 0;
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    background: rgba(28, 25, 23, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 15px;
    line-height: 22px;
    cursor: pointer;
    color: #FAFAF9;
    transition: background 0.2s, border-color 0.2s;
}

.prop-tab:hover:not(.active) {
    background: rgba(28, 25, 23, 0.6);
    border-color: rgba(255, 255, 255, 0.9);
}

.prop-tab.active {
    background: rgba(234, 179, 8, 0.85);
    border-color: rgba(234, 179, 8, 0.9);
    color: #FAFAF9;
}

@media (max-width: 600px) {
    .properties-tabs-bar { top: 12px; gap: 6px; }
    .prop-tab { padding: 7px 10px; font-size: clamp(10px, 2.8vw, 12px); }
}

/* ============================================
   ЛАЙТБОКС ФОТО (мобильный)
============================================ */

.photo-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.93);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}
.photo-lightbox.open { display: flex; }

.photo-lightbox-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y pinch-zoom;
}

.photo-lightbox-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: rgba(28, 25, 23, 0.7);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 1;
    transition: background 0.2s;
}
.photo-lightbox-close:hover { background: rgba(28, 25, 23, 0.95); }

.photo-lightbox-prev,
.photo-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.85);
    font-size: 52px;
    line-height: 1;
    cursor: pointer;
    z-index: 1;
    padding: 0 8px;
}
.photo-lightbox-prev { left: 0; }
.photo-lightbox-next { right: 0; }

/* ===== ПОДСКАЗКА «НАЖМИТЕ ДЛЯ ПРОСМОТРА» ===== */
.photo-zoom-hint {
    display: none;
}

@media (max-width: 900px) {
    .photo-zoom-hint {
        display: block;
        position: absolute;
        left: 20%;
        right: 20%;
        top: calc(62vw - 30px);
        z-index: 3;
        pointer-events: none;
        text-align: center;
        font-family: 'Manrope', sans-serif;
        font-size: 11px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.92);
        background: rgba(0, 0, 0, 0.42);
        padding: 5px 12px;
        border-radius: 4px 4px 0 0;
        letter-spacing: 0.02em;
    }
}
