/* --- THEME COLORS --- */
:root {
    --text-red: #ef4444;
    --text-green: #10b981;
}

.text-gradient {
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    font-weight: 700;
}

/* --- HERO --- */
.cs-hero {
    padding: 160px 0 60px;
    background: radial-gradient(circle at top center, rgba(59, 130, 246, 0.15), transparent 60%);
    text-align: center;
}
.cs-hero h1 { font-size: 3.5rem; color: white; margin-bottom: 20px; font-weight: 700; }
.cs-hero p { color: var(--text-gray); max-width: 600px; margin: 0 auto; font-size: 1.1rem; }
.sub-tag { color: var(--primary); text-transform: uppercase; letter-spacing: 2px; font-weight: 600; display: block; margin-bottom: 10px; }

/* --- SECTION A: SPOTLIGHT (ZIG ZAG) --- */
.spotlight-section { padding-bottom: 40px; }

.spotlight-row {
    display: flex; align-items: center; gap: 60px; margin-bottom: 100px;
}
.spotlight-row.reverse { flex-direction: row-reverse; }

/* Image Side */
.spotlight-img {
    flex: 1; position: relative; border-radius: 20px; overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.05);
}
.spotlight-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; display: block; }
.spotlight-img:hover img { transform: scale(1.05); }
.img-badge {
    position: absolute; top: 20px; right: 20px;
    background: rgba(15, 23, 42, 0.8); padding: 8px 16px;
    border-radius: 50px; color: white; font-size: 0.8rem;
    backdrop-filter: blur(5px); border: 1px solid rgba(255,255,255,0.1);
}

/* Info Side */
.spotlight-info { flex: 0.8; }
.client-logo img { height: 40px; margin-bottom: 20px; border-radius: 4px; }
.spotlight-info h2 { font-size: 2.2rem; color: white; margin-bottom: 30px; line-height: 1.3; }

/* Infographic Box */
.info-stat-box {
    display: flex; gap: 30px; margin-bottom: 30px;
    padding: 20px; background: var(--bg-card); border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
}
.stat-item h3 { font-size: 2.5rem; color: var(--primary); font-weight: 700; margin: 0; }
.stat-item p { font-size: 0.9rem; color: var(--text-gray); margin: 0; }

/* Bullet List */
.info-list { display: flex; flex-direction: column; gap: 15px; }
.list-item {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 1rem; color: #cbd5e1; line-height: 1.6;
}
.text-red { color: var(--text-red); margin-top: 5px; }
.text-green { color: var(--text-green); margin-top: 5px; }


/* --- SECTION B: ARCHIVE (GRID) --- */
.bg-darker { background: #0b1120; padding: 100px 0; }
.centered { text-align: center; margin-bottom: 50px; }
.centered h2 { font-size: 2.5rem; color: white; margin-bottom: 10px; }
.highlight { color: var(--primary); }

.case-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }

/* Dynamic Card Style */
.case-card {
    background: var(--bg-card); border-radius: 16px; overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05); transition: 0.3s; cursor: pointer;
    display: flex; flex-direction: column;
}
.case-card:hover { transform: translateY(-8px); border-color: var(--primary); box-shadow: 0 15px 30px rgba(0,0,0,0.3); }

.case-thumb { height: 200px; overflow: hidden; position: relative; }
.case-thumb img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.case-card:hover .case-thumb img { transform: scale(1.05); }

.case-body { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; }
.case-body h3 { font-size: 1.3rem; color: white; margin-bottom: 5px; }
.case-body p { color: var(--text-gray); font-size: 0.9rem; margin-bottom: 15px; }
.view-btn { 
    margin-top: auto; color: var(--primary); font-weight: 600; font-size: 0.9rem;
    display: flex; align-items: center; gap: 5px; transition: 0.3s; 
}
.view-btn:hover { gap: 10px; }

/* Responsive */
@media (max-width: 991px) {
    .spotlight-row, .spotlight-row.reverse { flex-direction: column; gap: 30px; text-align: center; }
    .info-stat-box { justify-content: center; }
    .list-item { justify-content: center; text-align: center; }
    .client-logo { display: flex; justify-content: center; }
}