/**
 * Bento Grid Section Styles
 * 
 * Multi-card grid layout with various content types
 */

/* ===== Bento Grid Section ===== */
.bento-section {
    padding: 100px 20px;
    background: #F5F5F6;
}

.bento-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Main Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
}

/* Base Card Styles */
.bento-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    overflow: hidden;
}

/* ===== Row 1 ===== */

/* CSAT Card - Small */
.bento-csat {
    grid-column: span 3;
    text-align: center;
}

.bento-csat .card-title {
    font-size: 24px;
    font-weight: 600;
    color: #060612;
    margin-bottom: 8px;
}

.bento-csat .card-desc {
    font-size: 13px;
    color: #69686E;
    margin-bottom: 16px;
}

.bento-csat .rating-label {
    font-size: 14px;
    font-weight: 600;
    color: #FF6321;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.bento-csat .emoji-row {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.bento-csat .emoji {
    width: 32px;
    height: 32px;
    background: #FFEEE6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.bento-csat .emoji.active {
    background: #FF6321;
}

/* Strategy Card - Medium */
.bento-strategy {
    grid-column: span 6;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 0;
    overflow: hidden;
}

.bento-strategy .card-image {
    height: 100%;
    min-height: 200px;
    background: #f0f0f0;
    border-radius: 16px 0 0 16px;
    overflow: hidden;
}

.bento-strategy .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bento-strategy .card-content {
    padding: 24px 24px 24px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bento-strategy .card-icon {
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.bento-strategy .card-title {
    font-size: 20px;
    font-weight: 500;
    color: #060612;
    margin-bottom: 8px;
}

.bento-strategy .card-desc {
    font-size: 14px;
    color: #69686E;
    line-height: 1.5;
}

/* Nav Arrows Card - Small */
.bento-nav {
    grid-column: span 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.bento-nav button {
    width: 44px;
    height: 44px;
    border: 1px solid #e0e0e0;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.bento-nav button:hover {
    border-color: #FF6321;
    color: #FF6321;
}

/* ===== Row 2 ===== */

/* CTA Card - Orange */
.bento-cta {
    grid-column: span 4;
    background: #FF6321;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 24px;
}

.bento-cta .card-title {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
}

.bento-cta .btn-cta {
    display: inline-block;
    padding: 12px 24px;
    background: #060612;
    color: white;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-bottom: 12px;
}

.bento-cta .btn-cta:hover {
    background: #1a1a2e;
    transform: translateY(-2px);
}

.bento-cta .card-note {
    font-size: 13px;
    opacity: 0.9;
}

/* SEO Performance Card */
.bento-seo {
    grid-column: span 8;
    text-align: center;
    padding: 32px;
}

.bento-seo .card-title {
    font-size: 22px;
    font-weight: 500;
    color: #060612;
    margin-bottom: 8px;
}

.bento-seo .card-desc {
    font-size: 14px;
    color: #69686E;
    margin-bottom: 32px;
}

.bento-seo .metrics-row {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 24px;
}

.bento-seo .metric {
    text-align: center;
}

.bento-seo .metric-circle {
    width: 80px;
    height: 80px;
    border: 3px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    font-size: 18px;
    font-weight: 600;
    color: #060612;
}

.bento-seo .metric.highlight .metric-circle {
    width: 100px;
    height: 100px;
    border-color: #FF6321;
    border-width: 4px;
    font-size: 24px;
}

.bento-seo .metric-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #69686E;
}

/* ===== Row 3 ===== */

/* Agency Rebuild Card */
.bento-rebuild {
    grid-column: span 3;
}

.bento-rebuild .card-title {
    font-size: 20px;
    font-weight: 500;
    color: #060612;
    margin-bottom: 4px;
}

.bento-rebuild .card-stat {
    font-size: 13px;
    color: #FF6321;
    margin-bottom: 16px;
}

.bento-rebuild .card-images {
    display: flex;
    gap: 8px;
}

.bento-rebuild .card-images img {
    width: 60px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    background: #f0f0f0;
}

/* Industries Card */
.bento-industries {
    grid-column: span 5;
}

.bento-industries .card-title {
    font-size: 20px;
    font-weight: 500;
    color: #060612;
    margin-bottom: 20px;
}

.bento-industries .industry-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bento-industries .industry-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #69686E;
}

.bento-industries .industry-item::before {
    content: '★';
    color: #FF6321;
    font-size: 12px;
}

.bento-industries .industry-item.highlight {
    color: #FF6321;
    font-weight: 500;
}

/* Team/Testimonial Card */
.bento-team {
    grid-column: span 4;
    padding: 0;
    position: relative;
    min-height: 280px;
    overflow: hidden;
}

.bento-team .card-image {
    position: absolute;
    inset: 0;
}

.bento-team .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bento-team .card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    color: white;
}

.bento-team .card-name {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 4px;
}

.bento-team .card-role {
    font-size: 13px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {

    .bento-csat,
    .bento-nav {
        grid-column: span 6;
    }

    .bento-strategy {
        grid-column: span 12;
    }

    .bento-cta {
        grid-column: span 5;
    }

    .bento-seo {
        grid-column: span 7;
    }

    .bento-rebuild {
        grid-column: span 4;
    }

    .bento-industries {
        grid-column: span 8;
    }

    .bento-team {
        grid-column: span 12;
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .bento-section {
        padding: 60px 20px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .bento-card {
        grid-column: span 1 !important;
    }

    .bento-strategy {
        grid-template-columns: 1fr;
    }

    .bento-strategy .card-image {
        border-radius: 16px 16px 0 0;
        min-height: 180px;
    }

    .bento-strategy .card-content {
        padding: 20px;
    }

    .bento-seo .metrics-row {
        gap: 16px;
    }

    .bento-seo .metric-circle {
        width: 60px;
        height: 60px;
        font-size: 14px;
    }

    .bento-seo .metric.highlight .metric-circle {
        width: 70px;
        height: 70px;
        font-size: 18px;
    }
}