/* ===================================================================
   TOOL — aus dem Bestand extrahiert und dedupliziert.
   Quelle: 3 Seiten.  Setzt tokens.css und base.css voraus.
   =================================================================== */

.serif { font-family: 'Playfair Display', Georgia, 'Times New Roman', serif; }

.wrap {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero { padding: 72px 0 36px; text-align: center; }

.hero .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--line);
    background: var(--white);
    border-radius: 99px;
    padding: 7px 16px;
    font-size: 13px;
    color: var(--muted);
    letter-spacing: 0.02em;
    margin-bottom: 22px;
}

.hero .badge::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4.6vw, 52px);
    line-height: 1.12;
    color: var(--green);
    margin: 0 0 16px;
    font-weight: 600;
}

.hero h1 em { font-style: normal; color: var(--gold); }

.hero p.subtitle {
    max-width: 560px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 17px;
}

.hero .micro {
    display: flex;
    gap: 22px;
    justify-content: center;
    margin-top: 18px;
    font-size: 13.5px;
    color: var(--muted);
}

.hero .micro span::before {
    content: "\2713";
    color: var(--good);
    margin-right: 6px;
    font-weight: 700;
}

.calc-zone { padding: 28px 0 72px; }

.calc-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 24px;
    align-items: start;
}

.card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 1px 2px rgba(20,41,29,.04), 0 8px 28px rgba(20,41,29,.05);
}

.card h2 {
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 22px;
    font-weight: 600;
}

.field { margin-bottom: 26px; }

.field label {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 14.5px;
    font-weight: 600;
    margin-bottom: 10px;
}

.field label small {
    font-weight: 400;
    color: var(--muted);
    font-size: 12.5px;
}

.value {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 30px;
    color: var(--green);
}

.value small {
    font-size: 15px;
    color: var(--muted);
    font-family: 'Inter', sans-serif;
}

input[type="range"] {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    border-radius: 99px;
    background: linear-gradient(to right, var(--gold) 0%, var(--gold) var(--fill, 40%), var(--cream-2) var(--fill, 40%));
    outline: none;
    margin-top: 12px;
    cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--gold);
    box-shadow: 0 1px 4px rgba(0,0,0,.18);
    cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--gold);
    cursor: pointer;
}

.range-ends {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--muted);
    margin-top: 6px;
}

select {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--cream);
    font-size: 15px;
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    outline: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%235E6357' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 2.5rem;
    transition: var(--transition);
}

select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(185,151,85,.12); }

select option { background: var(--white); color: var(--ink); }

.toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
}

.toggle button {
    padding: 12px;
    border: 0;
    background: var(--white);
    font-size: 15px;
    color: var(--muted);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}

.toggle button.on {
    background: var(--green);
    color: #fff;
    font-weight: 600;
}

.calc-btn {
    width: 100%;
    background: var(--green);
    color: #fff;
    border: 0;
    border-radius: 10px;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background 0.15s;
}

.calc-btn:hover { background: var(--green-2); }

.result {
    background: var(--green);
    border-radius: 16px;
    padding: 32px;
    color: #fff;
    position: sticky;
    top: 84px;
}

.result h3 {
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-2);
    font-weight: 600;
    margin-bottom: 6px;
}

.result .big {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 54px;
    color: var(--gold-2);
    line-height: 1.05;
}

.result .big small {
    font-size: 18px;
    color: #CFD6C9;
    font-family: 'Inter', sans-serif;
}

.result .range {
    font-size: 13.5px;
    color: #AEB8A8;
    margin-top: 4px;
}

.result-placeholder { padding: 24px 0 8px; text-align: center; }

.result-placeholder p {
    color: #AEB8A8;
    font-size: 15px;
    line-height: 1.6;
}

.result-section { display: none; }

.result-section.visible { display: block; animation: fadeInResult 0.5s ease; }

.result-detail { position: relative; transition: filter 0.5s ease; }

.result-detail.blurred {
    filter: blur(5px);
    pointer-events: none;
    user-select: none;
}

.result-detail.blurred::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(20,41,29,0.15);
    border-radius: 8px;
}

.result ul {
    list-style: none;
    margin: 22px 0;
    border-top: 1px solid rgba(255,255,255,.14);
    padding-top: 16px;
}

.result li {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    padding: 7px 0;
    color: #DDE3D6;
}

.result li b { color: #fff; font-weight: 600; }

.result .note {
    font-size: 12.5px;
    color: #9DA893;
    line-height: 1.5;
    margin-bottom: 20px;
}

.result .r-cta {
    display: block;
    text-align: center;
    background: var(--gold-2);
    color: var(--green);
    border-radius: 10px;
    padding: 14px;
    font-weight: 700;
    text-decoration: none;
    font-size: 15px;
    transition: background 0.15s;
}

.result .r-cta:hover { background: #d4b06a; }

.result .r-sub {
    display: block;
    text-align: center;
    color: #CFD6C9;
    font-size: 13px;
    margin-top: 12px;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.result .r-sub:hover { color: #fff; }

.email-gate {
    display: none;
    margin-top: 20px;
    border-top: 1px solid rgba(255,255,255,.14);
    padding-top: 20px;
}

.email-gate.visible { display: block; animation: fadeInResult 0.5s ease; }

.email-gate h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--gold-2);
    margin-bottom: 6px;
}

.email-gate .gate-sub {
    color: #AEB8A8;
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.5;
}

.email-gate .lead-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.email-gate input[type="text"],
.email-gate input[type="email"],
.email-gate input[type="tel"] {
    width: 100%;
    padding: 12px 14px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    outline: none;
    transition: var(--transition);
}

.email-gate input:focus {
    border-color: var(--gold-2);
    box-shadow: 0 0 0 2px rgba(201,164,92,0.2);
}

.email-gate input::placeholder { color: rgba(255,255,255,0.35); }

.email-gate select {
    width: 100%;
    padding: 12px 14px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    outline: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23CFD6C9' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 2.5rem;
    transition: var(--transition);
}

.email-gate select:focus {
    border-color: var(--gold-2);
    box-shadow: 0 0 0 2px rgba(201,164,92,0.2);
}

.email-gate select option { background: var(--green-2); color: #fff; }

.email-gate .consent-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    text-align: left;
}

.email-gate .consent-wrapper input[type="checkbox"] {
    margin-top: 2px;
    accent-color: var(--gold-2);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.email-gate .consent-wrapper label {
    font-size: 12.5px;
    color: #AEB8A8;
    line-height: 1.4;
}

.email-gate .consent-wrapper label a { color: var(--gold-2); text-decoration: none; }

.email-gate .consent-wrapper label a:hover { text-decoration: underline; }

.email-gate .btn-email {
    padding: 14px;
    background: var(--gold-2);
    color: var(--green);
    border: none;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s;
}

.email-gate .btn-email:hover { background: #d4b06a; }

.email-gate .btn-email:disabled { opacity: 0.5; cursor: not-allowed; }

.email-error {
    color: #ff6b6b;
    font-size: 13px;
    display: none;
    margin-top: -4px;
}

.email-error.visible { display: block; }

.info { padding: 56px 0; border-top: 1px solid var(--line); }

.info h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 30px;
    color: var(--green);
    margin-bottom: 14px;
}

.info p,
.info li {
    color: var(--ink);
    max-width: 760px;
    line-height: 1.7;
}

.info ul { margin: 14px 0 0 20px; }

.info li { margin-bottom: 8px; }

.info li b,
.info li strong { color: var(--green); }

.band {
    background: var(--green);
    color: #fff;
    text-align: center;
    padding: 56px 24px;
    border-radius: 20px;
    margin: 24px auto 72px;
    max-width: 1080px;
}

.band h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 30px;
    margin-bottom: 10px;
}

.band p {
    color: #CFD6C9;
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.band a {
    display: inline-block;
    background: var(--gold-2);
    color: var(--green);
    border-radius: 10px;
    padding: 15px 28px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.15s;
}

.band a:hover { background: #d4b06a; }

.hidden { display: none !important; }

.hero-start-btn {
    margin-top: 28px;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
}

.card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: 0 1px 2px rgba(20,41,29,.04), 0 8px 28px rgba(20,41,29,.05);
}

.calc-btn {
    width: 100%;
    background: var(--green);
    color: #fff;
    border: 0;
    border-radius: var(--radius-sm);
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background 0.15s;
}

.quiz-zone { max-width: 640px; padding: 48px 24px 80px; }

.progress-bar {
    width: 100%;
    height: 4px;
    background: var(--cream-2);
    border-radius: 99px;
    margin-bottom: 8px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gold);
    border-radius: 99px;
    transition: width 0.4s ease;
}

.progress-text {
    font-size: 13px;
    color: var(--muted);
    font-weight: 500;
    margin-bottom: 20px;
}

.quiz-question-number {
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 12px;
}

.quiz-question-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 700;
    line-height: 1.3;
    color: var(--ink);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quiz-option {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--ink);
    line-height: 1.5;
}

.quiz-option:hover { border-color: var(--gold); background: var(--cream); }

.quiz-option:active { transform: scale(0.985); }

.quiz-option.selected {
    border-left: 3px solid var(--gold);
    border-color: var(--gold);
    background: var(--cream);
}

.option-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: var(--cream-2);
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--muted);
    transition: var(--transition);
    flex-shrink: 0;
}

.quiz-option.selected .option-letter { background: var(--gold); color: var(--green); }

.quiz-option:hover .option-letter { background: var(--gold); color: var(--green); }

.quiz-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
}

.quiz-back {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: var(--muted);
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 4px;
    transition: color 0.2s ease;
}

.quiz-back:hover { color: var(--ink); }

.quiz-back svg { width: 16px; height: 16px; }

.quiz-slide-enter { animation: slideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards; }

.quiz-slide-exit { animation: slideOut 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards; }

.quiz-slide-back-enter { animation: slideInBack 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards; }

.email-zone { max-width: 640px; padding: 48px 24px 80px; }

.email-card { text-align: center; }

.email-card h2 { margin-bottom: 12px; }

.email-subtext {
    font-size: 0.95rem;
    color: var(--muted);
    margin-bottom: 28px;
    line-height: 1.5;
}

.email-icon {
    width: 48px;
    height: 48px;
    background: var(--cream-2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.email-icon svg {
    width: 24px;
    height: 24px;
    color: var(--gold);
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 420px;
    margin: 0 auto;
}

.lead-form input[type="text"],
.lead-form input[type="email"],
.lead-form input[type="tel"] {
    width: 100%;
    padding: 14px 18px;
    background: var(--cream-2);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.lead-form input::placeholder { color: var(--muted); }

.lead-form input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(185,151,85,.12);
}

.lead-form input.error { border-color: #ff6b6b; }

.lead-form select {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--cream);
    font-size: 15px;
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    outline: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%235E6357' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 2.5rem;
    transition: var(--transition);
}

.lead-form select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(185,151,85,.12);
}

.lead-form select option { background: var(--white); color: var(--ink); }

.form-error-msg {
    display: none;
    font-size: 0.82rem;
    color: #ff6b6b;
    text-align: left;
    margin-top: 4px;
}

.form-error-msg.visible { display: block; }

.email-privacy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 8px;
}

.email-privacy svg {
    width: 14px;
    height: 14px;
    color: var(--good);
    flex-shrink: 0;
}

.email-submit {
    width: 100%;
    background: var(--green);
    color: #fff;
    border: 0;
    border-radius: var(--radius-sm);
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.email-submit:hover { background: var(--green-2); }

.results-zone { max-width: 640px; padding: 48px 24px 80px; }

.result {
    background: var(--green);
    border-radius: var(--radius);
    padding: 32px;
    color: #fff;
}

.result h3 {
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-2);
    font-weight: 600;
    margin-bottom: 8px;
}

.result .big {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px;
    color: var(--gold-2);
    line-height: 1.2;
}

.result .result-desc {
    color: #AEB8A8;
    font-size: 14.5px;
    line-height: 1.6;
    margin: 14px 0 0;
}

.result .result-subhead {
    font-size: 12.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-2);
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
}

.result ul.check-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.result ul.check-list li {
    padding: 5px 0 5px 22px;
    font-size: 14px;
    color: #DDE3D6;
    line-height: 1.55;
    position: relative;
}

.result ul.check-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--good);
    font-weight: 700;
}

.result ul.warn-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(255,255,255,.12);
    padding-top: 12px;
    margin-top: 4px;
}

.result ul.warn-list li {
    padding: 5px 0 5px 22px;
    font-size: 14px;
    color: #DDE3D6;
    line-height: 1.55;
    position: relative;
}

.result ul.warn-list li::before {
    content: "!";
    position: absolute;
    left: 0;
    color: var(--gold-2);
    font-weight: 700;
}

.result .r-cta {
    display: block;
    text-align: center;
    background: var(--gold-2);
    color: var(--green);
    border-radius: var(--radius-sm);
    padding: 14px;
    font-weight: 700;
    text-decoration: none;
    font-size: 15px;
    margin-top: 24px;
    transition: background 0.15s;
}

.how-it-works { margin-top: 40px; }

.how-it-works h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    color: var(--green);
    margin-bottom: 18px;
}

.how-steps {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.how-step {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.how-step-number {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: var(--cream-2);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--gold);
}

.how-step-content h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--ink);
}

.how-step-content p {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.55;
}

.testimonial-card { margin-top: 32px; }

.testimonial-card .card { text-align: center; }

.stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 14px;
}

.stars svg { width: 20px; height: 20px; }

.testimonial-text {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--ink);
    margin-bottom: 12px;
}

.testimonial-author { font-size: 0.85rem; color: var(--muted); }

.band a {
    display: inline-block;
    background: var(--gold-2);
    color: var(--green);
    border-radius: var(--radius-sm);
    padding: 15px 28px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.15s;
}

.fade-in.animate.fade-in-delay-1 { transition-delay: 0.1s; }

.fade-in.animate.fade-in-delay-2 { transition-delay: 0.2s; }

.fade-in.animate.fade-in-delay-3 { transition-delay: 0.3s; }

.fade-in.animate.fade-in-delay-4 { transition-delay: 0.4s; }

.fade-in.animate.fade-in-delay-5 { transition-delay: 0.5s; }

/* ── Breakpoints ─────────────────────────────────── */

@keyframes fadeInResult {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 860px) {
    .calc-grid { grid-template-columns: 1fr; }
    .result { position: relative; top: auto; }
    .result .big { font-size: 42px; }
}

@media (max-width: 768px) {
    .hero { padding: 56px 0 24px; }
    .hero .micro { flex-direction: column; gap: 8px; }
    .card { padding: 24px; }
    .result { padding: 24px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 28px; }
    .card { padding: 20px; }
    .result .big { font-size: 36px; }
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(60px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideOut {
    from { opacity: 1; transform: translateX(0); }
    to { opacity: 0; transform: translateX(-60px); }
}

@keyframes slideInBack {
    from { opacity: 0; transform: translateX(-60px); }
    to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 768px) {
    .hero { padding: 56px 0 24px; }
    .hero .micro { flex-direction: column; gap: 8px; }
    .card { padding: 24px; }
    .result { padding: 24px; }
    .band { border-radius: 12px; margin: 16px 16px 56px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 28px; }
    .card { padding: 20px; }
    .result { padding: 20px; }
    .result .big { font-size: 22px; }
    .quiz-option { padding: 14px 16px; font-size: 0.9rem; }
    .option-letter {
        width: 28px;
        height: 28px;
        min-width: 28px;
        font-size: 0.8rem;
    }
}
