.gkt-ev-wrap {
    --gkt-ev-green: #2f7d59;
    --gkt-ev-green-dark: #205f43;
    --gkt-ev-green-soft: #edf7f1;
    --gkt-ev-border: #d9e4dd;
    --gkt-ev-text: #24332a;
    --gkt-ev-muted: #65736b;
    --gkt-ev-error: #a4262c;
    --gkt-ev-white: #fff;
    max-width: 900px;
    margin: 30px auto;
    color: var(--gkt-ev-text);
    font-size: 16px;
    line-height: 1.55;
}

.gkt-ev-wrap *,
.gkt-ev-wrap *::before,
.gkt-ev-wrap *::after {
    box-sizing: border-box;
}

.gkt-ev-header,
.gkt-ev-question,
.gkt-ev-success {
    background: var(--gkt-ev-white);
    border: 1px solid var(--gkt-ev-border);
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(26, 55, 39, 0.06);
}

.gkt-ev-header {
    padding: clamp(24px, 5vw, 46px);
    margin-bottom: 22px;
    border-top: 7px solid var(--gkt-ev-green);
}

.gkt-ev-kicker {
    margin: 0 0 8px;
    color: var(--gkt-ev-green);
    font-weight: 800;
    letter-spacing: 0.12em;
    font-size: 13px;
}

.gkt-ev-header h2,
.gkt-ev-success h2 {
    margin: 0 0 18px;
    color: var(--gkt-ev-green-dark);
    font-size: clamp(25px, 4vw, 38px);
    line-height: 1.18;
}

.gkt-ev-header h2 span {
    display: block;
    margin-top: 6px;
    font-size: 0.72em;
    font-weight: 650;
}

.gkt-ev-header p {
    margin: 12px 0 0;
}

.gkt-ev-privacy {
    padding: 14px 16px;
    background: var(--gkt-ev-green-soft);
    border-radius: 12px;
    color: var(--gkt-ev-green-dark);
    font-size: 14px;
}

.gkt-ev-form {
    display: grid;
    gap: 20px;
}

.gkt-ev-question {
    min-width: 0;
    margin: 0;
    padding: clamp(20px, 4vw, 34px);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.gkt-ev-question--invalid {
    border-color: var(--gkt-ev-error);
    box-shadow: 0 0 0 3px rgba(164, 38, 44, 0.12);
}

.gkt-ev-question__legend {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    width: 100%;
    margin: 0;
    padding: 0;
}

.gkt-ev-question__number {
    display: inline-flex;
    flex: 0 0 34px;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--gkt-ev-green);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
}

.gkt-ev-question__legend strong,
.gkt-ev-question__legend span span {
    display: block;
}

.gkt-ev-question__legend strong {
    color: var(--gkt-ev-text);
    font-size: 18px;
    line-height: 1.35;
}

.gkt-ev-question__legend span span {
    margin-top: 3px;
    color: var(--gkt-ev-muted);
    font-size: 15px;
}

.gkt-ev-help {
    margin: 10px 0 18px 47px;
    color: var(--gkt-ev-muted);
    font-size: 14px;
}

.gkt-ev-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 20px;
}

.gkt-ev-option {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 11px;
    min-height: 62px;
    padding: 13px 14px;
    background: #fafcfb;
    border: 1px solid var(--gkt-ev-border);
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.gkt-ev-option:hover {
    border-color: var(--gkt-ev-green);
    transform: translateY(-1px);
}

.gkt-ev-option:has(input:checked) {
    background: var(--gkt-ev-green-soft);
    border-color: var(--gkt-ev-green);
}

.gkt-ev-option:has(input:disabled) {
    opacity: 0.48;
    cursor: not-allowed;
    transform: none;
}

.gkt-ev-option input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.gkt-ev-option__box {
    position: relative;
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    margin-top: 1px;
    border: 2px solid #9aaba1;
    border-radius: 6px;
    background: #fff;
}

.gkt-ev-question--radios .gkt-ev-option__box {
    border-radius: 50%;
}

.gkt-ev-option input:focus-visible + .gkt-ev-option__box {
    outline: 3px solid rgba(47, 125, 89, 0.25);
    outline-offset: 2px;
}

.gkt-ev-option input:checked + .gkt-ev-option__box {
    border-color: var(--gkt-ev-green);
    background: var(--gkt-ev-green);
}

.gkt-ev-option input:checked + .gkt-ev-option__box::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 11px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.gkt-ev-question--radios .gkt-ev-option input:checked + .gkt-ev-option__box::after {
    left: 5px;
    top: 5px;
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    transform: none;
}

.gkt-ev-option__text strong,
.gkt-ev-option__text span {
    display: block;
}

.gkt-ev-option__text strong {
    line-height: 1.35;
}

.gkt-ev-option__text span {
    margin-top: 3px;
    color: var(--gkt-ev-muted);
    font-size: 14px;
    line-height: 1.35;
}

.gkt-ev-ranks {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.gkt-ev-rank {
    display: grid;
    grid-template-columns: minmax(145px, 0.32fr) minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    padding: 14px;
    background: #fafcfb;
    border: 1px solid var(--gkt-ev-border);
    border-radius: 12px;
}

.gkt-ev-rank__label strong,
.gkt-ev-rank__label span {
    display: block;
}

.gkt-ev-rank__label span {
    color: var(--gkt-ev-muted);
    font-size: 14px;
}

.gkt-ev-rank select,
.gkt-ev-question textarea {
    width: 100%;
    min-height: 48px;
    padding: 10px 12px;
    color: var(--gkt-ev-text);
    background: #fff;
    border: 1px solid #aebdb4;
    border-radius: 9px;
    font: inherit;
}

.gkt-ev-rank select:focus,
.gkt-ev-question textarea:focus {
    border-color: var(--gkt-ev-green);
    outline: 3px solid rgba(47, 125, 89, 0.18);
}

.gkt-ev-question textarea {
    min-height: 125px;
    margin-top: 18px;
    resize: vertical;
}

.gkt-ev-submit {
    width: 100%;
    min-height: 58px;
    padding: 14px 20px;
    color: #fff;
    background: var(--gkt-ev-green);
    border: 0;
    border-radius: 13px;
    font: inherit;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(47, 125, 89, 0.2);
}

.gkt-ev-submit:hover,
.gkt-ev-submit:focus-visible {
    background: var(--gkt-ev-green-dark);
}

.gkt-ev-submit:disabled {
    opacity: 0.7;
    cursor: wait;
}

.gkt-ev-submit span {
    font-weight: 650;
}

.gkt-ev-required-note {
    margin: -8px 0 0;
    text-align: center;
    color: var(--gkt-ev-muted);
    font-size: 13px;
}

.gkt-ev-form-error,
.gkt-ev-alert {
    padding: 15px 17px;
    border-radius: 12px;
}

.gkt-ev-form-error,
.gkt-ev-alert--error {
    color: #7d171c;
    background: #fff0f1;
    border: 1px solid #e9a9ad;
}

.gkt-ev-alert {
    margin-bottom: 18px;
}

.gkt-ev-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.gkt-ev-success {
    padding: clamp(28px, 6vw, 60px);
    text-align: center;
}

.gkt-ev-success__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin-bottom: 22px;
    color: #fff;
    background: var(--gkt-ev-green);
    border-radius: 50%;
    font-size: 38px;
    font-weight: 800;
}

.gkt-ev-success h2 {
    margin-bottom: 8px;
    font-size: clamp(24px, 4vw, 34px);
}

.gkt-ev-success p {
    margin: 0;
    color: var(--gkt-ev-muted);
    font-size: 18px;
}

.gkt-ev-success hr {
    max-width: 120px;
    margin: 28px auto;
    border: 0;
    border-top: 1px solid var(--gkt-ev-border);
}

@media (max-width: 700px) {
    .gkt-ev-wrap {
        margin: 16px auto;
        font-size: 15px;
    }

    .gkt-ev-options {
        grid-template-columns: 1fr;
    }

    .gkt-ev-rank {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .gkt-ev-help {
        margin-left: 0;
    }

    .gkt-ev-question__legend strong {
        font-size: 17px;
    }
}
