/* ── GEO Page Styles ── */

.geo-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 60px;
    overflow: hidden;
    background: #000;
}

.geo-hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

.geo-hero .bg-overlay {
    z-index: 1;
}

.geo-section {
    padding: 60px 0;
}

.geo-stat {
    text-align: center;
    padding: 30px 15px;
}

.geo-stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: #cee002;
    line-height: 1;
}

.geo-stat-label {
    font-size: .9rem;
    color: #aaa;
    margin-top: 8px;
}

.geo-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
    transition: border-color .2s;
}

.geo-card:hover {
    border-color: rgba(206,224,2,0.4);
}

.geo-card-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.geo-card h4 {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.geo-card p {
    color: #aaa;
    font-size: .95rem;
    margin-bottom: 0;
}

.geo-step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.geo-step-num {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #cee002;
    color: #111;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.geo-step-content h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.geo-step-content p {
    color: #aaa;
    font-size: .9rem;
    margin-bottom: 0;
}

.geo-cta-box {
    background: rgba(206,224,2,0.08);
    border: 1px solid rgba(206,224,2,0.3);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
}
