/* Premium landing page specific custom styles */
.landing-hero {
    position: relative;
    background: linear-gradient(135deg, #041916 0%, #0A2B26 100%);
    padding: 3rem 1.75rem;
    border-radius: 20px;
    color: #ffffff;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(4, 25, 22, 0.3);
    border: 1px solid rgba(0, 200, 150, 0.18);
    margin-bottom: 2rem;
}

.landing-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 200, 150, 0.18) 0%, transparent 50%);
    animation: rotateBg 20s linear infinite;
    z-index: 0;
}

@keyframes rotateBg {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
    margin: 0 auto;
}

.hero-badge {
    background: rgba(0, 200, 150, 0.15);
    border: 1px solid rgba(0, 200, 150, 0.35);
    padding: 0.35rem 1.1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 1.25rem;
    color: #00C896;
    text-transform: uppercase;
    animation: pulseBadge 2.5s infinite;
}

@keyframes pulseBadge {
    0% { box-shadow: 0 0 0 0 rgba(0, 200, 150, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(0, 200, 150, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 200, 150, 0); }
}

.hero-title {
    font-size: 2.1rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #a7f3d0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 0.95rem;
    color: #a0bdb8;
    line-height: 1.6;
    margin-bottom: 1.75rem;
}

.hero-btn {
    transition: all 0.3s ease;
    padding: 0.5rem 1.75rem;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 50px;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #00A88F 0%, #00806D 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 6px 16px rgba(0, 168, 143, 0.35);
}

.hero-btn-primary:hover {
    background: linear-gradient(135deg, #00B89D 0%, #008C77 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 168, 143, 0.45);
    color: #ffffff;
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    color: #ffffff;
}

/* Core Stats Section */
.landing-stats {
    background: var(--bs-body-bg);
    border: 1px solid var(--bs-border-color);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.4rem;
    color: #2563eb;
}

.stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--bs-secondary-color);
}

/* Governance Grid Cards */
.status-card {
    background: var(--bs-body-bg);
    border: 1px solid var(--bs-border-color);
    border-radius: 14px;
    padding: 1.25rem;
    height: 100%;
    transition: all 0.25s ease;
}

.status-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
    border-color: rgba(37, 99, 235, 0.3);
}

.icon-box {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

/* Features Section */
.feature-card {
    border: 1px solid var(--bs-border-color);
    background: var(--bs-body-bg);
    border-radius: 14px;
    padding: 1.5rem 1.25rem;
    height: 100%;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
    border-color: rgba(37, 99, 235, 0.3);
}

.feature-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* Process steps styles */
.process-timeline-card {
    border-radius: 16px;
    border: 1px solid var(--bs-border-color);
    background: var(--bs-body-bg);
    padding: 1.75rem;
    height: 100%;
    transition: all 0.3s ease;
}

.process-timeline-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.03);
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 1.6rem;
    }
    .hero-desc {
        font-size: 0.9rem;
    }
    .stat-number {
        font-size: 2rem;
    }
}
