.features-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #4338ca 100%);
    color: white;
    padding: 4.5rem 2rem;
    border-radius: 1rem;
    margin-bottom: 3rem;
    text-align: center;
}

.features-hero-icon {
    font-size: 3.5rem;
    color: #fbbf24;
    margin-bottom: 1rem;
}

.features-hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.features-hero .lead {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.features-hero-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.btn-features-primary,
.btn-features-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-features-primary {
    background: #fbbf24;
    color: #0f172a;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

.btn-features-primary:hover {
    transform: translateY(-2px);
    color: #0f172a;
    background: #fde68a;
    text-decoration: none;
}

.btn-features-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-features-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    color: white;
    text-decoration: none;
}

.features-intro {
    background: #f8fafc;
    border-radius: 1rem;
    padding: 2rem 2.5rem;
    margin-bottom: 3rem;
    border-left: 4px solid #4338ca;
}

.features-intro p {
    color: #334155;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.features-intro p:last-child {
    margin-bottom: 0;
}

.features-section-heading {
    text-align: center;
    color: #0f172a;
    margin: 3rem 0 2rem;
    font-weight: bold;
    position: relative;
    padding-bottom: 0.75rem;
}

.features-section-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #4338ca, #fbbf24);
    border-radius: 3px;
}

.features-card {
    background: white;
    border-radius: 1rem;
    padding: 1.75rem;
    margin-bottom: 1.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: calc(100% - 1.75rem);
    border-top: 3px solid transparent;
}

.features-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    border-top-color: #4338ca;
}

.features-card .icon {
    font-size: 2.25rem;
    color: #4338ca;
    margin-bottom: 0.75rem;
}

.features-card h3 {
    color: #0f172a;
    margin-bottom: 0.75rem;
    font-weight: 600;
    font-size: 1.2rem;
}

.features-card p {
    color: #475569;
    margin-bottom: 0;
    line-height: 1.6;
    font-size: 0.97rem;
}

.features-card code {
    background: #eef2ff;
    color: #4338ca;
    padding: 1px 6px;
    border-radius: 4px;
    font-size: 0.9em;
}

.features-admin-callout {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left: 4px solid #d97706;
    border-radius: 0.75rem;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
}

.features-admin-callout p {
    color: #78350f;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.features-repo-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
}

.features-repo-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-repo-list li {
    padding: 0.75rem 0;
    color: #334155;
    line-height: 1.6;
    border-bottom: 1px solid #f1f5f9;
}

.features-repo-list li:last-child {
    border-bottom: none;
}

.features-repo-list li i {
    color: #4338ca;
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.features-repo-list li strong {
    color: #0f172a;
    font-family: monospace;
    background: #eef2ff;
    padding: 1px 6px;
    border-radius: 4px;
    margin-right: 0.25rem;
}

.features-not-included {
    background: #fefce8;
    border-left: 4px solid #ca8a04;
    border-radius: 0.75rem;
    padding: 2rem;
    margin-bottom: 3rem;
}

.features-not-included h3 {
    color: #713f12;
    font-weight: 600;
    margin-bottom: 1rem;
}

.features-not-included h3 i {
    margin-right: 0.5rem;
    color: #ca8a04;
}

.features-not-included p {
    color: #57534e;
    line-height: 1.6;
}

.features-not-included ul {
    color: #57534e;
    margin: 1rem 0;
    padding-left: 1.5rem;
    line-height: 1.8;
}

.features-not-included p:last-child {
    margin-bottom: 0;
}

.features-contact-card {
    background: linear-gradient(135deg, #1e3a8a 0%, #4338ca 100%);
    color: white;
    border-radius: 1rem;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.features-contact-card h2 {
    color: white;
    font-weight: bold;
    margin-bottom: 1rem;
}

.features-contact-card h2 i {
    margin-right: 0.5rem;
}

.features-contact-card p {
    font-size: 1.1rem;
    opacity: 0.95;
    max-width: 640px;
    margin: 0 auto;
}

.features-contact-email {
    margin-top: 1.5rem !important;
    font-size: 1.4rem;
    font-weight: 600;
}

.features-contact-email a {
    color: #fde68a;
    text-decoration: none;
}

.features-contact-email a:hover {
    color: white;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .features-hero {
        padding: 3rem 1.5rem;
    }

    .features-hero h1 {
        font-size: 2.25rem;
    }

    .features-hero .lead {
        font-size: 1.05rem;
    }

    .btn-features-primary,
    .btn-features-secondary {
        width: 100%;
        justify-content: center;
    }

    .features-intro,
    .features-repo-card,
    .features-not-included,
    .features-contact-card {
        padding: 1.5rem;
    }

    .features-section-heading {
        font-size: 1.5rem;
    }

    .features-contact-email {
        font-size: 1.15rem;
    }
}
