.regen-showcase {
    --regen-bg: linear-gradient(180deg, #f3f8fb 0%, #ffffff 100%);
    --regen-surface: rgba(255, 255, 255, 0.8);
    --regen-card: rgba(255, 255, 255, 0.92);
    --regen-border: rgba(16, 42, 53, 0.08);
    --regen-ink: #142b36;
    --regen-muted: #5d6e77;
    --regen-accent: #196081;
    --regen-accent-soft: rgba(25, 96, 129, 0.1);
    --regen-chip: rgba(25, 96, 129, 0.08);
    font-family: "Outfit", "Segoe UI", sans-serif;
    position: relative;
    overflow: hidden;
    padding: 34px;
    border-radius: 32px;
    border: 1px solid var(--regen-border);
    background: var(--regen-bg);
    color: var(--regen-ink);
    box-shadow: 0 20px 60px rgba(18, 38, 46, 0.09);
}

.regen-theme-sales {
    --regen-bg: linear-gradient(180deg, #f1f7fa 0%, #ffffff 100%);
    --regen-accent: #196081;
    --regen-accent-soft: rgba(25, 96, 129, 0.12);
    --regen-chip: rgba(25, 96, 129, 0.08);
}

.regen-theme-service {
    --regen-bg: linear-gradient(180deg, #f4f9fc 0%, #ffffff 100%);
    --regen-accent: #196081;
    --regen-accent-soft: rgba(25, 96, 129, 0.1);
    --regen-chip: rgba(25, 96, 129, 0.08);
}

.regen-theme-support {
    --regen-bg: linear-gradient(180deg, #f2f7fb 0%, #ffffff 100%);
    --regen-accent: #196081;
    --regen-accent-soft: rgba(25, 96, 129, 0.1);
    --regen-chip: rgba(25, 96, 129, 0.08);
}

.regen-showcase::before,
.regen-showcase::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.regen-showcase::before {
    top: -70px;
    right: -30px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, var(--regen-accent-soft) 0%, rgba(255, 255, 255, 0) 72%);
}

.regen-showcase::after {
    bottom: -90px;
    left: -50px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(16, 42, 53, 0.05) 0%, rgba(255, 255, 255, 0) 72%);
}

.regen-showcase + .regen-showcase {
    margin-top: 32px;
}

.regen-showcase-header {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 26px;
}

.regen-hero-copy {
    max-width: 820px;
}

.regen-eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--regen-accent-soft);
    color: var(--regen-accent);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.regen-showcase h2 {
    margin: 16px 0 10px;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.02;
    letter-spacing: -0.03em;
}

.regen-showcase p {
    margin: 0;
    max-width: 760px;
    color: var(--regen-muted);
    font-size: 16px;
    line-height: 1.72;
}

.regen-hero-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.regen-hero-metric {
    min-width: 140px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(16, 42, 53, 0.06);
    box-shadow: 0 8px 20px rgba(18, 38, 46, 0.05);
    backdrop-filter: blur(8px);
}

.regen-hero-metric strong {
    display: block;
    font-size: 18px;
    color: var(--regen-ink);
}

.regen-hero-metric span {
    display: block;
    margin-top: 4px;
    font-size: 13px;
    color: var(--regen-muted);
}

.regen-filter-panel {
    position: relative;
    z-index: 1;
    margin-bottom: 22px;
    padding: 16px;
    border-radius: 24px;
    background: var(--regen-surface);
    border: 1px solid rgba(16, 42, 53, 0.06);
    box-shadow: 0 10px 24px rgba(18, 38, 46, 0.05);
    backdrop-filter: blur(10px);
}

.regen-filters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.regen-filters-single {
    grid-template-columns: 1fr;
}

.regen-filters-triple {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.regen-filter-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.regen-filter-field span {
    font-size: 13px;
    font-weight: 700;
    color: var(--regen-ink);
}

.regen-filter-field input,
.regen-filter-field select {
    width: 100%;
    min-height: 56px;
    border: 1px solid rgba(16, 42, 53, 0.08);
    border-radius: 18px;
    background: #ffffff;
    padding: 14px 16px;
    color: var(--regen-ink);
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.regen-filter-field input:focus,
.regen-filter-field select:focus {
    border-color: rgba(25, 96, 129, 0.32);
    box-shadow: 0 0 0 4px var(--regen-accent-soft);
    transform: translateY(-1px);
}

.regen-results-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.regen-results-copy {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.regen-results-copy strong {
    font-size: 18px;
    letter-spacing: -0.02em;
}

.regen-results-copy span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--regen-chip);
    color: var(--regen-accent);
    font-size: 13px;
    font-weight: 700;
}

.regen-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.regen-card-grid-video {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.regen-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    background: var(--regen-card);
    border: 1px solid rgba(16, 42, 53, 0.07);
    border-radius: 26px;
    box-shadow: 0 14px 34px rgba(18, 38, 46, 0.06);
    opacity: 0;
    transform: translateY(20px) scale(0.985);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, opacity 0.35s ease;
}

.regen-card.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.regen-card:hover {
    border-color: rgba(16, 42, 53, 0.12);
    box-shadow: 0 20px 40px rgba(18, 38, 46, 0.09);
    transform: translateY(-4px) scale(1);
}

.regen-card.is-hidden {
    display: none;
}

.regen-card-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 22px;
}

.regen-card-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.regen-card-tag,
.regen-card-subtag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.regen-card-tag {
    background: rgba(16, 42, 53, 0.06);
    color: var(--regen-ink);
}

.regen-card-subtag {
    background: var(--regen-chip);
    color: var(--regen-accent);
}

.regen-card h3 {
    margin: 0;
    font-size: 25px;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.regen-video-keywords {
    margin: 0;
    color: var(--regen-muted);
    line-height: 1.7;
}

.regen-location-card .regen-card-body {
    gap: 18px;
}

.regen-info-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.regen-info-list li {
    color: var(--regen-muted);
    line-height: 1.65;
}

.regen-info-list strong {
    color: var(--regen-ink);
}

.regen-info-list a {
    color: var(--regen-accent);
    text-decoration: none;
    font-weight: 700;
}

.regen-map-frame {
    overflow: hidden;
    min-height: 230px;
    border-radius: 20px;
    border: 1px solid rgba(16, 42, 53, 0.06);
    background: #dde8ec;
}

.regen-map-frame iframe {
    width: 100%;
    height: 230px;
    border: 0;
    display: block;
    transform: scale(1.01);
    transition: transform 0.35s ease;
}

.regen-card:hover .regen-map-frame iframe,
.regen-card:hover .regen-video-thumb img {
    transform: scale(1.04);
}

.regen-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.regen-card-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 14px;
    background: var(--regen-accent);
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 12px 24px rgba(18, 38, 46, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.regen-card-button:hover {
    opacity: 0.92;
    transform: translateY(-1px);
    box-shadow: 0 16px 28px rgba(18, 38, 46, 0.16);
}

.regen-video-card {
    overflow: hidden;
}

.regen-video-thumb {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(135deg, #1d2e43 0%, var(--regen-accent) 100%);
}

.regen-video-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.regen-video-thumb-fallback {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
}

.regen-empty-state {
    display: none;
    margin-top: 18px;
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px dashed rgba(16, 42, 53, 0.14);
    color: var(--regen-muted);
    text-align: center;
    font-weight: 700;
}

.regen-empty-state.is-visible {
    display: block;
}

@media (max-width: 1180px) {
    .regen-card-grid-video {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 920px) {
    .regen-showcase {
        padding: 24px;
        border-radius: 26px;
    }

    .regen-filters,
    .regen-card-grid,
    .regen-card-grid-video {
        grid-template-columns: 1fr;
    }

    .regen-showcase-header,
    .regen-results-bar {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .regen-showcase h2 {
        font-size: 32px;
    }

    .regen-card h3 {
        font-size: 22px;
    }

    .regen-hero-metrics {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
    }
}
