/* ==========================================================
   SportStudienKompass
   Version: 0.2
   Commit: 0008
   Datei: style.css
   ========================================================== */


/* ==========================================================
   1. DESIGN-SYSTEM
   ========================================================== */

:root {
    --blue-950: #082c58;
    --blue-900: #0b376d;
    --blue-800: #0d4b90;
    --blue-700: #1266bb;
    --blue-600: #2385dc;
    --blue-100: #eaf5ff;
    --blue-050: #f5faff;

    --orange-600: #f36f00;
    --orange-500: #ff7a00;
    --orange-100: #fff1e3;

    --text-main: #17324d;
    --text-soft: #526a80;
    --white: #ffffff;
    --border: #dbe8f3;
    --surface: #ffffff;
    --background: #f5f9fc;

    --shadow-sm: 0 8px 24px rgba(8, 44, 88, 0.08);
    --shadow-md: 0 18px 50px rgba(8, 44, 88, 0.13);
    --shadow-lg: 0 28px 70px rgba(8, 44, 88, 0.18);

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-pill: 999px;

    --container: 1440px;
    --transition: 180ms ease;
}


/* ==========================================================
   2. RESET UND BASIS
   ========================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--text-main);
    background: var(--background);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

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

h1,
h2,
h3,
p {
    margin-top: 0;
}

button,
input,
select,
textarea {
    font: inherit;
}

::selection {
    color: var(--white);
    background: var(--blue-700);
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}


/* ==========================================================
   3. HEADER
   ========================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(219, 232, 243, 0.9);
    box-shadow: 0 6px 24px rgba(8, 44, 88, 0.05);
    backdrop-filter: blur(14px);
}

.header-inner {
    display: grid;
    grid-template-columns: minmax(250px, 1fr) auto auto;
    align-items: center;
    gap: 36px;
    min-height: 116px;
}

.brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
}

.brand img {
    width: 360px;
    max-height: 92px;
    object-fit: contain;
    object-position: left center;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 12px;
}

.main-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    padding: 0 12px;
    color: var(--blue-950);
    font-size: 0.98rem;
    font-weight: 700;
    white-space: nowrap;
    transition: color var(--transition);
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 1px;
    height: 3px;
    border-radius: var(--radius-pill);
    background: var(--orange-500);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--orange-600);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    transform: scaleX(1);
}

.header-cta {
    white-space: nowrap;
}


/* ==========================================================
   4. BUTTONS
   ========================================================== */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 50px;
    padding: 0 24px;
    border: 2px solid transparent;
    border-radius: var(--radius-pill);
    font-weight: 800;
    line-height: 1;
    box-shadow: var(--shadow-sm);
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        background-color var(--transition),
        color var(--transition),
        border-color var(--transition);
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.button:focus-visible,
.main-nav a:focus-visible {
    outline: 3px solid rgba(35, 133, 220, 0.35);
    outline-offset: 4px;
}

.button-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
}

.button-primary:hover {
    background: linear-gradient(135deg, var(--orange-600), #dd6100);
}

.button-outline {
    color: var(--blue-700);
    background: rgba(255, 255, 255, 0.88);
    border-color: var(--blue-600);
}

.button-outline:hover {
    color: var(--white);
    background: var(--blue-700);
}

.button-large {
    min-height: 58px;
    padding-inline: 30px;
    font-size: 1.02rem;
}


/* ==========================================================
   5. HERO
   ========================================================== */

.hero {
    position: relative;
    isolation: isolate;
    min-height: calc(100vh - 116px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #edf7ff;
}

.hero-media {

    position:absolute;
    inset:0;
    z-index:-3;

background:
linear-gradient(
90deg,
rgba(255,255,255,.96) 0%,
rgba(255,255,255,.93) 25%,
rgba(255,255,255,.72) 42%,
rgba(255,255,255,.30) 58%,
rgba(255,255,255,.05) 72%,
rgba(255,255,255,0) 100%
),
url("../images/hero-ssk-final.png");

    background-size:cover;
    background-repeat:no-repeat;
    background-position:center center;

}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.02), rgba(8,44,88,0.08)),
        radial-gradient(circle at 74% 46%, rgba(255,255,255,0.05), transparent 38%);
}

.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 720px) 1fr;
    align-items: center;
    min-height: calc(100vh - 116px);
}

.hero-copy {
    max-width: 650px;
    padding: 26px 0 46px;
}

.hero-kicker,
.section-kicker {
    margin-bottom: 18px;
    color: var(--blue-700);
    font-size: 0.92rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 690px;
    margin-bottom: 22px;
    color: var(--blue-950);
    font-size: clamp(2.45rem, 4.2vw, 3.95rem);
    line-height: 0.90;
    letter-spacing: -0.055em;
    position: relative;
    top: -6px;

}

.hero h1 span {
    display: block;
    color: var(--orange-500);

    position: relative;
    top: 6px;
}

.hero-subtitle {
    margin-bottom: 20px;
    color: var(--blue-800);
    font-size: clamp(1.2rem, 2vw, 1.65rem);
    font-weight: 700;
}

.hero-benefits {
    display: grid;
    gap: 13px;
    margin-bottom: 24px;
}

.hero-benefits li {
    position: relative;
    padding-left: 34px;
    color: var(--blue-950);
    font-size: 1.05rem;
    font-weight: 700;
}

.hero-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.03em;
    display: grid;
    place-items: center;
    width: 21px;
    height: 21px;
    color: var(--orange-500);
    border: 2px solid var(--orange-500);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 900;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}


/* =====================================================
   HERO SMARTPHONE
===================================================== */

.hero-phone{

    position:absolute;

    right:-50px;

    bottom:-40px;

    z-index:4;

}

.hero-phone-image{

    width:280px;

    height:auto;

    display:block;

    filter:drop-shadow(0 35px 60px rgba(0,0,0,.35));

}


/* ==========================================================
   7. SECHS SCHRITTE
   ========================================================== */

.journey-section {
    position: relative;
    z-index: 10;
    margin-top: 50px;
    padding-bottom: 72px;
}

.journey-card {
    padding: 28px 24px 24px;
    border: 1px solid rgba(219, 232, 243, 0.95);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(12px);
    transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease,
    background-color .35s ease;
    overflow:hidden;
    position:relative;
}

.journey-card:hover {
    border-color: rgba(219, 232, 243, 0.95);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-lg);
}

.journey-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--orange-500);
}

.journey-card:hover::before{

    transform:scaleX(1);

}

.section-heading {
    max-width: 760px;
    margin: 0 auto 32px;
    text-align: center;
}

.section-heading h2,
.trust-copy h2,
.final-cta h2 {
    margin-bottom: 0;
    color: var(--blue-950);
    font-size: clamp(2rem, 4vw, 3.15rem);
    line-height: 1.1;
    letter-spacing: -0.035em;
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.journey-step {
    position: relative;
    min-width: 0;
    padding: 16px 18px 10px;
    text-align: center;
    cursor: pointer;
    border-radius: 18px;
    transition:
        transform .3s ease,
        background-color .3s ease,
        box-shadow .3s ease;
}
.journey-step:hover {
    transform: translateY(-3px);
    background: rgba(245, 250, 255, 0.92);
    box-shadow: 0 14px 32px rgba(8, 44, 88, 0.10);
}

.journey-step + .journey-step {
    border-left: 1px solid var(--border);
}

.journey-step:hover .step-number {

    border-color:#FF7A00;

    color:#FF7A00;

}

.step-icon {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 104px;
    height: 104px;

    margin: 0 auto 16px;
    padding: 8px;

    border-radius: 24px;
    border: 2px solid #E6F1FF;
    background: #ffffff;

    overflow: hidden;

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}

.journey-step:hover .step-icon {

    transform:translateY(-4px) scale(1.05);

    background:#ffffff;

    border-color:#2D8CFF;

    box-shadow:0 12px 30px rgba(45,140,255,.14);

}

.step-icon img {
    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center;

    transition: transform .35s ease;
}

.journey-step:hover .step-icon img{

    transform:scale(1.08);

}


.step-number {
    display: inline-grid;
    place-items: center;
    width: 26px;
    height: 26px;
    margin-bottom: 8px;
    color: var(--blue-700);
    border: 1px solid var(--blue-600);
    border-radius: 50%;
    font-weight: 800;
    transition:.35s ease;
    background:#ffffff;
}

.journey-step h3 {
    margin-bottom: 9px;
    color: var(--blue-900);
    font-size: 1.05rem;
    transition: color .3s ease;
}

.journey-step:hover h3 {
    color: var(--orange-600);
}

.journey-step p {
    margin-bottom: 0;
    color: var(--text-soft);
    font-size: 0.87rem;
    line-height: 1.55;
    transition: color .30s ease;
}

.journey-step:hover p {
    color: var(--text-main);
}

/* ==========================================================
   8. WARUM SPORTSTUDIENKOMPASS
   ========================================================== */

.about-section{

    padding:0px 0 70px;

    background:
    linear-gradient(
    180deg,
    #eef7fd 0%,
    #ffffff 35%,
    #f7fbff 100%);

}



.about-header{

    max-width:820px;

    margin:0 auto 70px;

    text-align:center;

}



.about-header h2{

    margin-top:18px;
    margin-bottom:26px;

}



.about-header p{

    font-size:1.08rem;

    line-height:1.9;

    color:#5a6d85;

}



.about-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:28px;

}



.about-card{
    background:#ffffff;
    border-radius:26px;
    padding:42px 34px;
    text-align:center;
    border:1px solid rgba(25,116,210,.08);
    box-shadow:0 14px 38px rgba(25,116,210,.08);
    transition:transform .35s, box-shadow .35s;

    display:flex;
    flex-direction:column;
}


.about-card:hover{

    transform:translateY(-10px);

    box-shadow:

        0 24px 48px rgba(25,116,210,.16);

}


.about-icon {
    width: 100%;
    height: 210px;
    margin: 0 auto 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
    flex-shrink: 0;
}

.about-icon img {   
    width: auto;
    height: 190px;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

/* Individuelle Bildkorrekturen */

.about-card:nth-child(2) .about-icon img {
    height: 170px;
    transform: translateY(10px);
}

.about-card p{

    color:#66788d;

    line-height:1.8;

}

.about-card h3 {
    height: 34px;
    margin-bottom: 18px;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================================
   9. VERTRAUEN UND KENNZAHLEN
   ========================================================== */

.trust-section {
    padding: 30px 0px;
}

.trust-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) 1.4fr;
    align-items: center;
    gap: 60px;
}

.trust-copy p:last-child {
    max-width: 620px;
    margin: 22px 0 0;
    color: var(--text-soft);
    font-size: 1.06rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.stat-card {
    min-height: 170px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 18px;
    text-align: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.stat-card strong {
    display: block;
    margin-bottom: 6px;
    color: var(--blue-800);
    font-size: 2rem;
    line-height: 1;
}

.stat-card span {
    color: var(--text-soft);
    font-size: 0.9rem;
    line-height: 1.45;
}


/* ==========================================================
   10. COACH EINSTIEG
   ========================================================== */

.coach-entry {
    position: relative;
    padding: 92px 0;
    overflow: hidden;
    color: var(--white);
    background:
        linear-gradient(135deg, var(--blue-950) 0%, var(--blue-900) 55%, var(--blue-700) 100%);
}

.coach-entry-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    align-items: center;
    gap: 90px;
}

.coach-entry .section-kicker {
    margin-bottom: 16px;
    color: #8dcbff;
}

.coach-entry h2 {
    max-width: 720px;
    margin-bottom: 26px;
    color: var(--white);
    font-size: clamp(2.3rem, 4vw, 3.6rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.coach-entry h2 span {
    display: block;
    margin-top: 8px;
    color: #8dcbff;
}

.coach-entry-text {
    max-width: 680px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.06rem;
    line-height: 1.8;
}

.coach-entry-highlight {
    max-width: 620px;
    margin-bottom: 32px;
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 700;
}

.coach-steps {
    position: relative;
    display: grid;
    gap: 18px;
}

.coach-steps::before {
    content: "";
    position: absolute;
    left: 31px;
    top: 58px;
    bottom: 58px;
    width: 2px;
    background: rgba(141, 203, 255, 0.28);
}

.coach-step {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 64px 1fr;
    align-items: center;
    gap: 22px;
    min-height: 118px;
    padding: 22px 26px 22px 0;
}

.coach-step-number {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    color: var(--white);
    background: var(--orange-500);
    border: 5px solid var(--blue-900);
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 900;
}

.coach-step h3 {
    margin-bottom: 5px;
    color: var(--white);
    font-size: 1.2rem;
}

.coach-step p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.6;
}

/* ==========================================================
   10. ABSCHLUSS-CTA
   ========================================================== */

.final-cta {
    padding: 76px 0;
    background:
        linear-gradient(135deg, var(--blue-950), var(--blue-700));
}

.final-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 44px;
}

.final-cta .section-kicker {
    color: #8dcbff;
}

.final-cta h2 {
    max-width: 780px;
    color: var(--white);
}

.final-cta p:last-child {
    max-width: 680px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.06rem;
}


/* ==========================================================
   11. FOOTER
   ========================================================== */

.site-footer {
    color: rgba(255, 255, 255, 0.78);
    background: var(--blue-950);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 0.7fr 1fr;
    gap: 80px;
    padding-top: 58px;
    padding-bottom: 48px;
}

.footer-brand {
    max-width: 430px;
}

.footer-logo {
    width: 190px;
    max-height: 82px;
    margin-bottom: 18px;
    object-fit: contain;
    object-position: left center;
}

.footer-slogan {
    margin-bottom: 8px;
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 800;
}

.footer-description {
    max-width: 390px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

.footer-column h3 {
    margin-bottom: 18px;
    color: var(--white);
    font-size: 1rem;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer-nav a,
.footer-contact-link {
    color: rgba(255, 255, 255, 0.72);
    transition:
        color var(--transition),
        transform var(--transition);
}

.footer-nav a:hover,
.footer-contact-link:hover {
    color: var(--orange-500);
}

.footer-contact p {
    max-width: 330px;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

.footer-contact-link {
    display: inline-block;
    color: var(--white);
    font-weight: 800;
}

.footer-bottom {
    padding-top: 20px;
    padding-bottom: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
}

/* ==========================================================
   12. COACH-SEITE
   ========================================================== */

.coach-page {
    background: #f5f9fc;
}


/* ----------------------------------------------------------
   COACH START
   ---------------------------------------------------------- */

.coach-start {
    position: relative;
    padding: 30px 0 40px;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            #f5faff 0%,
            #ffffff 48%,
            #eaf5ff 100%
        );
}

.coach-start-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
    align-items: center;
    gap: 90px;
}

.coach-start-copy {
    max-width: 760px;
}

.coach-start h1 {
    margin-bottom: 26px;
    color: var(--blue-950);
    font-size: clamp(2.6rem, 4.6vw, 4.3rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.coach-start h1 span {
    display: block;
    margin-top: 8px;
    color: var(--orange-500);
}

.coach-start-lead {
    max-width: 720px;
    margin-bottom: 18px;
    color: var(--text-main);
    font-size: 1.14rem;
    line-height: 1.8;
}

.coach-start-note {
    max-width: 680px;
    margin-bottom: 34px;
    color: var(--text-soft);
    font-size: 1rem;
    line-height: 1.75;
}

.coach-start-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}


/* ----------------------------------------------------------
   COACH INFO PANEL
   ---------------------------------------------------------- */

.coach-start-panel {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    padding: 28px;
    border: 1px solid rgba(219, 232, 243, 0.95);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(14px);
}

.coach-start-fact {
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--blue-050);
}

.coach-start-fact strong {
    display: block;
    margin-bottom: 8px;
    color: var(--blue-800);
    font-size: 1.55rem;
    line-height: 1.15;
}

.coach-start-fact span {
    color: var(--text-soft);
    font-size: 0.92rem;
    line-height: 1.5;
}


/* ----------------------------------------------------------
   DREI COACH-PRINZIPIEN
   ---------------------------------------------------------- */

.coach-start-principles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 48px;
}

.coach-start-principles article {
    display: grid;
    grid-template-columns: 54px 1fr;
    align-items: start;
    gap: 18px;
    padding: 26px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.coach-start-principles article > span {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    color: var(--white);
    background: var(--orange-500);
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 900;
}

.coach-start-principles h2 {
    margin-bottom: 7px;
    color: var(--blue-900);
    font-size: 1.08rem;
}

.coach-start-principles p {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.92rem;
    line-height: 1.6;
}


/* ----------------------------------------------------------
   COACH APP
   ---------------------------------------------------------- */

.coach-app {
    min-height: calc(100vh - 116px);
    padding: 58px 0 72px;
    background:
        linear-gradient(
            135deg,
            #f5faff 0%,
            #ffffff 55%,
            #eef7ff 100%
        );
}

.coach-app-layout {
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
    align-items: start;
    gap: 48px;
}


/* ----------------------------------------------------------
   SIDEBAR UND FORTSCHRITT
   ---------------------------------------------------------- */

.coach-sidebar {
    position: sticky;
    top: 145px;
    padding: 26px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.coach-progress-overview {
    padding-bottom: 24px;
    margin-bottom: 22px;
    border-bottom: 1px solid var(--border);
}

.coach-progress-label {
    margin-bottom: 5px;
    color: var(--text-soft);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.coach-progress-overview strong {
    display: block;
    margin-bottom: 14px;
    color: var(--blue-950);
    font-size: 1.15rem;
}

.coach-progress-track {
    width: 100%;
    height: 8px;
    overflow: hidden;
    border-radius: var(--radius-pill);
    background: var(--blue-100);
}

.coach-progress-bar {
    display: block;
    width: 1.1%;
    height: 100%;
    border-radius: inherit;
    background:
        linear-gradient(
            90deg,
            var(--blue-600),
            var(--orange-500)
        );
    transition: width 300ms ease;
}


/* ----------------------------------------------------------
   KAPITELNAVIGATION
   ---------------------------------------------------------- */

.coach-chapters {
    display: grid;
    gap: 5px;
}

.coach-chapters li {
    display: grid;
    grid-template-columns: 38px 1fr;
    align-items: center;
    gap: 12px;
    padding: 11px 10px;
    border-radius: 12px;
    color: var(--text-soft);
    transition:
        background-color var(--transition),
        color var(--transition);
}

.coach-chapters li > span {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--white);
    color: var(--blue-700);
    font-size: 0.75rem;
    font-weight: 900;
}

.coach-chapters li strong {
    display: block;
    color: inherit;
    font-size: 0.9rem;
}

.coach-chapters li small {
    display: block;
    margin-top: 1px;
    color: var(--text-soft);
    font-size: 0.76rem;
}

.coach-chapters li.active {
    color: var(--blue-950);
    background: var(--blue-100);
}

.coach-chapters li.active > span {
    color: var(--white);
    border-color: var(--orange-500);
    background: var(--orange-500);
}


/* ----------------------------------------------------------
   FRAGENBEREICH
   ---------------------------------------------------------- */

.coach-question-area {
    width: 100%;
    max-width: 900px;
}

.coach-question-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 16px;
}

.coach-chapter-label {
    color: var(--blue-700);
    font-size: 0.9rem;
    font-weight: 900;
}

.coach-question-number {
    color: var(--text-soft);
    font-size: 0.88rem;
    font-weight: 700;
}

.coach-question-card {
    padding: 46px 48px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.coach-question-transition {
    margin-bottom: 14px;
    color: var(--orange-600);
    font-size: 0.9rem;
    font-weight: 900;
}

.coach-question-card h1 {
    max-width: 780px;
    margin-bottom: 34px;
    color: var(--blue-950);
    font-size: clamp(1.65rem, 2.7vw, 2.35rem);
    line-height: 1.25;
    letter-spacing: -0.025em;
}


/* ----------------------------------------------------------
   ANTWORTKARTEN
   ---------------------------------------------------------- */

.coach-answer-area {
    display: grid;
    gap: 14px;
}

/* Schieberegler: volle Inhaltsbreite und klar getrennte Skalenpunkte */
.coach-slider-wrap {
    width: 100%;
    max-width: none;
    padding: 12px 4px 6px;
}

.coach-slider-value {
    min-height: 28px;
    margin-bottom: 18px;
    color: var(--blue-950);
    font-weight: 800;
    text-align: center;
}

.coach-slider {
    display: block;
    width: 100%;
    min-width: 100%;
    margin: 0;
    accent-color: var(--orange-500);
    cursor: pointer;
}

.coach-slider-labels {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    column-gap: clamp(18px, 3vw, 42px);
    width: 100%;
    margin-top: 18px;
    color: var(--text-soft);
    font-size: 0.82rem;
    line-height: 1.35;
    text-align: center;
}

.coach-slider-labels span:first-child {
    text-align: left;
}

.coach-slider-labels span:last-child {
    text-align: right;
}

.coach-answer-card {
    width: 100%;
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    color: var(--text-main);
    text-align: left;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
    cursor: pointer;
    transition:
        transform var(--transition),
        border-color var(--transition),
        background-color var(--transition),
        box-shadow var(--transition);
}

.coach-answer-card:hover {
    transform: translateY(-2px);
    border-color: var(--blue-600);
    background: var(--blue-050);
    box-shadow: var(--shadow-sm);
}

.coach-answer-card.selected {
    border-color: var(--orange-500);
    background: var(--orange-100);
}

.coach-answer-marker {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: var(--blue-800);
    border: 1px solid var(--blue-600);
    border-radius: 50%;
    background: var(--white);
    font-size: 0.85rem;
    font-weight: 900;
}

.coach-answer-card.selected .coach-answer-marker {
    color: var(--white);
    border-color: var(--orange-500);
    background: var(--orange-500);
}


/* ----------------------------------------------------------
   COACH NAVIGATION
   ---------------------------------------------------------- */

.coach-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 26px;
}

.coach-nav-button {
    min-height: 50px;
    padding: 0 24px;
    color: var(--blue-700);
    border: 2px solid var(--blue-600);
    border-radius: var(--radius-pill);
    background: var(--white);
    font-weight: 800;
    cursor: pointer;
}

.coach-nav-button:disabled,
.coach-nav-next:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.coach-privacy-note {
    margin: 20px 0 0;
    color: var(--text-soft);
    text-align: center;
    font-size: 0.82rem;
}


/* ----------------------------------------------------------
   COACH ABSCHLUSS
   ---------------------------------------------------------- */

.coach-finish {
    min-height: calc(100vh - 116px);
    display: flex;
    align-items: center;
    padding: 90px 0;
    background:
        linear-gradient(
            135deg,
            var(--blue-950) 0%,
            var(--blue-900) 55%,
            var(--blue-700) 100%
        );
}

.coach-finish-inner {
    max-width: 850px;
    text-align: center;
}

.coach-finish .section-kicker {
    color: #8dcbff;
}

.coach-finish h2 {
    margin-bottom: 26px;
    color: var(--white);
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.coach-finish h2 span {
    display: block;
    margin-top: 8px;
    color: #8dcbff;
}

.coach-finish-inner > p:not(.section-kicker) {
    max-width: 720px;
    margin: 0 auto 34px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.08rem;
    line-height: 1.8;
}

.coach-finish-actions {
    display: flex;
    justify-content: center;
}

/* ----------------------------------------------------------
   COACH DIAGNOSEERGEBNIS – TEMPORÄRE ENTWICKLUNGSANSICHT
   ---------------------------------------------------------- */

.coach-results {
    min-height: calc(100vh - 116px);
    padding: 72px 0 96px;
    background:
        linear-gradient(180deg, var(--blue-050) 0%, #ffffff 38%, #f7fbff 100%);
}

.coach-results-inner {
    display: grid;
    gap: 30px;
}

.coach-results-header {
    max-width: 900px;
}

.coach-results-header .section-kicker {
    margin-bottom: 12px;
}

.coach-results-header h2 {
    margin-bottom: 16px;
    color: var(--blue-950);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.coach-results-header > p:last-child {
    max-width: 850px;
    margin-bottom: 0;
    color: var(--text-soft);
    font-size: 1.02rem;
}

.coach-results-summary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.coach-results-summary-card {
    min-width: 0;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.coach-results-summary-card span,
.coach-results-summary-card small {
    display: block;
}

.coach-results-summary-card span {
    margin-bottom: 6px;
    color: var(--text-soft);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.coach-results-summary-card strong {
    display: block;
    margin-bottom: 5px;
    color: var(--blue-900);
    font-size: 1.35rem;
}

.coach-results-summary-card small {
    color: var(--text-soft);
    line-height: 1.45;
}

.coach-diagnostic-block {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.coach-diagnostic-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    padding: 26px 28px 22px;
    border-bottom: 1px solid var(--border);
}

.coach-diagnostic-heading h3 {
    margin: 0;
    color: var(--blue-950);
    font-size: 1.55rem;
}

.coach-diagnostic-heading > p {
    max-width: 440px;
    margin: 0;
    color: var(--text-soft);
    font-size: 0.88rem;
    text-align: right;
}

.coach-diagnostic-eyebrow {
    margin-bottom: 4px;
    color: var(--orange-600);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.coach-table-wrap {
    overflow-x: auto;
}

.coach-diagnostic-table {
    width: 100%;
    min-width: 800px;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.coach-groups-table {
    min-width: 1050px;
}

.coach-diagnostic-table th,
.coach-diagnostic-table td {
    padding: 13px 16px;
    border-bottom: 1px solid #e7f0f7;
    text-align: left;
    vertical-align: middle;
}

.coach-diagnostic-table th {
    position: sticky;
    top: 0;
    z-index: 1;
    color: var(--blue-950);
    background: #f2f8fd;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.025em;
    white-space: nowrap;
}

.coach-diagnostic-table tbody tr:last-child td {
    border-bottom: 0;
}

.coach-diagnostic-table tbody tr:hover td {
    background: var(--blue-050);
}

.coach-table-number,
.coach-table-rank {
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.coach-table-rank {
    color: var(--blue-700);
    font-weight: 900;
}

.coach-top-group td {
    background: var(--orange-100);
}

.coach-top-group:hover td {
    background: var(--orange-100) !important;
}

.coach-results-actions {
    display: flex;
    justify-content: flex-start;
}

@media (max-width: 980px) {
    .coach-results-summary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .coach-diagnostic-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .coach-diagnostic-heading > p {
        text-align: left;
    }
}

@media (max-width: 620px) {
    .coach-results {
        padding: 52px 0 72px;
    }

    .coach-results-summary {
        grid-template-columns: 1fr;
    }

    .coach-diagnostic-heading {
        padding: 22px 20px 18px;
    }
}

/* ==========================================================
   13. RESPONSIVE DESIGN
   ========================================================== */

@media (max-width: 1320px) {
    .header-inner {
        grid-template-columns: 270px 1fr auto;
        gap: 22px;
    }

    .brand img {
        width: 270px;
    }

    .main-nav ul {
        gap: 2px;
    }

    .main-nav a {
        padding-inline: 9px;
        font-size: 0.9rem;
    }

    .coach-phone {
        right: 0;
        width: 205px;
    }

    .journey-step {
        padding-inline: 14px;
    }
}

@media (max-width: 1024px) {
    .header-inner {
        grid-template-columns: 1fr auto;
        min-height: auto;
        padding: 15px 0;
    }

    .brand img {
        width: 290px;
    }

    .main-nav {
        grid-column: 1 / -1;
        order: 3;
        overflow-x: auto;
        padding-bottom: 2px;
    }

    .main-nav ul {
        width: max-content;
    }

    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        max-width: 660px;
    }

    .hero-phone{

    display:none;
    }

    .journey-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .journey-step:nth-child(4) {
        border-left: 0;
    }

    .journey-step:nth-child(n+4) {
        border-top: 1px solid var(--border);
    }

    .trust-layout {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
        .coach-start-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .coach-start-copy {
        max-width: 760px;
    }

    .coach-start-panel {
        max-width: 760px;
    }

    .coach-app-layout {
        grid-template-columns: 250px minmax(0, 1fr);
        gap: 28px;
    }

    .coach-question-card {
        padding: 38px 34px;
    }
}
   

@media (max-width: 820px) {
    .container {
        width: min(calc(100% - 30px), var(--container));
    }

    .site-header {
        position: static;
    }

    .brand img {
        width: 250px;
    }

    .header-cta {
        min-height: 46px;
        padding-inline: 18px;
        font-size: 0.9rem;
    }

    .hero {
        min-height: 650px;
    }

    .hero-media {
        background:
            linear-gradient(90deg, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.92) 56%, rgba(255,255,255,0.45) 100%),
            url("../images/hero-sportwelt.jpg") center / cover no-repeat;
    }

    .hero-inner {
        min-height: 650px;
    }

    .hero-copy {
        padding: 70px 0 130px;
    }

    .journey-section {
        margin-top: -70px;
    }

    .journey-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .journey-step:nth-child(odd) {
        border-left: 0;
    }

    .journey-step:nth-child(n+3) {
        border-top: 1px solid var(--border);
    }

    .journey-step:nth-child(4) {
        border-left: 1px solid var(--border);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .final-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
        .coach-start {
        padding: 68px 0 62px;
    }

    .coach-start-principles {
        grid-template-columns: 1fr;
        margin-top: 50px;
    }

    .coach-app {
        padding-top: 36px;
    }

    .coach-app-layout {
        grid-template-columns: 1fr;
    }

    .coach-sidebar {
        position: static;
    }

    .coach-chapters {
        grid-template-columns: repeat(7, minmax(110px, 1fr));
        overflow-x: auto;
        padding-bottom: 8px;
    }

    .coach-chapters li {
        min-width: 110px;
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .coach-question-area {
        max-width: none;
    }
}

@media (max-width: 560px) {
    .header-inner {
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .about-header {
        margin-bottom: 42px;
    }

    .about-grid {
        gap: 20px;
    }

    .brand img {
        width: 240px;
    }

    .header-cta {
        width: 100%;
    }

    .main-nav {
        width: 100%;
    }

    .hero {
        min-height: auto;
    }

    .hero-inner {
        min-height: auto;
    }

    .hero-media {
        background:
            linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.88) 72%, rgba(255,255,255,0.66) 100%),
            url("../images/hero-sportwelt.jpg") 66% center / cover no-repeat;
    }

    .hero-copy {
        padding: 58px 0 115px;
    }

    .hero h1 {
        font-size: clamp(3rem, 15vw, 4.2rem);
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .button-large {
        width: 100%;
    }

    .journey-card {
        padding-inline: 16px;
    }

    .journey-grid {
        grid-template-columns: 1fr;
    }

    .journey-step,
    .journey-step:nth-child(4) {
        border-left: 0;
    }

    .journey-step + .journey-step {
        border-top: 1px solid var(--border);
    }

        .about-grid {
        grid-template-columns: 1fr;
    }

    .about-card {
        padding: 30px 26px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

       .footer-content {
        grid-template-columns: 1fr;
        gap: 34px;
        padding-top: 44px;
        padding-bottom: 38px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-logo {
        width: 170px;
    }
        .coach-start {
        padding: 52px 0;
    }

    .coach-start h1 {
        font-size: clamp(2.45rem, 12vw, 3.4rem);
    }

    .coach-start-panel {
        grid-template-columns: 1fr;
        padding: 18px;
    }

    .coach-start-fact {
        min-height: 110px;
    }

    .coach-start-principles article {
        grid-template-columns: 46px 1fr;
        padding: 22px;
    }

    .coach-start-principles article > span {
        width: 46px;
        height: 46px;
    }

    .coach-sidebar {
        padding: 20px;
    }

    .coach-question-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .coach-question-card {
        padding: 28px 20px;
    }

    .coach-question-card h1 {
        font-size: 1.55rem;
    }

    .coach-answer-card {
        grid-template-columns: 38px 1fr;
        padding: 16px;
    }

    .coach-answer-marker {
        width: 34px;
        height: 34px;
    }

    .coach-slider-labels {
        column-gap: 8px;
        font-size: 0.7rem;
    }

    .coach-navigation {
        align-items: stretch;
        flex-direction: column-reverse;
    }

    .coach-nav-button,
    .coach-nav-next {
        width: 100%;
    }
}

/* ==========================================================
   14. BEWEGUNGSREDUKTION
   ========================================================== */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after{

        scroll-behavior:auto !important;
        transition-duration:.01ms !important;
        animation-duration:.01ms !important;
        animation-iteration-count:1 !important;

    }

}

/* =========================================================
   COACH – ORIENTIERUNGSRÄUME (Arbeitsmodell V0.1)
========================================================= */

.coach-orientation-block {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 1.25rem;
    background: #ffffff;
    border: 1px solid rgba(16, 55, 92, 0.10);
    box-shadow: 0 14px 36px rgba(16, 55, 92, 0.08);
}

.coach-orientation-rooms {
    display: grid;
    gap: 1rem;
    margin-top: 1.25rem;
}

.coach-orientation-zone {
    padding: 1.25rem;
    border-radius: 1rem;
    border: 1px solid rgba(16, 55, 92, 0.10);
    background: rgba(244, 249, 253, 0.78);
}

.coach-orientation-zone-primary {
    background: linear-gradient(135deg, rgba(226, 241, 252, 0.96), rgba(244, 249, 253, 0.98));
    border-color: rgba(38, 126, 181, 0.24);
}

.coach-orientation-zone-secondary {
    background: rgba(247, 250, 253, 0.95);
}

.coach-orientation-zone-further {
    background: rgba(250, 251, 252, 0.95);
}

.coach-orientation-zone-heading {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-bottom: 0.9rem;
}

.coach-orientation-zone-heading span {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #557187;
}

.coach-orientation-zone-heading strong {
    color: #10375c;
    font-size: 1.08rem;
}

.coach-orientation-list {
    display: grid;
    gap: 0.65rem;
}

.coach-orientation-item {
    padding: 0.9rem 1rem;
    border-radius: 0.8rem;
    background: #ffffff;
    border: 1px solid rgba(16, 55, 92, 0.09);
}

.coach-orientation-item-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
}

.coach-orientation-item-head strong {
    color: #173b5d;
}

.coach-orientation-item-head span {
    flex: 0 0 auto;
    font-weight: 800;
    color: #10375c;
}

.coach-orientation-item small {
    display: block;
    margin-top: 0.25rem;
    color: #6b7f8f;
}

.coach-orientation-note {
    padding: 1rem 1.1rem;
    border-radius: 0.9rem;
    background: rgba(244, 249, 253, 0.9);
    border: 1px solid rgba(16, 55, 92, 0.10);
}

.coach-orientation-note strong {
    color: #10375c;
}

.coach-orientation-note p {
    margin: 0.35rem 0 0;
    color: #526b7d;
}

@media (max-width: 640px) {
    .coach-orientation-block,
    .coach-orientation-zone {
        padding: 1rem;
    }

    .coach-orientation-item-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.25rem;
    }
}

/* COACH – finale Nutzer-Ergebnisansicht */
.coach-results-header-user,.coach-user-section-heading{max-width:760px}
.coach-results-header-user{margin-bottom:34px}
.coach-user-section-heading{margin-bottom:20px}
.coach-user-section-heading h3{margin:4px 0 8px}
.coach-user-section-heading p{margin:0}
.coach-user-eyebrow{margin:0 0 4px;font-size:.78rem;font-weight:800;letter-spacing:.08em;text-transform:uppercase;color:#f28c18}
.coach-user-result-block{margin-top:34px;padding-top:30px;border-top:1px solid rgba(16,65,104,.12)}
.coach-result-reason-intro{max-width:820px;margin:0 0 18px;line-height:1.65}
.coach-result-reason-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}
.coach-result-reason-card{padding:20px;border:1px solid rgba(16,65,104,.12);border-radius:16px;background:#fff}
.coach-result-reason-card strong{display:block;color:#0b3b63;margin-bottom:7px}
.coach-result-reason-card p{margin:0;font-size:.92rem;line-height:1.55;color:#5d7182}
.coach-careers-next{display:flex;align-items:end;justify-content:space-between;gap:28px}
.coach-careers-next .coach-user-section-heading{margin-bottom:0}
.coach-result-cta{flex:0 0 auto;text-decoration:none}
.coach-careerbook-card{margin-top:38px;padding:30px;display:grid;grid-template-columns:minmax(0,1.6fr) minmax(220px,.65fr);gap:34px;align-items:center;border-radius:22px;background:linear-gradient(135deg,#edf8ff 0%,#f8fcff 100%);border:1px solid rgba(31,126,185,.16)}
.coach-careerbook-copy h3{margin:5px 0 10px}
.coach-careerbook-copy>p:last-of-type{max-width:720px;margin-bottom:18px;line-height:1.6}
.coach-careerbook-features{display:flex;flex-wrap:wrap;gap:8px}
.coach-careerbook-features span{padding:7px 11px;border-radius:999px;background:#fff;border:1px solid rgba(16,65,104,.10);font-size:.82rem;font-weight:700;color:#0b3b63}
.coach-careerbook-offer{padding:22px;text-align:center;border-radius:18px;background:#fff;border:1px solid rgba(16,65,104,.12)}
.coach-careerbook-offer>small:first-child{display:block;color:#6c7f8e}
.coach-careerbook-offer>strong{display:block;margin:4px 0 14px;font-size:2rem;color:#0b3b63}
.coach-careerbook-offer button{width:100%}
.coach-careerbook-offer button[disabled]{opacity:.68;cursor:not-allowed}
.coach-careerbook-offer>small:last-child{display:block;margin-top:9px;line-height:1.35;color:#758695}
@media(max-width:820px){.coach-result-reason-grid{grid-template-columns:1fr}.coach-careers-next{align-items:stretch;flex-direction:column}.coach-result-cta{align-self:flex-start}.coach-careerbook-card{grid-template-columns:1fr}}

/* PASSENDE BERUFE ENTDECKEN – V1 */
.career-discovery-page{background:#f7fbfe;min-height:70vh}.career-discovery-hero{padding:72px 0 44px;background:linear-gradient(180deg,#eef8ff 0%,#f7fbfe 100%)}.career-discovery-hero h1{max-width:850px;margin:10px 0 18px;font-size:clamp(2.5rem,5vw,4.5rem);line-height:1.02;color:#0b3763}.career-discovery-lead{max-width:850px;font-size:1.14rem;line-height:1.65;color:#536c80}.career-discovery-principle{display:inline-block;margin-top:20px;padding:13px 17px;border-radius:12px;background:#fff;border:1px solid rgba(31,126,185,.14);color:#496377;font-size:.92rem}.career-discovery-content{padding:36px 0 72px}.career-discovery-heading{max-width:900px;margin:0 0 24px}.career-discovery-heading h2{margin:5px 0 9px;color:#0b3763}.career-discovery-heading>p:last-child{color:#5f7486;line-height:1.55}.career-card-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}.career-result-card{display:flex;flex-direction:column;min-height:100%;padding:24px;border:1px solid rgba(16,65,104,.12);border-radius:18px;background:#fff;box-shadow:0 12px 28px rgba(10,58,96,.055)}.career-result-room{display:inline-flex;width:max-content;max-width:100%;margin-bottom:12px;padding:6px 10px;border-radius:999px;background:#eaf6fd;color:#316a91;font-size:.74rem;font-weight:800}.career-result-card h3{margin:0 0 10px;color:#0b3763;font-size:1.2rem}.career-result-card-top>p{margin:0;color:#607486;line-height:1.55;font-size:.93rem}.career-result-why{margin-top:20px;padding-top:17px;border-top:1px solid rgba(16,65,104,.1)}.career-result-why strong{display:block;margin-bottom:6px;color:#0b3763;font-size:.88rem}.career-result-why p{margin:0;color:#526a7e;line-height:1.5;font-size:.88rem}.career-result-details{margin-top:auto;padding-top:18px}.career-result-details summary{cursor:pointer;color:#0877c7;font-weight:800;font-size:.9rem}.career-result-details div{margin-top:12px;padding:14px;border-radius:12px;background:#f6f9fc;color:#526a7e;font-size:.86rem}.career-result-details ul{margin:8px 0 0;padding-left:18px}.career-result-details li+li{margin-top:5px}.career-discovery-more-wrap{margin:24px 0 0;text-align:center}.career-secondary-section{margin-top:58px;padding-top:46px;border-top:1px solid rgba(16,65,104,.12)}.career-card-grid-secondary .career-result-card{box-shadow:none;background:#fbfdff}.career-discovery-next{margin-top:62px;padding:30px;display:flex;justify-content:space-between;align-items:center;gap:28px;border-radius:22px;background:linear-gradient(135deg,#eaf6fd,#f9fcff);border:1px solid rgba(31,126,185,.15)}.career-discovery-next h2{margin:5px 0 8px;color:#0b3763}.career-discovery-next p{margin:0;max-width:760px;color:#5d7182;line-height:1.55}.career-discovery-empty{max-width:760px;margin:30px auto;padding:36px;text-align:center;border-radius:20px;background:#fff;border:1px solid rgba(16,65,104,.12)}.career-discovery-empty h2{color:#0b3763}.career-discovery-empty p{margin-bottom:22px;color:#607486}@media(max-width:1000px){.career-card-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media(max-width:700px){.career-card-grid{grid-template-columns:1fr}.career-discovery-next{align-items:stretch;flex-direction:column}.career-discovery-next .button{align-self:flex-start}.career-discovery-hero{padding-top:48px}}


/* =========================================================
   BERUFE ENTDECKEN V2 – Textschicht + Arbeitsalltag
========================================================= */

.career-result-details-content {
    margin-top: 12px;
    padding: 0 !important;
    border-radius: 12px;
    background: #f6f9fc;
    overflow: hidden;
}

.career-quick-section {
    padding: 15px 16px;
}

.career-quick-section + .career-quick-section {
    border-top: 1px solid rgba(16,65,104,.10);
}

.career-quick-section > strong {
    display: block;
    color: #385771;
    margin-bottom: 7px;
}

.career-quick-section ul {
    margin: 8px 0 0;
    padding-left: 18px;
}

.career-quick-day p {
    margin: 0;
    color: #526a7e;
    line-height: 1.58;
}

.careerbook-transition {
    align-items: stretch;
}

.careerbook-transition-copy {
    flex: 1 1 auto;
}

.careerbook-transition-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 17px;
}

.careerbook-transition-features span {
    padding: 7px 11px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(16,65,104,.10);
    color: #0b3763;
    font-size: .8rem;
    font-weight: 750;
}

.careerbook-transition-offer {
    flex: 0 0 275px;
    align-self: center;
    padding: 22px;
    text-align: center;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(16,65,104,.12);
}

.careerbook-transition-offer > small:first-child {
    display: block;
    color: #6c7f8e;
}

.careerbook-transition-offer > strong {
    display: block;
    margin: 5px 0 14px;
    color: #0b3763;
    font-size: 2rem;
}

.careerbook-transition-offer .button {
    width: 100%;
}

.careerbook-transition-offer button[disabled] {
    opacity: .72;
    cursor: not-allowed;
}

.careerbook-transition-offer > small:last-child {
    display: block;
    margin-top: 9px;
    color: #758695;
    line-height: 1.35;
}
.careerbook-checkout-consents{margin:16px 0;text-align:left;display:grid;gap:12px}
.careerbook-checkout-consents label{display:grid;grid-template-columns:20px 1fr;gap:9px;align-items:start;font-size:.78rem;line-height:1.42;color:#435d73;cursor:pointer}
.careerbook-checkout-consents input{width:18px;height:18px;margin:1px 0 0;accent-color:#f36f00}
.careerbook-legal-links{margin:2px 0 12px;font-size:.78rem;line-height:1.45;color:#637b90;text-align:left}
.careerbook-legal-links a{color:#0b6db7;text-decoration:underline;text-underline-offset:2px}
.careerbook-legal-links a:hover{color:#f36f00}

@media (max-width: 800px) {
    .careerbook-transition-offer {
        flex: 1 1 auto;
        width: 100%;
    }
}


/* =========================================================
   CAREERBOOK INTEGRATION V1 – Berufsauswahl / Bridge
========================================================= */
.careerbook-career-select{
    margin-top:18px;
    width:100%;
    padding:10px 13px;
    border:1px solid rgba(8,119,199,.24);
    border-radius:11px;
    background:#f1f8fd;
    color:#0877c7;
    font:inherit;
    font-size:.86rem;
    font-weight:800;
    cursor:pointer;
    transition:.18s ease;
}
.careerbook-career-select:hover{background:#e8f5fd;border-color:rgba(8,119,199,.38)}
.careerbook-career-select[aria-pressed="true"]{background:#0b3763;color:#fff;border-color:#0b3763}
.career-result-card--careerbook-selected{border-color:rgba(8,119,199,.48);box-shadow:0 16px 34px rgba(10,58,96,.12)}
.careerbook-selection-summary{
    margin-top:17px!important;
    padding:13px 15px;
    border-radius:12px;
    background:#fff;
    border:1px solid rgba(16,65,104,.10);
    color:#496377!important;
    font-size:.9rem;
}
.careerbook-selection-summary strong{color:#0b3763}
