.cf-hero {
    background: var(--theme-footer-custom);
    border-radius: 8px 8px 0 0;
    color: rgb( var(--theme-link) );
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.cf-hero-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cf-hero-text {
    flex: 1 1 500px;
}

.cf-hero-text h1 {
    font-size: 3em;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.cf-hero-text h1 span {
    color: #61c79f;
}

.cf-hero-text p {
    font-size: 1.2em;
    color: rgb( var(--theme-text_light) );
    max-width: 600px;
    margin-bottom: 30px;
}

.cf-hero-icon-wrapper {
    flex: 0 1 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cf-hero-icon-bg {
    background: linear-gradient(135deg, rgba(99, 197, 166, 0.1), rgba(98, 200, 142, 0.15));
    border: 2px solid rgba(98, 200, 142, 0.2);
    box-shadow: 0 0 25px rgba(99, 195, 179, 0.3);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    backdrop-filter: blur(6px);
}

.cf-hero-icon-bg i {
    font-size: 72px;
    color: #61c79f;
    text-shadow: 0 0 12px rgba(99, 195, 179, 0.3);
}

.cf-stats-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
    margin-top: 60px;
    padding: 0 20px 40px;
    max-width: 1200px;
    width: 100%;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
}

.cf-stats-grid > * {
    min-width: 0;
}

.cf-stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(98, 200, 142, 0.1);
    border-radius: 12px;
    padding: 20px 0 0 0;
    text-align: center;
    box-shadow: 0 0 15px rgba(99, 195, 179, 0.08);
    backdrop-filter: blur(4px);
    transition: transform 0.2s ease;
}

.cf-stat-card:hover {
    transform: translateY(-4px);
}

.cf-stat-card i {
    font-size: 28px;
    margin-bottom: 10px;
    color: #61c79f;
}

.cf-stat-card h3 {
    font-size: 1.1em;
    color: #fff;
    margin: 10px 0 5px;
}

.cf-stat-card p {
    font-size: 1.4em;
    color: #62c5a3;
}

.cf-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin: 60px auto 40px;
    max-width: 1200px;
    padding: 0 20px;
}

.cf-feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(98, 200, 142, 0.1);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: transform 0.2s ease;
    backdrop-filter: blur(4px);
}

.cf-feature-card:hover {
    transform: translateY(-4px);
}

.cf-feature-icon {
    background: linear-gradient(135deg, rgba(98, 200, 142, 0.2), rgba(99, 195, 179, 0.2));
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 16px;
    box-shadow: 0 0 12px rgba(99, 197, 166, 0.15);
}

.cf-feature-icon i {
    font-size: 24px;
    color: #61c79f;
}

.cf-feature-card h3 {
    color: rgb( var(--theme-link) );
    font-size: 1.1em;
    margin-bottom: 8px;
}

.cf-feature-card p {
    color: rgb( var(--theme-text_light) );
    font-size: 0.95em;
    line-height: 1.4;
}

.cf-stats {
    background: #0a1c18;
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.cf-stats-header {
    margin-bottom: 50px;
}

.cf-stats-header h2 {
    font-size: 2.2em;
    margin-bottom: 10px;
}

.cf-stats-header p {
    font-size: 1em;
    color: #ccc;
    max-width: 700px;
    margin: 0 auto;
}

.cf-accent {
    color: #61c79f;
}

.cf-stats-cta {
    margin-top: 50px;
    text-align: center;
}

.cf-steps {
    background: var(--theme-footer-custom);
    color: rgb( var(--theme-link) );
    padding: 5px 20px 80px 20px;
    text-align: center;
}

.cf-steps-header {
    margin-bottom: 50px;
}

.cf-steps-header h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

.cf-steps-header p {
    color: rgb( var(--theme-text_light) );
    font-size: 1em;
    max-width: 700px;
    margin: 0 auto;
}

.cf-step-long-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.cf-step-long-grid > * {
    min-width: 0;
}

.cf-step-long-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(98, 200, 142, 0.1);
    border-radius: 12px;
    display: flex;
    padding: 24px;
    align-items: flex-start;
    transition: transform 0.2s ease;
    backdrop-filter: blur(4px);
    text-align: left;
}

.cf-step-long-card:hover {
    transform: translateY(-4px);
}

.cf-step-badge {
    background: linear-gradient(135deg, rgba(98, 200, 142, 0.2), rgba(99, 195, 179, 0.2));
    color: #61c79f;
    font-weight: bold;
    font-size: 1em;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    margin-top: 4px;
    box-shadow: 0 0 12px rgba(99, 197, 166, 0.15);
}

.cf-step-content a {
    color: #61c79f;
}

.cf-step-content h3 {
    font-size: 1.1em;
    color: rgb(var(--theme-link));
    margin: 0 0 8px;
}

.cf-step-content p {
    color: rgb(var(--theme-text_light));
    font-size: 0.95em;
    line-height: 1.5;
    margin: 0;
}


@media (max-width: 979px) {
    .cf-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-flow: row;
        gap: 12px;
        margin-top: 30px;
        padding: 0 12px 30px;
    }

    .cf-stat-card {
        min-width: 0;
        width: 100%;
    }

    .cf-step-long-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
        padding: 0 12px;
    }

    .cf-step-long-grid > * {
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .cf-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cf-stat-card {
        min-width: 0;
    }

    .cf-stat-card h3, .cf-stat-card p {
        overflow-wrap: anywhere;
    }

    .cf-hero-icon-wrapper {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .cf-stats-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 420px) {
    .cf-stats-grid {
        grid-template-columns: 1fr;
    }

}

.cf-knowledge {
    background: var(--theme-footer-custom);
    color: rgb(var(--theme-link));
    padding: 80px 20px;
    text-align: center;
}

.cf-knowledge-header {
    margin-bottom: 50px;
}

.cf-knowledge-header h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

.cf-knowledge-header p {
    color: rgb(var(--theme-text_light));
    font-size: 1em;
    max-width: 700px;
    margin: 0 auto;
}

.cf-knowledge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.cf-knowledge-card {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(98, 200, 142, 0.1);
    border-radius: 12px;
    padding: 20px;
    text-align: left;
    text-decoration: none !important;
    color: inherit;
    backdrop-filter: blur(4px);
    transition: transform 0.2s ease, border 0.2s ease;
}

.cf-knowledge-icon {
    background: rgb( var(--theme-light_button) );
    border-radius: 8px;
    width: 52px;
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    flex-shrink: 0;
    font-size: 20px;
    color: rgb( var(--theme-text_color) );
}

.cf-knowledge-card:hover {
    transform: translateY(-4px);
}

.cf-knowledge-content h3 {
    margin: 0 0 6px;
    font-size: 1.1em;
    color: rgb(var(--theme-link));
}

.cf-knowledge-content p {
    font-size: 0.95em;
    color: rgb(var(--theme-text_light));
    margin: 0;
    line-height: 1.4;
}