body {
    background-color: #f8faf7;
    font-family: "Manrope", sans-serif;
    color: #0f172a;
}

.case-study-page {
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;
}

.case-hero,
.info-grid,
.process-section,
.showcase-section,
.outcomes-grid,
.cta-section {
    margin-bottom: 24px;
}

.breadcrumbs {
    display: flex;
    gap: 12px;
    align-items: center;
    margin: 30px 0;
    font-weight: 600;
}

.breadcrumbs a {
    color: #2f7d3b;
    text-decoration: none;
}

.breadcrumbs p,
.breadcrumbs span {
    color: #64748b;
    margin: 0;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.section-label {
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #2f7d3b;
}

.hero-text h1 {
    margin: 0;
    font-size: 64px;
    line-height: 1;
    font-weight: 800;
}

.hero-description {
    max-width: 600px;
    margin: 24px 0;
    font-size: 22px;
    line-height: 1.6;
    color: #334155;
}

.case-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
}

.case-tags li {
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
}

.case-tags li:nth-child(1) {
    background-color: #dcfce7;
    color: #166534;
}

.case-tags li:nth-child(2) {
    background-color: #ede9fe;
    color: #6d28d9;
}

.case-tags li:nth-child(3) {
    background-color: #ffedd5;
    color: #9a3412;
}

.case-tags li:nth-child(4) {
    background-color: #dbeafe;
    color: #1d4ed8;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.primary-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 16px 26px;
    border-radius: 10px;

    text-decoration: none;
    font-weight: 800;
    transition: all 0.25s ease;
}

.primary-btn {
    background-color: #2f7d3b;
    color: white;
    box-shadow: 0 8px 20px rgba(47, 125, 59, 0.25);
}

.secondary-btn {
    background-color: white;
    color: #0f172a;
    border: 1px solid #cbd5e1;
}

.primary-btn:hover,
.secondary-btn:hover {
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 28px;
}

.info-grid,
.outcomes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.overview-card,
.problem-goal-card,
.process-section,
.showcase-section,
.outcome-card,
.cta-section {
    background-color: white;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.card-title {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.card-title i {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #eaf6ec;
    color: #2f7d3b;

    border-radius: 50%;
}

.card-title h3 {
    margin: 0;
    font-size: 24px;
}

.overview-card p,
.problem-goal-card p,
.process-section p,
.showcase-section p,
.outcome-card li,
.cta-section p {
    line-height: 1.7;
    color: #334155;
}

.stats {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 34px;
}

.stats h4 {
    margin: 0;
    font-size: 24px;
    color: #2f7d3b;
}

.stats p {
    margin: 4px 0 0;
    font-size: 14px;
}

.mini-section:first-child {
    margin-bottom: 28px;
}

.process-section h2,
.showcase-section h2,
.cta-section h2 {
    margin: 0;
    font-size: 28px;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    gap: 26px;
    margin-top: 30px;
    text-align: center;
}

.process-step {
    flex: 1;
    position: relative;
}

.process-step i {
    width: 54px;
    height: 54px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background-color: #2f7d3b;
    color: white;

    border-radius: 50%;
    font-size: 20px;
}

.process-step h4 {
    margin: 16px 0 8px;
}

.process-step p {
    font-size: 14px;
    margin: 0;
}

.screen-gallery {
    display: flex;
    justify-content: space-between;
    gap: 28px;
    margin-top: 24px;
}

.screen-card {
    flex: 1;
    text-align: center;
}

.screen-card img {
    width: 100%;
    max-width: 180px;
    border: 1px solid #cbd5e1;
    border-radius: 18px;
}

.screen-card p {
    margin-top: 12px;
    font-size: 14px;
    font-weight: 700;
}

.outcome-card ul {
    padding-left: 0;
    list-style: none;
}

.outcome-card li {
    margin-bottom: 12px;
}

.outcome-card li::before {
    content: "✓";
    margin-right: 10px;
    color: #2f7d3b;
    font-weight: 800;
}

.cta-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

@media (max-width: 1000px) {
    .hero-content,
    .cta-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .info-grid,
    .outcomes-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline,
    .screen-gallery {
        flex-wrap: wrap;
    }

    .process-step,
    .screen-card {
        flex: 1 1 220px;
    }

    .hero-text h1 {
        font-size: 46px;
    }
}