/* ============================================
   ЗЕМЕЛЬНЫЙ УЧАСТОК ТАБЛОВО
   High-Conversion Architectural Style v4.0
   ============================================ */

:root {
    --color-bg: #fdfdfc;
    --color-dark: #121212;
    --color-text: #2c2c2c;
    --color-muted: #666666;
    --color-line: rgba(18, 18, 18, 0.08);
    --color-accent: #000000;
    --color-card-bg: #ffffff;

    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 40px;
    --space-lg: 80px;
    --space-xl: 130px;
    /* Скорректирован для устранения избыточной пустоты */
    /* Увеличенный отступ для ритма */

    --color-bg: #ffffff;
    --color-bg-alt: #e5e7eb;
    /* Гарантированно заметный серый для структуры */
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.header-mobile,
.sticky-cta-mobile {
    display: none;
}


.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section {
    padding: var(--space-xl) 0;
}

.section.bg-alt {
    background: var(--color-bg-alt);
}

.section-num {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-dark);
    opacity: 0.3;
    letter-spacing: 0.2em;
    margin-bottom: var(--space-sm);
    /* Уплотнено */
}

/* ============================================
   Typography
   ============================================ */
h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: white;
    margin-bottom: var(--space-sm);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 300;
    color: var(--color-dark);
    line-height: 1.2;
    margin-bottom: var(--space-md);
    /* Уменьшено с lg для плотности */
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: var(--space-sm);
    letter-spacing: -0.01em;
}

.features-text-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md) var(--space-lg);
    margin-top: var(--space-md);
}

.feature-item p {
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--color-text);
}

.feature-item strong {
    font-weight: 600;
    color: var(--color-dark);
}

@media (max-width: 768px) {
    .features-text-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 22px 54px;
    background: white;
    color: var(--color-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    display: inline-block;
    padding: 19px 40px;
    border: 1px solid var(--color-dark);
    color: var(--color-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-outline:hover {
    background: var(--color-dark);
    color: white;
}

.btn-text {
    font-weight: 600;
    color: var(--color-dark);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.btn-text:hover {
    border-color: var(--color-dark);
}

/* ============================================
   Hero
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #000;
    color: white;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    /* Вернул свет и детали оригинального фото */
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    /* Умный градиент: плотность слева для текста, свет справа для глубины фото */
    background: linear-gradient(to right,
            rgba(0, 12, 28, 0.75) 0%,
            rgba(0, 12, 28, 0.4) 40%,
            rgba(0, 12, 28, 0) 80%),
        linear-gradient(to bottom,
            rgba(0, 12, 28, 0.3) 0%,
            transparent 25%);
    z-index: 1;
}

/* Snowflake Effect (Desktop Only) */
.winter-atmosphere {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    top: -10px;
    background: white;
    border-radius: 50%;
    opacity: 0.3;
    pointer-events: none;
    animation: snowfall linear infinite;
}

/* Screen Size Guard */
@media (max-width: 1024px) {
    .winter-atmosphere {
        display: none;
    }
}

.sf-1 {
    left: 10%;
    width: 4px;
    height: 4px;
    animation-duration: 25s;
    animation-delay: -2s;
    opacity: 0.2;
}

.sf-2 {
    left: 30%;
    width: 3px;
    height: 3px;
    animation-duration: 35s;
    animation-delay: -5s;
    opacity: 0.15;
}

.sf-3 {
    left: 55%;
    width: 5px;
    height: 5px;
    animation-duration: 30s;
    animation-delay: -10s;
    opacity: 0.25;
}

.sf-4 {
    left: 75%;
    width: 3px;
    height: 3px;
    animation-duration: 40s;
    animation-delay: -1s;
    opacity: 0.1;
}

.sf-5 {
    left: 85%;
    width: 4px;
    height: 4px;
    animation-duration: 28s;
    animation-delay: -15s;
    opacity: 0.2;
}

.sf-6 {
    left: 95%;
    width: 2px;
    height: 2px;
    animation-duration: 45s;
    animation-delay: -3s;
    opacity: 0.15;
}

@keyframes snowfall {
    0% {
        transform: translateY(-20px) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: inherit;
    }

    90% {
        opacity: inherit;
    }

    100% {
        transform: translateY(110vh) translateX(30px);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    padding-top: var(--space-lg);
    padding-bottom: var(--space-lg);
}

.header {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
}

.header-phone {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-text-area {
    max-width: 900px;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-lg);
    line-height: 1.4;
    max-width: 700px;
}

.hero-benefits-list {
    margin-bottom: var(--space-lg);
    border-left: 2px solid rgba(255, 255, 255, 0.3);
    padding: 8px 0 8px var(--space-md);
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 600px;
}

.hero-benefits-list p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.03em;
    font-weight: 400;
}

.hero-price-info {
    margin-bottom: var(--space-lg);
}

.price-val {
    display: block;
    font-size: 1.5rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-actions {
    margin-top: var(--space-md);
}

.btn-subtext {
    margin-top: 16px;
    font-size: 0.9rem;
    opacity: 0.5;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* ============================================
   Forms Styling
   ============================================ */
.card-form {
    background: white;
    padding: var(--space-lg);
    border: 1px solid var(--color-line);
}

.docs-form-wrap {
    margin-top: var(--space-md);
}

.form-intro {
    text-align: center;
    color: var(--color-muted);
    margin-bottom: var(--space-md);
    font-size: 1rem;
}

.card-form h3 {
    text-align: center;
    margin-bottom: 12px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
}

.form-grid input,
.form-grid select,
.form-grid textarea {
    padding: 18px;
    border: 1px solid var(--color-line);
    font-family: var(--font-main);
    font-size: 1rem;
    background: #fafafa;
}

.form-grid textarea {
    grid-column: span 2;
    height: 120px;
    resize: none;
}

.checkbox-label {
    grid-column: span 2;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    cursor: pointer;
    color: var(--color-text);
}

.form-grid .btn {
    grid-column: span 2;
    background: var(--color-dark);
    color: white;
}

/* ============================================
   Partnership Block (Compact Split)
   ============================================ */
.partner-form-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: var(--space-md);
    align-items: flex-start;
}

.partner-text h2 {
    text-align: left;
    margin-bottom: var(--space-md);
    max-width: none;
}

.partner-benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: var(--space-md);
}

.partner-benefits-list li {
    font-size: 1.05rem;
    color: var(--color-text);
    padding-left: 28px;
    position: relative;
    line-height: 1.6;
}

.partner-benefits-list li::before {
    content: '―';
    position: absolute;
    left: 0;
    top: 0.1em;
    /* Идеальное выравнивание по линии шрифта */
    color: var(--color-line);
}

.compact-form input,
.compact-form select,
.compact-form textarea {
    padding: 14px;
    font-size: 0.95rem;
}

/* ============================================
   Viewing Block (Centered & Airy)
   ============================================ */
.view-form-center {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.view-form-center h3 {
    margin-bottom: 8px;
}

.view-sub {
    font-size: 1.1rem;
    color: var(--color-muted);
    margin-bottom: var(--space-md);
    line-height: 1.5;
}

.card-form-compact {
    max-width: 550px;
    margin: 0 auto;
    padding: var(--space-md);
    border: 1px solid var(--color-line);
    background: white;
}

.full-width {
    grid-column: span 2;
}

@media (max-width: 600px) {
    .full-width {
        grid-column: span 1;
    }
}

@media (max-width: 900px) {
    .partner-form-layout {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
}

.options-architecture h2 {
    margin-bottom: var(--space-lg);
}

.comparison-layout {
    display: grid;
    grid-template-columns: 1fr 1fr 1.4fr;
    gap: var(--space-md);
    align-items: stretch;
    margin-bottom: var(--space-md);
}

.comp-item {
    padding: var(--space-md);
    border: 1px solid var(--color-line);
    background: #fafafa;
    display: flex;
    flex-direction: column;
}

.comp-divider {
    display: none;
}

.comp-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-muted);
    margin-bottom: var(--space-sm);
}

.comp-area {
    display: block;
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1.1;
    color: var(--color-dark);
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

.comp-specs {
    list-style: none;
    color: var(--color-muted);
    font-size: 0.95rem;
}

.comp-specs li {
    margin-bottom: 6px;
    line-height: 1.3;
}

.comp-item.featured {
    background: var(--color-dark);
    color: white;
    padding: var(--space-md);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: none;
}

.comp-item.featured .comp-area {
    font-size: 3.5rem;
    color: white;
}

.comp-item.featured .comp-label,
.comp-item.featured .comp-specs {
    color: rgba(255, 255, 255, 0.7);
}

.comp-details {
    max-width: 400px;
}

.comp-details p {
    margin-bottom: 8px;
    font-size: 1.15rem;
    line-height: 1.4;
    color: white;
}

.comp-mobile-cta {
    display: block;
    margin-top: auto;
    /* Push to bottom */
    padding: 18px 24px;
    background: white;
    color: var(--color-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    transition: all 0.3s ease;
}

.comp-mobile-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.comp-item:not(.featured) .comp-mobile-cta {
    background: var(--color-dark);
    color: white;
}

.comp-note {
    font-size: 0.85rem !important;
    color: var(--color-muted);
    margin-top: var(--space-sm);
    font-style: italic;
}

.comparison-cta {
    margin-top: var(--space-md);
    text-align: right;
}

/* ============================================
   Audience Section (Tabs)
   ============================================ */
.tabs-nav {
    display: flex;
    gap: var(--space-md);
    border-bottom: 2px solid var(--color-line);
    margin-bottom: var(--space-lg);
}

.tab-btn {
    padding: 16px 0;
    border: none;
    background: none;
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-muted);
    cursor: pointer;
    position: relative;
}

.tab-btn.active {
    color: var(--color-dark);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-dark);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.audience-list {
    list-style: none;
    max-width: 800px;
}

.audience-list li {
    font-size: 1.2rem;
    margin-bottom: var(--space-md);
    padding-left: 24px;
    position: relative;
}

.audience-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.4em;
    bottom: 0.4em;
    width: 2px;
    background: var(--color-dark);
}

.panel-cta {
    margin-top: var(--space-lg);
}

/* ============================================
   Passport / Specs
   ============================================ */
.passport-grid {
    display: flex;
    flex-direction: column;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--color-line);
}

.spec-row span {
    color: var(--color-muted);
}

.spec-row strong {
    font-weight: 500;
}

/* ============================================
   Card Accent & Docs
   ============================================ */
.card-accent {
    background: #f0f0ee;
    padding: var(--space-md) var(--space-lg);
}

.card-accent h2 {
    margin-bottom: var(--space-sm);
}

.docs-list {
    list-style: none;
    margin: var(--space-sm) 0 var(--space-md);
}

.docs-list li {
    margin-bottom: 4px;
    font-weight: 500;
}

.docs-cta {
    margin-top: var(--space-lg);
}

.microtext {
    font-size: 0.85rem;
    color: var(--color-muted);
    margin-top: var(--space-sm);
}

/* ============================================
   Compact adjustments for specific sections
   ============================================ */
.docs-trust-section {
    padding-top: var(--space-lg);
    padding-bottom: var(--space-lg);
}

.docs-trust-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: var(--space-lg);
    align-items: flex-start;
}

.docs-info h2 {
    text-align: left;
    margin-bottom: var(--space-md);
}

.docs-desc {
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--color-muted);
    margin-bottom: var(--space-md);
    max-width: 520px;
}

.docs-trust-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.docs-trust-list li {
    font-size: 1.05rem;
    padding-left: 24px;
    position: relative;
    line-height: 1.4;
    color: var(--color-text);
}

.docs-trust-list li::before {
    content: '―';
    position: absolute;
    left: 0;
    color: var(--color-line);
}

.docs-trust-list strong {
    font-weight: 500;
    color: var(--color-dark);
}

.docs-form-box {
    background: white;
    padding: var(--space-md);
    border: 1px solid var(--color-line);
}

/* ============================================
   Video & Map
   ============================================ */
.video-container {
    background: #000;
    margin-bottom: var(--space-sm);
}

.video-sub {
    font-size: 0.9rem;
    color: var(--color-muted);
}

/* ============================================
   Final Contacts
   ============================================ */
.final-cta {
    background: white;
    text-align: center;
}

.contacts-block {
    margin: var(--space-lg) 0;
}

.big-phone {
    display: block;
    font-size: 3rem;
    font-weight: 300;
    color: var(--color-dark);
    text-decoration: none;
    margin-bottom: var(--space-md);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.btn-wa,
.btn-tg {
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-wa {
    background: #25D366;
    color: white;
}

.btn-tg {
    background: #0088cc;
    color: white;
}

.reply-note {
    font-size: 0.9rem;
    color: var(--color-muted);
}

.final-btns {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.footer {
    padding: var(--space-lg) 0;
    text-align: center;
    color: var(--color-muted);
    font-size: 0.85rem;
}

/* ============================================
   Winter Atmosphere (Architectural subtle haze)
   ============================================ */
.winter-atmosphere {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.blur-flake {
    position: absolute;
    border-radius: 50%;
    background: white;
    filter: blur(60px);
    opacity: 0.04;
    animation: drift linear infinite;
}

.flake-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
    animation-duration: 45s;
}

.flake-2 {
    width: 300px;
    height: 300px;
    bottom: 10%;
    right: -50px;
    animation-duration: 60s;
    animation-direction: reverse;
}

.flake-3 {
    width: 500px;
    height: 500px;
    top: 30%;
    right: 10%;
    opacity: 0.02;
    animation-duration: 80s;
}

/* ============================================
   Gallery & Carousel
   ============================================ */
.gallery-overview h2 {
    margin-bottom: var(--space-lg);
}

.carousel-wrapper {
    position: relative;
    margin-bottom: var(--space-xl);
    overflow: hidden;
    /* Скрываем выходящие фото */
}

.carousel-main {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
    gap: 0;
    /* Убираем gap для точного расчета процентов */
}

.carousel-main::-webkit-scrollbar {
    display: none;
}

.carousel-item {
    flex: 0 0 100%;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
}

.carousel-item img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    background: #f5f5f5;
}

.carousel-cap {
    margin-top: var(--space-sm);
    font-size: 0.9rem;
    color: var(--color-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.carousel-nav {
    position: absolute;
    top: calc(300px - 25px);
    /* Center of 600px img */
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-nav:hover {
    background: var(--color-dark);
    color: white;
}

.carousel-nav.prev {
    left: 30px;
}

.carousel-nav.next {
    right: 30px;
}

.mt-lg {
    margin-top: var(--space-lg);
}

/* ============================================
   Video (9:16 Vertical)
   ============================================ */
.video-vertical-wrap {
    max-width: 400px;
    margin: 40px auto 0;
}

.video-intro-text {
    text-align: center;
    font-size: 1.1rem;
    color: var(--color-muted);
    margin-bottom: var(--space-md);
    margin-top: calc(var(--space-md) * -1 + 10px);
}

.video-9-16 {
    position: relative;
    padding-top: 177.77%;
    /* 16 / 9 * 100 */
    width: 100%;
    overflow: hidden;
}

.video-9-16 iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-center-sub {
    text-align: center;
    margin-top: var(--space-sm);
    font-size: 0.9rem;
    color: var(--color-muted);
}

/* ============================================
   Map Section (Split Layout + Photo BG)
   ============================================ */
.map-section {
    position: relative;
    background: #000;
    color: white;
    overflow: hidden;
}

.map-section-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.map-section-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.map-section-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.4) 50%,
            rgba(0, 0, 0, 0.7) 100%);
}

.map-section .container {
    position: relative;
    z-index: 2;
}

.map-section h2,
.map-section .section-num {
    color: white;
}

.map-section .section-num {
    opacity: 0.6;
}

.map-coords {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-md);
}

.container-map-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.map-widget {
    border: 1px solid var(--color-line);
    background: #f9f9f9;
    overflow: hidden;
}

.map-iframe-wrap {
    position: relative;
    width: 100%;
}

.map-placeholder {
    width: 100%;
    height: 450px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed var(--color-line);
}

.map-placeholder .btn {
    max-width: 250px;
}


@media (max-width: 600px) {
    :root {
        --space-md: 24px;
        --space-lg: 48px;
        --space-xl: 64px;
    }

    body {
        font-size: 16px;
    }

    .section {
        padding: var(--space-xl) 0;
    }

    /* Fixed Header & CTA */
    .header-mobile {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        z-index: 1000;
        border-bottom: 1px solid var(--color-line);
        padding: 12px 0;
    }

    .container-mobile {
        padding: 0 var(--space-sm);
        display: flex;
        justify-content: center;
    }

    .mobile-phone-link {
        font-weight: 600;
        color: var(--color-dark);
        text-decoration: none;
        font-size: 1.1rem;
    }

    .sticky-cta-mobile {
        display: block;
        position: fixed;
        bottom: 24px;
        left: var(--space-sm);
        right: var(--space-sm);
        z-index: 1000;
        transform: translateY(150%);
        transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .sticky-cta-mobile.visible {
        transform: translateY(0);
    }

    /* Hero Mobile */
    .hero {
        height: auto;
        min-height: 90vh;
        padding-top: 100px;
    }

    .hero-bg img {
        object-position: 65% center;
    }

    .hero-bg::after {
        background: linear-gradient(to bottom,
                rgba(0, 0, 0, 0.5) 0%,
                rgba(0, 0, 0, 0.8) 100%);
    }

    h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: var(--space-sm);
    }

    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 100%;
        margin-bottom: var(--space-md);
    }

    .hero-actions .btn {
        padding: 20px;
        font-size: 1.1rem;
    }

    .header {
        display: none;
        /* Hide desktop phone in hero area */
    }

    /* Key Features (Screen 01b) */
    .features-text-grid {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }

    .feature-item p {
        font-size: 1.05rem;
        border-bottom: 1px solid var(--color-line);
        padding-bottom: 12px;
    }

    /* Options (Screen 02) */
    .comparison-layout {
        display: flex;
        flex-direction: column;
        gap: var(--space-md);
    }

    .comp-divider {
        display: none;
    }

    .comp-item {
        padding: 24px;
        border: 1px solid var(--color-line);
        background: white;
        display: flex;
        flex-direction: column;
    }

    .comp-item.featured {
        background: var(--color-dark);
        color: white;
        border: none;
        transform: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .comp-item.featured .comp-area,
    .comp-item.featured .comp-label,
    .comp-item.featured .comp-specs,
    .comp-item.featured .comp-details p {
        color: white;
    }

    .comp-area,
    .comp-item.featured .comp-area {
        font-size: 1.8rem;
        font-weight: 500;
        margin: 8px 0 16px;
        letter-spacing: -0.02em;
    }

    .comp-details p {
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .comp-mobile-cta {
        margin-top: 24px;
        padding: 16px;
        font-size: 0.9rem;
        text-align: center;
        width: 100%;
    }

    .comp-item.featured .comp-mobile-cta {
        background: white;
        color: var(--color-dark);
    }

    .comp-specs li {
        font-size: 1rem;
        padding: 8px 0;
    }

    .comparison-cta {
        margin-top: var(--space-md);
    }

    /* Audience (Screen 03) */
    .tabs-nav {
        display: none;
    }

    .tab-panel {
        display: block !important;
        opacity: 1 !important;
        padding: 0;
        margin-bottom: var(--space-lg);
    }

    .tab-panel:not(:last-child) {
        border-bottom: 1px solid var(--color-line);
        padding-bottom: var(--space-md);
    }

    .tab-panel::before {
        content: attr(id);
        display: block;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-size: 0.8rem;
        margin-bottom: 16px;
        color: var(--color-muted);
    }

    #private::before {
        content: 'Для частных лиц';
    }

    #company::before {
        content: 'Для бизнеса';
    }

    /* Specs (Screen 04) */
    .passport-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .spec-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 16px 0;
        border-bottom: 1px solid var(--color-line);
    }

    .spec-row:last-child {
        border-bottom: none;
    }

    /* Docs (Screen 06) */
    .docs-trust-layout {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .docs-info h2 {
        text-align: center;
    }

    .docs-desc {
        text-align: center;
        margin-bottom: var(--space-md);
    }

    .docs-trust-list {
        margin-bottom: var(--space-md);
    }

    /* Gallery (Screen 07) */
    .carousel-item img {
        height: 350px;
    }

    .carousel-nav {
        display: none;
    }

    .carousel-cap {
        text-align: center;
        margin-bottom: 20px;
    }

    /* Video (Screen 08) */
    .video-vertical-wrap {
        max-width: 100%;
        margin-top: var(--space-md);
    }

    /* Map (Screen 09) */
    .container-map-split {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .map-placeholder {
        height: 300px;
        background: #f5f5f5;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px dashed var(--color-line);
    }

    /* General Forms */
    .card-form,
    .card-form-compact,
    .partner-form-box {
        padding: var(--space-md) var(--space-sm);
    }

    .compact-form {
        gap: 12px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .full-width {
        grid-column: span 1;
    }

    input,
    select,
    textarea,
    .btn {
        width: 100%;
    }

    /* Final CTA (Screen 14) */
    .contacts-block {
        margin-top: var(--space-md);
    }

    .big-phone {
        font-size: 1.8rem;
    }

    .social-links {
        flex-direction: column;
        width: 100%;
    }

    .comp-mobile-cta {
        display: inline-block;
        margin-top: 20px;
        padding: 16px;
        font-size: 0.95rem;
    }

    .hide-mobile,
    .final-btns {
        display: none !important;
    }

    .carousel-nav {
        display: none !important;
    }
}