.highlight-features {
    padding: 6rem 2rem;
    background: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    border-radius: 20px;
    font-size: 0.9rem;
}

.section-heading {
    font-size: 2.5rem;
    color: #6366f1;
    margin-top: 1rem;
    line-height: 1.2;
}

.features-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 2rem;
    align-items: start;
}

.code-preview {
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
}

.code-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-quote {
    background: #0d2318;
    border-radius: 12px;
    padding: 3rem 2rem;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote-content {
    color: #00ff66;
    font-size: 1.8rem;
    line-height: 1.4;
}

.quote-author {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quote-author span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.lets-go-btn {
    align-self: flex-start;
    background: transparent;
    border: none;
    color: #00ff66;
    font-size: 1rem;
    padding: 0;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.lets-go-btn:hover {
    opacity: 0.8;
}

.work-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.work-card {
    background: #E8EFEB;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: all 0.3s ease;
}



.card-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card-content {
    flex: 1;
    gap: 4px;
}

².card-content h3 {
    color: #042D14;
    font-family: Bahnschrift;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.card-content p {
    color: #586869;
    font-family: Bahnschrift;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .code-preview,
    .founder-quote {
        height: 400px;
    }

    .quote-content {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .highlight-features {
        padding: 4rem 1rem;
    }

    .section-heading {
        font-size: 2rem;
    }

    .code-preview,
    .founder-quote {
        height: 300px;
    }

    .quote-content {
        font-size: 1.2rem;
    }
}

.theme-filter {
    filter: hue-rotate(90deg) saturate(2) brightness(0.9);
    transition: filter 0.3s ease-in-out;
}

.theme-filter:hover {
    filter: hue-rotate(90deg) saturate(2.2) brightness(1);
}