﻿html, body {
    height: 100%;
}

:root {
    --primary: #3591d4;
    --primary-dark: #2a7ab8;
    --primary-glow: rgba(53, 145, 212, 0.35);
    --primary-gradient: linear-gradient(135deg, #3591d4, #2a7ab8);
    --bg-dark: #07091e;
    --text-light: #f5f5f5;
    --text-muted: #a3a3b0;
    --border: rgba(255,255,255,0.08);
    --shadow: 0 12px 40px rgba(0,0,0,0.4);
    --nav-height: 72px;
}

body {
    margin: 0;
    background: var(--bg-dark);
    color: var(--text-light);
}

main {
    padding-top: var(--nav-height);
}

.nav-glass {
    height: var(--nav-height);
    background: rgba(15, 15, 20, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: height .25s ease, background .25s ease, box-shadow .25s ease;
}

    .nav-glass.scrolled {
        height: 64px;
        background: rgba(8, 8, 12, 0.92);
        box-shadow: var(--shadow);
    }

.nav-logo {
    height: 40px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.nav-link-custom {
    color: var(--text-muted) !important;
    font-weight: 500;
    position: relative;
    padding: 10px 0 !important;
    transition: color .25s ease;
}

    .nav-link-custom:hover,
    .nav-link-custom.active {
        color: #fff !important;
    }

    .nav-link-custom::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 2px;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        border-radius: 2px;
        background: var(--primary-gradient);
        transition: width .25s ease;
    }

    .nav-link-custom:hover::after,
    .nav-link-custom.active::after {
        width: 70%;
    }

.hero-section {
    margin-top:1rem;
    min-height: 100vh; /* full screen */
    display: flex;
    align-items: center; /* vertically center content */
    padding: 0; /* optional: remove extra spacing */
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: clamp(2.2rem, 3.4vw, 3.6rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 1.3vw, 1.35rem);
    opacity: 0.95;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.92);
}

.cta-button {
    padding: 14px 38px;
    font-size: 1.05rem;
    border-radius: 999px;
    background: #fff;
    color: var(--primary);
    border: 0;
    font-weight: 700;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

    .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 16px 44px rgba(0,0,0,0.28);
        background: var(--text-light);
    }

.stats-section {
    background: #0f0f14;
    padding: 55px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stat-card {
    text-align: center;
    padding: 12px;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.screenshot-section {
    padding: 90px 0;
    background: var(--bg-dark);
}

.section-title {
    font-size: clamp(1.9rem, 2.6vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: #fff;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.screenshot-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: linear-gradient(135deg, rgba(53, 145, 212, 0.12), rgba(42, 122, 184, 0.12));
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    transition: transform .25s ease, box-shadow .25s ease;
    min-height: 380px;
}

    .screenshot-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 30px 80px rgba(53, 145, 212, 0.35);
    }

.screenshot-card-featured {
    transform: translateY(-6px);
}

.screenshot-placeholder {
    height: 100%;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.2rem;
    background: linear-gradient(135deg, rgba(53, 145, 212, 0.18), rgba(42, 122, 184, 0.18));
    text-align: center;
}

    .screenshot-placeholder i {
        font-size: 3.6rem;
        color: var(--primary);
        margin-bottom: 1rem;
    }

    .screenshot-placeholder h5 {
        color: #fff;
        margin-bottom: 0.6rem;
    }

    .screenshot-placeholder p {
        color: var(--text-muted);
        margin-bottom: 0;
        font-size: 0.95rem;
    }

.features-section {
    padding: 80px 0;
    background: #0f0f14;
}

.feature-card {
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    background: rgba(53, 145, 212, 0.06);
    backdrop-filter: blur(10px);
}

    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(53, 145, 212, 0.2);
        border-color: var(--primary);
    }

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 1.8rem;
    color: #fff;
}

.feature-card h4 {
    color: #fff;
    margin-bottom: 0.7rem;
    font-weight: 800;
}

.feature-card p {
    color: var(--text-muted);
    margin-bottom: 0;
}

.how-it-works {
    padding: 80px 0;
    background: var(--bg-dark);
}

.step-card {
    text-align: center;
    padding: 24px;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 16px;
}

.step-card h4 {
    color: #fff;
    margin-bottom: 0.8rem;
    font-weight: 800;
}

.step-card p {
    color: var(--text-muted);
    margin-bottom: 0;
}

.dashboard-preview {
    padding: 80px 0;
    background: #0f0f14;
}

.icon-primary {
    color: var(--primary) !important;
}

.contact-section {
    background: var(--primary-gradient);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.contact-subtitle {
    font-size: 1.1rem;
    opacity: 0.95;
}

.support-link {
    color: #fff;
    font-size: 1.1rem;
    text-decoration: none;
}

    .support-link:hover {
        text-decoration: underline;
        color: #fff;
    }

.footer {
    background: rgba(10, 10, 15, 0.95);
    border-top: 1px solid var(--border);
    color: var(--text-muted);
}

.footer-title {
    color: #fff;
    font-weight: 800;
}

.footer-subtitle, .footer-copy {
    font-size: 0.95rem;
    margin: 0;
}

.hero-section.lp-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 90px 0 60px; /* space for navbar */
    position: relative;
    overflow: hidden;
}

@media (max-width: 767px) {
    .image-home-logo,
    .image-checker-logo {
        width: 85%; /* or 90% if you want bigger */
        max-width: 320px; /* prevents oversized images */
        margin-bottom: 1.75rem;
    }
}

.logo-heading-section{
    margin-top:-5%
}



@media (min-width: 992px) {
    .image-checker-logo {
        margin-left: 0 !important;
        /*        margin-right: auto;
        display: block;*/
    }
}


.lp-hero h2 {
    font-size: clamp(28px, 5vw, 44px);
    line-height: 1.15;
    margin-top: 14px;
    margin-bottom: 12px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: clamp(15px, 2.8vw, 18px);
    line-height: 1.6;
    max-width: 42ch;
    margin: 0 auto;
    opacity: 0.9;
}

.image-home-logo {
    width: min(92%, 520px);
    height: auto;
    display: block;
    margin: 22px auto 0;
    border-radius: 14px;
}

.image-checker-logo {
    width: min(84%, 420px);
    height: auto;
    display: block;
    margin: 0 auto 18px;
}


@media (min-width: 992px) {
    .hero-subtitle {
        margin: 0;
    }
}

@media (min-width: 992px) {
    .image-home-logo {
        width: clamp(320px, 40vw, 760px);
    }
}

.auth-link:last-child {
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px;
    padding: 8px 12px;
}

/* Floating auth links (no navbar bar) */
.auth-links {
    position: fixed;
    top: 18px;
    right: 28px; /* move further right */
    z-index: 9999;
    background: transparent;
}

/* Horizontal layout + spacing */
.auth-links-inner {
    display: flex;
    gap: 18px;
    align-items: center;
}

/* Link styling */
.auth-link {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-weight: 700;
    padding: 6px 8px;
    transition: color .2s ease, opacity .2s ease;
}

    .auth-link:hover {
        color: #fff;
    }

    /* Active underline */
    .auth-link.active {
        position: relative;
        color: #fff;
    }

        .auth-link.active::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 100%;
            height: 2px;
            background: #4da3ff;
            border-radius: 2px;
        }

@media (max-width: 576px) {
    .auth-links {
        top: 12px;
        right: 14px;
    }

    .auth-links-inner {
        gap: 12px;
    }

    .auth-link {
        font-size: 14px;
        padding: 6px 6px;
    }
}
