.fc-public-review-section {
        margin-top: 58px;
    }

    .fc-public-review-frame {
        position: relative;
        overflow: hidden;
        border-radius: 42px;
        padding: 48px 42px;
        border: 1px solid rgba(255, 255, 255, 0.72);
        background: rgba(255, 255, 255, 0.20);
        box-shadow: 0 26px 70px rgba(15, 23, 42, 0.14);
        backdrop-filter: blur(18px) saturate(1.12);
        -webkit-backdrop-filter: blur(18px) saturate(1.12);
    }

    .fc-public-review-frame::before {
        content: "";
        position: absolute;
        inset: -34px;
        background-image: var(--review-frame-bg);
        background-size: cover;
        background-position: center;
        filter: brightness(0.78) blur(10px);
        transform: scale(1.08);
        opacity: 0.42;
        z-index: 0;
    }

    .fc-public-review-frame::after {
        content: "";
        position: absolute;
        inset: 0;
        background:
            radial-gradient(circle at 16% 10%, rgba(255, 255, 255, 0.34), transparent 30%),
            radial-gradient(circle at 88% 82%, rgba(112, 179, 0, 0.16), transparent 34%),
            linear-gradient(135deg, rgba(255,255,255,0.22), rgba(255,255,255,0.10));
        z-index: 1;
    }

    .fc-public-review-frame > * {
        position: relative;
        z-index: 2;
    }

    .fc-public-review-head {
        position: relative;
        overflow: hidden;
        border-radius: 34px;
        padding: 34px;
        margin-bottom: 28px;
        border: 1px solid rgba(255,255,255,0.78);
        background: rgba(255,255,255,0.48);
        box-shadow: 0 22px 56px rgba(15, 23, 42, 0.09);
        backdrop-filter: blur(18px) saturate(1.12);
        -webkit-backdrop-filter: blur(18px) saturate(1.12);
    }

    .fc-public-review-head-grid {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 24px;
    }

    .fc-public-review-kicker {
        display: inline-flex;
        align-items: center;
        width: fit-content;
        border-radius: 999px;
        padding: 7px 13px;
        background: rgba(218, 239, 183, 0.76);
        color: #477600;
        font-size: 11px;
        font-weight: 900;
        letter-spacing: 0.18em;
        text-transform: uppercase;
    }

    .fc-public-review-title {
        margin: 12px 0 0;
        font-size: clamp(28px, 3.1vw, 44px);
        line-height: 1.06;
        letter-spacing: -0.055em;
        font-weight: 900;
        color: #111827;
    }

    .fc-public-review-intro {
        margin: 12px 0 0;
        max-width: 820px;
        color: #64748b;
        line-height: 1.76;
        font-size: 16px;
    }

    .fc-public-review-action {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 48px;
        padding: 0 24px;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.68);
        font-size: 14px;
        font-weight: 900;
        line-height: 1;
        color: #ffffff;
        cursor: pointer;
        white-space: nowrap;
        overflow: hidden;
        isolation: isolate;
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.55),
            inset 0 -18px 28px rgba(255, 255, 255, 0.10),
            0 14px 30px rgba(0, 80, 176, 0.18);
        backdrop-filter: blur(18px) saturate(1.25);
        -webkit-backdrop-filter: blur(18px) saturate(1.25);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        text-decoration: none;
    }

    .fc-public-review-action::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: -2;
        background:
            radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.52), transparent 30%),
            linear-gradient(135deg, rgba(112, 179, 0, 0.96), rgba(79, 156, 47, 0.86) 50%, rgba(0, 80, 176, 0.72));
    }

    .fc-public-review-action:hover {
        transform: translateY(-2px);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.62),
            inset 0 -18px 28px rgba(255, 255, 255, 0.12),
            0 20px 40px rgba(0, 80, 176, 0.25);
    }

    .fc-public-review-slider {
        position: relative;
        min-height: 414px;
        perspective: 1400px;
        overflow: hidden;
    }

    .fc-public-review-track {
        position: relative;
        min-height: 360px;
    }

    .fc-public-review-slide {
        position: absolute;
        top: 0;
        left: 50%;
        width: min(430px, calc(100% - 24px));
        min-height: 318px;
        opacity: 0;
        transform: translateX(-50%) scale(.76);
        pointer-events: none;
        transition:
            transform .55s ease,
            opacity .55s ease,
            filter .55s ease;
        transform-style: preserve-3d;
        filter: blur(1px);
    }

    .fc-public-review-slide.is-active {
        opacity: 1;
        transform: translateX(-50%) scale(1) rotateY(0deg) translateZ(90px);
        pointer-events: auto;
        z-index: 5;
        filter: blur(0);
    }

    .fc-public-review-slide.is-prev {
        opacity: .72;
        transform: translateX(calc(-50% - 335px)) scale(.84) rotateY(18deg) translateZ(-80px);
        z-index: 3;
        filter: blur(.2px);
    }

    .fc-public-review-slide.is-next {
        opacity: .72;
        transform: translateX(calc(-50% + 335px)) scale(.84) rotateY(-18deg) translateZ(-80px);
        z-index: 3;
        filter: blur(.2px);
    }

    .fc-public-review-slide.is-far-prev {
        opacity: .22;
        transform: translateX(calc(-50% - 570px)) scale(.72) rotateY(24deg) translateZ(-160px);
        z-index: 1;
    }

    .fc-public-review-slide.is-far-next {
        opacity: .22;
        transform: translateX(calc(-50% + 570px)) scale(.72) rotateY(-24deg) translateZ(-160px);
        z-index: 1;
    }

    .fc-public-review-card {
        height: 100%;
        min-height: 318px;
        border-radius: 34px;
        padding: 28px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        overflow: hidden;
        position: relative;
        border: 1px solid rgba(255, 255, 255, 0.82);
        background:
            radial-gradient(circle at top left, rgba(214, 232, 255, 0.68), transparent 38%),
            radial-gradient(circle at 90% 90%, rgba(218, 239, 183, 0.58), transparent 34%),
            linear-gradient(145deg, rgba(255,255,255,.90), rgba(255,255,255,.66));
        box-shadow:
            0 34px 70px rgba(15, 23, 42, 0.14),
            inset 0 1px 0 rgba(255,255,255,.95);
        backdrop-filter: blur(18px) saturate(1.12);
        -webkit-backdrop-filter: blur(18px) saturate(1.12);
    }

    .fc-public-review-card::before {
        content: "";
        position: absolute;
        inset: -1px;
        background:
            linear-gradient(135deg, rgba(0,80,176,.12), transparent 34%, rgba(112,179,0,.13));
        opacity: .9;
        pointer-events: none;
    }

    .fc-public-review-card-inner {
        position: relative;
        z-index: 1;
    }

    .fc-public-review-person {
        display: flex;
        align-items: center;
        gap: 14px;
    }

    .fc-public-review-avatar {
        width: 58px;
        height: 58px;
        border-radius: 999px;
        background:
            radial-gradient(circle at 22% 0%, rgba(255,255,255,0.44), transparent 32%),
            linear-gradient(135deg, #0050b0, #1976d2 58%, #70b300);
        color: #ffffff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-weight: 950;
        box-shadow: 0 18px 32px rgba(0, 80, 176, .22);
        flex-shrink: 0;
    }

    .fc-public-review-name {
        margin: 0;
        color: #0f172a;
        font-size: 18px;
        line-height: 1.15;
        font-weight: 950;
        letter-spacing: -0.035em;
    }

    .fc-public-review-label {
        margin: 4px 0 0;
        color: #64748b;
        font-size: 11px;
        font-weight: 900;
        letter-spacing: 0.13em;
        text-transform: uppercase;
    }

    .fc-public-review-stars {
        margin-top: 24px;
        color: #f5b301;
        letter-spacing: .08em;
        font-size: 22px;
        line-height: 1;
    }

    .fc-public-review-comment {
        margin: 20px 0 0;
        color: #475569;
        font-size: 15px;
        line-height: 1.75;
    }

    .fc-public-review-verified {
        margin-top: 22px;
        padding-top: 18px;
        border-top: 1px solid rgba(226, 232, 240, 0.76);
    }

    .fc-public-review-badge {
        display: inline-flex;
        align-items: center;
        border-radius: 999px;
        padding: 9px 13px;
        background: rgba(214, 232, 255, 0.74);
        color: #0050b0;
        font-size: 12px;
        font-weight: 900;
    }

    .fc-public-review-controls {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 14px;
        margin-top: 16px;
    }

    .fc-public-review-btn {
        width: 48px;
        height: 48px;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.74);
        background: rgba(255,255,255,.72);
        box-shadow: 0 14px 28px rgba(15, 23, 42, .08);
        color: #0f172a;
        font-size: 24px;
        line-height: 1;
        font-weight: 900;
        cursor: pointer;
        transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    }

    .fc-public-review-btn:hover {
        transform: translateY(-2px);
        background: rgba(255,255,255,.94);
        box-shadow: 0 18px 34px rgba(15, 23, 42, .12);
    }

    .fc-public-review-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        margin-top: 20px;
    }

    .fc-public-review-dot {
        width: 8px;
        height: 8px;
        border-radius: 999px;
        border: 0;
        padding: 0;
        background: rgba(203, 213, 225, 0.92);
        cursor: pointer;
        transition: width .2s ease, background .2s ease;
    }

    .fc-public-review-dot.is-active {
        width: 28px;
        background: #0050b0;
    }

    .fc-public-review-empty {
        border-radius: 30px;
        padding: 34px;
        background: rgba(255,255,255,0.72);
        border: 1px solid rgba(255,255,255,0.78);
        box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
        text-align: center;
    }

    .fc-public-review-empty-icon {
        font-size: 40px;
        line-height: 1;
    }

    .fc-public-review-empty h3 {
        margin: 14px 0 0;
        color: #0f172a;
        font-size: 24px;
        font-weight: 950;
        letter-spacing: -0.04em;
    }

    .fc-public-review-empty p {
        margin: 10px auto 0;
        max-width: 520px;
        color: #64748b;
        line-height: 1.65;
    }

    @media (max-width: 1024px) {
        .fc-public-review-slide.is-prev {
            transform: translateX(calc(-50% - 250px)) scale(.8) rotateY(16deg) translateZ(-90px);
        }

        .fc-public-review-slide.is-next {
            transform: translateX(calc(-50% + 250px)) scale(.8) rotateY(-16deg) translateZ(-90px);
        }

        .fc-public-review-slide.is-far-prev,
        .fc-public-review-slide.is-far-next {
            opacity: 0;
        }
    }

    @media (max-width: 760px) {
        .fc-public-review-section {
            margin-top: 44px;
        }

        .fc-public-review-frame {
            border-radius: 30px;
            padding: 22px 14px;
        }

        .fc-public-review-head {
            border-radius: 26px;
            padding: 24px 20px;
            margin-bottom: 20px;
        }

        .fc-public-review-head-grid {
            display: block;
        }

        .fc-public-review-action {
            width: 100%;
            margin-top: 20px;
        }

        .fc-public-review-slider {
            min-height: 390px;
        }

        .fc-public-review-slide {
            width: min(370px, calc(100% - 8px));
        }

        .fc-public-review-slide.is-prev,
        .fc-public-review-slide.is-next,
        .fc-public-review-slide.is-far-prev,
        .fc-public-review-slide.is-far-next {
            opacity: 0;
            transform: translateX(-50%) scale(.78);
        }

        .fc-public-review-card {
            min-height: 326px;
            padding: 22px;
            border-radius: 28px;
        }
    }

    @media (max-width: 390px) {
        .fc-public-review-frame {
            padding-left: 10px;
            padding-right: 10px;
        }

        .fc-public-review-card {
            padding: 20px;
        }
    }
