:root {
    --bg: #08090d;
    --bg-soft: #0f1117;
    --card: rgba(255, 255, 255, 0.06);
    --card-border: rgba(255, 255, 255, 0.12);
    --text: #ffffff;
    --muted: rgba(255, 255, 255, 0.72);
    --accent: #d4af37;
    --accent-2: #f2d675;
    --danger: #b8891f;
    --radius: 22px;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    --container: 1200px;
    --gold-soft: rgba(212, 175, 55, 0.16);
    --gold-border: rgba(212, 175, 55, 0.34);
    --gold-glow: rgba(212, 175, 55, 0.22);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", "Segoe UI", sans-serif;
    background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.08), transparent 28%), radial-gradient(circle at bottom right, rgba(242, 214, 117, 0.06), transparent 25%), #050505;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
.logo__text,
.hero__badge,
.section-tag {
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
}

.nav__cta,
.btn {
    font-family: "Inter", "Segoe UI", sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
    border: none;
    outline: none;
}

.container {
    width: min(var(--container), calc(100% - 32px));
    margin-inline: auto;
}

.section {
    padding: 110px 0;
}

.section-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 52px;
}

.section-head h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.05;
    margin-bottom: 12px;
}

.section-head p {
    color: var(--muted);
}

.section-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 14px;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--accent);
    text-shadow: 0 0 18px var(--gold-glow);
    text-transform: uppercase;
    letter-spacing: 0.22em;
}

.section-tag::before {
    content: "";
    width: 46px;
    height: 1px;
    background: linear-gradient(90deg, var(--accent), rgba(212, 175, 55, 0));
}

.cta-box .section-tag::before {
    display: block;
}

.bg-orb {
    position: fixed;
    inset: auto;
    border-radius: 999px;
    filter: blur(80px);
    pointer-events: none;
    opacity: 0.25;
    z-index: -1;
}

.orb-1 {
    width: 260px;
    height: 260px;
    top: 120px;
    left: -60px;
    background: rgba(212, 175, 55, 0.7);
}

.orb-2 {
    width: 320px;
    height: 320px;
    right: -100px;
    bottom: 80px;
    background: rgba(242, 214, 117, 0.55);
}

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(16px);
    background: rgba(5, 5, 5, 0.72);
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.header.scrolled {
    background: rgba(5, 5, 5, 0.92);
}

.header__wrap {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.logo__mark {
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    box-shadow: none;
    overflow: visible;
    flex-shrink: 0;
}

.logo__mark img {
    display: block;
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
    margin: 0;
    transform: scale(1.08);
    transform-origin: center;
    filter: brightness(0) saturate(100%) invert(77%) sepia(51%) saturate(844%) hue-rotate(7deg) brightness(101%) contrast(97%) drop-shadow(0 0 10px rgba(212, 175, 55, 0.18));
}

.logo__text {
    font-size: 1.18rem;
    line-height: 1;
    color: var(--accent-2);
    text-shadow: 0 0 18px rgba(212, 175, 55, 0.16);
}

.nav {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
}

.nav a {
    color: var(--muted);
    transition: 0.25s ease;
}

.nav a:hover {
    color: var(--accent-2);
}

.lang-dropdown {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    margin-left: 4px;
}

.lang-dropdown__toggle {
    min-width: 84px;
    height: 44px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    text-align: center;
    justify-content: space-between;
    gap: 10px;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.07);
    border: 1px solid rgba(212, 175, 55, 0.16);
    color: var(--accent-2);
    cursor: pointer;
    font-weight: 700;
    letter-spacing: 0.04em;
    box-shadow: inset 0 0 0 1px rgba(255, 223, 128, 0.03);
    transition: 0.25s ease;
}

.lang-dropdown__toggle:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(242, 214, 117, 0.28);
}

.lang-dropdown__arrow {
    font-size: 0.9rem;
    line-height: 1;
    transition: transform 0.25s ease;
}

.lang-dropdown.open .lang-dropdown__arrow {
    transform: rotate(180deg);
}

.lang-dropdown__menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 170px;
    padding: 8px;
    display: grid;
    gap: 6px;
    border-radius: 18px;
    background: rgba(5, 5, 5, 0.96);
    border: 1px solid rgba(212, 175, 55, 0.16);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 30;
}

.lang-dropdown.open .lang-dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown__item {
    width: 100%;
    min-height: 42px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    border-radius: 12px;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    text-align: left;
    font-weight: 600;
    transition: 0.22s ease;
}

.lang-dropdown__item:hover {
    color: var(--accent-2);
    background: rgba(212, 175, 55, 0.08);
}

.lang-dropdown__item--active {
    color: #111111;
    background: linear-gradient(135deg, #f2d675, #d4af37);
    box-shadow: 0 8px 18px rgba(212, 175, 55, 0.16);
}

.nav__cta {
    padding: 12px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.16), rgba(242, 214, 117, 0.1));
    border: 1px solid var(--gold-border);
    color: var(--accent-2) !important;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.burger {
    display: none;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    cursor: pointer;
}

.burger span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: #fff;
    transition: 0.3s ease;
}

.hero {
    position: relative;
    min-height: calc(100vh - 82px);
    display: flex;
    align-items: center;
    padding: 80px 0 60px;
    overflow: hidden;
    isolation: isolate;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background: url("./img/bg_hero.jpeg") center center / cover no-repeat;
    transform: scale(1.02);
    filter: none;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(5, 5, 5, 0.56) 0%, rgba(5, 5, 5, 0.36) 38%, rgba(5, 5, 5, 0.48) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.32));
}

.hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
}

.hero__badge {
    display: inline-flex;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.08);
    color: var(--accent-2);
    font-size: 1.02rem;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
    border: 1px solid var(--gold-border);
    box-shadow: 0 0 22px rgba(212, 175, 55, 0.08);
}

.hero h1 {
    font-size: clamp(2.8rem, 5vw, 5.7rem);
    line-height: 0.95;
    margin-bottom: 20px;
    letter-spacing: -0.04em;
}

.hero h1 span {
    display: block;
    color: rgba(255, 255, 255, 0.78);
}

.hero__text {
    max-width: 620px;
    color: var(--muted);
    font-size: 1.08rem;
    margin-bottom: 30px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 36px;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    gap: 10px;
    min-height: 56px;
    padding: 0 24px;
    border-radius: 16px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    appearance: none;
    vertical-align: middle;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn--primary {
    background: linear-gradient(135deg, #f2d675, #d4af37);
    color: #111111;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.22);
    border: 1px solid rgba(255, 223, 128, 0.28);
}

.btn--ghost {
    background: rgba(212, 175, 55, 0.05);
    color: #fff;
    border: 1px solid rgba(212, 175, 55, 0.18);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

.hero__stats {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.stat {
    min-width: 140px;
    padding: 20px;
    border-radius: 20px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.16);
    box-shadow: inset 0 0 0 1px rgba(255, 223, 128, 0.03);
}

.stat strong {
    display: block;
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 8px;
}

.stat span {
    color: var(--muted);
    font-size: 0.92rem;
}

.hero__card {
    display: flex;
    justify-content: center;
}

.glass-card {
    width: 100%;
    max-width: 470px;
    padding: 18px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.07), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(212, 175, 55, 0.18);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(212, 175, 55, 0.08);
    backdrop-filter: blur(18px);
}

.glass-card__window {
    position: relative;
    z-index: 2;
    height: 420px;
    margin-inline: 22px;
    border-radius: 120px 120px 24px 24px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(18, 27, 36, 0.9), rgba(7, 10, 15, 0.96));
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.42), 0 20px 36px rgba(0, 0, 0, 0.24);
}

.glass-card__shine {
    position: absolute;
    inset: -16%;
    background: linear-gradient(118deg, transparent 18%, rgba(255, 255, 255, 0.18) 34%, rgba(255, 255, 255, 0.04) 48%, transparent 64%);
    transform: rotate(10deg);
    animation: shine 5.5s linear infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-60%) rotate(10deg);
    }
    100% {
        transform: translateX(60%) rotate(10deg);
    }
}

.glass-card__label {
    position: absolute;
    left: 20px;
    bottom: 20px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(10, 10, 10, 0.72);
    border: 1px solid rgba(212, 175, 55, 0.18);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.glass-card__label small {
    display: block;
    color: var(--muted);
    margin-bottom: 4px;
}

.glass-card__bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.glass-card__bottom div {
    padding: 14px;
    border-radius: 18px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.14);
}

.glass-card__bottom p {
    color: var(--muted);
    font-size: 0.78rem;
    margin-bottom: 6px;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.card {
    flex: 0 1 280px;
    padding: 28px;
    width: 100%;
    max-width: 280px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.05), rgba(255, 255, 255, 0.025));
    border: 1px solid rgba(212, 175, 55, 0.14);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    border-color: rgba(242, 214, 117, 0.45);
    box-shadow: 0 24px 44px rgba(0, 0, 0, 0.42), 0 0 26px rgba(212, 175, 55, 0.08);
}

.card__icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(242, 214, 117, 0.18), rgba(212, 175, 55, 0.12));
    margin-bottom: 18px;
    font-weight: 800;
    color: var(--accent-2);
    border: 1px solid rgba(212, 175, 55, 0.16);
}

.card h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.card p {
    color: var(--muted);
}

.benefits__grid,
.contact__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: center;
    justify-items: center;
    max-width: 700px;
    margin: 0 auto;
}

.benefits__content h2,
.contact__info h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.05;
    margin-bottom: 16px;
    text-align: center;
}

.benefits__content p,
.contact__info p {
    color: var(--muted);
    margin-bottom: 24px;
}

.benefits__list {
    display: grid;
    gap: 14px;
    list-style: none;
}

.benefits__list li {
    position: relative;
    padding-left: 26px;
}

.benefits__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, #f2d675, #d4af37);
}

.panel {
    padding: 28px;
    border-radius: 28px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.06), rgba(255, 255, 255, 0.025));
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.panel__line {
    margin-bottom: 22px;
}

.panel__line span {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
}

.line-fill {
    height: 14px;
    border-radius: 999px;
    background: linear-gradient(90deg, #8f6a17, #d4af37);
}

.line-fill--low {
    width: 42%;
}

.line-fill--high {
    width: 92%;
    background: linear-gradient(90deg, #f2d675, #d4af37);
}

.panel__note {
    margin-top: 12px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.timeline__item {
    position: relative;
    padding: 28px;
    min-height: 220px;
    border-radius: 26px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.14);
}

.timeline__item span {
    display: inline-grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    margin-bottom: 18px;
    font-weight: 800;
    color: #111111;
    background: linear-gradient(135deg, #f2d675, #d4af37);
    border: 1px solid rgba(255, 223, 128, 0.28);
}

.timeline__item h3 {
    margin-bottom: 10px;
}

.timeline__item p {
    color: var(--muted);
}

.cta-box {
    padding: 60px 50px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 28px;
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.16), rgba(242, 214, 117, 0.08)), rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.24);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), 0 0 40px rgba(212, 175, 55, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.05), transparent 50%);
    pointer-events: none;
}

.cta-box:hover {
    border-color: rgba(242, 214, 117, 0.34);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 50px rgba(212, 175, 55, 0.15);
    transform: translateY(-4px);
}

.cta-box h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.05;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.cta-box p {
    color: var(--muted);
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.cta-box .section-tag {
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}

.cta-box .btn {
    min-width: 280px;
    padding: 0 36px;
    min-height: 60px;
    font-size: 1.05rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 16px 40px rgba(212, 175, 55, 0.25);
}

.cta-box .btn--primary:hover {
    box-shadow: 0 24px 60px rgba(212, 175, 55, 0.35);
    transform: translateY(-4px);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 18px;
}

.faq-item {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.14);
    background: rgba(212, 175, 55, 0.05);
}

.faq-question {
    width: 100%;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-weight: 700;
    text-align: left;
}

.faq-question span {
    font-size: 1.4rem;
    transition: transform 0.25s ease;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer p {
    padding: 0 24px 22px;
    color: var(--muted);
}

.contact__items {
    display: grid;
    gap: 12px;
}

.contact__items a {
    color: #fff;
    opacity: 0.85;
}

.form {
    padding: 26px;
    border-radius: 28px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.14);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.38);
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.form__phone-group {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.form__country-select {
    flex-shrink: 0;
    border-radius: 18px;
    padding: 18px 14px;
    background: rgba(10, 10, 10, 0.72);
    color: #fff;
    border: 1px solid rgba(212, 175, 55, 0.14);
    cursor: pointer;
    font-family: "Inter", "Segoe UI", sans-serif;
    font-size: 14px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    width: auto;
    min-width: 120px;
}

.form__country-select:hover {
    border-color: rgba(212, 175, 55, 0.24);
}

.form__country-select:focus {
    outline: none;
    border-color: rgba(212, 175, 55, 0.34);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.15);
}

.form__phone-input {
    flex: 1;
}

.form input,
.form textarea {
    width: 100%;
    border-radius: 18px;
    padding: 18px 18px;
    background: rgba(10, 10, 10, 0.72);
    color: #fff;
    border: 1px solid rgba(212, 175, 55, 0.14);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form input:focus,
.form textarea:focus {
    outline: none;
    border-color: rgba(212, 175, 55, 0.34);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.15);
}

.form textarea {
    min-height: 160px;
    resize: vertical;
    margin-bottom: 14px;
}

.form input::placeholder,
.form textarea::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.form__message {
    padding: 14px 16px;
    border-radius: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 500;
    animation: slideDown 0.3s ease;
}

.form__message.success {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.form__message.error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.form__message.loading {
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #3b82f6;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer {
    padding: 28px 0 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.12);
}

.footer__wrap {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    color: var(--muted);
}

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

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

.glass-card__house {
    position: relative;
    padding-top: 52px;
    padding-inline: 18px;
}

.glass-card__wall {
    position: absolute;
    inset: 48px 0 0;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(36, 28, 16, 0.92), rgba(16, 13, 9, 0.98));
    border: 1px solid rgba(212, 175, 55, 0.14);
    box-shadow: inset 0 0 0 1px rgba(255, 223, 128, 0.03);
}

.glass-card__roof {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 88%;
    height: 94px;
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    background: linear-gradient(180deg, rgba(255, 226, 132, 0.34), rgba(212, 175, 55, 0.14));
    border: 1px solid rgba(212, 175, 55, 0.22);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
    z-index: 1;
}

.glass-card__tint {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(78, 122, 158, 0.16), rgba(10, 16, 22, 0.06) 30%, rgba(4, 7, 10, 0.34) 100%), linear-gradient(90deg, rgba(0, 0, 0, 0.22), rgba(255, 255, 255, 0.02) 48%, rgba(0, 0, 0, 0.26));
    backdrop-filter: blur(1px);
}

.glass-card__frame {
    position: absolute;
    inset: 18px;
    border-radius: 104px 104px 18px 18px;
    border: 4px solid rgba(212, 175, 55, 0.24);
    pointer-events: none;
}

.glass-card__frame::before,
.glass-card__frame::after {
    content: "";
    position: absolute;
    background: rgba(212, 175, 55, 0.22);
}

.glass-card__frame::before {
    width: 4px;
    height: calc(100% - 24px);
    left: 50%;
    top: 12px;
    transform: translateX(-50%);
}

.glass-card__frame::after {
    width: calc(100% - 24px);
    height: 4px;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
}

.glass-card__sill {
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: 16px;
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 223, 128, 0.92), rgba(212, 175, 55, 0.62));
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.24);
}

@media (max-width: 1100px) {
    .hero__grid,
    .benefits__grid,
    .contact__grid,
    .timeline {
        grid-template-columns: 1fr 1fr;
    }
    .hero {
        min-height: auto;
        padding-top: 60px;
        padding-bottom: 80px;
    }
}

@media (max-width: 820px) {
    .nav {
        position: absolute;
        top: 82px;
        right: 16px;
        width: min(300px, calc(100% - 32px));
        padding: 20px;
        border-radius: 22px;
        background: rgba(5, 5, 5, 0.97);
        border: 1px solid rgba(212, 175, 55, 0.16);
        box-shadow: var(--shadow);
        gap: 14px;
        margin-left: 0;
        display: none;
        flex-direction: column;
        align-items: flex-start;
    }
    .nav.active {
        display: flex;
    }
    .burger {
        display: block;
    }
    .hero__grid,
    .benefits__grid,
    .contact__grid,
    .timeline,
    .glass-card__bottom,
    .form__row,
    .cta-box {
        grid-template-columns: 1fr;
    }
    .cta-box {
        display: grid;
    }
    .hero h1 {
        font-size: clamp(2.4rem, 11vw, 4rem);
    }
    .section {
        padding: 85px 0;
    }
    .logo {
        gap: 10px;
    }
    .logo__mark {
        width: 54px;
        height: 54px;
    }
    .logo__text {
        font-size: 1rem;
    }
    .hero__bg {
        transform: scale(1.01);
        filter: none;
    }
    .hero__overlay {
        background: linear-gradient(180deg, rgba(5, 5, 5, 0.52) 0%, rgba(5, 5, 5, 0.34) 38%, rgba(5, 5, 5, 0.6) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.34));
    }
    .lang-dropdown {
        width: 100%;
        margin-left: 0;
    }
    .lang-dropdown__toggle {
        width: 100%;
    }
    .lang-dropdown__menu {
        position: static;
        min-width: 100%;
        margin-top: 8px;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        padding: 0;
        border-radius: 16px;
    }
    .lang-dropdown.open .lang-dropdown__menu {
        opacity: 1;
        visibility: visible;
        max-height: 220px;
        padding: 8px;
    }
    .lang-dropdown__item {
        min-height: 40px;
    }
    .glass-card__house {
        padding-top: 40px;
        padding-inline: 10px;
    }
    .glass-card__roof {
        height: 74px;
        width: 90%;
    }
    .glass-card__window {
        height: 360px;
        margin-inline: 12px;
        border-radius: 92px 92px 20px 20px;
    }
    .section-tag {
        font-size: 0.98rem;
        letter-spacing: 0.16em;
    }
    .hero__badge {
        font-size: 0.94rem;
    }
    .btn,
    .nav__cta {
        text-align: center;
        justify-content: center;
    }
}