/* ============================================
   SECUREARK HOME PAGE SPECIFIC STYLES
   ============================================ */

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

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

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

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-6);
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    max-width: 660px;
    margin: 0 auto var(--space-8);
    line-height: var(--leading-relaxed);
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
    margin-bottom: var(--space-12);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-8);
    padding: var(--space-6) var(--space-8);
    background: var(--color-bg-glass);
    backdrop-filter: blur(20px);
    border: var(--border-glass);
    border-radius: var(--border-radius-xl);
    max-width: 600px;
    margin: 0 auto;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-family: var(--font-primary);
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--color-text-primary);
    display: block;
    line-height: 1;
}

.hero-stat-label {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
    margin-top: var(--space-1);
    display: block;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
    z-index: 2;
}

.hero-scroll-indicator span {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--color-accent-blue), transparent);
    animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {

    0%,
    100% {
        opacity: 1;
        transform: scaleY(1);
    }

    50% {
        opacity: 0.4;
        transform: scaleY(0.6);
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: var(--space-12);
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--space-4);
        padding: var(--space-5);
    }

    .hero-stat-divider {
        width: 40px;
        height: 1px;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
    }
}

/* ── Why SecureArk Grid ── */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
    max-width: 900px;
    margin: 0 auto;
}

.why-card {
    padding: var(--space-8);
    background: var(--color-bg-card);
    border: var(--border-glass);
    border-radius: var(--border-radius-lg);
    position: relative;
    overflow: hidden;
    transition: all var(--duration-normal) var(--ease-out);
}

.why-card:hover {
    border-color: rgba(79, 125, 249, 0.2);
    transform: translateY(-4px);
}

.why-number {
    font-family: var(--font-primary);
    font-size: var(--text-7xl);
    font-weight: 900;
    position: absolute;
    top: -10px;
    right: 10px;
    opacity: 0.04;
    line-height: 1;
    color: var(--color-accent-blue);
}

.why-card h4 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-3);
    position: relative;
}

.why-card p {
    font-size: var(--text-sm);
    position: relative;
}

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

/* ── CTA Final Section ── */
.cta-final {
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: var(--space-32) 0;
}

.cta-final-content {
    position: relative;
    z-index: 2;
}

.cta-final h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: var(--space-4);
}

.cta-final p {
    font-size: var(--text-lg);
    max-width: 600px;
    margin: 0 auto var(--space-8);
}