/* ============ VARIABLES ============ */
:root {
    --color-black: #0a0a0a;
    --color-dark: #1a1a1a;
    --color-white: #ffffff;
    --color-off-white: #f7f7f5;
    --color-gray: #6b6b6b;
    --color-gray-light: #e8e8e6;
    --color-accent: #c9a961; /* premium gold accent, replace if needed */

    --font-main: 'Manrope', 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;

    --container-width: 1200px;
    --radius: 4px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============ RESET ============ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--color-dark);
    background: var(--color-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ============ FIXED BACKGROUND WALLPAPERS ============ */
/* Two full-screen images behind everything. JS toggles opacity based on scroll. */
.bg-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-color: var(--color-dark);
    z-index: -1;
    will-change: opacity;
    transition: opacity 0.1s ease;
}

.bg-layer--1 {
    opacity: 1;
}

.bg-layer--2 {
    opacity: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

img {
    max-width: 100%;
    display: block;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
}

/* ============ LAYOUT ============ */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-label {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 16px;
}

.section-label--light {
    color: var(--color-accent);
}

.section-title {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--color-black);
}

.section-title--light {
    color: var(--color-white);
}

.section-subtitle {
    font-size: 17px;
    color: var(--color-gray);
    max-width: 560px;
    margin-bottom: 60px;
}

/* Sections that need centered header content */
.methods .container > .section-label,
.methods .container > .section-title,
.objects .container > .section-label,
.objects .container > .section-title,
.prices .container > .section-label,
.prices .container > .section-title,
.prices .container > .section-subtitle,
.trust .container > .section-label,
.trust .container > .section-title,
.contacts .container > .section-label,
.contacts .container > .section-title {
    text-align: center;
    display: block;
}

.methods .container > .section-title,
.objects .container > .section-title,
.prices .container > .section-title,
.trust .container > .section-title,
.contacts .container > .section-title {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.prices .container > .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-block;
    padding: 18px 40px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
}

.btn--primary {
    background: var(--color-black);
    color: var(--color-white);
}

.btn--primary:hover {
    background: var(--color-accent);
    color: var(--color-black);
}
/* ============ HEADER ============ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: transparent;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 88px;
    transition: var(--transition);
}

.header.scrolled .header__inner {
    height: 72px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--color-white);
    transition: var(--transition);
    letter-spacing: 0.02em;
}

.header.scrolled .logo {
    color: var(--color-black);
}

.logo__accent {
    color: var(--color-accent);
}

.logo--footer {
    color: var(--color-black);
    font-size: 22px;
}

.nav {
    display: flex;
    gap: 40px;
}

.nav__link {
    font-size: 15px;
    color: var(--color-white);
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.header.scrolled .nav__link {
    color: var(--color-dark);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: var(--transition);
}

.nav__link:hover::after {
    width: 100%;
}

.header__phone {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-white);
    transition: var(--transition);
}

.header.scrolled .header__phone {
    color: var(--color-black);
}

.header__phone:hover {
    color: var(--color-accent);
}

/* Burger - visible only on mobile */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    z-index: 101;
}

.burger span {
    height: 2px;
    width: 100%;
    background: var(--color-white);
    transition: var(--transition);
}

.header.scrolled .burger span {
    background: var(--color-black);
}

.burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--color-black);
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transition: right 0.4s ease;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu__link {
    font-size: 24px;
    color: var(--color-white);
    font-family: var(--font-heading);
}

.mobile-menu__phone {
    margin-top: 20px;
    font-size: 20px;
    color: var(--color-accent);
    font-weight: 600;
}

/* ============ HERO ============ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: transparent; /* wallpaper shows through */
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.65) 100%);
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 2;
    color: var(--color-white);
    max-width: 720px;
}

.hero__badge {
    display: inline-block;
    padding: 8px 18px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 100px;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero__title {
    font-size: 64px;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.hero__subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    max-width: 540px;
    margin-bottom: 40px;
}

.hero__badges {
    display: flex;
    gap: 48px;
    margin-bottom: 48px;
}

.hero__badge-item {
    display: flex;
    flex-direction: column;
}

.hero__badge-num {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--color-accent);
}

.hero__badge-text {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
}

.hero__scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 100px;
}

.hero__scroll-hint span {
    display: block;
    width: 4px;
    height: 8px;
    background: var(--color-white);
    border-radius: 100px;
    margin: 6px auto;
    animation: scrollHint 1.8s infinite;
}

@keyframes scrollHint {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(16px); opacity: 0; }
}
/* ============ ADVANTAGES ============ */
.advantages {
    background: var(--color-off-white);
    padding: 80px 0;
}

.advantages__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 40px;
}

.advantage__icon {
    width: 44px;
    height: 44px;
    margin-bottom: 20px;
    color: var(--color-accent);
}

.advantage__icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.advantage__title {
    font-size: 20px;
    color: var(--color-black);
    margin-bottom: 8px;
}

.advantage__text {
    font-size: 15px;
    color: var(--color-gray);
    max-width: 320px;
}

/* ============ METHODS ============ */
.methods {
    padding: 120px 0;
}

.methods__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.method-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--color-off-white);
    transition: var(--transition);
}

.method-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.method-card__img {
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: var(--color-gray-light); /* fallback while image loads */
}

.method-card__body {
    padding: 32px;
}

.method-card__tag {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 12px;
}

.method-card__title {
    font-size: 22px;
    color: var(--color-black);
    margin-bottom: 12px;
}

.method-card__text {
    font-size: 14px;
    color: var(--color-gray);
    line-height: 1.7;
}

/* ============ OBJECTS ============ */
.objects {
    padding: 120px 0;
    background: var(--color-off-white);
}

.objects__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.object-card {
    position: relative;
    height: 320px;
    border-radius: var(--radius);
    background-size: cover;
    background-position: center;
    background-color: var(--color-dark); /* fallback while image loads */
    overflow: hidden;
}

.object-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.75) 100%);
    transition: var(--transition);
}

.object-card:hover::before {
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.85) 100%);
}

.object-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 28px;
    color: var(--color-white);
    z-index: 1;
}

.object-card__overlay h3 {
    font-size: 22px;
    margin-bottom: 6px;
}

.object-card__overlay span {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
}

/* ============ PRICES ============ */
.prices {
    padding: 120px 0;
}

.prices__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.price-card {
    position: relative;
    height: 260px;
    border-radius: var(--radius);
    background-size: cover;
    background-position: center;
    background-color: var(--color-gray-light); /* fallback while image loads */
    overflow: hidden;
    transition: var(--transition);
}

.price-card:hover {
    transform: translateY(-4px);
}

.price-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.8) 100%);
}

.price-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    color: var(--color-white);
    z-index: 1;
}

.price-card__price {
    display: block;
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--color-accent);
    margin-bottom: 6px;
}

.price-card__title {
    font-size: 18px;
    margin-bottom: 4px;
}

.price-card__text {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}
/* ============ TRUST ============ */
.trust {
    background: var(--color-black);
    padding: 100px 0;
}

.trust__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.trust-item {
    text-align: center;
}

.trust-item__num {
    font-family: var(--font-heading);
    font-size: 56px;
    color: var(--color-white);
}

.trust-item__plus {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--color-accent);
}

.trust-item__text {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-top: 8px;
}

/* ============ CONTACTS ============ */
.contacts {
    padding: 120px 0;
}

.contacts__list {
    max-width: 520px;
    margin: 40px auto 0;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    padding: 32px 40px;
}

.contact-line {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 17px;
    color: var(--color-white);
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.contact-line:last-of-type {
    border-bottom: none;
}

.contact-line:hover {
    color: var(--color-accent);
    padding-left: 8px;
}

.contact-line__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: var(--color-accent);
    flex-shrink: 0;
}

.contact-line__icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.contacts__payment {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

/* ============ FOOTER ============ */
.footer {
    padding: 32px 0;
    border-top: 1px solid var(--color-gray-light);
}

.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer__copy {
    font-size: 13px;
    color: var(--color-gray);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .hero__title {
        font-size: 48px;
    }

    .advantages__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .methods__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .prices__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }

}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav {
        display: none;
    }

    .header__phone {
        display: none;
    }

    .burger {
        display: flex;
    }

    .hero__title {
        font-size: 34px;
    }

    .hero__subtitle {
        font-size: 16px;
    }

    .hero__badges {
        gap: 28px;
    }

    .hero__badge-num {
        font-size: 26px;
    }

    .section-title {
        font-size: 30px;
    }

    .advantages__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .methods__grid {
        grid-template-columns: 1fr;
    }

    .objects__grid {
        grid-template-columns: 1fr;
    }

    .prices__grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .price-card {
        height: 200px;
    }

    .trust__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .trust-item__num {
        font-size: 44px;
    }

    .contacts__list {
        padding: 24px 20px;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 28px;
    }

    .hero__badges {
        flex-direction: column;
        gap: 16px;
    }

    .prices__grid {
        grid-template-columns: 1fr;
    }
}
/* ============ TRANSPARENT SECTIONS (family wallpaper shows through) ============ */
.prices--transparent {
    background: transparent;
    position: relative;
}

.prices--transparent .section-title,
.prices--transparent .section-label {
    color: var(--color-white);
}

.prices--transparent .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.trust--transparent {
    background: transparent;
}

.contacts--transparent {
    background: transparent;
}

.contacts--transparent .section-title {
    color: var(--color-white);
}

.contacts--transparent .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.footer--transparent {
    background: rgba(0, 0, 0, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer--transparent .logo--footer,
.footer--transparent .logo--footer .logo__accent {
    color: var(--color-white);
}

.footer--transparent .footer__copy {
    color: rgba(255, 255, 255, 0.6);
}

/* Dark overlay behind transparent sections so text stays readable over any wallpaper */
.prices--transparent::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.45) 100%);
    z-index: 0;
    pointer-events: none;
}

.prices--transparent .container {
    position: relative;
    z-index: 1;
}

.trust--transparent {
    position: relative;
}

.trust--transparent::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 0;
    pointer-events: none;
}

.trust--transparent .container {
    position: relative;
    z-index: 1;
}

.contacts--transparent {
    position: relative;
}

.contacts--transparent::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 0;
    pointer-events: none;
}

.contacts--transparent .container {
    position: relative;
    z-index: 1;
}

/* iOS fix: fixed backgrounds glitch on Safari mobile — use scroll-based JS switching instead */
@supports (-webkit-touch-callout: none) {
    .bg-layer {
        position: absolute;
        height: 100%;
    }
}

/* ============ LICENSE SECTION ============ */
.license {
    padding: 100px 0;
    position: relative;
}

.license--transparent {
    background: transparent;
}

.license--transparent::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 0;
    pointer-events: none;
}

.license--transparent .container {
    position: relative;
    z-index: 1;
}

.license--transparent .section-title,
.license--transparent .section-label {
    color: var(--color-white);
}

.license--transparent .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}

.license__card {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 48px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    padding: 40px;
    align-items: center;
}

.license__preview {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--color-white);
    transition: var(--transition);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.license__preview img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.license__preview:hover img {
    transform: scale(1.03);
}

.license__zoom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 14px;
    background: rgba(0, 0, 0, 0.75);
    color: var(--color-white);
    text-align: center;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(100%);
    transition: var(--transition);
}

.license__preview:hover .license__zoom {
    opacity: 1;
    transform: translateY(0);
}

.license__info {
    color: var(--color-white);
}

.license__row {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.license__row:first-child {
    padding-top: 0;
}

.license__label {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
    font-weight: 600;
}

.license__value {
    font-size: 16px;
    color: var(--color-white);
    font-weight: 500;
}

.license__btn {
    margin-top: 24px;
    background: var(--color-accent);
    color: var(--color-black);
}

.license__btn:hover {
    background: var(--color-white);
}

@media (max-width: 1024px) {
    .license__card {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px;
    }

    .license__preview {
        max-width: 320px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .license {
        padding: 70px 0;
    }

    .license__card {
        padding: 24px;
    }

    .license__value {
        font-size: 15px;
    }
}

/* ============ LEAD FORM ============ */
.lead {
    padding: 100px 0 120px;
    position: relative;
}

.lead--transparent {
    background: transparent;
}

.lead--transparent::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
    pointer-events: none;
}

.lead--transparent .container {
    position: relative;
    z-index: 1;
}

.lead--transparent .section-title,
.lead--transparent .section-label {
    color: var(--color-white);
    text-align: center;
    display: block;
}

.lead--transparent .section-title {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.lead--transparent .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    max-width: 560px;
    margin: 0 auto 50px;
}

.lead__form {
    max-width: 640px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    padding: 40px;
    position: relative;
}

.lead__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.lead__field {
    display: block;
    margin-bottom: 20px;
}

.lead__row .lead__field {
    margin-bottom: 0;
}

.lead__label {
    display: block;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 10px;
}

.lead__input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    color: var(--color-white);
    font-family: var(--font-main);
    font-size: 15px;
    transition: var(--transition);
    outline: none;
}

.lead__input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.lead__input:focus {
    border-color: var(--color-accent);
    background: rgba(255, 255, 255, 0.08);
}

.lead__input.error {
    border-color: #e05252;
    background: rgba(224, 82, 82, 0.08);
}

.lead__select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23c9a961' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 44px;
    cursor: pointer;
}

.lead__select option {
    background: var(--color-dark);
    color: var(--color-white);
}

.lead__textarea {
    resize: vertical;
    min-height: 100px;
    font-family: var(--font-main);
}

.lead__submit-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: 32px;
}

.lead__btn {
    background: var(--color-accent);
    color: var(--color-black);
    min-width: 260px;
}

.lead__btn:hover {
    background: var(--color-white);
    color: var(--color-black);
}

.lead__btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.lead__policy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    max-width: 400px;
    line-height: 1.5;
}

.lead__success {
    display: none;
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
    z-index: 2;
}

.lead__success.active {
    display: flex;
}

.lead__success svg {
    width: 64px;
    height: 64px;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.lead__success h3 {
    font-size: 26px;
    color: var(--color-white);
    margin-bottom: 8px;
}

.lead__success p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    .lead {
        padding: 70px 0 80px;
    }

    .lead__form {
        padding: 28px 20px;
    }

    .lead__row {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }

    .lead__row .lead__field {
        margin-bottom: 0;
    }

    .lead__btn {
        min-width: 100%;
    }
}