:root {
    --eas-bg: #f3f0ee;
    --eas-bg-soft: #f8f4f2;
    --eas-card: #ffffff;
    --eas-line: #dfd6d1;
    --eas-line-soft: #eee7e3;
    --eas-ink: #231f20;
    --eas-muted: #5a5254;
    --eas-brand: #033e52;
    --eas-brand-dark: #022f3e;
    --eas-accent: #d1a692;
    --eas-danger: #b3261e;
    --eas-ok: #147a4f;
    --eas-cta: #e50040;
    --eas-cta-dark: #b30032;
    --eas-warm: #d1a692;
}

.eas-frontend {
    max-width: 980px;
    margin: 20px auto 0;
    padding: 0 16px;
    font-family: "Sora", "Avenir Next", "Segoe UI", sans-serif;
    color: var(--eas-ink);
    position: relative;
}

.eas-frontend::before,
.eas-frontend::after {
    content: "";
    position: absolute;
    z-index: -1;
    pointer-events: none;
    border-radius: 999px;
    filter: blur(2px);
}

.eas-frontend::before {
    width: 260px;
    height: 260px;
    background: radial-gradient(circle at center, rgba(31, 95, 191, 0.16), transparent 70%);
    top: -40px;
    right: -30px;
}

.eas-frontend::after {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at center, rgba(10, 143, 138, 0.14), transparent 72%);
    bottom: -80px;
    left: -70px;
}

.eas-form-intro {
    margin-bottom: 22px;
}

.eas-form-intro > * {
    margin: 0 0 0.72em;
    color: var(--eas-muted);
    line-height: 1.6;
}

.eas-form-intro > *:last-child {
    margin-bottom: 0;
}

.eas-form-intro ul,
.eas-form-intro ol {
    padding-left: 1.15em;
}

.eas-prestep {
    margin-bottom: 16px;
}

.eas-prestep-card {
    background: linear-gradient(150deg, #fcfeff 0%, #f1f6ff 100%);
    border: 1px solid #d5e1f0;
    border-radius: 22px;
    padding: 26px;
    box-shadow: 0 18px 34px rgba(17, 41, 73, 0.09);
}

.eas-prestep-title {
    margin: 0 0 14px;
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.06;
    letter-spacing: -0.02em;
    font-weight: 680;
    color: #14335e;
    max-width: 32ch;
}

.eas-prestep-start {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid #255fb7;
    border-radius: 14px;
    padding: 13px 24px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #ffffff;
    background: linear-gradient(94deg, #1f58a8 0%, #2b6dc0 48%, #2260b8 100%);
    cursor: pointer;
    box-shadow: 0 12px 22px rgba(31, 95, 191, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.24);
    transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.eas-prestep-start::after {
    content: "\2192";
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    transform: translateX(0);
    transition: transform 0.16s ease;
}

.eas-prestep-start:hover {
    transform: translateY(-1px) scale(1.01);
    background: linear-gradient(94deg, #18478b 0%, #255ca2 48%, #1f4f98 100%);
    box-shadow: 0 15px 26px rgba(24, 74, 148, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.eas-prestep-start:hover::after {
    transform: translateX(2px);
}

.eas-prestep-start:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(31, 95, 191, 0.22), 0 14px 24px rgba(24, 74, 148, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.eas-form--hidden {
    display: none;
}

.eas-form {
    background: linear-gradient(152deg, #fbfdff 0%, var(--eas-bg) 58%, #f0f6ff 100%);
    border: 1px solid var(--eas-line);
    border-radius: 24px;
    padding: 22px;
    box-shadow: 0 20px 44px rgba(19, 35, 62, 0.08);
    backdrop-filter: blur(1px);
}

.ea-progress {
    width: 100%;
    height: 10px;
    background: #dbe5f3;
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 18px;
}

.ea-progress-bar {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--eas-brand), var(--eas-accent));
    transition: width 0.35s ease;
}

.ea-step {
    display: none;
}

.ea-step-active {
    display: block;
}

.ea-step-anim {
    transition: opacity 0.32s ease;
    will-change: opacity;
}

.ea-step-fade-enter {
    opacity: 0;
}

.ea-step-fade-leave {
    opacity: 0;
}

.eas-step-card {
    background: var(--eas-card);
    border: 1px solid var(--eas-line);
    border-radius: 18px;
    padding: 20px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
}

/* .eas-step-card::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 3px;
    border-radius: 18px 18px 0 0;
    background: linear-gradient(90deg, var(--eas-brand), var(--eas-accent));
    opacity: 0.9;
} */

.ea-step-active .eas-step-card {
    animation: eaCardIn 0.34s ease;
}

.eas-step-counter {
    margin: 0 0 8px;
    color: var(--eas-muted);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
}

.eas-step-title {
    margin: 0 0 14px;
    font-size: clamp(24px, 3.6vw, 32px);
    line-height: 1.12;
    letter-spacing: -0.02em;
    font-weight: 700;
}

.ea-section-intro,
.ea-final-text {
    margin: 0 0 16px;
    color: var(--eas-muted);
    font-size: 15px;
    line-height: 1.6;
}

.ea-question-group {
    --ea-star-size: 36px;
    --ea-star-gap: 10px;
    padding: 14px 0;
    border-top: 1px solid var(--eas-line-soft);
    animation: eaRowIn 0.26s ease;
}

.ea-question-group:first-of-type {
    border-top: 0;
    padding-top: 0;
}

.ea-question-label {
    margin: 0 0 12px;
    color: #162b4d;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
}

.ea-rating {
    width: calc((var(--ea-star-size) * 5) + (var(--ea-star-gap) * 4));
    display: inline-flex;
    flex-direction: row-reverse;
    gap: var(--ea-star-gap);
    align-items: center;
}

.ea-rating-input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.ea-rating-star {
    width: var(--ea-star-size);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    color: #335e9a;
    cursor: pointer;
    transition: transform 0.18s ease, color 0.18s ease;
}

.ea-rating-star::before {
    content: "☆";
    font-size: var(--ea-star-size);
    font-weight: 700;
}

.ea-rating-star:hover,
.ea-rating-star:hover ~ .ea-rating-star {
    color: var(--eas-brand);
    transform: translateY(-1px);
}

.ea-rating-star:hover::before,
.ea-rating-star:hover ~ .ea-rating-star::before {
    content: "★";
}

.ea-rating-input:checked ~ .ea-rating-star {
    color: var(--eas-brand-dark);
}

.ea-rating-input:checked ~ .ea-rating-star::before {
    content: "★";
}

.ea-rating-scale {
    display: grid;
    grid-template-columns: repeat(5, var(--ea-star-size));
    column-gap: var(--ea-star-gap);
    width: calc((var(--ea-star-size) * 5) + (var(--ea-star-gap) * 4));
    color: #335891;
    font-size: 18px;
    font-weight: 700;
    margin-top: 2px;
}

.ea-rating-scale span {
    display: block;
    text-align: center;
}

.ea-comment-label {
    display: block;
    margin: 12px 0 8px;
    color: #203153;
    font-weight: 700;
}

.ea-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 10px;
}

.ea-contact-grid--single {
    grid-template-columns: minmax(0, 1fr);
}

.ea-contact-field label {
    display: block;
    margin: 0 0 6px;
    color: #033e52;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.eas-form textarea,
.ea-contact-grid input {
    width: 100%;
    border: 1px solid #c7d4e5;
    border-radius: 11px;
    padding: 12px 14px;
    font-size: 14px;
    background: #fff;
    box-sizing: border-box;
    color: var(--eas-ink);
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.eas-form textarea::placeholder,
.ea-contact-grid input::placeholder {
    color: #7a8ca8;
}

.eas-form textarea:hover,
.ea-contact-grid input:hover {
    border-color: #b8cbe2;
}

.eas-form textarea:focus,
.ea-contact-grid input:focus {
    outline: none;
    border-color: var(--eas-brand);
    box-shadow: 0 0 0 4px rgba(31, 95, 191, 0.14);
    background: #fbfdff;
}

.ea-privacy-label {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    align-items: start;
    gap: 10px;
    color: #324a71;
    font-size: 13px;
    line-height: 1.55;
    margin: 6px 0 14px;
}

.ea-privacy-label input[type="checkbox"] {
    margin-top: 2px;
}

.ea-navigation {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.ea-navigation button {
    border: 1px solid transparent;
    border-radius: 12px;
    padding: 11px 18px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease, border-color 0.16s ease;
}

.ea-navigation button:hover {
    transform: translateY(-1px);
}

.ea-navigation button:disabled {
    opacity: 1;
    color: #7f8ea9 !important;
    background: #e8edf7 !important;
    border-color: #d3dced !important;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.ea-prev {
    background: #f5f8fd;
    color: #2f486c;
    border-color: #d5dfec;
}

.ea-prev:hover {
    border-color: #c3d1e4;
}

.eas-form .ea-next,
.eas-form .ea-submit {
    background: linear-gradient(92deg, var(--eas-brand), #2d72c5);
    color: #ffffff !important;
    border-color: #255fb7;
    box-shadow: 0 9px 16px rgba(31, 95, 191, 0.22);
}

.eas-form .ea-next:hover,
.eas-form .ea-submit:hover {
    background: linear-gradient(92deg, var(--eas-brand-dark), #275fa8);
}

#result {
    margin-top: 20px;
    background: linear-gradient(160deg, #ffffff 0%, #f7fbff 100%);
    border: 1px solid var(--eas-line);
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 14px 30px rgba(19, 35, 62, 0.07);
}

#result:empty {
    display: none;
}

.eas-result-hero {
    border-bottom: 1px solid var(--eas-line-soft);
    padding-bottom: 14px;
    margin-bottom: 14px;
}

.eas-result-kicker {
    margin: 0 0 6px;
    color: var(--eas-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 12px;
    font-weight: 700;
}

.eas-result-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 180px;
    gap: 18px;
    align-items: center;
}

.eas-score-gauge-wrap {
    text-align: center;
}

.eas-score-gauge-wrap small {
    display: block;
    margin-top: 8px;
    color: var(--eas-muted);
    line-height: 1.4;
}

.eas-score-gauge {
    --gauge-deg: 180deg;
    width: 150px;
    height: 150px;
    margin: 0 auto;
    border-radius: 50%;
    background: conic-gradient(var(--eas-brand) var(--gauge-deg), #dce6f2 0deg);
    display: grid;
    place-items: center;
    position: relative;
}

.eas-score-gauge::before {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 50%;
    background: #fff;
    box-shadow: inset 0 0 0 1px #e4ecf7;
}

.eas-score-gauge span {
    position: relative;
    z-index: 1;
    font-size: 26px;
    font-weight: 700;
    color: #203d66;
}

.eas-result-hero h3 {
    margin: 0;
    font-size: clamp(25px, 3vw, 33px);
    line-height: 1.15;
}

.eas-result-score-pill {
    display: inline-block;
    margin-left: 10px;
    padding: 3px 12px;
    border-radius: 999px;
    border: 1px solid #cddff5;
    background: #edf4fd;
    font-size: 16px;
    color: #204b8f;
}

.eas-percentile-text {
    margin: 0 0 10px;
    color: #324b73;
}

.eas-percentile-bar {
    height: 12px;
    border-radius: 999px;
    background: #dce6f2;
    overflow: hidden;
}

.eas-percentile-bar span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--eas-brand), var(--eas-accent));
}

.eas-result-card--percentile {
    position: relative;
    border: 1px solid #cfddee;
    border-radius: 14px;
    background: linear-gradient(135deg, #f8fbff 0%, #eef5ff 100%);
    padding: 30px;
    box-shadow: 0 10px 24px rgba(25, 62, 116, 0.08);
}

.eas-result-card--percentile h4 {
    margin-bottom: 10px;
    color: #1d3d6c;
    padding-right: 100px;
}

.eas-percentile-badge {
    position: absolute;
    top: 10px;
    right: 12px;
    min-width: 78px;
    border-radius: 999px;
    border: 1px solid #c7d8f3;
    background: linear-gradient(180deg, #ffffff 0%, #eaf2ff 100%);
    padding: 5px 10px;
    text-align: center;
    color: #194f94;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.1;
}

.eas-percentile-badge small {
    display: block;
    font-size: 0.68rem;
    color: #5f7599;
    font-weight: 600;
    margin-top: 2px;
}

.eas-result-card--percentile .eas-percentile-text strong {
    color: #194f94;
    font-size: 1.02rem;
}

.eas-result-card--percentile .eas-percentile-bar {
    height: 13px;
    background: #d7e4f5;
    box-shadow: inset 0 1px 2px rgba(31, 64, 111, 0.12);
}

.eas-result-card--percentile .eas-percentile-bar span {
    box-shadow: 0 0 10px rgba(34, 93, 170, 0.28);
}

.eas-percentile-meta {
    margin: 8px 0 0;
    color: #4e6488;
    font-size: 0.87rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.eas-result-summary {
    margin: 12px 0 0;
    line-height: 1.6;
    border: 1px solid #dbe4f2;
    border-radius: 10px;
    padding: 10px 12px;
    background: #f6f9ff;
    color: #2b4468;
    font-size: 0.94rem;
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 8px;
    align-items: start;
}

.eas-result-summary::before {
    content: "i";
    width: 20px;
    height: 20px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    margin-top: 2px;
    color: #2b4468;
    background: #dbe8fb;
}

.eas-result-summary--gruen {
    border-color: #cdeed7;
    background: #f1fbf4;
    color: #1f5d3e;
}

.eas-result-summary--gruen::before {
    content: "✓";
    color: #1f5d3e;
    background: #cdeed7;
}

.eas-result-summary--gelb {
    border-color: #f3e2b8;
    background: #fffaf1;
    color: #7a5a16;
}

.eas-result-summary--gelb::before {
    content: "!";
    color: #7a5a16;
    background: #f6e5ba;
}

.eas-result-summary--rot {
    border-color: #f4c6c1;
    background: #fff3f2;
    color: #7a2a26;
}

.eas-result-summary--rot::before {
    content: "!";
    color: #7a2a26;
    background: #f4c6c1;
}

.eas-result-card {
    margin-top: 14px;
}

.eas-result-card + .eas-result-card {
    margin-top: 16px;
}

.eas-result-card--note {
    border: 1px solid #d9e2ef;
    border-radius: 12px;
    background: #f7faff;
    padding: 11px 13px;
}

.eas-result-card--note p {
    margin: 0;
    color: #3a5477;
    font-size: 0.93rem;
    line-height: 1.6;
}

.eas-result-card--assessment {
    border: 1px solid #d7e2ef;
    border-radius: 14px;
    background: linear-gradient(145deg, #ffffff 0%, #f8fbff 100%);
    padding: 30px;
    box-shadow: 0 8px 20px rgba(19, 45, 79, 0.06);
}

.eas-result-card--assessment h4 {
    margin-bottom: 8px;
}

.eas-assessment-lead {
    margin: 0 0 10px;
    color: #2f4a72;
    font-weight: 600;
    line-height: 1.55;
}

.eas-booking-spotlight {
    margin-top: 18px;
    padding: 22px;
    border: 1px solid #ddc9c3;
    border-radius: 22px;
    background:
        radial-gradient(circle at top right, rgba(242, 60, 92, 0.08), transparent 28%),
        linear-gradient(135deg, #fff8f7 0%, #f6edeb 52%, #f8f1f0 100%);
    box-shadow: 0 18px 36px rgba(70, 45, 52, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.eas-booking-spotlight__eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(229, 0, 64, 0.11);
    color: #ab143f;
    font-size: 0.77rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.eas-booking-spotlight__body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.eas-booking-spotlight__body--stack {
    display: grid;
    align-items: start;
    justify-content: stretch;
    gap: 18px;
}

.eas-booking-spotlight__body h5 {
    margin: 0 0 6px;
    color: #17355c;
    font-size: clamp(1.35rem, 2vw, 1.6rem);
    letter-spacing: -0.02em;
}

.eas-booking-spotlight__body p {
    margin: 0;
    color: #4d627f;
    line-height: 1.6;
}

.eas-paid-service-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
    gap: 20px 28px;
    align-items: start;
}

.eas-paid-service-copyblock {
    display: grid;
    gap: 10px;
    padding-right: 6px;
}

.eas-paid-service-copy {
    max-width: 58ch;
    font-size: 1.06rem;
    color: #31486b;
    line-height: 1.72;
}

.eas-paid-service-copy strong {
    color: #183760;
    font-weight: 800;
}

.eas-paid-service-pricepanel {
    display: grid;
    align-content: start;
    justify-items: start;
    gap: 10px;
    min-height: 100%;
    padding: 18px 18px 16px;
    border: 1px solid rgba(207, 186, 181, 0.9);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,0.88) 0%, rgba(255,255,255,0.58) 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.98);
    overflow: hidden;
}

.eas-paid-service-brand {
    margin: 0;
    color: #37557d;
    font-size: 0.96rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.eas-paid-service-brand sup {
    font-size: 0.62em;
    top: -0.4em;
}

.eas-paid-service-price {
    margin: 0;
    color: #4f6588;
    font-size: clamp(3.15rem, 5.2vw, 4.1rem);
    line-height: 0.96;
    font-weight: 600;
    letter-spacing: -0.06em;
    white-space: nowrap;
    word-break: keep-all;
    overflow-wrap: normal;
}

.eas-paid-service-caption {
    max-width: 23ch;
    margin: 0;
    color: #46607f;
    font-size: 0.94rem;
    line-height: 1.45;
}

.eas-paid-service-consents {
    display: grid;
    gap: 10px;
    padding: 14px 16px 12px;
    border: 1px solid #d9c8c1;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.eas-paid-service-label {
    margin: 0;
    font-size: 0.97rem;
    line-height: 1.5;
}

.eas-paid-service-label input[type="checkbox"] {
    accent-color: #0d7be0;
}

.eas-paid-service-error {
    margin: 0;
    color: #a3223f;
    font-size: 0.9rem;
    line-height: 1.45;
}

.eas-paid-service-error:empty {
    display: none;
}

.eas-result-card h4 {
    margin: 0 0 22px;
    font-size: 22px;
    letter-spacing: -0.01em;
}
.eas-result-richtext {
    font-size: 0.94em;
}
.eas-result-grid {
    display: grid;
    gap: 10px;
}

.eas-result-grid--scores {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.eas-result-grid--benchmark {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.eas-result-grid--insights {
    grid-template-columns: 1fr;
    gap: 12px;
}

.eas-result-mini-card {
    border: 1px solid #d4dfed;
    border-radius: 12px;
    background: #ffffff;
    padding: 10px 12px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.95), 0 6px 14px rgba(21, 40, 67, 0.04);
}

.eas-result-mini-card--risk {
    border-left: 4px solid #cc3a33;
}

.eas-result-mini-card--mid {
    border-left: 4px solid #d9a11b;
}

.eas-result-mini-card--high {
    border-left: 4px solid #1f8756;
}

.eas-result-card--sections {
    border: 1px solid #d6e1ef;
    border-radius: 14px;
    background: linear-gradient(145deg, #ffffff 0%, #f9fcff 100%);
    padding: 30px;
    box-shadow: 0 8px 18px rgba(19, 45, 79, 0.05);
}

.eas-sections-list {
    display: grid;
    gap: 9px;
}

.eas-section-row {
    position: relative;
    border: 1px solid #dbe5f2;
    border-radius: 12px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    padding: 10px 12px 9px;
    box-shadow: 0 4px 10px rgba(18, 40, 72, 0.035);
}

.eas-section-row::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 3px;
    border-radius: 999px;
    background: #a7bfdc;
}

.eas-section-row--risk::before {
    background: #cf5a54;
}

.eas-section-row--mid::before {
    background: #d1a443;
}

.eas-section-row--high::before {
    background: #2d9a6a;
}

.eas-section-row__head {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    margin-bottom: 8px;
}

.eas-section-rank {
    min-width: 34px;
    text-align: center;
    border: 2px solid #d8e4f4;
    background: #f2f7fe;
    color: #335988;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 1px 7px;
}

.eas-section-title {
    margin: 0;
    color: #1f4068;
    line-height: 1.35;
    font-size: 1.03rem;
    font-weight: 600;
    letter-spacing: -0.005em;
}

.eas-section-side {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.eas-section-state {
    border: 1px solid #dce5f0;
    border-radius: 10px;
    background: #f7faff;
    color: #466488;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-transform: none;
    padding: 1px 7px;
}


.eas-section-row--high .eas-section-side .eas-result-mini-score {
    border-color: #cbe8d9;
    background: #ebf8f0;
    color: #1e724a;
}

.eas-section-row--mid .eas-section-side .eas-result-mini-score {
    border-color: #f1e0bc;
    background: #fff8ea;
    color: #7c5e19;
}

.eas-section-row--risk .eas-section-side .eas-result-mini-score {
    border-color: #f1cbc6;
    background: #fff1ef;
    color: #8c2f2a;
}

.eas-result-mini-card p {
    margin: 0 0 6px;
}

.eas-result-card--insights {
    border: 1px solid #d6e1ef;
    border-radius: 14px;
    background: linear-gradient(145deg, #ffffff 0%, #f7fbff 100%);
    padding: 30px;
    box-shadow: 0 8px 20px rgba(19, 45, 79, 0.06);
}

.eas-insight-note {
    margin: 0;
    line-height: 1.6;
    border: 1px solid #dbe4f2;
    border-radius: 10px;
    padding: 10px 12px;
    background: #f6f9ff;
    color: #2b4468;
    font-size: 0.94rem;
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 8px;
    align-items: start;
}

.eas-insight-note p {
    margin: 0;
}

.eas-insight-emph {
    font-weight: 700;
    color: #173964;
}

.eas-insight-note::before {
    content: "i";
    width: 20px;
    height: 20px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    margin-top: 2px;
    color: #2b4468;
    background: #dbe8fb;
}

.eas-insight-note--strength {
    border-color: #cdeed7;
    background: #f1fbf4;
    color: #1f5d3e;
}

.eas-insight-note--strength::before {
    content: "✓";
    color: #1f5d3e;
    background: #cdeed7;
}

.eas-insight-note--potential {
    border-color: #f3e2b8;
    background: #fffaf1;
    color: #7a5a16;
}

.eas-insight-note--potential::before {
    content: "!";
    color: #7a5a16;
    background: #f6e5ba;
}

.eas-insight-note--focus {
    border-color: #cbdcf4;
    background: #f2f7ff;
    color: #234a7a;
}

.eas-insight-note--focus::before {
    content: "i";
    color: #234a7a;
    background: #d5e3f8;
}

.eas-result-mini-head {
    color: #203d66;
    line-height: 1.45;
}

.eas-result-mini-score {
    display: inline-block;
    border-radius: 10px;
    border: 1px solid #c8daef;
    background: #f1f6fc;
    color: #204b8f;
    font-weight: 700;
    padding: 1px 8px;
    font-size: 0.94rem;
}

.eas-mini-progress {
    height: 7px;
    border-radius: 999px;
    background: #e4ebf6;
    overflow: hidden;
}

.eas-mini-progress span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #4176bf, #1c9586);
}

.eas-benchmark-user-score {
    margin: 8px 0 0;
    color: #3b5478;
    font-size: 0.84rem;
    line-height: 1.5;
}

.eas-result-card--benchmark {
    border: 1px solid #d6e1ef;
    border-radius: 14px;
    background: linear-gradient(145deg, #ffffff 0%, #f9fcff 100%);
    padding: 30px;
    box-shadow: 0 8px 20px rgba(19, 45, 79, 0.05);
}

.eas-benchmark-listx {
    display: grid;
    gap: 10px;
}

.eas-benchmark-row {
    border: 1px solid #dbe4f2;
    border-radius: 12px;
    background: #fff;
    padding: 10px 12px;
}

.eas-benchmark-row__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
}

.eas-benchmark-badge {
    border-radius: 10px;
    border: 1px solid #d4dfef;
    background: #f3f8ff;
    color: #31547f;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 1px 9px 0px;
    white-space: nowrap;
}

.eas-benchmark-badge--risk {
    border-color: #f1cbc6;
    background: #fff1ef;
    color: #8c2f2a;
}

.eas-benchmark-badge--ok {
    border-color: #cbe8d9;
    background: #ebf8f0;
    color: #1e724a;
}

.eas-benchmark-badge--over {
    border-color: #bfe5d3;
    background: #e8f7ef;
    color: #1d6f48;
}

.eas-benchmark-track {
    position: relative;
    height: 10px;
    border-radius: 999px;
    background: #e1e9f4;
    overflow: hidden;
}

.eas-benchmark-band {
    position: absolute;
    top: 1px;
    bottom: 1px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(65,118,191,0.28), rgba(28,149,134,0.32));
}

.eas-benchmark-marker {
    position: absolute;
    top: 50%;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid #fff;
    background: #245ea8;
    box-shadow: 0 1px 6px rgba(22, 45, 79, 0.24);
}

.eas-benchmark-row--risk .eas-benchmark-marker {
    background: #b7463f;
}

.eas-benchmark-row--ok .eas-benchmark-marker {
    background: #1f8756;
}

.eas-benchmark-row--over .eas-benchmark-marker {
    background: #1f8756;
}

.eas-benchmark-legend {
    margin: 10px 0 0;
    color: #435a7c;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    border: 1px solid #d8e2f0;
    border-radius: 999px;
    background: #f6f9ff;
    padding: 5px 10px;
}

.eas-benchmark-legend-band {
    width: 22px;
    height: 8px;
    border-radius: 999px;
    display: inline-block;
    background: linear-gradient(90deg, rgba(65,118,191,0.28), rgba(28,149,134,0.32));
    border: 1px solid #cdddef;
}

.eas-benchmark-legend-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    display: inline-block;
    border: 2px solid #fff;
    background: #245ea8;
    box-shadow: 0 1px 5px rgba(22, 45, 79, 0.2);
}

.eas-result-richtext ul {
    margin: 8px 0 0;
    padding-left: 18px;
    color: #2a3f62;
    line-height: 1.6;
}

.eas-result-richtext p {
    margin: 0 0 10px;
    color: #223b61;
    line-height: 1.7;
}

.eas-result-richtext p:last-child {
    margin-bottom: 0;
}

.eas-result-richtext ul,
.eas-result-richtext ol {
    margin: 8px 0 10px;
    padding-left: 20px;
}

.eas-result-richtext li {
    margin-bottom: 6px;
    color: #223b61;
}

.eas-result-richtext strong {
    color: #173964;
}

.eas-result-richtext blockquote {
    margin: 10px 0;
    padding: 10px 12px;
    border-left: 3px solid #7ea6dd;
    background: #f3f8ff;
    color: #29466f;
    border-radius: 8px;
}

.eas-result-list {
    margin: 8px 0 0;
    padding-left: 18px;
    color: #2a3f62;
    line-height: 1.6;
}

.eas-result-richtext li {
    margin-bottom: 6px;
}

.eas-error {
    color: var(--eas-danger);
    font-weight: 700;
}

.eas-success {
    color: var(--eas-ok);
    font-weight: 700;
}

.eas-benchmark-status--risk {
    color: var(--eas-danger);
    font-weight: 700;
}

.eas-benchmark-status--ok {
    color: var(--eas-ok);
    font-weight: 700;
}

.eas-booking-link {
    display: inline-block;
    margin-top: 8px;
    font-weight: 700;
    color: #255fb7;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.eas-booking-link:hover {
    border-bottom-color: currentColor;
}

.eas-frontend-ampel {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin: 10px 0 8px;
    padding: 5px 11px;
    border-radius: 999px;
    background: #eff4ff;
    border: 1px solid #d8e4fb;
}

.eas-frontend-light {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #cfd8e6;
    opacity: 0.55;
}

.eas-frontend-light.is-active {
    opacity: 1;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.85), 0 0 10px rgba(0, 0, 0, 0.15);
}

.eas-frontend-light--rot.is-active {
    background: #d93025;
}

.eas-frontend-light--gelb.is-active {
    background: #f4b400;
}

.eas-frontend-light--gruen.is-active {
    background: #1e8e3e;
}

.eas-frontend-ampel-label {
    font-size: 12px;
    font-weight: 700;
}

.eas-calendly-wrap {
    border: 1px solid var(--eas-line);
    border-radius: 12px;
    overflow: hidden;
    min-height: 620px;
    background: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.eas-calendly-wrap iframe {
    width: 100%;
    min-height: 620px;
    border: 0;
}

@keyframes eaCardIn {
    from {
        opacity: 0.78;
        transform: translateY(8px) scale(0.995);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes eaRowIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.eas-result-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.eas-primary-button,
.eas-secondary-button {
    border: 1px solid transparent;
    border-radius: 12px;
    padding: 10px 14px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
}

.eas-primary-button {
    background: linear-gradient(92deg, var(--eas-brand), #2d72c5);
    color: #fff;
    border-color: #255fb7;
}

.eas-primary-button:hover {
    background: linear-gradient(92deg, var(--eas-brand-dark), #275fa8);
}

.eas-primary-button--booking {
    min-width: 220px;
    width: 100%;
    justify-content: center;
    white-space: nowrap;
    border-radius: 12px;
    padding: 15px 28px;
    background: linear-gradient(180deg, #ff0055 0%, #ff296a 100%) !important;
    border-color: #e01f57 !important;
    box-shadow: 0 12px 22px rgba(233, 34, 87, 0.24) !important;
    font-size: 1.05rem;
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.eas-primary-button--booking:hover {
    background: linear-gradient(180deg, #ff1963 0%, #ff3774 100%) !important;
    border-color: #e42c61 !important;
    box-shadow: 0 16px 26px rgba(233, 34, 87, 0.28) !important;
    transform: translateY(-1px);
}

.eas-secondary-button {
    background: #f5f8fd;
    color: #2f486c;
    border-color: #d5dfec;
}

.eas-secondary-button:hover {
    border-color: #c3d1e4;
}

/* Brand palette alignment without changing layout flow */
.eas-frontend {
    color: var(--eas-ink);
}

.eas-frontend::before {
    background: radial-gradient(circle at center, rgba(3, 62, 82, 0.16), transparent 72%);
}

.eas-frontend::after {
    background: radial-gradient(circle at center, rgba(209, 166, 146, 0.2), transparent 72%);
}

.eas-prestep-card,
.eas-form,
#result,
.eas-result-card--assessment,
.eas-result-card--sections,
.eas-result-card--benchmark,
.eas-result-card--percentile {
    border-color: #ddd3cd;
}

.eas-prestep-title,
.eas-step-title,
.eas-result-card h4,
.eas-result-hero h3,
.ea-question-label,
.eas-section-title strong {
    color: var(--eas-brand);
}

.eas-result-kicker,
.eas-step-counter,
.eas-percentile-meta,
.eas-benchmark-legend,
.eas-result-mini-head {
    color: #5f5557;
}

/* .eas-step-card::before, */
.ea-progress-bar,
.eas-percentile-bar span,
.eas-mini-progress span,
.eas-benchmark-band {
    background: linear-gradient(90deg, var(--eas-brand), var(--eas-warm));
}

.ea-progress,
.eas-percentile-bar,
.eas-mini-progress,
.eas-benchmark-track {
    background: #e9e2de;
}

.eas-prestep-start,
.eas-form .ea-next,
.eas-form .ea-submit,
.eas-primary-button {
    background: linear-gradient(92deg, var(--eas-cta), #ff2f68) !important;
    border-color: var(--eas-cta-dark) !important;
    color: #fff !important;
    box-shadow: 0 10px 20px rgba(229, 0, 64, 0.24);
}

.eas-prestep-start:hover,
.eas-form .ea-next:hover,
.eas-form .ea-submit:hover,
.eas-primary-button:hover {
    background: linear-gradient(92deg, var(--eas-cta-dark), #d1003a) !important;
}

.eas-secondary-button,
.ea-prev {
    color: var(--eas-brand);
    border-color: #d7cac3;
    background: #f8f3f1;
}

.ea-rating-star,
.ea-rating-scale,
.eas-result-score-pill,
.eas-percentile-badge,
.eas-section-rank,
.eas-section-state,
.eas-result-mini-score {
    color: var(--eas-brand);
}

.ea-rating-star:hover,
.ea-rating-star:hover ~ .ea-rating-star,
.ea-rating-input:checked ~ .ea-rating-star {
    color: var(--eas-cta);
}

.eas-form textarea:focus,
.ea-contact-grid input:focus {
    border-color: var(--eas-brand);
    box-shadow: 0 0 0 4px rgba(3, 62, 82, 0.14);
}

.eas-score-gauge {
    background: conic-gradient(var(--eas-brand) var(--gauge-deg), #e9e2de 0deg);
}

.eas-score-gauge span {
    color: var(--eas-brand);
}

.eas-benchmark-marker {
    background: var(--eas-brand);
}

.eas-benchmark-row--over .eas-benchmark-marker {
    background: var(--eas-ok);
}

.eas-result-card--note {
    background: #faf6f4;
    border-color: #e1d7d2;
    color: #3c3537;
}

.eas-insight-note--strength {
    background: #eef8f4;
    border-color: #cfe7dc;
    color: #1e5f44;
}

.eas-insight-note--strength::before {
    background: #cfe7dc;
    color: #1e5f44;
}

.eas-insight-note--potential {
    background: #fdf6f1;
    border-color: #ead8cc;
    color: #6f4a34;
}

.eas-insight-note--potential::before {
    background: #f2dfd3;
    color: #6f4a34;
}

.eas-insight-note--focus {
    background: #eef5f8;
    border-color: #cfe0e7;
    color: #1f4b5c;
}

.eas-insight-note--focus::before {
    background: #d5e6ee;
    color: #1f4b5c;
}

.eas-frontend-ampel-label {
    color: var(--eas-brand);
}

/* Lighter, less dense form-step presentation */
.eas-form {
    background: #f7f1ee;
    border-color: #dccfc8;
    box-shadow: 0 14px 30px rgba(35, 31, 32, 0.08);
}

.eas-step-card {
    background: #ffffff;
    border-color: #ddd0c9;
    box-shadow: 0 10px 22px rgba(35, 31, 32, 0.05);
}

/* .eas-step-card::before {
    height: 1px;
    background: linear-gradient(90deg, rgba(3, 62, 82, 0.65), rgba(209, 166, 146, 0.55));
    opacity: 0.75;
} */

.ea-section-intro,
.ea-final-text {
    color: #5f5658;
}

.ea-question-group {
    padding: 16px 16px 14px;
    margin-bottom: 12px;
    border: 1px solid #e4d8d1;
    border-radius: 12px;
    background: #fcfaf9;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9);
    animation: none;
}

.ea-question-group:first-of-type {
    border-top: 1px solid #e4d8d1;
    padding-top: 16px;
}

.ea-question-label {
    margin-bottom: 10px;
    color: #033e52;
    font-weight: 560;
    font-size: 1.03rem;
    letter-spacing: 0;
    line-height: 1.45;
}

.ea-rating-star {
    color: #87949b;
}

.ea-rating-star:hover,
.ea-rating-star:hover ~ .ea-rating-star,
.ea-rating-input:checked ~ .ea-rating-star {
    color: #e50040;
}

.ea-rating-scale {
    color: #5f6d74;
    font-size: 16px;
}

.ea-comment-label {
    margin-top: 16px;
    color: #033e52;
}

.eas-form textarea,
.ea-contact-grid input {
    border-color: #d6c8c2;
    background: #fffdfa;
}

.eas-form textarea:hover,
.ea-contact-grid input:hover {
    border-color: #cdbdb6;
}

.ea-privacy-label {
    color: #4f4648;
}

.ea-navigation {
    margin-top: 16px;
}

.ea-navigation button {
    min-height: 46px;
}

/* Modern contact-field treatment */
.ea-step--contact .eas-step-card {
    /* max-width: 860px; */
    margin: 0 auto;
}

.ea-step--contact .ea-final-text {
    font-size: 1.12rem;
    line-height: 1.55;
}

.eas-form textarea,
.ea-contact-grid input {
    min-height: 52px;
    border: 1px solid #d4c8c2;
    border-radius: 12px;
    padding: 13px 15px;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.35;
    color: #1f2d33;
    background: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 1px 2px rgba(35, 31, 32, 0.04);
}

.eas-form textarea::placeholder,
.ea-contact-grid input::placeholder {
    color: #6b7781;
    font-size: 0.98rem;
}

.eas-form textarea:hover,
.ea-contact-grid input:hover {
    border-color: #baa9a1;
    box-shadow: 0 2px 6px rgba(35, 31, 32, 0.07);
}

.eas-form textarea:focus,
.ea-contact-grid input:focus {
    border-color: #033e52;
    box-shadow: 0 0 0 3px rgba(3, 62, 82, 0.14), 0 3px 10px rgba(3, 62, 82, 0.12);
}

.ea-privacy-label {
    font-size: 0.95rem;
}

@media (max-width: 900px) {
    .ea-step--contact .eas-step-card {
        max-width: none;
    }
}

@media (max-width: 900px) {
    .eas-prestep-card {
        padding: 20px;
    }

    .eas-prestep-title {
        font-size: clamp(30px, 7vw, 42px);
        max-width: 20ch;
    }

    .eas-form {
        padding: 18px;
    }

    .eas-step-card {
        padding: 18px;
    }

    .ea-question-group {
        --ea-star-size: 34px;
        --ea-star-gap: 9px;
    }

    .eas-result-grid--benchmark {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .eas-result-grid--insights {
        grid-template-columns: 1fr;
    }

    .eas-result-hero-layout {
        grid-template-columns: 1fr;
    }

    .eas-percentile-badge {
        position: static;
        display: inline-block;
        margin: 0 0 8px;
    }

    .eas-result-card--percentile h4 {
        padding-right: 0;
    }

    .eas-booking-spotlight__body {
        flex-direction: column;
        align-items: stretch;
    }

    .eas-paid-service-hero {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .eas-paid-service-pricepanel {
        width: 100%;
    }

    .eas-paid-service-price {
        font-size: clamp(3rem, 11vw, 3.8rem);
    }

    .eas-primary-button--booking {
        width: 100%;
    }
}

@media (max-width: 760px) {
    .eas-frontend {
        padding: 0 12px;
    }

    .eas-prestep-card {
        border-radius: 18px;
        padding: 16px;
    }

    .eas-prestep-title {
        font-size: clamp(28px, 8vw, 36px);
        line-height: 1.1;
        max-width: none;
    }

    .eas-prestep-start {
        width: 100%;
        justify-content: center;
    }

    .eas-form {
        border-radius: 18px;
        padding: 14px;
    }

    .eas-step-card {
        padding: 14px;
    }

    .ea-contact-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .ea-question-group {
        --ea-star-size: 30px;
        --ea-star-gap: 8px;
    }

    .ea-rating-scale {
        font-size: 16px;
    }

    .eas-result-grid--scores,
    .eas-result-grid--benchmark {
        grid-template-columns: 1fr;
    }

    .eas-score-gauge {
        width: 128px;
        height: 128px;
    }

    .eas-benchmark-row__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .eas-section-row__head {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .eas-section-side {
        justify-content: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ea-step-anim,
    .ea-progress-bar,
    .ea-navigation button,
    .ea-rating-star,
    .ea-question-group,
    .ea-step-active .eas-step-card {
        transition: none !important;
        animation: none !important;
    }
}
