.cases-hero-section {
    position: relative;
    padding-bottom: 80px;
    min-height: 100vh;
    z-index: 10;
}

.cases-container {
    position: relative;
    z-index: 2;
}

.cases-breadcrumbs-row {
    margin-bottom: 24px;
}

.cases-header-row {
    margin-bottom: 40px;
}

.cases-header-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.title-huge {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    color: #ffffff;
    margin: 16px 0;
    font-family: 'Benzin', sans-serif;
    line-height: 1.2;
}

.text-yellow {
    color: var(--z-yellow);
}

.catalog-desc {
    font-size: 18px;
    color: rgba(253, 251, 237, 0.7);
    margin: 16px 0 0 0;
    max-width: 600px;
    line-height: 1.6;
}

.cases-filters-row {
    margin-bottom: 40px;
}

.quick-filters {
    display: flex;
    gap: 8px;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.filter-pill {
    background: transparent;
    border: 1px solid rgba(253, 251, 237, 0.2);
    color: rgba(253, 251, 237, 0.8);
    padding: 8px 16px;
    border-radius: 100px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-pill:hover,
.filter-pill.active {
    background: var(--z-yellow);
    color: var(--z-green-dark);
    border-color: var(--z-yellow);
}

.cases-grid-row {
    row-gap: 24px;
}

.case-card-wrapper {
    display: flex;
}

.case-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.case-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 230, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.case-visual {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.case-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.case-card:hover .case-img {
    transform: scale(1.05);
}

.case-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.tag-hit {
    background: var(--z-yellow);
    color: var(--z-green-dark);
}

.tag-outline {
    background: rgba(20, 36, 23, 0.8);
    border: 1px solid rgba(253, 251, 237, 0.2);
    color: #ffffff;
    backdrop-filter: blur(4px);
}

.video-overlay-light {
    position: absolute;
    inset: 0;
    background: rgba(29, 60, 37, 0.4);
    z-index: 1;
    transition: background 0.3s ease;
}

.case-card:hover .video-overlay-light {
    background: rgba(29, 60, 37, 0.1);
}

.case-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.case-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(253, 251, 237, 0.6);
    margin-bottom: 16px;
}

.case-title {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.4;
    margin: 0 0 24px 0;
}

.case-metrics {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.metric-box {
    flex: 1;
    padding: 16px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.metric-highlight {
    background: rgba(255, 230, 0, 0.1);
    border: 1px solid rgba(255, 230, 0, 0.2);
}

.metric-dark {
    background: rgba(253, 251, 237, 0.05);
    border: 1px solid rgba(253, 251, 237, 0.1);
}

.metric-val {
    font-size: 20px;
    font-weight: 900;
    font-family: 'Benzin', sans-serif;
    color: #ffffff;
    margin-bottom: 4px;
    white-space: nowrap;
}

.metric-highlight .metric-val {
    color: var(--z-yellow);
}

.metric-lbl {
    font-size: 12px;
    color: rgba(253, 251, 237, 0.6);
    text-transform: uppercase;
}

.case-economics {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
    flex-grow: 1;
}

.eco-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px dashed rgba(253, 251, 237, 0.1);
}

.eco-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.eco-lbl-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.eco-lbl-wrap svg {
    stroke: rgba(253, 251, 237, 0.4);
}

.eco-lbl {
    font-size: 14px;
    color: rgba(253, 251, 237, 0.6);
}

.eco-val {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
}

.case-action-wrap {
    margin-top: auto;
}

.case-action-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.seo-section {
    padding-bottom: 80px;
    background-color: transparent;
}

.seo-container {
    position: relative;
    z-index: 2;
}

.seo-row {
    justify-content: center;
}

.seo-wrapper {
    margin-bottom: 24px;
}

.seo-text h2 {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 24px;
}

.seo-text p {
    font-size: 16px;
    color: rgba(253, 251, 237, 0.6);
    line-height: 1.6;
    margin-bottom: 16px;
}

.seo-action {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.btn-read-more {
    background: transparent;
    border: none;
    color: var(--z-yellow);
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .cases-hero-section {
        padding: 100px 0 60px 0;
    }
    .quick-filters {
        justify-content: center;
    }
}

.case-hero-detail {
    min-height: 75vh;
    padding-top: 100px;
    padding-bottom: 48px;
    display: flex;
    align-items: flex-end;
    position: relative;
}

.case-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(29, 60, 37, 0.6) 0%, rgba(18, 36, 22, 0.95) 80%, var(--z-green-dark) 100%);
}

.case-hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.case-meta-group {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.case-hero-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 16px;
}

.case-hero-title {
    margin: 0 0 24px 0;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    color: #ffffff;
    font-family: 'Benzin', sans-serif;
    line-height: 1.2;
}

.text-yellow {
    color: var(--z-yellow);
}

.case-hero-desc {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin: 0;
}

.case-detail-section {
    position: relative;
    padding-bottom: 80px;
    margin-top: -60px;
    z-index: 5;
}

.case-layout-row {
    row-gap: 40px;
}

.video-card {
    padding: 16px;
    border-radius: 24px;
    margin-bottom: 48px;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.video-card:hover {
    border-color: rgba(255, 230, 0, 0.3);
}

.video-wrapper {
    position: relative;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(253, 251, 237, 0.05);
}

.video-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(29, 60, 37, 0.4);
    z-index: 1;
    transition: background 0.3s ease;
}

.video-card:hover .case-video-overlay {
    background: rgba(29, 60, 37, 0.1);
}

.play-video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    border-radius: 50%;
    background: rgba(255, 230, 0, 0.9);
    border: none;
    color: var(--z-green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
}

.large-play-btn {
    width: 80px;
    height: 80px;
}

.play-video-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: #ffffff;
}

.video-info-block {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 24px;
    z-index: 3;
}

.video-info-title {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    font-family: 'Benzin', sans-serif;
    margin: 0 0 4px 0;
}

.video-info-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.case-rich-text h2 {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 16px 0;
    font-family: 'Benzin', sans-serif;
}

.case-rich-text p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    color: var(--z-yellow);
    flex-shrink: 0;
    margin-top: 4px;
}

.feature-text {
    font-size: 16px;
    color: rgba(253, 251, 237, 0.8);
    line-height: 1.6;
}

.feature-text strong {
    color: #ffffff;
}

.finance-col {
    position: relative;
}

.finance-card {
    padding: 48px;
    border-radius: 24px;
    border: 1px solid rgba(255, 230, 0, 0.15);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.sticky-card {
    position: sticky;
    top: 100px;
}

.finance-card-title {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    font-family: 'Benzin', sans-serif;
    text-align: center;
    margin: 0 0 24px 0;
}

.finance-metrics {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.metric-box {
    flex: 1;
    padding: 16px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.metric-highlight {
    background: rgba(255, 230, 0, 0.1);
    border: 1px solid rgba(255, 230, 0, 0.2);
}

.metric-val {
    font-weight: 900;
    font-family: 'Benzin', sans-serif;
    color: var(--z-yellow);
    margin-bottom: 4px;
    white-space: nowrap;
}

.large-val {
    font-size: 28px;
}

.metric-lbl {
    font-size: 12px;
    color: rgba(253, 251, 237, 0.6);
    text-transform: uppercase;
}

.eco-table {
    display: flex;
    flex-direction: column;
}

.eco-group {
    margin-bottom: 24px;
}

.eco-group-title {
    font-size: 14px;
    font-family: 'Benzin', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.text-danger {
    color: #ff4d4d;
}

.eco-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px dashed rgba(253, 251, 237, 0.1);
}

.eco-item-last {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.eco-lbl {
    font-size: 14px;
    color: rgba(253, 251, 237, 0.6);
}

.eco-val {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
}

.small-text {
    font-size: 12px;
}

.opacity-50 {
    opacity: 0.5;
}

.payback-box {
    padding: 16px;
    border-radius: 8px;
    background: rgba(253, 251, 237, 0.05);
    border: 1px solid rgba(253, 251, 237, 0.1);
    margin-top: 24px;
}

.payback-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 8px;
}

.payback-lbl {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    font-weight: 700;
}

.payback-val {
    font-size: 20px;
    font-family: 'Benzin', sans-serif;
    color: #ffffff;
}

.payback-progress-wrapper {
    height: 6px;
    background: rgba(253, 251, 237, 0.1);
    border-radius: 100px;
    overflow: hidden;
}

.payback-progress-bar {
    height: 100%;
    width: 100%;
    background: var(--z-yellow);
}

.payback-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.finance-action-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 24px;
}

.case-faq-section {
    padding: 48px 0;
    position: relative;
}

.faq-title-row {
    margin-bottom: 24px;
}

.faq-content-row {
    row-gap: 32px;
}

.faq-accordion-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border-radius: 16px;
    transition: border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
    border: 1px solid transparent;
}

.faq-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    cursor: pointer;
    list-style: none;
    color: #ffffff;
    outline: none;
}

.faq-summary::-webkit-details-marker {
    display: none;
}

.faq-question {
    font-family: 'Benzin', sans-serif;
    font-size: clamp(15px, 1.1vw, 18px);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.4;
    padding-right: 20px;
    transition: color 0.3s ease;
    letter-spacing: -0.01em;
}

.faq-item:hover .faq-question,
.faq-item[open] .faq-question {
    color: var(--z-yellow);
}

.faq-chevron {
    flex-shrink: 0;
    color: var(--z-yellow);
    transition: transform 0.4s ease, background 0.4s ease, color 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 230, 0, 0.05);
    border-radius: 50%;
    border: 1px solid rgba(255, 230, 0, 0.1);
}

.faq-item[open] .faq-chevron {
    transform: rotate(45deg);
    background: var(--z-yellow);
    color: var(--z-green-dark);
}

.faq-answer {
    padding: 0 32px 32px 32px;
    color: rgba(253, 251, 237, 0.75);
    font-size: 16px;
    line-height: 1.6;
}

.faq-answer p {
    margin: 0;
}

.faq-cta-card {
    padding: 48px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.faq-cta-title {
    font-size: 24px;
    font-family: 'Benzin', sans-serif;
    color: #ffffff;
    margin: 0 0 16px 0;
}

.faq-cta-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 24px 0;
}

@media (max-width: 1199.98px) {
    .finance-card {
        padding: 32px;
    }
}

@media (max-width: 991.98px) {
    .sticky-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .case-hero-detail {
        padding-top: 80px;
        min-height: auto;
    }
    .case-detail-section {
        margin-top: 0;
        padding-bottom: 60px;
    }
    .video-wrapper {
        height: 300px;
    }
    .faq-summary {
        padding: 20px 24px;
    }
    .faq-answer {
        padding: 0 24px 24px 24px;
    }
    .faq-cta-card {
        padding: 32px;
    }
}