/* Luracon – KI-Workshop */

/* ------------------------------------------------------------------
   Grundgerüst
------------------------------------------------------------------- */
.kw-section {
    margin-bottom: 10rem;
}

.kw-section.kw-tight {
    margin-bottom: 6rem;
}

h2.kw-h2 {
    font-size: 52px;
    line-height: 62px;
}

h1.kw-h1 {
    font-family: var(--lutz-headline-font-family), serif;
    font-weight: 500;
    font-size: 58px;
    line-height: 68px;
    margin-bottom: 1.5rem;
}

h1.kw-h1 em {
    font-style: italic;
    color: var(--lutz-turquoise-text);
}

.kw-eyebrow {
    color: var(--lutz-turquoise-text);
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: 18px;
    display: block;
}

.kw-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(0, 183, 255, .08);
    border: 1px solid rgba(0, 183, 255, .25);
    color: var(--lutz-turquoise-text);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

/* ------------------------------------------------------------------
   Karten
------------------------------------------------------------------- */
.kw-card {
    background: rgba(8, 18, 38, .92);
    border: 1px solid rgba(0, 183, 255, .12);
    border-radius: 22px;
    padding: 34px;
    height: 100%;
    box-shadow:
        0 0 30px rgba(0, 153, 255, .08),
        inset 0 1px 0 rgba(255, 255, 255, .03);
}

.kw-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 14px;
}

.kw-card p,
.kw-card li {
    color: rgba(255, 255, 255, .65);
    font-size: 17px;
    line-height: 1.7;
}

.kw-card p:last-child,
.kw-card ul:last-child {
    margin-bottom: 0;
}

.kw-card ul {
    padding-left: 1.1rem;
}

.kw-card ul li {
    margin-bottom: .55rem;
}

.kw-card ul li::marker {
    color: var(--lutz-turquoise-text);
}

/* Einzeln stehende Karte: nicht auf Spaltenhoehe strecken */
.kw-card.kw-card-auto {
    height: auto;
}

.kw-card.kw-quiet {
    background: rgba(8, 18, 38, .72);
    border-color: rgba(255, 255, 255, .08);
}

/* ------------------------------------------------------------------
   Hero
------------------------------------------------------------------- */
.kw-hero {
    padding-top: 3rem;
}

.kw-hero-lead {
    font-size: 22px;
    line-height: 32px;
    font-weight: 400;
    color: rgba(255, 255, 255, .8);
}

.kw-outcome {
    background: rgba(8, 18, 38, .92);
    border: 1px solid rgba(0, 183, 255, .12);
    border-radius: 18px;
    padding: 26px 28px;
    margin-bottom: 1.25rem;
}

.kw-outcome .kw-outcome-key {
    color: var(--lutz-turquoise-text);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    display: block;
    margin-bottom: 8px;
}

.kw-outcome p {
    color: rgba(255, 255, 255, .68);
    margin-bottom: 0;
    font-size: 17px;
    line-height: 1.6;
}

/* ------------------------------------------------------------------
   Situation / Hinweisblock
------------------------------------------------------------------- */
.kw-note {
    background: rgba(0, 57, 83, .55);
    border-left: 3px solid var(--lutz-turquoise-text);
    border-radius: 0 18px 18px 0;
    padding: 34px 40px;
}

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

/* ------------------------------------------------------------------
   Profile
------------------------------------------------------------------- */
.kw-profile-role {
    color: var(--lutz-turquoise-text);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 18px;
}

.kw-profile-links a {
    color: var(--lutz-turquoise-text);
    text-decoration: underline;
    font-size: 16px;
    margin-right: 18px;
}

.kw-profile-links a:hover,
.kw-profile-links a:hover span {
    color: var(--lutz-white);
}

/* ------------------------------------------------------------------
   Vergleichstabelle
------------------------------------------------------------------- */
.kw-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 720px;
}

.kw-table th,
.kw-table td {
    padding: 18px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    font-size: 17px;
    line-height: 1.6;
    vertical-align: top;
}

.kw-table thead th {
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
    border-bottom: 1px solid rgba(0, 183, 255, .25);
    white-space: nowrap;
}

.kw-table thead th.kw-col-us {
    color: var(--lutz-turquoise-text);
}

.kw-table tbody th {
    font-weight: 600;
    color: var(--lutz-white);
    width: 20%;
}

.kw-table td.kw-col-market {
    color: rgba(255, 255, 255, .55);
}

.kw-table td.kw-col-us {
    color: var(--lutz-white);
    background: rgba(0, 183, 255, .05);
}

.kw-table tbody tr:last-child th,
.kw-table tbody tr:last-child td {
    border-bottom: 0;
}

.kw-table-scroll {
    overflow-x: auto;
}

/* ------------------------------------------------------------------
   Wirkungsrad (Aufbau 1:1 nach Vorlage, Farben nach Luracon)
------------------------------------------------------------------- */
.kw-wheel-grid {
    display: grid;
    gap: 56px;
    grid-template-columns: minmax(0, 400px) 1fr;
    align-items: center;
}

.kw-wheel-svg-wrap {
    max-width: 400px;
    margin-inline: auto;
    width: 100%;
}

.kw-wheel-svg {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 40px rgba(0, 153, 255, .15));
}

.kw-wheel-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 4px;
}

.kw-wheel-list li {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    align-items: start;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.kw-wheel-list li:first-child {
    border-top: 0;
    padding-top: 0;
}

.kw-wheel-idx {
    font-size: 13px;
    font-weight: 600;
    color: var(--lutz-turquoise-text);
    line-height: 1.5;
}

.kw-wheel-txt {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.kw-wheel-txt b {
    font-weight: 600;
    font-size: 18px;
}

.kw-wheel-txt > span {
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255, 255, 255, .62);
}

.kw-wheel-chip {
    flex: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--lutz-turquoise-text);
    background: rgba(0, 183, 255, .08);
    border: 1px solid rgba(0, 183, 255, .25);
    border-radius: 980px;
    padding: 5px 12px;
    white-space: nowrap;
}

/* ------------------------------------------------------------------
   Ablauf in fuenf Schritten (Aufbau 1:1 nach Vorlage)
------------------------------------------------------------------- */
.kw-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, 1fr);
}

.kw-steps.kw-steps-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.kw-steps li {
    background: rgba(8, 18, 38, .92);
    border: 1px solid rgba(0, 183, 255, .12);
    border-radius: 20px;
    box-shadow:
        0 0 30px rgba(0, 153, 255, .08),
        inset 0 1px 0 rgba(255, 255, 255, .03);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.kw-step-num {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--lutz-turquoise-text);
}

.kw-steps h3 {
    font-size: 24px;
    letter-spacing: -.01em;
    line-height: 1.1;
    font-weight: 700;
    margin: 0;
}

.kw-steps p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255, 255, 255, .62);
}

/* ------------------------------------------------------------------
   Profil-Fotos
------------------------------------------------------------------- */
.kw-profile-head {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
}

.kw-profile-head h3 {
    margin-bottom: 0;
}

.kw-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    flex: none;
    border: 1px solid rgba(0, 183, 255, .3);
    box-shadow: 0 0 24px rgba(0, 153, 255, .12);
}

/* ------------------------------------------------------------------
   Module
------------------------------------------------------------------- */
.kw-module {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.kw-module-head {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    padding-bottom: 20px;
    margin-bottom: 22px;
}

.kw-module-no {
    font-family: var(--lutz-headline-font-family), serif;
    font-size: 44px;
    line-height: 1;
    color: var(--lutz-turquoise-text);
}

.kw-module-meta {
    color: rgba(255, 255, 255, .5);
    font-size: 15px;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-top: 8px;
}

.kw-module-price {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    font-size: 1.25rem;
    font-weight: 700;
}

.kw-module-price small {
    display: block;
    font-size: 15px;
    font-weight: 300;
    color: rgba(255, 255, 255, .5);
    margin-top: 4px;
}

/* ------------------------------------------------------------------
   Für wen
------------------------------------------------------------------- */
.kw-fit {
    border-radius: 22px;
    padding: 34px;
    height: 100%;
}

.kw-fit-yes {
    background: rgba(8, 18, 38, .92);
    border: 1px solid rgba(0, 183, 255, .3);
}

.kw-fit-no {
    background: rgba(8, 18, 38, .6);
    border: 1px solid rgba(255, 255, 255, .08);
}

.kw-fit h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.kw-fit ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.kw-fit li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, .72);
    font-size: 17px;
    line-height: 1.65;
}

.kw-fit li::before {
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
}

.kw-fit-yes li::before {
    content: "\2713";
    color: var(--lutz-turquoise-text);
}

.kw-fit-no li::before {
    content: "\2014";
    color: rgba(255, 255, 255, .35);
}

/* ------------------------------------------------------------------
   FAQ (Bootstrap Accordion im dunklen Luracon-Look)
------------------------------------------------------------------- */
.kw-accordion .accordion-item {
    background: rgba(8, 18, 38, .92);
    border: 1px solid rgba(0, 183, 255, .12);
    border-radius: 18px !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.kw-accordion .accordion-button {
    background: transparent;
    color: var(--lutz-white);
    font-size: 1.2rem;
    font-weight: 600;
    padding: 24px 28px;
    box-shadow: none;
}

.kw-accordion .accordion-button:not(.collapsed) {
    background: rgba(0, 183, 255, .06);
    color: var(--lutz-turquoise-text);
    box-shadow: none;
}

.kw-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.kw-accordion .accordion-button::after {
    filter: invert(1) grayscale(1) brightness(2);
}

.kw-accordion .accordion-body {
    color: rgba(255, 255, 255, .68);
    font-size: 17px;
    line-height: 1.75;
    padding: 0 28px 26px 28px;
}

.kw-accordion .accordion-body b {
    color: var(--lutz-white);
}

/* ------------------------------------------------------------------
   Abschluss-CTA
------------------------------------------------------------------- */
.kw-cta {
    background: rgba(8, 18, 38, .92);
    border: 1px solid rgba(0, 183, 255, .2);
    border-radius: 22px;
    padding: 60px;
    text-align: center;
    box-shadow: 0 0 45px rgba(0, 153, 255, .1);
}

.kw-cta p {
    color: rgba(255, 255, 255, .72);
}

.kw-contact-line {
    margin-top: 34px;
    color: rgba(255, 255, 255, .6);
    font-size: 17px;
}

.kw-contact-line a {
    color: var(--lutz-turquoise-text);
    text-decoration: underline;
}

.kw-contact-line a:hover {
    color: var(--lutz-white);
}

/* ------------------------------------------------------------------
   Zurück-Link
------------------------------------------------------------------- */
.kw-back {
    display: inline-block;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(0, 183, 255, .2);
    border-radius: 12px;
    padding: 10px 20px;
    font-size: 16px;
    transition: all .25s ease;
}

.kw-back:hover {
    background: rgba(0, 183, 255, .1);
    border-color: rgba(0, 183, 255, .45);
    color: var(--lutz-turquoise-text);
}

/* ------------------------------------------------------------------
   Responsive
------------------------------------------------------------------- */
@media screen and (max-width: 1080px) {
    .kw-steps.kw-steps-5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 900px) {
    .kw-wheel-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

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

@media screen and (max-width: 1460px) {
    h1.kw-h1 {
        font-size: 48px;
        line-height: 58px;
    }

    h2.kw-h2 {
        font-size: 44px;
        line-height: 54px;
    }
}

@media screen and (max-width: 768px) {
    .kw-section {
        margin-bottom: 5rem;
    }

    .kw-section.kw-tight {
        margin-bottom: 3.5rem;
    }

    h1.kw-h1 {
        font-size: 36px;
        line-height: 44px;
    }

    h2.kw-h2 {
        font-size: 34px;
        line-height: 42px;
    }

    .kw-card,
    .kw-fit {
        padding: 26px 22px;
    }

    .kw-note {
        padding: 26px 22px;
    }

    .kw-cta {
        padding: 34px 22px;
    }

    .kw-steps,
    .kw-steps.kw-steps-5 {
        grid-template-columns: 1fr;
    }

    .kw-wheel-list li {
        grid-template-columns: auto 1fr;
    }

    .kw-wheel-chip {
        grid-column: 2;
        justify-self: start;
    }

    .kw-profile-head {
        gap: 16px;
    }

    .kw-avatar {
        width: 76px;
        height: 76px;
    }

    .kw-accordion .accordion-button {
        font-size: 1.05rem;
        padding: 20px 20px;
    }

    .kw-accordion .accordion-body {
        padding: 0 20px 22px 20px;
    }
}

/* ------------------------------------------------------------------
   Aktiver Menüpunkt
------------------------------------------------------------------- */
header nav a.kw-nav-active span {
    color: var(--lutz-turquoise-text);
}

header nav a.kw-nav-active:hover span {
    color: var(--lutz-white);
}
