/* Lokale Fonts - DSGVO-konform */
@font-face {
    font-family: 'Cormorant Garamond';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/fonts/cormorant-garamond-v21-latin-regular.woff2') format('woff2');
}
@font-face {
    font-family: 'Cormorant Garamond';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('/fonts/cormorant-garamond-v21-latin-500.woff2') format('woff2');
}
@font-face {
    font-family: 'Cormorant Garamond';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('/fonts/cormorant-garamond-v21-latin-600.woff2') format('woff2');
}
@font-face {
    font-family: 'Cormorant Garamond';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url('/fonts/cormorant-garamond-v21-latin-italic.woff2') format('woff2');
}
@font-face {
    font-family: 'Jost';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('/fonts/jost-v20-latin-300.woff2') format('woff2');
}
@font-face {
    font-family: 'Jost';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/fonts/jost-v20-latin-regular.woff2') format('woff2');
}
@font-face {
    font-family: 'Jost';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('/fonts/jost-v20-latin-500.woff2') format('woff2');
}

:root {
    --bg-silver: #D1D9E1;
    --bg-warm: #C8CDD4;
    --petrol: #005F6B;
    --petrol-deep: #004A54;
    --violet: #5D3F6A;
    --violet-deep: #4e3458;
    --white: #FAFBFC;
    --text-light: #4A5568;
    --text-muted: #6B7B8D;
    --accent-warm: #8B6F5E;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    background-color: var(--bg-silver);
    color: var(--petrol);
    line-height: 1.7;
    font-size: 17px;
    overflow-x: hidden;
}

/* —— HERO —— */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0,95,107,0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 30%, rgba(93,63,106,0.04) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
}

.hero-label {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 1s 0.3s ease forwards;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: clamp(2.8rem, 6vw, 4.2rem);
    line-height: 1.15;
    color: var(--petrol);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 1s 0.5s ease forwards;
}

.hero-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 540px;
    margin: 0 auto 2.5rem;
    opacity: 0;
    animation: fadeUp 1s 0.7s ease forwards;
}

.scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeUp 1s 1.2s ease forwards;
}

.scroll-hint svg {
    width: 20px;
    height: 20px;
    animation: bob 2.5s ease-in-out infinite;
}

/* —— SECTIONS —— */
.section {
    padding: 6rem 2rem;
}

.section-inner {
    max-width: 720px;
    margin: 0 auto;
}

.section-label {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    line-height: 1.25;
    color: var(--petrol);
    margin-bottom: 2rem;
}

.section p {
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.section p:last-child {
    margin-bottom: 0;
}

/* —— TRAINING CARDS (Button Style) —— */
.training-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 2.5rem;
}

.training-card {
    background: rgba(93,63,106,0.6);
    border-radius: 6px;
    padding: 1.1rem 1.5rem;
    position: relative;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.training-card:hover {
    background: var(--violet);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(93,63,106,0.25);
}

.training-card h3 {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 0;
}

.training-card[data-info],
.training-card[data-has-info] {
    cursor: pointer;
}

.training-card__detail {
    display: none;
}

.training-card.active {
    background: var(--violet);
    box-shadow: 0 6px 24px rgba(93,63,106,0.25);
}

/* —— TRAINING INFO BOX (Note Style) —— */
.training-info {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    background:
        repeating-linear-gradient(
            to bottom,
            transparent,
            transparent calc(1.8em - 1px),
            rgba(0, 95, 107, 0.08) calc(1.8em - 1px),
            rgba(0, 95, 107, 0.08) 1.8em
        )
        0 1.25rem,
        rgba(250, 245, 235, 0.95);
    background-size: 100% 1.8em, auto;
    border-radius: 3px;
    border: 1px solid rgba(0, 95, 107, 0.08);
    border-top: 3px solid rgba(93, 63, 106, 0.3);
    color: var(--text-light);
    /*font-family: 'Cormorant Garamond', serif;*/
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.8;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease, transform 0.3s ease;
    padding: 0 1.5rem;
    transform: rotate(-0.5deg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
}

.training-info.show {
    max-height: 80rem;
    opacity: 1;
    padding: 1.25rem 1.5rem;
}


/* —— EXPERIENCE TAGS —— */
.experience-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.5rem;
}

.experience-tag {
    display: inline-block;
    padding: 0.35rem 0.9rem;
    border: 1px solid rgba(0,95,107,0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--petrol);
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.experience-tag:hover {
    background: rgba(0,95,107,0.08);
    border-color: rgba(0,95,107,0.35);
}

/* —— CONTACT —— */
.contact {
    background: var(--white);
    padding: 5rem 2rem;
    text-align: center;
}

.contact-inner {
    max-width: 540px;
    margin: 0 auto;
}

.contact h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: clamp(1.8rem, 4vw, 2.3rem);
    color: var(--petrol);
    margin-bottom: 1.25rem;
}

.contact p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 2rem;
    text-decoration: none;
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.contact-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.contact-link--primary {
    background: var(--violet);
    color: var(--white);
}

.contact-link--primary:hover {
    background: var(--petrol);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0,95,107,0.2);
}

.contact-link--secondary {
    color: var(--violet);
    border: 1px solid rgba(93,63,106,0.25);
}

.contact-link--secondary:hover {
    border-color: var(--petrol);
    color: var(--petrol);
    background: rgba(0,95,107,0.04);
}

.contact-phone {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.contact-messengers {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.messenger-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(93,63,106,0.12);
    color: var(--violet);
    text-decoration: none;
    transition: all 0.3s ease;
}

.messenger-btn svg {
    width: 18px;
    height: 18px;
}

.messenger-btn:hover {
    background: var(--violet);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(93,63,106,0.25);
}

.contact-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* —— FOOTER —— */
footer {
    padding: 2.5rem 2rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

footer a {
    color: rgba(93,63,106,0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--violet);
}

footer a:hover {
    opacity: 0.7;
}

.footer-location {
    margin-bottom: 0.5rem;
}

/* —— ANIMATIONS —— */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* Skip hero fade-in after first play in session */
.hero-seen .hero-label,
.hero-seen .hero h1,
.hero-seen .hero-intro,
.hero-seen .scroll-hint {
    opacity: 1;
    animation: none;
}

/* —— COOKIE BANNER (minimal) —— */
.privacy-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 30px rgba(0,0,0,0.08);
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    z-index: 100;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.privacy-banner.show {
    transform: translateY(0);
}

.privacy-banner a {
    color: rgba(93,63,106,0.7);
    transition: color 0.3s ease;
}

.privacy-banner a:hover {
    color: var(--violet);
}

.privacy-banner button {
    background: var(--violet);
    color: var(--white);
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: 3px;
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.3s ease;
    flex-shrink: 0;
}

.privacy-banner button:hover {
    background: var(--petrol);
}

/* —— MENU DROPDOWN —— */
.menu-dropdown {
    position: fixed;
    top: 1.25rem;
    right: 1.5rem;
    z-index: 60;
}

.menu-toggle {
    width: 44px;
    height: 44px;
    background: rgba(93,63,106,0.15);
    color: var(--violet);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(93,63,106,0.12);
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.menu-toggle:hover {
    background: var(--violet);
    color: var(--white);
    transform: scale(1.1);
}

.menu-toggle svg {
    width: 22px;
    height: 22px;
}

.menu-panel {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: var(--white);
    border-radius: 6px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    min-width: 160px;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.menu-panel.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.menu-item {
    display: block;
    padding: 0.75rem 1.25rem;
    text-decoration: none;
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    color: rgba(93,63,106,0.7);
    transition: color 0.2s ease, background 0.2s ease;
}

.menu-item:first-child {
    border-radius: 6px 6px 0 0;
}

.menu-item:last-child {
    border-radius: 0 0 6px 6px;
}

.menu-item:hover {
    color: var(--violet);
    background: rgba(93,63,106,0.06);
}

/* —— FIXED BACK BUTTON (Subpages) —— */
.back-btn-fixed {
    position: fixed;
    top: 1.25rem;
    right: 1.5rem;
    z-index: 60;
    width: 44px;
    height: 44px;
    background: rgba(93,63,106,0.15);
    color: var(--violet);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(93,63,106,0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.back-btn-fixed.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.back-btn-fixed:hover {
    background: var(--violet);
    color: var(--white);
    transform: scale(1.1);
}

.back-btn-fixed svg {
    width: 22px;
    height: 22px;
}

/* —— SUBPAGES: SHARED —— */
.container {
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(93,63,106,0.6);
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 3rem;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--violet);
}

.back-link svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.container .section-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--petrol);
    opacity: 0.6;
    margin-bottom: 0.75rem;
}

.container h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    color: var(--petrol);
}

.container p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.container a {
    color: rgba(93,63,106,0.7);
    transition: color 0.3s ease;
}

.container a:hover {
    color: var(--violet);
}

/* —— PREISE PAGE —— */
.price-card {
    background: var(--white);
    border-radius: 6px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,95,107,0.08);
}

.price-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 1.3rem;
    color: var(--petrol);
    margin-bottom: 0.75rem;
}

.price-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.4rem;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--petrol), var(--violet));
    border-radius: 6px 6px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.price-card:hover::before {
    opacity: 1;
}

.price-line {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.price-value {
    font-weight: 400;
    white-space: nowrap;
}

.note {
    font-style: italic;
    font-size: 0.9rem;
    margin-top: 0.75rem;
    opacity: 0.85;
}

.kleingedrucktes {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,95,107,0.15);
}

.kleingedrucktes h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 1.3rem;
    color: var(--petrol);
    margin-bottom: 0.5rem;
}

.kleingedrucktes p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* —— IMPRESSUM PAGE —— */
.container h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 500;
    margin: 2.5rem 0 1rem;
    color: var(--petrol);
}

.container h2:first-of-type {
    margin-top: 0;
}

.placeholder {
    background: rgba(93,63,106,0.1);
    padding: 0.1rem 0.4rem;
    border-radius: 3px;
    color: var(--violet);
    font-weight: 400;
}

.section-divider {
    width: 40px;
    height: 1px;
    background: var(--petrol);
    margin: 3rem 0;
    opacity: 0.3;
}

.impressum-note {
    background: rgba(0,95,107,0.05);
    border-left: 3px solid var(--petrol);
    padding: 1rem 1.25rem;
    margin: 2rem 0;
    font-size: 0.95rem;
}

.impressum-note strong {
    color: var(--petrol);
}

.impressum-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,95,107,0.1);
    font-size: 0.9rem;
    color: var(--text-light);
    opacity: 0.7;
}

/* —— QUIZ PAGE —— */
body.quiz {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.wrapper {
    width: 100%;
    max-width: 620px;
    padding: 3rem 2rem;
    position: relative;
}

.wrapper .back-link {
    font-size: 0.9rem;
    opacity: 0.6;
    margin-bottom: 2.5rem;
}

.intro {
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s ease forwards;
}

.intro-label {
    font-weight: 400;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
}

.intro h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: clamp(2rem, 5vw, 2.8rem);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.intro p {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 460px;
    margin: 0 auto;
}

.progress-bar {
    width: 100%;
    height: 3px;
    background: rgba(0,95,107,0.12);
    border-radius: 3px;
    margin-bottom: 2.5rem;
    overflow: hidden;
    opacity: 0;
    animation: fadeUp 0.8s 0.4s ease forwards;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--petrol), var(--violet));
    border-radius: 3px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-count {
    text-align: center;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.4s ease forwards;
}

.question-card {
    background: var(--white);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    box-shadow: 0 8px 40px rgba(0,95,107,0.06);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.question-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--petrol), var(--violet));
}

.question-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 400;
    color: rgba(0,95,107,0.08);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.question-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.3rem, 3.5vw, 1.7rem);
    font-weight: 400;
    line-height: 1.4;
    color: var(--petrol);
    margin-bottom: 2rem;
    min-height: 3.5em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    flex: 1;
    max-width: 200px;
    padding: 0.9rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-yes {
    background: var(--violet);
    color: var(--white);
}

.btn-yes:hover {
    background: var(--petrol);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,95,107,0.2);
}

.btn-no {
    background: transparent;
    color: var(--violet);
    border: 1px solid rgba(93,63,106,0.25);
}

.btn-no:hover {
    border-color: var(--petrol);
    color: var(--petrol);
    background: rgba(0,95,107,0.04);
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0) scale(0.98);
}

.card-transition {
    animation: slideOut 0.35s ease forwards;
}

.card-enter {
    animation: slideIn 0.4s ease forwards;
}

.result {
    display: none;
}

.result-score {
    text-align: center;
    margin-bottom: 2rem;
}

.score-ring {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.score-ring svg {
    width: 120px;
    height: 120px;
    transform: rotate(-90deg);
}

.score-ring-bg {
    fill: none;
    stroke: rgba(0,95,107,0.1);
    stroke-width: 4;
}

.score-ring-fill {
    fill: none;
    stroke: var(--petrol);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 339.292;
    stroke-dashoffset: 339.292;
    transition: stroke-dashoffset 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.score-label {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--petrol);
}

.result-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 400;
    color: var(--petrol);
    margin-bottom: 1rem;
    text-align: center;
}

.result-text {
    color: var(--text-light);
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.recap {
    margin-bottom: 2rem;
}

.recap-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(0,95,107,0.07);
}

.recap-item:last-child {
    border-bottom: none;
}

.recap-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.recap-icon--yes {
    background: rgba(0,95,107,0.1);
    color: var(--violet);
}

.recap-icon--no {
    background: rgba(93,63,106,0.08);
    color: var(--petrol);
}

.recap-icon svg {
    width: 12px;
    height: 12px;
}

.recap-question {
    font-size: 0.95rem;
    color: var(--text-light);
}

.result-cta {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,95,107,0.1);
}

.result-cta a {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 2rem;
    background: var(--violet);
    color: var(--white);
    text-decoration: none;
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.result-cta a:hover {
    background: var(--petrol);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0,95,107,0.2);
}

.result-cta a svg {
    width: 18px;
    height: 18px;
}

.retry-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.retry-link:hover {
    color: var(--white);
}

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

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

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

/* —— RESPONSIVE —— */
@media (max-width: 600px) {
    .section {
        padding: 4rem 1.5rem;
    }

    .contact {
        padding: 4rem 1.5rem;
    }

    .training-card {
        padding: 0.9rem 1.25rem;
    }

    .privacy-banner {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 500px) {
    .wrapper {
        padding: 2rem 1.25rem;
    }

    .question-card {
        padding: 2rem 1.5rem;
    }

    .buttons {
        flex-direction: column;
    }

    .btn {
        max-width: none;
    }
}
