body.landing-page {
    color: var(--text-primary);
    background: #080b1a;
}

.landing-page::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 11, 26, 0.08) 0%, rgba(8, 11, 26, 0.7) 55%, rgba(8, 11, 26, 0.92) 100%);
    pointer-events: none;
    z-index: 0;
}

.landing-page .landing-bg {
    opacity: 0.95;
}

.landing-page > *:not(.glass-bg) {
    position: relative;
    z-index: 1;
}

.landing-page .container {
    position: relative;
    z-index: 2;
}

.landing-page .navbar-landing {
    padding: 18px 0;
    background: rgba(8, 11, 26, 0.12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.landing-page .navbar-landing.scrolled {
    background: rgba(8, 11, 26, 0.72);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    border-bottom-color: var(--glass-border);
    padding: 14px 0;
}

.landing-page .navbar-brand {
    gap: 0.85rem;
}

.landing-page .logo-text,
.landing-page .hero-logo-large,
.landing-page .about-logo-large,
.landing-page .footer-logo {
    font-family: var(--font-family);
    background: linear-gradient(135deg, #ffffff 0%, rgba(160, 190, 255, 0.92) 52%, rgba(79, 168, 224, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.landing-page .logo-text {
    font-size: 1.95rem;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.landing-page .navbar-landing.scrolled .logo-text {
    font-size: 1.75rem;
}

.landing-page .navbar-landing .nav-link {
    color: rgba(255, 255, 255, 0.72) !important;
    font-family: var(--font-family);
    font-weight: 500;
    margin: 0 0.45rem;
}

.landing-page .navbar-landing .nav-link:hover,
.landing-page .navbar-landing .nav-link:focus {
    color: #ffffff !important;
}

.landing-page .navbar-landing.scrolled .nav-link {
    color: rgba(255, 255, 255, 0.72) !important;
}

.landing-page .navbar-landing.scrolled .nav-link:hover,
.landing-page .navbar-landing.scrolled .nav-link:focus {
    color: #ffffff !important;
}

.landing-page .navbar-landing .nav-link::after {
    bottom: -7px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(160, 190, 255, 0.9), transparent);
}

.landing-page .navbar-toggler {
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 0.45rem 0.7rem;
    box-shadow: none;
}

.landing-page .navbar-toggler:focus {
    box-shadow: 0 0 0 4px var(--input-focus-glow);
}

.landing-page .navbar-toggler-icon {
    filter: invert(1) brightness(1.6);
}

.landing-page .btn-outline-custom,
.landing-page .btn-primary-custom,
.landing-page .btn-hero-primary,
.landing-page .btn-hero-outline,
.landing-page .btn-submit {
    border-radius: 999px;
    font-family: var(--font-family);
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.landing-page .btn-outline-custom,
.landing-page .btn-hero-outline {
    border: 1px solid var(--glass-border-bright);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.landing-page .btn-outline-custom:hover,
.landing-page .btn-hero-outline:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.28);
    transform: translateY(-2px);
}

.landing-page .navbar-landing.scrolled .btn-outline-custom {
    border-color: var(--glass-border-bright);
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.04);
}

.landing-page .btn-primary-custom,
.landing-page .btn-hero-primary,
.landing-page .btn-submit {
    border: none;
    background: linear-gradient(135deg, var(--accent-start) 0%, var(--accent-end) 100%);
    color: #ffffff;
    box-shadow:
        0 14px 34px rgba(79, 168, 224, 0.22),
        0 1px 0 rgba(255, 255, 255, 0.14) inset;
}

.landing-page .btn-primary-custom:hover,
.landing-page .btn-hero-primary:hover,
.landing-page .btn-submit:hover {
    color: #ffffff;
    transform: translateY(-3px);
    filter: brightness(1.08);
    box-shadow:
        0 18px 42px rgba(79, 168, 224, 0.28),
        0 1px 0 rgba(255, 255, 255, 0.18) inset;
}

.landing-page .hero-section,
.landing-page .features-section,
.landing-page .about-section,
.landing-page .contact-section,
.landing-page .stats-section,
.landing-page .footer {
    background: transparent;
}

.landing-page .hero-section {
    min-height: 100vh;
    padding: 8.5rem 0 5rem;
}

.landing-page .hero-section::before,
.landing-page .stats-section::before,
.landing-page .contact-section::before {
    display: none;
}

.landing-page .shape {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.04);
    filter: blur(2px);
}

.landing-page .hero-content,
.landing-page .hero-image {
    position: relative;
    z-index: 2;
}

.landing-page .hero-content {
    padding: 2.5rem;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.045);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow:
        0 28px 60px rgba(0, 0, 0, 0.35),
        0 1px 0 rgba(255, 255, 255, 0.06) inset;
}

.landing-page .hero-title,
.landing-page .section-title {
    font-family: var(--font-family);
    color: var(--text-primary);
    letter-spacing: -0.04em;
}

.landing-page .hero-title {
    font-size: clamp(2.7rem, 6vw, 4.6rem);
    line-height: 1.05;
    margin-bottom: 1.2rem;
    text-shadow: none;
}

.landing-page .hero-title .gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, rgba(196, 223, 255, 0.92) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.landing-page .hero-subtitle,
.landing-page .section-subtitle {
    font-family: var(--font-family);
    color: var(--text-secondary);
    line-height: 1.75;
}

.landing-page .hero-subtitle {
    font-size: 1.08rem;
    max-width: 41rem;
    margin-bottom: 2rem;
}

.landing-page .hero-buttons .btn {
    margin: 0 0.9rem 0.9rem 0;
    padding: 0.95rem 1.8rem;
    font-size: 0.98rem;
}

.landing-page .hero-image::before {
    content: '';
    position: absolute;
    inset: 8% 10%;
    border-radius: 36px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.3);
}

.landing-page .hero-logo-large {
    position: relative;
    z-index: 1;
    font-size: clamp(3.4rem, 7vw, 6.2rem);
    font-weight: 700;
    letter-spacing: -0.08em;
    text-shadow: none;
}

.landing-page .feature-badges {
    gap: 0.8rem;
}

.landing-page .badge-custom,
.landing-page .section-badge {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    font-family: var(--font-family);
    font-weight: 500;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.landing-page .stats-section,
.landing-page .features-section,
.landing-page .about-section,
.landing-page .contact-section {
    padding: 5rem 0;
}

.landing-page .section-header {
    margin-bottom: 3.5rem;
}

.landing-page .section-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    margin-bottom: 1rem;
}

.landing-page .section-subtitle {
    font-size: 1rem;
    max-width: 44rem;
}

.landing-page .stat-card,
.landing-page .feature-card,
.landing-page .about-feature,
.landing-page .contact-form {
    background: rgba(255, 255, 255, 0.045);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border: 1px solid var(--glass-border);
    box-shadow:
        0 22px 50px rgba(0, 0, 0, 0.24),
        0 1px 0 rgba(255, 255, 255, 0.05) inset;
}

.landing-page .stat-card,
.landing-page .feature-card,
.landing-page .about-feature {
    border-radius: 28px;
}

.landing-page .stat-card {
    padding: 2rem 1.25rem;
}

.landing-page .stat-icon,
.landing-page .feature-icon,
.landing-page .about-icon {
    background: linear-gradient(135deg, var(--accent-start) 0%, var(--accent-end) 100%) !important;
    border-radius: 22px;
    box-shadow: 0 14px 34px rgba(79, 168, 224, 0.22);
}

.landing-page .stat-number {
    color: var(--text-primary);
    font-family: var(--font-family);
    font-size: clamp(2rem, 4vw, 2.85rem);
}

.landing-page .stat-label {
    color: var(--text-secondary);
    font-family: var(--font-family);
}

.landing-page .feature-card {
    padding: 2rem;
    border-color: rgba(255, 255, 255, 0.08);
}

.landing-page .feature-card::before {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: scaleX(1);
    opacity: 0.5;
}

.landing-page .feature-card:hover,
.landing-page .about-feature:hover,
.landing-page .stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow:
        0 28px 56px rgba(0, 0, 0, 0.3),
        0 1px 0 rgba(255, 255, 255, 0.08) inset;
}

.landing-page .feature-card h3,
.landing-page .about-feature h5,
.landing-page .contact-form .form-label,
.landing-page .footer-links a,
.landing-page .social-link,
.landing-page .copyright {
    color: var(--text-primary);
}

.landing-page .feature-card p,
.landing-page .about-feature p,
.landing-page .feature-list li,
.landing-page .text-white,
.landing-page .section-header.text-start .section-subtitle {
    color: var(--text-secondary) !important;
}

.landing-page .feature-list li {
    padding: 0.6rem 0;
}

.landing-page .feature-list li::before {
    content: '';
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent-start) 0%, var(--accent-end) 100%);
    box-shadow: 0 0 0 6px rgba(79, 168, 224, 0.12);
}

.landing-page .about-image {
    min-height: 100%;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.24);
}

.landing-page .about-logo-large {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 700;
}

.landing-page .contact-form {
    border-radius: 32px;
    padding: 2.5rem;
}

.landing-page .alert-success,
.landing-page .alert-danger {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid var(--glass-border);
    border-left-width: 1px;
    color: var(--text-primary);
}

.landing-page .contact-form .form-label {
    font-family: var(--font-family);
    font-size: 0.76rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.55rem;
    color: var(--text-secondary);
}

.landing-page .contact-form .form-control,
.landing-page .contact-form textarea {
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    color: var(--text-primary);
    padding: 0.9rem 1rem;
    border-radius: 16px;
    font-family: var(--font-family);
}

.landing-page .contact-form .form-control::placeholder,
.landing-page .contact-form textarea::placeholder {
    color: var(--text-muted);
}

.landing-page .contact-form .form-control:focus,
.landing-page .contact-form textarea:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--input-focus-border);
    box-shadow: 0 0 0 4px var(--input-focus-glow);
    color: var(--text-primary);
}

.landing-page .contact-form textarea {
    min-height: 160px;
}

.landing-page .footer {
    padding: 3rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.landing-page .footer-links a {
    color: var(--text-secondary);
    font-family: var(--font-family);
}

.landing-page .footer-links a:hover {
    color: var(--text-primary);
}

.landing-page .social-link {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.landing-page .social-link:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.landing-page .copyright {
    color: var(--text-muted);
    font-family: var(--font-family);
}

.landing-page .scroll-top {
    background: linear-gradient(135deg, var(--accent-start) 0%, var(--accent-end) 100%);
    box-shadow: 0 14px 34px rgba(79, 168, 224, 0.24);
}

.landing-page .scroll-top:hover {
    transform: translateY(-4px);
}

@media (max-width: 991.98px) {
    .landing-page .navbar-collapse {
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 20px;
        background: rgba(8, 11, 26, 0.82);
        border: 1px solid var(--glass-border);
        backdrop-filter: blur(22px);
        -webkit-backdrop-filter: blur(22px);
    }

    .landing-page .hero-content,
    .landing-page .contact-form {
        padding: 2rem;
    }

    .landing-page .hero-image {
        margin-top: 2rem;
        min-height: 280px;
    }
}

@media (max-width: 767.98px) {
    .landing-page .hero-section,
    .landing-page .stats-section,
    .landing-page .features-section,
    .landing-page .about-section,
    .landing-page .contact-section {
        padding: 4rem 0;
    }

    .landing-page .hero-section {
        padding-top: 7rem;
    }

    .landing-page .hero-content,
    .landing-page .feature-card,
    .landing-page .about-feature,
    .landing-page .contact-form {
        padding: 1.5rem;
        border-radius: 24px;
    }

    .landing-page .hero-buttons .btn {
        width: 100%;
        margin-right: 0;
    }

    .landing-page .feature-badges {
        flex-direction: column;
        align-items: stretch;
    }

    .landing-page .badge-custom {
        justify-content: center;
    }

    .landing-page .footer-links a {
        display: inline-block;
        margin: 0.35rem 0.6rem;
    }

    .landing-page .scroll-top {
        right: 1rem;
        bottom: 1rem;
    }
}
