/* ===== ODOO DASHBOARD SECTION ===== */
.odoo-dashboard {
    padding: 100px 0;
    background-color: #f8fafc;
    overflow: hidden;
}

.dashboard-header {
    margin-bottom: 4rem;
}

.dashboard-header h2 span {
    color: #4F46E5;
}

.dashboard-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

/* Visual Showcase (Left) */
.dashboard-visual-showcase {
    position: relative;
    display: grid;
    gap: 1.25rem;
}

.dashboard-featured-shot {
    position: relative;
    min-height: 380px;
    border-radius: 28px;
    overflow: hidden;
    background: #0f172a;
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.16);
}

.dashboard-featured-shot img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.dashboard-featured-shot::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.05) 15%, rgba(15, 23, 42, 0.78) 100%);
}

.dashboard-featured-copy {
    position: absolute;
    right: 1.5rem;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 1;
    color: #fff;
}

.dashboard-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.8rem;
    margin-bottom: 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.dashboard-featured-copy h4 {
    color: #fff;
    margin-bottom: 0.45rem;
    font-size: 1.7rem;
}

.dashboard-featured-copy p {
    max-width: 540px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.86);
}

.dashboard-shot-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr 0.85fr;
    gap: 1rem;
}

.dashboard-shot-card {
    position: relative;
    min-height: 180px;
    margin: 0;
    overflow: hidden;
    border-radius: 22px;
    background: linear-gradient(160deg, #e2e8f0, #cbd5e1);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.dashboard-shot-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.dashboard-shot-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.04) 35%, rgba(15, 23, 42, 0.76) 100%);
}

.dashboard-shot-card:hover img {
    transform: scale(1.04);
}

.dashboard-shot-card figcaption {
    position: absolute;
    right: 1rem;
    bottom: 0.95rem;
    left: 1rem;
    z-index: 1;
    color: #fff;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.35;
}

.tall-card {
    min-height: 220px;
}

.compact-card {
    min-height: 220px;
}

.accent-card {
    transform: none;
}

/* Dashboard Card (Right) */
.dashboard-info-card {
    background: #ffffff;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(79, 70, 229, 0.08);
    border: 1px solid rgba(79, 70, 229, 0.05);
}

.dashboard-info-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.dashboard-info-card p {
    color: #64748b;
    margin-bottom: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.stat-item {
    background: #f1f5f9;
    padding: 1.5rem 1rem;
    border-radius: 16px;
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
}

.check-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
    text-align: left;
}

.check-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    color: #475569;
    font-weight: 500;
}

.check-features i {
    color: #4F46E5;
}

.dashboard-btns {
    display: flex;
    gap: 1rem;
}

.btn-primary-small {
    background: #4F46E5;
    color: #fff;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    flex: 1;
    text-align: center;
}

.btn-outline-small {
    background: transparent;
    border: 2px solid #4F46E5;
    color: #4F46E5;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    flex: 1;
    text-align: center;
}

/* Bottom Feature Cards */
.bottom-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.bottom-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.bottom-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.bottom-card-icon {
    width: 50px;
    height: 50px;
    background: #f1f5f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #4F46E5;
    margin-bottom: 1.5rem;
}

.bottom-card h4 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.bottom-card p {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .dashboard-main-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-shot-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .accent-card {
        transform: none;
    }

    .bottom-features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .odoo-dashboard {
        padding: 72px 0;
    }

    .dashboard-header {
        margin-bottom: 2.5rem;
    }

    .dashboard-header h2 {
        font-size: 2.2rem !important;
        line-height: 1.15;
    }

    .dashboard-header p {
        font-size: 1rem;
        padding: 0 0.25rem;
    }

    .dashboard-main-grid {
        gap: 2rem;
        margin-bottom: 2.75rem;
    }

    .dashboard-featured-shot {
        min-height: 320px;
    }

    .dashboard-shot-grid {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }

    .dashboard-shot-card,
    .tall-card,
    .compact-card {
        min-height: 220px;
    }

    .dashboard-info-card {
        padding: 2rem 1.35rem;
        border-radius: 20px;
    }

    .dashboard-info-card h3 {
        font-size: 1.6rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .stat-item {
        padding: 1.15rem 1rem;
    }

    .dashboard-btns {
        flex-direction: column;
    }

    .btn-primary-small,
    .btn-outline-small {
        width: 100%;
    }

    .bottom-features-grid {
        gap: 1rem;
    }

    .bottom-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .dashboard-header h2 {
        font-size: 1.85rem !important;
    }

    .dashboard-featured-shot {
        min-height: 280px;
    }

    .dashboard-featured-copy {
        right: 1rem;
        bottom: 1rem;
        left: 1rem;
    }

    .dashboard-featured-copy h4 {
        font-size: 1.3rem;
    }

    .dashboard-featured-copy p,
    .dashboard-info-card p,
    .bottom-card p {
        font-size: 0.95rem;
    }

    .dashboard-shot-card,
    .tall-card,
    .compact-card {
        min-height: 200px;
    }

    .dashboard-shot-card figcaption {
        right: 0.85rem;
        left: 0.85rem;
        bottom: 0.85rem;
        font-size: 0.86rem;
    }

    .dashboard-info-card {
        padding: 1.75rem 1rem;
    }
}
