        .feedbackPage {
            min-height: 100vh;
            padding: 112px 0 74px;
        }

        .feedbackPage::before {
            content: "";
            position: fixed;
            inset: 0;
            z-index: -3;
            pointer-events: none;
            background:
                radial-gradient(circle at 14% 14%, rgba(255,255,255,.92) 0 160px, transparent 340px),
                radial-gradient(circle at 86% 16%, rgba(255,77,77,.07) 0 150px, transparent 340px),
                radial-gradient(circle at 80% 82%, rgba(255,77,77,.055) 0 190px, transparent 390px),
                linear-gradient(180deg, #f0f0f0 0%, #ebebeb 100%);
        }

        .feedbackLayout {
            display: grid;
            grid-template-columns: minmax(0, .86fr) minmax(460px, 1.14fr);
            gap: 22px;
            align-items: stretch;
        }

        .feedbackPanel,
        .feedbackFormPanel {
            position: relative;
            overflow: hidden;
            border-radius: var(--radius-lg);
            background: rgba(255,255,255,.58);
            border: 1px solid var(--line);
            box-shadow: var(--shadow-sm);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }

        .feedbackPanel::before,
        .feedbackFormPanel::before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: inherit;
            pointer-events: none;
            border: 1px solid var(--line-soft);
        }

        .feedbackPanel {
            min-height: 680px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: clamp(24px, 3.4vw, 42px);
        }

        .feedbackPanel::after {
            content: "";
            position: absolute;
            width: 420px;
            height: 420px;
            right: -190px;
            bottom: -210px;
            border-radius: 999px;
            border: 64px solid rgba(255,77,77,.06);
            pointer-events: none;
        }

        .feedbackPanel__main {
            position: relative;
            z-index: 1;
        }

        .feedbackEyebrow {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            min-height: 38px;
            padding: 0 14px;
            border-radius: 999px;
            background: rgba(255,255,255,.56);
            border: 1px solid var(--line);
            color: var(--ink-2);
            font-size: 11px;
            font-weight: 900;
            letter-spacing: .12em;
            text-transform: uppercase;
            margin-bottom: 22px;
        }

        .feedbackEyebrow i {
            color: var(--accent);
            font-size: 14px;
        }

        .feedbackTitle {
            margin: 0;
            max-width: 640px;
            color: var(--ink);
            font-size: clamp(44px, 6vw, 84px);
            line-height: .92;
            letter-spacing: -.075em;
            font-weight: 600;
            text-wrap: balance;
        }

        .feedbackTitle span {
            color: var(--accent);
        }

        .feedbackLead {
            margin: 24px 0 0;
            max-width: 560px;
            color: var(--ink-2);
            font-size: clamp(15px, 1.3vw, 18px);
            line-height: 1.72;
        }

        .feedbackStats {
            position: relative;
            z-index: 1;
            display: grid;
            gap: 12px;
            margin-top: 36px;
        }

        .feedbackStat {
            display: grid;
            grid-template-columns: 46px minmax(0, 1fr);
            gap: 14px;
            align-items: center;
            min-height: 76px;
            padding: 14px;
            border-radius: 24px;
            background: rgba(255,255,255,.54);
            border: 1px solid var(--line);
            box-shadow: var(--shadow-xs);
        }

        .feedbackStat__icon {
            width: 46px;
            height: 46px;
            display: grid;
            place-items: center;
            border-radius: 16px;
            background: rgba(255,77,77,.08);
            border: 1px solid rgba(255,77,77,.13);
            color: var(--accent);
            font-size: 18px;
        }

        .feedbackStat strong {
            display: block;
            color: var(--ink);
            font-size: 15px;
            line-height: 1.25;
            margin-bottom: 4px;
        }

        .feedbackStat span {
            display: block;
            color: var(--ink-2);
            font-size: 13px;
            line-height: 1.45;
        }

        .feedbackFormPanel {
            padding: clamp(22px, 3.2vw, 34px);
        }

        .feedbackFormHead {
            margin-bottom: 22px;
        }

        .feedbackFormHead h2 {
            margin: 0 0 10px;
            color: var(--ink);
            font-size: clamp(30px, 3.2vw, 46px);
            line-height: .98;
            letter-spacing: -.055em;
            font-weight: 600;
        }

        .feedbackFormHead p {
            margin: 0;
            color: var(--ink-2);
            font-size: 15px;
            line-height: 1.65;
        }

        .feedbackAlert {
            position: relative;
            display: grid;
            grid-template-columns: 38px minmax(0, 1fr);
            gap: 12px;
            align-items: start;
            border-radius: 24px;
            padding: 16px;
            margin-bottom: 16px;
            font-size: 14px;
            line-height: 1.52;
        }

        .feedbackAlert i {
            width: 38px;
            height: 38px;
            display: grid;
            place-items: center;
            border-radius: 14px;
            background: rgba(255,255,255,.65);
        }

        .feedbackAlert--ok {
            background: rgba(36, 91, 57, .08);
            border: 1px solid rgba(36, 91, 57, .16);
            color: #245b39;
        }

        .feedbackAlert--err {
            background: rgba(255,77,77,.08);
            border: 1px solid rgba(255,77,77,.18);
            color: #991f1f;
        }

        .feedbackGrid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 14px;
        }

        .feedbackField {
            display: grid;
            gap: 8px;
            margin-bottom: 14px;
        }

        .feedbackField--full {
            grid-column: 1 / -1;
        }

        .feedbackLabelRow {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            gap: 12px;
        }

        .feedbackLabel {
            color: var(--ink);
            font-size: 13px;
            font-weight: 850;
        }

        .feedbackHint {
            color: var(--ink-3);
            font-size: 12px;
            font-weight: 650;
        }

        .feedbackInput,
        .feedbackSelect,
        .feedbackTextarea {
            width: 100%;
            min-height: 54px;
            border: 1px solid var(--line);
            border-radius: 20px;
            background: rgba(255,255,255,.64);
            color: var(--ink);
            outline: none;
            padding: 0 16px;
            transition:
                border-color .22s var(--ease),
                box-shadow .22s var(--ease),
                background .22s var(--ease),
                transform .22s var(--ease);
        }

        .feedbackSelect {
            cursor: pointer;
        }

        .feedbackTextarea {
            min-height: 162px;
            resize: vertical;
            line-height: 1.65;
            padding-top: 15px;
            padding-bottom: 15px;
        }

        .feedbackInput::placeholder,
        .feedbackTextarea::placeholder {
            color: rgba(123,123,123,.82);
        }

        .feedbackInput:focus,
        .feedbackSelect:focus,
        .feedbackTextarea:focus {
            border-color: rgba(255,77,77,.32);
            box-shadow: 0 0 0 5px rgba(255,77,77,.07);
            background: rgba(255,255,255,.86);
        }

        .feedbackMessageMeter {
            position: relative;
            height: 8px;
            margin-top: 2px;
            border-radius: 999px;
            background: rgba(32,32,32,.07);
            overflow: hidden;
        }

        .feedbackMessageMeter__fill {
            display: block;
            width: 0%;
            height: 100%;
            border-radius: inherit;
            background: linear-gradient(90deg, rgba(255,77,77,.42), var(--accent));
            transition:
                width .22s var(--ease),
                background .22s var(--ease);
        }

        .feedbackMessageInfo {
            color: var(--ink-3);
            font-size: 12px;
            line-height: 1.45;
            transition: color .22s var(--ease);
        }

        .feedbackField.is-message-short .feedbackMessageInfo {
            color: #b55218;
        }

        .feedbackField.is-message-good .feedbackMessageInfo {
            color: #245b39;
        }

        .feedbackField.is-message-near-limit .feedbackMessageInfo {
            color: #991f1f;
        }

        .feedbackField.is-message-good .feedbackMessageMeter__fill {
            background: linear-gradient(90deg, rgba(36,91,57,.34), #245b39);
        }

        .feedbackField.is-message-near-limit .feedbackMessageMeter__fill {
            background: linear-gradient(90deg, rgba(255,77,77,.45), #f90202);
        }

        .ratingMood {
            position: relative;
            display: grid;
            gap: 14px;
            padding: 16px;
            border-radius: 28px;
            background:
                radial-gradient(circle at 14% 20%, rgba(255,255,255,.86), transparent 34%),
                linear-gradient(180deg, rgba(255,255,255,.58), rgba(255,255,255,.38));
            border: 1px solid var(--line);
            box-shadow:
                inset 0 1px 0 rgba(255,255,255,.72),
                0 10px 24px rgba(0,0,0,.035);
            overflow: hidden;
        }

        .ratingMood::before {
            content: "";
            position: absolute;
            inset: auto -20% -72% -20%;
            height: 120px;
            background: radial-gradient(circle, rgba(255,77,77,.12), transparent 66%);
            pointer-events: none;
        }

        .ratingMood__head {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 14px;
        }

        .ratingMood__title {
            display: grid;
            gap: 4px;
        }

        .ratingMood__title strong {
            color: var(--ink);
            font-size: 14px;
            line-height: 1.25;
        }

        .ratingMood__title span {
            color: var(--ink-3);
            font-size: 12px;
            line-height: 1.35;
        }

        .ratingMood__value {
            min-height: 36px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0 13px;
            border-radius: 999px;
            background: rgba(255,77,77,.08);
            border: 1px solid rgba(255,77,77,.16);
            color: var(--accent);
            font-size: 12px;
            font-weight: 900;
            white-space: nowrap;
            transition:
                background .22s var(--ease),
                border-color .22s var(--ease),
                transform .22s var(--ease);
        }

        .ratingMood__scale {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: repeat(5, minmax(0, 1fr));
            gap: 8px;
        }

        .ratingMood__item {
            position: relative;
            min-width: 0;
        }

        .ratingMood__item input {
            position: absolute;
            opacity: 0;
            pointer-events: none;
        }

        .ratingMood__button {
            position: relative;
            isolation: isolate;
            min-height: 64px;
            width: 100%;
            display: grid;
            place-items: center;
            gap: 4px;
            border-radius: 22px;
            border: 1px solid var(--line);
            background: rgba(255,255,255,.62);
            color: var(--ink-3);
            cursor: pointer;
            overflow: hidden;
            transition:
                transform .24s var(--ease),
                border-color .24s var(--ease),
                background .24s var(--ease),
                box-shadow .24s var(--ease),
                color .24s var(--ease);
        }

        .ratingMood__button::before {
            content: "";
            position: absolute;
            inset: auto 10px 8px 10px;
            height: 4px;
            border-radius: 999px;
            background: rgba(255,77,77,.16);
            transform: scaleX(0);
            transform-origin: left center;
            transition: transform .28s var(--ease);
            z-index: -1;
        }

        .ratingMood__buttonIcon {
            width: 30px;
            height: 30px;
            display: grid;
            place-items: center;
            font-size: 25px;
            line-height: 1;
            color: currentColor;
            transform: translateY(0) scale(1);
            transition:
                transform .24s var(--ease),
                color .24s var(--ease);
        }

        .ratingMood__buttonIcon i {
            display: block;
            line-height: 1;
        }

        .ratingMood__buttonText {
            font-size: 11px;
            font-weight: 850;
            line-height: 1;
            opacity: .76;
            transition:
                opacity .24s var(--ease),
                color .24s var(--ease);
        }

        .ratingMood__item:hover .ratingMood__button,
        .ratingMood__item:focus-within .ratingMood__button {
            transform: translateY(-3px);
            border-color: rgba(255,77,77,.28);
            background: rgba(255,255,255,.86);
            color: var(--accent);
            box-shadow: 0 14px 28px rgba(255,77,77,.10);
        }

        .ratingMood__item:hover .ratingMood__buttonIcon,
        .ratingMood__item:focus-within .ratingMood__buttonIcon {
            transform: translateY(-2px) scale(1.08);
        }

        .ratingMood__item input:checked + .ratingMood__button {
            border-color: rgba(255,77,77,.34);
            background:
                linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,77,77,.09));
            color: var(--accent);
            box-shadow:
                0 18px 34px rgba(255,77,77,.12),
                0 0 0 5px rgba(255,77,77,.055);
        }

        .ratingMood__item input:checked + .ratingMood__button::before {
            transform: scaleX(1);
        }

        .ratingMood__item input:checked + .ratingMood__button .ratingMood__buttonIcon {
            transform: translateY(-2px) scale(1.12);
        }

        .ratingMood__bar {
            position: relative;
            z-index: 1;
            height: 8px;
            border-radius: 999px;
            background: rgba(32,32,32,.07);
            overflow: hidden;
        }

        .ratingMood__barFill {
            display: block;
            height: 100%;
            width: 0%;
            border-radius: inherit;
            background:
                linear-gradient(90deg, rgba(255,77,77,.42), var(--accent));
            transition: width .34s var(--ease);
        }

        .ratingMood__hint {
            position: relative;
            z-index: 1;
            color: var(--ink-3);
            font-size: 12px;
            line-height: 1.45;
        }

        .feedbackLegal {
            display: grid;
            gap: 10px;
            margin: 2px 0 16px;
        }

        .feedbackCheck {
            position: relative;
            display: grid;
            grid-template-columns: 24px minmax(0, 1fr);
            gap: 12px;
            align-items: flex-start;
            padding: 14px 15px;
            border-radius: 20px;
            border: 1px solid var(--line);
            background: rgba(255,255,255,.48);
            cursor: pointer;
            transition:
                border-color .22s var(--ease),
                background .22s var(--ease),
                box-shadow .22s var(--ease),
                transform .22s var(--ease);
        }

        .feedbackCheck:hover {
            transform: translateY(-1px);
            border-color: rgba(255,77,77,.20);
            background: rgba(255,255,255,.68);
            box-shadow: 0 10px 22px rgba(0,0,0,.035);
        }

        .feedbackCheck input {
            position: absolute;
            opacity: 0;
            pointer-events: none;
        }

        .feedbackCheck__box {
            width: 24px;
            height: 24px;
            border-radius: 9px;
            border: 1px solid rgba(32,32,32,.18);
            background: rgba(255,255,255,.76);
            display: grid;
            place-items: center;
            color: #fff;
            transition:
                background .22s var(--ease),
                border-color .22s var(--ease),
                box-shadow .22s var(--ease),
                transform .22s var(--ease);
        }

        .feedbackCheck__box::before {
            content: "✓";
            font-size: 15px;
            font-weight: 900;
            line-height: 1;
            transform: scale(.5);
            opacity: 0;
            transition:
                transform .18s var(--ease),
                opacity .18s var(--ease);
        }

        .feedbackCheck input:checked + .feedbackCheck__box {
            background: var(--accent);
            border-color: var(--accent);
            box-shadow: 0 0 0 5px rgba(255,77,77,.08);
            transform: scale(1.03);
        }

        .feedbackCheck input:checked + .feedbackCheck__box::before {
            opacity: 1;
            transform: scale(1);
        }

        .feedbackCheck:focus-within {
            border-color: rgba(255,77,77,.32);
            box-shadow: 0 0 0 5px rgba(255,77,77,.07);
        }

        .feedbackCheck__text {
            color: var(--ink-2);
            font-size: 12.5px;
            line-height: 1.55;
        }

        .feedbackCheck__text a {
            color: var(--accent);
            font-weight: 800;
            text-decoration: none;
            border-bottom: 1px solid rgba(255,77,77,.28);
        }

        .feedbackCheck__text a:hover {
            border-bottom-color: var(--accent);
        }

        .feedbackHidden {
            display: none !important;
        }

        .feedbackSubmit {
            width: 100%;
            margin-top: 2px;
        }

        .feedbackConsent {
            margin: 14px 0 0;
            color: var(--ink-3);
            font-size: 12px;
            line-height: 1.55;
            text-align: center;
        }

        .feedbackBottom {
            margin-top: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            color: var(--ink-3);
            font-size: 13px;
        }

        .feedbackBottom i {
            color: var(--accent);
        }

        @media (max-width: 1080px) {
            .feedbackLayout {
                grid-template-columns: 1fr;
            }

            .feedbackPanel {
                min-height: auto;
            }
        }

        @media (max-width: 760px) {
            .feedbackPage {
                padding-top: 20px;
                padding-bottom: 56px;
            }

            .feedbackPanel,
            .feedbackFormPanel {
                border-radius: var(--radius-md);
                padding: 20px 16px;
            }

            .feedbackTitle {
                font-size: clamp(38px, 12vw, 58px);
            }

            .feedbackLead {
                font-size: 15px;
            }

            .feedbackGrid {
                grid-template-columns: 1fr;
                gap: 0;
            }

            .feedbackStat {
                min-height: 66px;
                grid-template-columns: 42px minmax(0, 1fr);
                padding: 12px;
                border-radius: 20px;
            }

            .feedbackStat__icon {
                width: 42px;
                height: 42px;
                border-radius: 14px;
            }

            .ratingMood {
                padding: 14px;
                border-radius: 24px;
            }

            .ratingMood__head {
                flex-direction: column;
                gap: 10px;
            }

            .ratingMood__value {
                width: fit-content;
            }

            .ratingMood__scale {
                gap: 6px;
            }

            .ratingMood__button {
                min-height: 58px;
                border-radius: 18px;
            }

            .ratingMood__buttonIcon {
                width: 27px;
                height: 27px;
                font-size: 22px;
            }

            .ratingMood__buttonText {
                display: none;
            }

            .feedbackCheck {
                grid-template-columns: 22px minmax(0, 1fr);
                padding: 13px;
                border-radius: 18px;
            }

            .feedbackCheck__box {
                width: 22px;
                height: 22px;
                border-radius: 8px;
            }
        }

        /* =========================
   FEEDBACK CAPTCHA
========================= */

.feedbackCaptcha {
    display: grid;
    gap: 16px;
    margin-top: 22px;
    padding: 18px;
    border: 1px solid rgba(18, 18, 18, 0.1);
    border-radius: 20px;
    background:
        linear-gradient(
            135deg,
            rgba(255, 77, 77, 0.07),
            rgba(255, 255, 255, 0.94)
        );
}

.feedbackCaptcha__head {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feedbackCaptcha__head > div {
    min-width: 0;
    display: grid;
    gap: 3px;
}

.feedbackCaptcha__head strong {
    color: #181818;
    font-size: 14px;
    font-weight: 750;
    line-height: 1.3;
}

.feedbackCaptcha__head span {
    color: rgba(18, 18, 18, 0.58);
    font-size: 12px;
    line-height: 1.45;
}

.feedbackCaptcha__icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #ff4d4d;
    color: #fff;
    font-size: 19px;
    box-shadow: 0 10px 24px rgba(255, 77, 77, 0.22);
}

.feedbackCaptcha__widget {
    min-height: 65px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.feedbackCaptcha__widget .cf-turnstile {
    max-width: 100%;
}

.feedbackSubmit:disabled {
    cursor: not-allowed;
    opacity: 0.55;
    transform: none !important;
    box-shadow: none !important;
}

@media (max-width: 420px) {
    .feedbackCaptcha {
        padding: 15px;
        border-radius: 17px;
    }

    .feedbackCaptcha__widget {
        overflow-x: auto;
    }
}