:root {
    --lms-dark-bg: #0f172a;
    --lms-primary: #059669;
    --lms-secondary: #10b981;
    --lms-glass: rgba(255, 255, 255, 0.05);
    --lms-border: rgba(255, 255, 255, 0.1);
}

.lms-hero-dark {
    background-color: var(--lms-dark-bg);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    text-align: center;
}

.lms-animated-bg {
    background: linear-gradient(-45deg, #0f172a, #064e3b, #022c22, #0f172a);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.lms-grid-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
    pointer-events: none;
}

.lms-glow-effect {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(5, 150, 105, 0.2) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    filter: blur(80px);
    pointer-events: none;
}

.lms-badge-pill {
    display: inline-flex;
    align-items: center;
    background: var(--lms-glass);
    border: 1px solid var(--lms-border);
    padding: 6px 16px 6px 6px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    margin: 0 auto 30px;
}

.lms-badge-tag {
    background: var(--lms-primary);
    color: white;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 800;
    margin-right: 12px;
}

.lms-badge-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.lms-hero-title-dark {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 25px;
}

.lms-hero-desc-dark {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    max-width: 800px;
    margin: 0 auto 50px;
}

.lms-button-group-center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    position: relative;
    z-index: 20;
}

.btn-lms-glass-primary {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--lms-primary);
    color: #ffffff !important;
    padding: 8px 30px 8px 8px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}

.btn-lms-glass-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(5, 150, 105, 0.4);
}

.btn-icon-circle {
    width: 44px;
    height: 44px;
    background: white;
    color: var(--lms-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.btn-lms-glass-secondary {
    display: inline-flex;
    align-items: center;
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 700;
    gap: 10px;
    padding: 18px 30px;
    border: 1px solid var(--lms-border);
    border-radius: 12px;
    background: var(--lms-glass);
    transition: 0.3s;
}

.btn-lms-glass-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.lms-hero-features-center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 60px; /* Increased from 20px to 60px to add space between buttons and badges */
}

.lms-h-feat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

.lms-h-feat i {
    color: var(--lms-primary) !important;
    font-size: 1.1rem;
}

.floating-item {
    position: absolute;
    z-index: 2;
    opacity: 0.3;
    pointer-events: none;
}

.item-1 { top: 20%; left: 8%; color: var(--lms-primary); font-size: 1.8rem; }
.item-2 { bottom: 20%; right: 8%; color: var(--lms-primary); font-size: 1.5rem; }

@media (max-width: 991px) {
    .lms-hero-title-dark { font-size: 3.5rem; }
    .lms-button-group-center { gap: 15px; }
    .lms-hero-features-center { gap: 25px; margin-top: 40px; }
}

@media (max-width: 767px) {
    .lms-hero-title-dark { font-size: 2.8rem; }
    .lms-button-group-center { flex-direction: column; }
    .lms-hero-features-center { flex-direction: column; gap: 15px; margin-top: 35px; }
    .btn-lms-glass-primary, .btn-lms-glass-secondary { width: 100%; justify-content: center; }
}