/* ═══════════════════════════════════════════
   COMPLIA — Landing Page (page-specific)
   Requires: global.css loaded first.
   ═══════════════════════════════════════════ */

/* Full-viewport lock (landing only) */
body {
    overflow: hidden;
    height: 100vh;
}


/* ═══════════════════════════════════════════
   HERO — Full viewport
   ═══════════════════════════════════════════ */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 28px 40px;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(0, 85, 90, 0.04) 0%, transparent 60%);
}

.hero-inner {
    max-width: 860px;
    width: 100%;
    text-align: center;
}

/* Eyebrow pill — visually small, semantically h2 */
.hero-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--brand);
    background: var(--brand-light);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

/* h1 inherits from global.css: same as h2 but bolder (800 vs 700) */
.hero-headline {
    margin-bottom: 14px;
    color: var(--brand);
}

.hero-subtitle {
    margin: 0 auto 36px;
}

.hero-cta {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    background: var(--brand);
    padding: 15px 40px;
    border-radius: var(--radius);
    transition: all 0.25s ease;
    letter-spacing: 0.2px;
}

.hero-cta:hover {
    background: var(--brand-hover);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.hero-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 5px;
}

.badge svg {
    color: #10B981;
}

.badge-dot {
    color: var(--border);
}


/* ═══════════════════════════════════════════
   STEP CARDS — Inside hero
   ═══════════════════════════════════════════ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: left;
    margin-bottom: 32px;
}

.step-card {
    position: relative;
    display: block;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px 24px 28px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: var(--shadow-sm);
}

.step-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: rgba(0, 85, 90, 0.25);
}

.step-number {
    position: absolute;
    top: -12px;
    left: 20px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    background: var(--brand);
    border-radius: 50%;
}

.step-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 16px;
    color: var(--brand);
}

.step-icon svg {
    width: 100%;
    height: 100%;
}

.step-card h3 {
    margin-bottom: 8px;
}

.step-card p {
    font-size: 14px;
}


/* ═══════════════════════════════════════════
   FOOTER override — pinned to bottom
   ═══════════════════════════════════════════ */
.site-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}


/* ═══════════════════════════════════════════
   RESPONSIVE — Landing-specific
   ═══════════════════════════════════════════ */
@media (max-width: 768px) {
    body {
        overflow: auto;
        height: auto;
    }

    .hero {
        height: auto;
        min-height: 100vh;
        padding: 100px 20px 80px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .step-card {
        padding: 28px 20px 24px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .step-card .step-number {
        left: 50%;
        transform: translateX(-50%);
    }

    .step-card .step-icon {
        margin-left: 0;
        margin-right: 0;
    }

    .site-footer {
        position: static;
    }
}