/* ===== WORK / PORTFOLIO SECTION ===== */
.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin: 48px 0;
}

.work-item {
    background: #111;
    border-radius: 24px;
    overflow: hidden;
    transition: 0.2s;
    border: 1px solid #222;
}

.work-img {
    height: 285px;
    background: #1e1e1e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--yellow);
    object-fit: contain;
    background: linear-gradient(145deg, #141414, #0a0a0a);
}

.work-info {
    padding: 20px;
}

.work-info h4 {
    margin-bottom: 8px;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 48px 0;
}

.testimonial-card {
    background: #0a0a0a;
    border-radius: 24px;
    padding: 32px;
    border: 1px solid #2a2a2a;
}

.testimonial-text {
    font-size: 1rem;
    font-style: italic;
    color: #e0e0e0;
    margin-bottom: 20px;
    line-height: 1.5;
}

.testimonial-author {
    font-weight: 700;
    color: var(--yellow);
}

.testimonial-role {
    font-size: 0.8rem;
    color: #aaa;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, #111 0%, #000 100%);
    border-radius: 48px;
    padding: 64px 48px;
    text-align: center;
    margin: 60px 0;
    border: 1px solid #2c2c2c;
}

.cta-section h2 {
    font-size: 2.2rem;
}

.cta-section .btn {
    margin-top: 28px;
}