/* Header Menu */

:root {
    --color-white: #FFFFFF;
    --color-blue: #0039A6;
    --color-red: #C8493F;
    --color-bg: #0A0F1C;
    --color-surface: #111827;
    --color-text: #F8FAFC;
    --color-text-muted: #A5B1C3;
    --font-body: 'Manrope', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 0;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(10, 15, 28, 0.9) 0%, rgba(16, 13, 32, 0.9) 100%);
    backdrop-filter: blur(10px);
    transition: all 0.6s ease;
}

.header:not(.scrolled) {
    background: linear-gradient(180deg, rgba(10, 15, 28, 0.3) 0%, rgba(16, 13, 32, 0.3) 100%);
    backdrop-filter: blur(5px);
}

.header.scrolled {
    background: linear-gradient(180deg, rgba(10, 15, 28, 0.65) 0%, rgba(16, 13, 32, 0.65) 100%);
    backdrop-filter: blur(15px);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 11px 24px;
    transition: all 0.6s ease;
}

.header.scrolled .header-content {
    padding: 9px 24px;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.header-logo-img {
    height: 40px;
    width: auto;
    display: none;
}

.header-logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    transition: font-size 0.6s ease;
}

.logo-svo .svo-s,
.logo-svo .svo-v,
.logo-svo .svo-o { color: #FFFFFF; }

.header.scrolled .header-logo-text {
    font-size: 18px;
}

.header-nav {
    display: flex;
    gap: 24px;
}

.header-link {
    position: relative;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-white);
    text-decoration: none;
    padding: 4px 0;
    transition: color 0.2s;
}

.header-link::before,
.header-link::after {
    content: '';
    position: absolute;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-blue);
    border-radius: 1px;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.header-link::before { top: -2px; }
.header-link::after  { bottom: -2px; }

.header-link:hover::before,
.header-link:hover::after {
    width: 100%;
}

.header-contacts {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-phone {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-white);
    text-decoration: none;
}

.btn.header-btn {
    padding: 9px 20px;
    font-size: 13px;
    transition: all 0.6s ease;
}

.header.scrolled .btn.header-btn {
    padding: 8px 16px;
    font-size: 13px;
    background: linear-gradient(135deg, #002070 0%, #003090 100%);
}

/* Burger Button with "Меню" text */
.header-burger {
    display: none;
    align-items: center;
    gap: 10px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 4px;
}

.burger-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.burger-lines {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.header-burger .burger-line {
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: all 0.3s;
    display: block;
}

/* Mobile Menu - completely rewritten, outside header for proper z-index */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    flex-direction: column;
    background: #0A0F1C;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu.active {
    display: flex;
}

/* Mobile Menu Header - Logo + Close button in one row */
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    text-decoration: none;
}

.mobile-logo-img {
    height: 36px;
    width: auto;
    display: none;
}

.mobile-close {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    transition: background 0.2s;
}

.mobile-close:hover {
    background: rgba(255, 255, 255, 0.15);
}

.mobile-close span {
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--color-white);
    transition: all 0.3s;
}

.mobile-close span:first-child {
    transform: rotate(45deg);
}

.mobile-close span:last-child {
    transform: rotate(-45deg);
}

/* Mobile Nav Links */
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
    flex: 1;
}

.mobile-link {
    font-size: 22px;
    font-weight: 600;
    color: var(--color-white);
    text-decoration: none;
    padding: 16px 24px;
    display: block;
    transition: background 0.2s, color 0.2s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.mobile-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-blue);
}

/* Mobile Contacts - at bottom */
.mobile-contacts {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px 24px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.mobile-phone {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-white);
    text-decoration: none;
    text-align: center;
    padding: 8px 0;
}

.mobile-btn {
    text-align: center;
    padding: 18px;
    font-size: 17px;
    border-radius: 12px;
}

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

@media (min-width: 1025px) {
    .mobile-menu {
        display: none !important;
    }
}


/* Cookie Consent Banner */
.cookie-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 15, 28, 0.5);
    backdrop-filter: blur(6px);
    z-index: 9998;
    display: none;
}

.cookie-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-banner {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #0F172A;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    z-index: 9999;
    display: none;
    padding: 32px 40px;
    max-width: 520px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.cookie-banner.active {
    display: flex;
    flex-direction: column;
}

.cookie-banner__text {
    margin-bottom: 24px;
}

.cookie-banner__text p {
    font-size: 15px;
    color: #CBD5E1;
    line-height: 1.6;
    margin: 0;
}

.cookie-banner__text a {
    color: #3B82F6;
    text-decoration: none;
}

.cookie-banner__text a:hover {
    text-decoration: underline;
}

.cookie-banner__buttons {
    display: flex;
    gap: 12px;
}

.cookie-banner .btn {
    flex: 1;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    font-family: var(--font-body);
    text-align: center;
    justify-content: center;
}

.cookie-banner .btn-primary {
    background: linear-gradient(135deg, #0039A6 0%, #0047B3 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(0, 57, 166, 0.3);
}

.cookie-banner .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 57, 166, 0.4);
}

.cookie-banner .btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #E2E8F0;
}

.cookie-banner .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 24px 20px;
    }

    .cookie-banner__buttons {
        flex-direction: column;
    }

    .cookie-banner .btn {
        width: 100%;
    }
}


.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(4px) brightness(0.45);
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(10, 15, 28, 0.78) 0%,
        rgba(10, 15, 28, 0.63) 50%,
        rgba(10, 15, 28, 0.73) 100%
    );
}

.hero-noise {
    position: absolute;
    inset: 0;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 980px;
    width: 100%;
    padding: 80px 24px 40px;
    text-align: center;
}

.hero-content h1 {
    margin-top: 126px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* REMOVED: .hero-age — was unused, no matching HTML element */

h1 {
    font-family: var(--font-body);
    font-size: clamp(24px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--color-white);
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

h2 {
    text-transform: uppercase;
}

h1 .highlight {
    color: var(--color-red);
}

.hero-subtitle,
.hero-intro {
    font-size: 18px;
    color: var(--color-text);
    margin-bottom: 16px;
    font-weight: 500;
    line-height: 1.4;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-advantages {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.hero-advantage {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--color-text);
    font-weight: 500;
}

.hero-advantage svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.hero-advantage .icon-blue {
    color: var(--color-blue);
}

.hero-emoji-blue {
    color: #0046b2;
}

.hero-advantage .icon-red {
    color: var(--color-red);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
    margin-bottom: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 32px;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
}

@media (max-width: 768px) {
    .btn {
        padding: 14px 20px;
        font-size: 14px;
    }
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-blue) 0%, #0047B3 100%);
    color: var(--color-white);
    box-shadow: 0 4px 24px rgba(0, 57, 166, 0.35);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 50%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: skewX(-25deg);
    animation: btn-shimmer 3s infinite;
}

@keyframes btn-shimmer {
    0% { left: -100%; }
    100% { left: 200%; }
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 57, 166, 0.45);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--color-white);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 32px;
    padding-top: 20px;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--color-text-muted);
}

.hero-badge svg {
    width: 18px;
    height: 18px;
}

.hero-badge .check-icon {
    color: #22C55E;
}

.hero-phone {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 28px 32px;
    max-width: 500px;
    margin: 0 auto;
    backdrop-filter: blur(20px);
}

.hero-phone-text {
    font-size: 15px;
    color: var(--color-text-muted);
    margin-bottom: 16px;
    line-height: 1.6;
}

.hero-phone-form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-phone-input {
    flex: 1;
    min-width: 180px;
    padding: 14px 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
    transition: all 0.2s ease;
}

.hero-phone-input::placeholder {
    color: var(--color-text-muted);
}

.hero-phone-input:focus {
    border-color: var(--color-blue);
    background: rgba(255, 255, 255, 0.08);
}

.btn-phone {
    padding: 14px 24px;
    font-size: 14px;
}

.hero-phone-contact {
    margin-top: 16px;
    font-size: 15px;
    color: var(--color-text-muted);
}

.hero-phone-contact a {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.hero-phone-contact a:hover {
    color: #7082c5;
}

.hero-phone-check {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
    font-size: 13px;
    color: var(--color-text-muted);
}

.hero-phone-check input {
    width: 18px;
    height: 18px;
    accent-color: var(--color-blue);
    cursor: pointer;
}

.hero-phone-check label {
    cursor: pointer;
}

.hero-phone-check a {
    color: var(--color-text-muted);
    text-decoration: underline;
    transition: color 0.2s;
}

.hero-phone-check a:hover {
    color: var(--color-white);
}

.hero-warning {
    margin-top: 42px;
    padding: 14px 24px;
    background: rgba(213, 43, 30, 0.1);
    border: 1px solid rgba(213, 43, 30, 0.2);
    border-radius: 10px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.hero-warning-text {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.hero-warning-text strong {
    color: var(--color-red);
    font-weight: 600;
}

.hero-decor {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.hero-decor-1 {
    top: -100px;
    left: -100px;
    background: var(--color-blue);
    opacity: 0.12;
}

.hero-decor-2 {
    bottom: -120px;
    right: -120px;
    background: var(--color-red);
    opacity: 0.1;
}

.hero-decor-3 {
    top: 40%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: var(--color-red);
    opacity: 0.08;
}

.hero-decor-left {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 30%;
    background: linear-gradient(90deg, rgba(0, 57, 166, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.hero-decor-right {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 30%;
    background: linear-gradient(270deg, rgba(0, 57, 166, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.hero-decor-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 20%;
    background: linear-gradient(180deg, rgba(0, 57, 166, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.hero-decor-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20%;
    background: linear-gradient(0deg, rgba(0, 57, 166, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

/* Экран 2: Для кого этот сайт */
.forwhom {
    background: #FFFFFF;
    padding: 80px 24px;
}

.forwhom-content {
    max-width: 1000px;
    margin: 0 auto;
}

.forwhom h2 {
    font-family: var(--font-body);
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    color: #0F172A;
    text-align: center;
    margin-bottom: 48px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.forwhom-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.forwhom-item {
    background: #F8FAFC;
    border-radius: 12px;
    padding: 28px 24px;
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
}

.forwhom-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--color-blue) 0%, #0047B3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 20px;
}

.forwhom-icon svg {
    width: 24px;
    height: 24px;
    stroke: #FFFFFF;
    stroke-width: 2;
}

.forwhom-item:hover {
    border-color: rgba(0, 57, 166, 0.4);
}

.forwhom-item h3 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 10px;
}

.forwhom-item p {
    font-size: 14px;
    color: #64748B;
    line-height: 1.5;
    margin-bottom: 16px;
}

.forwhom-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-blue);
    text-decoration: none;
    display: none;
}

/* Экран 3: Почему операторы БПЛА */
.why-drone {
    background: #F1F5F9;
    padding: 80px 24px;
}

.why-drone-content {
    max-width: 1200px;
    margin: 0 auto;
}

.why-drone h2 {
    font-family: var(--font-body);
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    color: #0F172A;
    text-align: center;
    margin-bottom: 48px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.why-drone-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.why-drone-item {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 28px 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.why-drone-item:hover {
    border-color: rgba(0, 57, 166, 0.4);
    box-shadow: 0 8px 24px rgba(0, 57, 166, 0.06);
}

.why-drone-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--color-blue) 0%, #0047B3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 20px;
}

.why-drone-icon svg {
    width: 24px;
    height: 24px;
    stroke: #FFFFFF;
    stroke-width: 2;
}

.why-drone-icon.icon-red svg {
    stroke: #FFFFFF;
}

.why-drone-icon.icon-red {
    background: linear-gradient(135deg, var(--color-red) 0%, #B8231A 100%);
}

.why-drone-item h3 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 10px;
    line-height: 1.3;
}

.why-drone-item p {
    font-size: 13px;
    color: #64748B;
    line-height: 1.5;
    margin-top: 0;
}

/* Экран 4: Служба в цифрах */
.numbers {
    position: relative;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    padding: 80px 24px;
    overflow: hidden;
}

.numbers::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('img/bg_pattern.jpg') center center / cover no-repeat fixed;
    opacity: 0.15;
    pointer-events: none;
}

.numbers-overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 100% at 0% 50%, rgba(213, 43, 30, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 80% 100% at 100% 50%, rgba(213, 43, 30, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 100% 60% at 50% 0%, rgba(213, 43, 30, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 100% 60% at 50% 100%, rgba(213, 43, 30, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.numbers h2 {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    color: var(--color-white);
    text-align: center;
    margin-bottom: 48px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.numbers-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
}

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

.numbers-item {
    text-align: center;
}

.numbers-value {
    font-family: var(--font-body);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.9;
}

.numbers-label {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.5;
    max-width: 220px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Экран 5: Специализация */
.specialization {
    background: #F1F5F9;
    padding: 80px 24px;
}

.specialization-content {
    max-width: 1200px;
    margin: 0 auto;
}

.specialization h2 {
    font-family: var(--font-body);
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    color: #0F172A;
    text-align: center;
    margin-bottom: 48px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.specialization-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.spec-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 28px 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.spec-card:hover {
    border-color: rgba(0, 57, 166, 0.4);
    box-shadow: 0 8px 24px rgba(0, 57, 166, 0.06);
}

.spec-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--color-blue) 0%, #0047B3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.spec-icon svg {
    width: 24px;
    height: 24px;
    stroke: #FFFFFF;
}

.spec-card h3 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 10px;
    line-height: 1.3;
}

.spec-card p {
    font-size: 13px;
    color: #64748B;
    line-height: 1.5;
    margin-bottom: 16px;
}

.spec-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-blue);
    text-decoration: none;
}

.spec-all {
    display: block;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--color-blue);
    text-decoration: none;
    margin-top: 16px;
}

/* Экран 6: Сколько зарабатывают */
.salary {
    background: #FFFFFF;
    padding: 80px 24px;
}

.salary-content {
    max-width: 1000px;
    margin: 0 auto;
}

.salary h2 {
    font-family: var(--font-body);
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    color: #0F172A;
    text-align: center;
    margin-bottom: 48px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.salary-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.salary-block {
    background: #F8FAFC;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #E2E8F0;
}

.salary-block h3 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 20px;
}

.salary-block ul {
    list-style: none;
}

.salary-block li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #E2E8F0;
    font-size: 15px;
    color: #334155;
}

.salary-block li:last-child {
    border-bottom: none;
}

.salary-block li span {
    color: #64748B;
}

.salary-total {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-red);
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid var(--color-red);
}

.salary-note {
    font-size: 14px;
    color: #64748B;
    margin-top: 16px;
    line-height: 1.5;
}

.salary-btn {
    display: flex;
    justify-content: center;
    margin: 0 auto 16px;
}

.salary-disclaimer {
    text-align: center;
    font-size: 13px;
    color: #94A3B8;
}

/* Экран 7: Сравнение */
.comparison {
    background: #F8FAFC;
    padding: 80px 24px;
}

.comparison-content {
    max-width: 1000px;
    margin: 0 auto;
}

.comparison h2 {
    font-family: var(--font-body);
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 800;
    color: #0F172A;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.comparison-table {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.comp-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.comp-header {
    background: #0F172A;
    color: var(--color-white);
    font-weight: 700;
    font-size: 15px;
}

.comp-row:not(.comp-header) {
    border-bottom: 1px solid #E2E8F0;
}

.comp-col {
    padding: 20px 24px;
    font-size: 14px;
    color: #334155;
    line-height: 1.5;
}

.comp-header .comp-col {
    color: var(--color-white);
}

.comp-col.col-accent {
    color: var(--color-blue);
    font-weight: 600;
}

/* REMOVED: .comparison-link — was unused, no matching HTML element */

/* Экран 7.5: Кредиты и долги */
.faq-credits {
    background: #FFFFFF;
    padding: 80px 24px;
}

.faq-credits h2 {
    font-family: var(--font-body);
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    color: #0F172A;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

/* Экран 8: Кредиты */
.credits {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    padding: 80px 24px;
}

.credits-content {
    max-width: 800px;
    margin: 0 auto;
}

.credits h2 {
    font-family: var(--font-body);
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.credits-subtitle {
    font-size: 16px;
    color: #94A3B8;
    text-align: center;
    margin-bottom: 40px;
}

.credits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.credits-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.credits-sum {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 800;
    color: #7082c5;
    margin-bottom: 12px;
    line-height: 1.2;
}

.credits-label {
    font-size: 15px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.credits-item p {
    font-size: 13px;
    color: #94A3B8;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .credits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .credits-grid {
        grid-template-columns: 1fr;
    }
}

/* Экран 9: Оснащение */
.gear {
    background: #F1F5F9;
    padding: 80px 24px;
}

.gear-content {
    max-width: 1200px;
    margin: 0 auto;
}

.gear h2 {
    font-family: var(--font-body);
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    color: #0F172A;
    text-align: center;
    margin-bottom: 48px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.gear-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.gear-item {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 32px 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.gear-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--color-blue) 0%, #0047B3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.gear-icon svg {
    width: 28px;
    height: 28px;
    stroke: #FFFFFF;
}

.gear-item h3 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: #0F172A;
    line-height: 1.4;
}

.gear-item p {
    font-size: 13px;
    color: #64748B;
    line-height: 1.5;
    margin-top: 8px;
}

.gear-note {
    text-align: center;
    font-size: 14px;
    color: #64748B;
    margin-top: 16px;
}

/* Экран 10: Страхи */
.fears {
    background: #FFFFFF;
    padding: 80px 24px;
}

.fears-content {
    max-width: 800px;
    margin: 0 auto;
}

.fears h2 {
    font-family: var(--font-body);
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    color: #0F172A;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.fears-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.fears-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 24px;
    background: #F8FAFC;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
}

.fears-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--color-red) 0%, #B8231A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.fears-icon svg {
    display: none;
}

.fears-text h3 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 8px;
}

.fears-text p {
    font-size: 14px;
    color: #64748B;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .fears-grid {
        grid-template-columns: 1fr;
    }
}

/* REMOVED: .accordion section — was unused, no matching HTML elements */

/* Экран 11: Родственники */
.relatives {
    background: #FFFFFF;
    padding: 80px 24px;
}

.relatives-content {
    max-width: 1200px;
    margin: 0 auto;
}

.relatives h2 {
    font-family: var(--font-body);
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    color: #0F172A;
    text-align: center;
    margin-bottom: 48px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.relatives-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.relatives-item {
    text-align: center;
}

.relatives-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--color-blue) 0%, #0047B3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    flex-shrink: 0;
}

.relatives-icon svg {
    width: 24px;
    height: 24px;
    stroke: #FFFFFF;
}

.relatives-icon.icon-red {
    background: linear-gradient(135deg, var(--color-red) 0%, #B8231A 100%);
}

.relatives-item h3 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 8px;
}

.relatives-item p {
    font-size: 13px;
    color: #64748B;
    line-height: 1.5;
}

.relatives-link {
    display: block;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--color-blue);
    text-decoration: none;
}

/* Экран 12: С чего начать */
.start {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
}

.start::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('img/bg_pattern.jpg') center center / cover no-repeat fixed;
    opacity: 0.15;
    filter: blur(2px);
}

/* REMOVED: .start-overlay, .start-decor — unused, no matching HTML elements */

.start-content {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    margin: 0 auto;
}

.start h2 {
    font-family: var(--font-body);
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    color: var(--color-white);
    text-align: center;
    margin-bottom: 48px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.start-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.start-step {
    text-align: center;
    padding: 20px 16px;
}

.start-num {
    font-family: var(--font-body);
    font-size: 36px;
    font-weight: 800;
    color: #7082c5;
    margin-bottom: 16px;
    line-height: 1;
    text-shadow: 0 0 20px rgba(112, 130, 197, 0.4);
}

.start-step h3 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 8px;
}

.start-step p {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .start-steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .start-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* REMOVED: .start-grid, .start-item, .start-mark — unused, no matching HTML elements */



/* Экран 13: Требования */
.requirements {
    background: #FFFFFF;
    padding: 80px 24px;
}

.requirements-content {
    max-width: 800px;
    margin: 0 auto;
}

.requirements h2 {
    font-family: var(--font-body);
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    color: #0F172A;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.requirements .faq-list {
    margin-top: -8px;
}

/* REMOVED: .req-item, .req-note, .req-link — unused, no matching HTML elements */

/* Экран 14: Шаги */
.steps {
    display: none;
}

.steps::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('img/bg_pattern.jpg') center center / cover no-repeat fixed;
    opacity: 0.15;
    pointer-events: none;
}

.steps-overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 100% at 0% 50%, rgba(213, 43, 30, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 80% 100% at 100% 50%, rgba(213, 43, 30, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 100% 60% at 50% 0%, rgba(213, 43, 30, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 100% 60% at 50% 100%, rgba(213, 43, 30, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.steps-content {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    margin: 0 auto;
}

.steps h2 {
    font-family: var(--font-body);
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    color: var(--color-white);
    text-align: center;
    margin-bottom: 48px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.steps-timeline {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    align-items: start;
}

.steps-item {
    text-align: center;
    position: relative;
}

.steps-dot {
    font-size: 28px;
    line-height: 1;
    color: #7082c5;
    margin: 0 auto 16px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.steps-info {
    padding: 0 8px;
}

.steps-info h3 {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 8px;
}

.steps-info p {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .steps-timeline {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .steps-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* REMOVED: .step, .step-num, .step-line — unused, no matching HTML elements */

/* Экран 15: Истории */
.stories {
    background: #F1F5F9;
    padding: 80px 24px;
}

.stories-content {
    max-width: 1200px;
    margin: 0 auto;
}

.stories h2 {
    font-family: var(--font-body);
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    color: #0F172A;
    text-align: center;
    margin-bottom: 48px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

/* Stories Carousel */
.stories-carousel {
    position: relative;
    display: flex;
    align-items: center;
}

.stories-viewport {
    overflow: hidden;
    flex: 1;
    margin: 0 52px;
}

.stories-track {
    display: flex;
    gap: 24px;
    transition: transform 0.4s ease;
}

.stories-track .stories-item {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: 0;
    background: #FFFFFF;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.stories-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-blue) 0%, #0047B3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}

.stories-avatar span {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1;
}

.stories-text p {
    font-size: 14px;
    color: #64748B;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 16px;
}

.stories-author {
    font-size: 14px;
    font-weight: 600;
    color: #0F172A;
}

.stories-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    color: #0F172A;
}

.stories-arrow:hover {
    background: var(--color-blue);
    border-color: var(--color-blue);
    color: #FFFFFF;
}

.stories-arrow-left { left: 0; }
.stories-arrow-right { right: 0; }

@media (max-width: 768px) {
    .stories-track .stories-item {
        flex: 0 0 100%;
    }
    .stories-viewport {
        margin: 0 44px;
    }
    .stories-arrow {
        width: 38px;
        height: 38px;
    }
}

/* REMOVED: .story-card, .story-avatar, .story-content — unused, no matching HTML elements */

.stories-link {
    display: block;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--color-blue);
    text-decoration: none;
}

/* Экран 16: FAQ */
.faq {
    background: #FFFFFF;
    padding: 80px 24px;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq h2 {
    font-family: var(--font-body);
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    color: #0F172A;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #F8FAFC;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: #0F172A;
    text-align: left;
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-item .faq-icon {
    font-size: 20px;
    font-weight: 400;
    color: var(--color-blue);
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 14px;
    color: #64748B;
    line-height: 1.6;
}

.faq-link {
    display: block;
    text-align: center;
    margin-top: 24px;
    font-size: 15px;
    font-weight: 700;
    color: var(--color-blue);
    text-decoration: none;
}

/* Экран 17: Готовы */
.ready {
    position: relative;
    padding: 80px 24px;
    overflow: hidden;
}

.ready-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.ready-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(3px) brightness(0.35);
}

.ready-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 15, 28, 0.51);
    z-index: 1;
}

.ready-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.ready h2 {
    font-family: var(--font-body);
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.ready-content > p {
    font-size: 16px;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.ready-content ul {
    list-style: none;
    margin-bottom: 32px;
}

.ready-content li {
    font-size: 15px;
    color: var(--color-text);
    padding: 8px 0;
}

.ready-form {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 20px;
}

.ready-input {
    flex: 1;
    min-width: 180px;
    padding: 14px 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
}

.ready-input::placeholder {
    color: var(--color-text-muted);
}

.ready-input:focus {
    border-color: var(--color-blue);
}

.ready-content .hero-phone-check {
    justify-content: center;
}

/* Экран 18: Каналы */
.channels {
    background: #F1F5F9;
    padding: 48px 24px;
}

.channels-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.channels h2 {
    font-family: var(--font-body);
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.channels-content > p {
    font-size: 14px;
    color: #64748B;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Футер */
.footer {
    background: linear-gradient(180deg, #0F172A 0%, #120E23 100%);
    padding: 48px 24px 24px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 24px;
}

.footer-block h3 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-phone {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
}

.footer-phone a {
    color: #E2E8F0;
    text-decoration: none;
}

.footer-phone span {
    font-size: 14px;
    font-weight: 400;
    color: #64748B;
}

.footer-block p {
    font-size: 13px;
    color: #94A3B8;
    line-height: 1.6;
    margin-bottom: 6px;
}

.footer-block p a {
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-block p a:hover {
    color: #E2E8F0;
}

.footer-articles-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-articles-list a {
    font-size: 13px;
    color: #94A3B8;
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.2s;
}

.footer-articles-list a:hover {
    color: #E2E8F0;
}

.footer-articles-more {
    display: inline-block;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 600;
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-articles-more:hover {
    color: #E2E8F0;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-desc {
    font-size: 13px;
    color: #64748B;
    line-height: 1.6;
    max-width: 100%;
}

.footer-copy {
    font-size: 13px;
    color: #64748B;
}

.footer-legal {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-legal a {
    font-size: 13px;
    color: #64748B;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: #E2E8F0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom-copy {
    font-size: 12px;
    color: #64748B;
    line-height: 1.5;
}

.footer-bottom-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-bottom-buttons a {
    font-size: 12px;
    color: #94A3B8;
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    transition: all 0.2s;
}

.footer-bottom-buttons a:hover {
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.05);
}

.footer-req-info {
    font-size: 12px;
    color: #475569;
    line-height: 1.5;
    margin-top: 8px;
}

@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-articles {
        grid-column: auto;
    }
}

@media (max-width: 768px) {
    .hero-advantages {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

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

    .hero-phone-form {
        flex-direction: column;
    }

    .hero-phone-input {
        min-width: 100%;
    }

    .hero-badges {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .why-drone {
        padding: 60px 16px;
    }

    .why-drone-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .numbers {
        padding: 60px 16px;
    }

    .numbers-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .specialization {
        padding: 60px 16px;
    }

    .specialization-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .forwhom {
        padding: 60px 16px;
    }

    .forwhom-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .salary {
        padding: 60px 16px;
    }

    .salary-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .comparison {
        padding: 60px 16px;
    }

    .comp-row {
        grid-template-columns: 1fr;
    }

    .comp-header {
        display: none;
    }

    .comp-row .comp-col {
        padding: 16px;
        font-size: 13px;
    }

    .comp-row .comp-col:first-child {
        background: #F8FAFC;
        font-weight: 600;
    }

    .credits, .gear, .fears, .relatives, .start, .requirements, .faq-credits {
        padding: 60px 16px;
    }

    .gear-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .relatives-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .steps {
        padding: 60px 16px;
    }

    .steps-timeline {
        flex-direction: column;
        gap: 32px;
    }

    .stories {
        padding: 60px 16px;
    }

    .stories-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .faq {
        padding: 60px 16px;
    }

    .ready {
        padding: 60px 16px;
    }

    .ready-form {
        flex-direction: column;
    }

    .ready-input {
        min-width: 100%;
    }

    .channels {
        padding: 60px 16px;
    }

    .footer {
        padding: 32px 16px 24px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-bottom: 24px;
        margin-bottom: 24px;
    }

    .footer-articles {
        grid-column: auto;
    }

    .footer-info {
        flex-direction: column;
        gap: 16px;
    }

    .footer-desc {
        max-width: 100%;
    }

    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }

    .footer-phone {
        font-size: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .hero-phone {
        padding: 20px;
    }

}
/* ========== Consultation Modal ========== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 15, 28, 0.7);
    backdrop-filter: blur(8px);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: #FFFFFF;
    border-radius: 20px;
    max-width: 440px;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
    transform: translateY(30px) scale(0.95);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.modal-overlay.active .modal {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.4);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.2s, transform 0.2s;
    backdrop-filter: blur(4px);
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.6);
    transform: scale(1.1);
}

.modal-close svg {
    color: #FFFFFF;
    width: 18px;
    height: 18px;
}

.modal-photo {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.modal-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.modal-photo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, #FFFFFF, transparent);
}

.modal-body {
    padding: 28px 28px 24px;
}

.modal-title {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 8px;
    line-height: 1.3;
    text-transform: none !important;
    text-align: left;
}

.modal-text {
    font-size: 14px;
    color: #64748B;
    line-height: 1.5;
    margin-bottom: 20px;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.modal-field {
    position: relative;
}

.modal-input {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #E2E8F0;
    border-radius: 10px;
    background: #F8FAFC;
    color: #0F172A;
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.modal-input::placeholder {
    color: #94A3B8;
}

.modal-input:focus {
    border-color: var(--color-blue);
    background: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(0, 57, 166, 0.1);
}

.modal-submit {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 16px;
    border-radius: 10px;
}

.modal-check {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 12px;
    color: #94A3B8;
    line-height: 1.4;
}

.modal-check input {
    width: 16px;
    height: 16px;
    accent-color: var(--color-blue);
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 1px;
}

.modal-check label {
    cursor: pointer;
}

.modal-check a {
    color: #64748B;
    text-decoration: underline;
    transition: color 0.2s;
}

.modal-check a:hover {
    color: var(--color-blue);
}

@media (max-width: 480px) {
    .modal {
border-radius: 16px;
    }
    .modal-photo {
height: 140px;
    }
    .modal-body {
padding: 20px 20px 20px;
    }
    .modal-title {
font-size: 18px;
    }
}

/* ========== Floating Chat Button ========== */
.chat-widget {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 99990;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.chat-bubble {
    background: #FFFFFF;
    border-radius: 16px 16px 4px 16px;
    padding: 12px 18px;
    font-size: 14px;
    color: #0F172A;
    max-width: 260px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    line-height: 1.4;
    opacity: 0;
    transform: translateY(10px) scale(0.9);
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    position: relative;
}

.chat-bubble::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 24px;
    width: 12px;
    height: 12px;
    background: #FFFFFF;
    transform: rotate(45deg);
    border-radius: 0 0 3px 0;
}

.chat-bubble.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.chat-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-blue) 0%, #0047B3 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(0, 57, 166, 0.4);
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0;
}

.chat-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(0, 57, 166, 0.5);
}

.chat-btn:active {
    transform: scale(0.95);
}

.chat-btn svg {
    width: 28px;
    height: 28px;
    color: #FFFFFF;
    transition: transform 0.3s ease;
}

.chat-btn:hover svg {
    transform: scale(1.1);
}

.chat-btn::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-blue) 0%, #0047B3 100%);
    opacity: 0;
    animation: chat-pulse 2.5s ease-out infinite;
}

@keyframes chat-pulse {
    0% {
opacity: 0.4;
transform: scale(1);
    }
    100% {
opacity: 0;
transform: scale(1.4);
    }
}

@media (max-width: 768px) {
    .chat-widget {
bottom: 20px;
right: 20px;
    }
    .chat-btn {
width: 54px;
height: 54px;
    }
    .chat-btn svg {
width: 24px;
height: 24px;
    }
    .chat-bubble {
max-width: 220px;
font-size: 13px;
padding: 10px 14px;
    }
}
