.elementor-7 .elementor-element.elementor-element-b337999{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-8ec88ad */.si-home {
    --si-navy: #0C3553;
    --si-navy-dark: #061F32;
    --si-navy-light: #174D6D;
    --si-green: #83AE2B;
    --si-green-dark: #668C1F;
    --si-green-light: #EFF6DF;
    --si-orange: #F7931D;
    --si-orange-dark: #D9770B;
    --si-orange-light: #FFF0DD;
    --si-blue: #2D85A8;
    --si-blue-light: #E4F3F8;
    --si-teal: #1F9D8B;
    --si-teal-light: #E0F4F1;
    --si-white: #FFFFFF;
    --si-cream: #FCFBF7;
    --si-ice: #F3F7F8;
    --si-text: #2C4153;
    --si-muted: #657789;
    --si-line: #DDE6EA;
    --si-shadow-sm: 0 10px 28px rgba(12, 53, 83, 0.08);
    --si-shadow-md: 0 20px 55px rgba(12, 53, 83, 0.14);
    --si-shadow-lg: 0 30px 80px rgba(6, 31, 50, 0.2);

    width: 100%;
    overflow: hidden;
    color: var(--si-text);
    background: var(--si-white);
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
}

.si-home *,
.si-home *::before,
.si-home *::after {
    box-sizing: border-box;
}

.si-home h1,
.si-home h2,
.si-home h3,
.si-home h4,
.si-home p {
    margin-top: 0;
}

.si-home h1,
.si-home h2,
.si-home h3,
.si-home h4 {
    color: var(--si-navy);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.si-home p {
    color: var(--si-muted);
}

.si-home a {
    text-decoration: none !important;
}

.si-container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

.si-section {
    position: relative;
    padding: 100px 0;
}

.si-section--cream {
    background: var(--si-cream);
}

.si-section--ice {
    background: var(--si-ice);
}

.si-section--navy {
    background: var(--si-navy);
}

.si-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 17px;
    color: var(--si-green-dark);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.si-eyebrow::before {
    content: "";
    width: 28px;
    height: 3px;
    border-radius: 20px;
    background: var(--si-orange);
}

.si-section-head {
    max-width: 790px;
    margin-bottom: 54px;
}

.si-section-head--center {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.si-section-head--center .si-eyebrow::after {
    content: "";
    width: 28px;
    height: 3px;
    border-radius: 20px;
    background: var(--si-orange);
}

.si-section-title {
    margin-bottom: 19px;
    font-size: clamp(34px, 4.5vw, 52px);
}

.si-section-subtitle {
    max-width: 700px;
    margin-bottom: 0;
    font-size: 17px;
}

.si-section-head--center .si-section-subtitle {
    margin-right: auto;
    margin-left: auto;
}

.si-green-text {
    color: var(--si-green);
}

.si-orange-text {
    color: var(--si-orange);
}

/* =========================================================
   BUTTONS
   ========================================================= */

.si-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 54px;
    padding: 14px 23px;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease;
}

.si-button::before {
    content: "";
    position: absolute;
    top: -60%;
    left: -70%;
    width: 40%;
    height: 220%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.42),
        transparent
    );
    transform: rotate(18deg);
    transition: left 0.65s ease;
}

.si-button:hover::before {
    left: 135%;
}

.si-button:hover {
    transform: translateY(-3px);
}

.si-button svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.si-button--navy {
    color: var(--si-white) !important;
    background: var(--si-navy);
    box-shadow: 0 12px 28px rgba(12, 53, 83, 0.2);
}

.si-button--navy:hover {
    background: var(--si-navy-light);
    box-shadow: 0 17px 36px rgba(12, 53, 83, 0.28);
}

.si-button--orange {
    color: var(--si-white) !important;
    background: var(--si-orange);
    box-shadow: 0 12px 28px rgba(247, 147, 29, 0.25);
}

.si-button--orange:hover {
    background: var(--si-orange-dark);
}

.si-button--green {
    color: var(--si-white) !important;
    background: var(--si-green);
    box-shadow: 0 12px 28px rgba(131, 174, 43, 0.25);
}

.si-button--green:hover {
    background: var(--si-green-dark);
}

.si-button--white {
    color: var(--si-navy) !important;
    background: var(--si-white);
    box-shadow: var(--si-shadow-sm);
}

.si-button--white:hover {
    box-shadow: var(--si-shadow-md);
}

.si-button--outline {
    color: var(--si-navy) !important;
    border-color: var(--si-line);
    background: transparent;
}

.si-button--outline:hover {
    border-color: var(--si-green);
    background: var(--si-white);
}

.si-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* =========================================================
   HERO-SLIDER
   ========================================================= */

.si-hero {
    position: relative;
    min-height: 710px;
    overflow: hidden;
    background: var(--si-cream);
}

.si-slider {
    position: relative;
    min-height: 710px;
}

.si-slide {
    position: absolute;
    inset: 0;
    display: flex;
    visibility: hidden;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transform: translateX(35px);
    transition:
        opacity 0.65s ease,
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0.65s ease;
}

.si-slide.is-active {
    position: relative;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.si-slide::before {
    content: "";
    position: absolute;
    top: -220px;
    left: -220px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    opacity: 0.45;
    background: var(--si-green-light);
    filter: blur(2px);
}

.si-slide:nth-child(2)::before {
    background: var(--si-blue-light);
}

.si-slide:nth-child(3)::before {
    background: var(--si-orange-light);
}

.si-slide-inner {
    display: grid;
    grid-template-columns: 0.93fr 1.07fr;
    gap: 55px;
    align-items: center;
    min-height: 710px;
    padding: 68px 0 105px;
}

.si-slide-content {
    position: relative;
    z-index: 4;
}

.si-opening-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    padding: 8px 12px;
    border-radius: 6px;
    color: var(--si-white);
    background: var(--si-orange);
    box-shadow: 0 10px 24px rgba(247, 147, 29, 0.25);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.si-opening-badge span {
    position: relative;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--si-white);
}

.si-opening-badge span::after {
    content: "";
    position: absolute;
    inset: -4px;
    border: 1px solid var(--si-white);
    border-radius: 50%;
    animation: siPulse 2s ease-out infinite;
}

.si-slide-kicker {
    display: block;
    margin-bottom: 13px;
    color: var(--si-green-dark);
    font-size: 14px;
    font-weight: 800;
}

.si-slide h1 {
    max-width: 620px;
    margin-bottom: 21px;
    font-size: clamp(45px, 6vw, 74px);
    letter-spacing: -0.055em;
}

.si-slide h1 .si-highlight {
    position: relative;
    display: inline-block;
    color: var(--si-orange);
}

.si-slide h1 .si-highlight--green {
    color: var(--si-green);
}

.si-slide h1 .si-highlight--blue {
    color: var(--si-blue);
}

.si-slide h1 .si-highlight::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -5px;
    left: 0;
    height: 5px;
    border-radius: 10px;
    background: var(--si-green);
    transform: scaleX(0);
    transform-origin: left;
}

.si-slide.is-active h1 .si-highlight::after {
    animation: siUnderline 0.75s 0.4s ease forwards;
}

.si-slide-description {
    max-width: 590px;
    margin-bottom: 25px;
    color: var(--si-text) !important;
    font-size: 18px;
}

.si-discount {
    display: flex;
    align-items: center;
    gap: 15px;
    width: fit-content;
    margin-bottom: 27px;
    padding: 13px 17px;
    border: 1px solid #FFD3A0;
    border-radius: 8px;
    background: var(--si-orange-light);
}

.si-discount-value {
    color: var(--si-orange);
    font-size: 29px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.045em;
}

.si-discount-copy strong,
.si-discount-copy span {
    display: block;
}

.si-discount-copy strong {
    color: var(--si-navy);
    font-size: 13px;
}

.si-discount-copy span {
    color: var(--si-muted);
    font-size: 10px;
}

.si-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.si-hero-points li {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--si-navy);
    font-size: 12px;
    font-weight: 750;
}

.si-hero-points svg {
    width: 18px;
    height: 18px;
    padding: 3px;
    border-radius: 50%;
    color: var(--si-green-dark);
    background: var(--si-green-light);
}

/* Hero-Bild */

.si-slide-visual {
    position: relative;
    min-height: 545px;
}

.si-slide-image {
    position: absolute;
    inset: 0 0 35px;
    overflow: hidden;
    border-radius: 18px 18px 80px 18px;
    background: var(--si-ice);
    box-shadow: var(--si-shadow-lg);
}

.si-slide-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(6, 31, 50, 0.2),
        transparent 55%
    );
}

.si-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 7s ease;
}

.si-slide.is-active .si-slide-image img {
    transform: scale(1.055);
}

.si-slide-visual::before,
.si-slide-visual::after {
    content: "";
    position: absolute;
    z-index: 3;
    border-radius: 50%;
    pointer-events: none;
}

.si-slide-visual::before {
    right: -45px;
    bottom: 10px;
    width: 240px;
    height: 70px;
    border-bottom: 4px solid var(--si-orange);
    transform: rotate(-8deg);
}

.si-slide-visual::after {
    right: -25px;
    bottom: 28px;
    width: 270px;
    height: 72px;
    border-bottom: 4px solid var(--si-green);
    transform: rotate(-5deg);
}

.si-floating-card {
    position: absolute;
    z-index: 5;
    padding: 16px;
    border-radius: 9px;
    background: var(--si-white);
    box-shadow: var(--si-shadow-md);
    animation: siFloat 5s ease-in-out infinite;
}

.si-floating-card--top {
    top: 28px;
    left: -25px;
    min-width: 185px;
}

.si-floating-card--bottom {
    right: -17px;
    bottom: 0;
    min-width: 225px;
    animation-delay: -2s;
}

.si-floating-card-head {
    display: flex;
    align-items: center;
    gap: 10px;
}

.si-floating-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 39px;
    height: 39px;
    flex: 0 0 auto;
    border-radius: 8px;
    color: var(--si-green-dark);
    background: var(--si-green-light);
}

.si-floating-card--bottom .si-floating-icon {
    color: var(--si-orange-dark);
    background: var(--si-orange-light);
}

.si-floating-icon svg {
    width: 20px;
    height: 20px;
}

.si-floating-copy strong,
.si-floating-copy span {
    display: block;
}

.si-floating-copy strong {
    color: var(--si-navy);
    font-size: 13px;
}

.si-floating-copy span {
    color: var(--si-muted);
    font-size: 10px;
}

/* Slider-Steuerung */

.si-slider-controls {
    position: absolute;
    right: 0;
    bottom: 34px;
    left: 0;
    z-index: 20;
}

.si-slider-control-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.si-slider-arrows {
    display: flex;
    gap: 8px;
}

.si-slider-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    padding: 0;
    border: 1px solid var(--si-line);
    border-radius: 7px;
    color: var(--si-navy);
    background: var(--si-white);
    box-shadow: var(--si-shadow-sm);
    cursor: pointer;
    transition:
        color 0.22s ease,
        border-color 0.22s ease,
        background-color 0.22s ease,
        transform 0.22s ease;
}

.si-slider-arrow:hover {
    color: var(--si-white);
    border-color: var(--si-navy);
    background: var(--si-navy);
    transform: translateY(-2px);
}

.si-slider-arrow svg {
    width: 18px;
    height: 18px;
}

.si-slider-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.si-slider-dot {
    position: relative;
    width: 28px;
    height: 5px;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 10px;
    background: #CED9DE;
    cursor: pointer;
    transition:
        width 0.3s ease,
        background-color 0.3s ease;
}

.si-slider-dot.is-active {
    width: 52px;
    background: var(--si-navy);
}

.si-slider-dot.is-active::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: var(--si-orange);
    transform: scaleX(0);
    transform-origin: left;
    animation: siSlideProgress 7s linear forwards;
}

.si-slider-status {
    min-width: 80px;
    color: var(--si-muted);
    font-size: 11px;
    font-weight: 750;
    text-align: right;
}

/* =========================================================
   VORTEILSKARTEN
   ========================================================= */

.si-benefits {
    position: relative;
    z-index: 15;
    margin-top: -10px;
    padding-bottom: 10px;
    background: var(--si-white);
}

.si-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 17px;
}

.si-benefit-card {
    position: relative;
    display: grid;
    grid-template-columns: 77px minmax(0, 1fr);
    gap: 20px;
    align-items: center;
    min-height: 170px;
    padding: 28px;
    overflow: hidden;
    border: 1px solid var(--si-line);
    border-radius: 11px;
    background: var(--si-white);
    box-shadow: var(--si-shadow-sm);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.si-benefit-card:hover {
    border-color: rgba(131, 174, 43, 0.5);
    box-shadow: var(--si-shadow-md);
    transform: translateY(-7px);
}

.si-benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    color: var(--si-white);
    background: var(--si-green);
    transition: transform 0.3s ease;
}

.si-benefit-card:nth-child(2) .si-benefit-icon {
    background: var(--si-blue);
}

.si-benefit-card:nth-child(3) .si-benefit-icon {
    background: var(--si-orange);
}

.si-benefit-card:hover .si-benefit-icon {
    transform: rotate(-6deg) scale(1.07);
}

.si-benefit-icon svg {
    width: 35px;
    height: 35px;
}

.si-benefit-card h3 {
    margin-bottom: 7px;
    font-size: 18px;
}

.si-benefit-card p {
    margin-bottom: 10px;
    font-size: 12px;
}

.si-benefit-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--si-green-dark) !important;
    font-size: 11px;
    font-weight: 800;
}

.si-benefit-card:nth-child(2) .si-benefit-link {
    color: var(--si-blue) !important;
}

.si-benefit-card:nth-child(3) .si-benefit-link {
    color: var(--si-orange) !important;
}

.si-benefit-link svg {
    width: 14px;
    height: 14px;
    transition: transform 0.22s ease;
}

.si-benefit-link:hover svg {
    transform: translateX(4px);
}

/* =========================================================
   WERTELEISTE
   ========================================================= */

.si-values-bar {
    position: relative;
    padding: 36px 0;
    overflow: hidden;
    background: var(--si-navy);
}

.si-values-bar::after {
    content: "";
    position: absolute;
    right: -50px;
    bottom: -100px;
    width: 300px;
    height: 210px;
    border-radius: 50% 50% 0 0;
    background: var(--si-green);
    transform: rotate(-13deg);
}

.si-values-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.si-value {
    display: grid;
    grid-template-columns: 61px minmax(0, 1fr);
    gap: 17px;
    align-items: center;
    min-height: 90px;
    padding: 0 32px;
}

.si-value + .si-value {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.si-value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    color: var(--si-green);
}

.si-value:nth-child(2) .si-value-icon {
    color: var(--si-blue);
}

.si-value:nth-child(3) .si-value-icon {
    color: var(--si-orange);
}

.si-value-icon svg {
    width: 45px;
    height: 45px;
}

.si-value h3 {
    margin-bottom: 5px;
    color: var(--si-white);
    font-size: 17px;
}

.si-value p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 11px;
}

/* =========================================================
   25 JAHRE
   ========================================================= */

.si-history-layout {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 75px;
    align-items: center;
}

.si-history-visual {
    position: relative;
    min-height: 590px;
}

.si-history-image {
    position: absolute;
    inset: 0 55px 55px 0;
    overflow: hidden;
    border-radius: 13px;
    box-shadow: var(--si-shadow-lg);
}

.si-history-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.si-history-image:hover img {
    transform: scale(1.055);
}

.si-history-badge {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 230px;
    padding: 25px;
    border-radius: 10px;
    color: var(--si-white);
    background: var(--si-navy);
    box-shadow: var(--si-shadow-md);
}

.si-history-badge strong {
    display: block;
    margin-bottom: 3px;
    color: var(--si-gold);
    font-size: 43px;
    line-height: 1;
    letter-spacing: -0.05em;
}

.si-history-badge span {
    display: block;
    color: var(--si-white);
    font-size: 12px;
    font-weight: 700;
}

.si-history-content h2 {
    margin-bottom: 21px;
    font-size: clamp(35px, 4.5vw, 53px);
}

.si-history-lead {
    color: var(--si-navy) !important;
    font-size: 19px;
    font-weight: 680;
}

.si-history-checks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 28px 0;
}

.si-history-check {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px;
    border-radius: 7px;
    color: var(--si-navy);
    background: var(--si-ice);
    font-size: 12px;
    font-weight: 750;
    transition:
        background-color 0.25s ease,
        transform 0.25s ease;
}

.si-history-check:hover {
    background: var(--si-green-light);
    transform: translateY(-3px);
}

.si-history-check svg {
    width: 21px;
    height: 21px;
    padding: 4px;
    flex: 0 0 auto;
    border-radius: 50%;
    color: var(--si-white);
    background: var(--si-green);
}

/* =========================================================
   LEHRKRÄFTE
   ========================================================= */

.si-teacher-layout {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 55px;
    align-items: start;
}

.si-teacher-intro {
    position: sticky;
    top: 120px;
    padding: 37px;
    border-radius: 11px;
    color: var(--si-white);
    background: var(--si-navy);
    box-shadow: var(--si-shadow-md);
}

.si-teacher-intro .si-eyebrow {
    color: #B6D76E;
}

.si-teacher-intro h2 {
    margin-bottom: 18px;
    color: var(--si-white);
    font-size: clamp(32px, 4vw, 46px);
}

.si-teacher-intro p {
    color: rgba(255, 255, 255, 0.75);
}

.si-teacher-note {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-top: 23px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.07);
}

.si-teacher-note svg {
    width: 21px;
    height: 21px;
    flex: 0 0 auto;
    color: var(--si-orange);
}

.si-teacher-note span {
    color: var(--si-white);
    font-size: 11px;
    font-weight: 650;
}

.si-teacher-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 19px;
}

.si-teacher-card {
    overflow: hidden;
    border: 1px solid var(--si-line);
    border-radius: 10px;
    background: var(--si-white);
    box-shadow: var(--si-shadow-sm);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.si-teacher-card:hover {
    box-shadow: var(--si-shadow-md);
    transform: translateY(-8px);
}

.si-teacher-card--wide {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
}

.si-teacher-image {
    position: relative;
    height: 285px;
    overflow: hidden;
    background: var(--si-ice);
}

.si-teacher-card--wide .si-teacher-image {
    height: 100%;
    min-height: 295px;
}

.si-teacher-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(6, 31, 50, 0.35),
        transparent 55%
    );
}

.si-teacher-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s ease;
}

.si-teacher-card:hover .si-teacher-image img {
    transform: scale(1.06);
}

.si-teacher-type {
    position: absolute;
    right: 15px;
    bottom: 15px;
    z-index: 2;
    padding: 6px 9px;
    border-radius: 5px;
    color: var(--si-white);
    background: var(--si-green);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.si-teacher-card:nth-child(2) .si-teacher-type {
    background: var(--si-blue);
}

.si-teacher-card--wide .si-teacher-type {
    background: var(--si-orange);
}

.si-teacher-content {
    padding: 24px;
}

.si-teacher-card--wide .si-teacher-content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 32px;
}

.si-teacher-content h3 {
    margin-bottom: 6px;
    font-size: 21px;
}

.si-teacher-role {
    display: block;
    margin-bottom: 13px;
    color: var(--si-green-dark);
    font-size: 11px;
    font-weight: 800;
}

.si-teacher-content p {
    margin-bottom: 15px;
    font-size: 12px;
}

.si-teacher-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.si-teacher-tags span {
    padding: 5px 8px;
    border-radius: 5px;
    color: var(--si-navy);
    background: var(--si-ice);
    font-size: 9px;
    font-weight: 750;
}

/* =========================================================
   WORKSHOPS
   ========================================================= */

.si-workshops {
    position: relative;
    overflow: hidden;
    background: var(--si-navy);
}

.si-workshops::before {
    content: "";
    position: absolute;
    top: -220px;
    right: -170px;
    width: 570px;
    height: 570px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    box-shadow:
        0 0 0 70px rgba(255, 255, 255, 0.025),
        0 0 0 140px rgba(255, 255, 255, 0.014);
}

.si-workshops .si-section-head {
    position: relative;
    z-index: 2;
}

.si-workshops .si-eyebrow {
    color: #B6D76E;
}

.si-workshops .si-section-title {
    color: var(--si-white);
}

.si-workshops .si-section-subtitle {
    color: rgba(255, 255, 255, 0.75);
}

.si-workshop-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 19px;
}

.si-workshop-card {
    position: relative;
    min-height: 355px;
    overflow: hidden;
    padding: 31px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background-color 0.35s ease;
}

.si-workshop-card:hover {
    border-color: rgba(182, 215, 110, 0.45);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
}

.si-workshop-card::after {
    content: attr(data-number);
    position: absolute;
    right: 19px;
    bottom: -20px;
    color: rgba(255, 255, 255, 0.045);
    font-size: 120px;
    font-weight: 900;
    line-height: 1;
}

.si-workshop-free {
    display: inline-flex;
    margin-bottom: 22px;
    padding: 5px 9px;
    border-radius: 4px;
    color: var(--si-navy);
    background: var(--si-orange);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.si-workshop-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 23px;
    border-radius: 9px;
    color: var(--si-navy);
    background: var(--si-green);
    transition: transform 0.3s ease;
}

.si-workshop-card:nth-child(2) .si-workshop-icon {
    background: var(--si-blue);
}

.si-workshop-card:nth-child(3) .si-workshop-icon {
    background: var(--si-orange);
}

.si-workshop-card:hover .si-workshop-icon {
    transform: rotate(-6deg) scale(1.08);
}

.si-workshop-icon svg {
    width: 27px;
    height: 27px;
    color: var(--si-white);
}

.si-workshop-card h3 {
    position: relative;
    z-index: 2;
    margin-bottom: 13px;
    color: var(--si-white);
    font-size: 22px;
}

.si-workshop-card p {
    position: relative;
    z-index: 2;
    margin-bottom: 17px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
}

.si-workshop-list {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 7px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.si-workshop-list li {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--si-white);
    font-size: 11px;
    font-weight: 650;
}

.si-workshop-list li::before {
    content: "";
    width: 5px;
    height: 5px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--si-green);
}

/* =========================================================
   DIGITALISIERUNG
   ========================================================= */

.si-digital-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 75px;
    align-items: center;
}

.si-digital-content h2 {
    margin-bottom: 21px;
    font-size: clamp(35px, 4.5vw, 53px);
}

.si-digital-lead {
    color: var(--si-navy) !important;
    font-size: 18px;
    font-weight: 680;
}

.si-digital-points {
    display: grid;
    gap: 10px;
    margin: 27px 0 29px;
}

.si-digital-point {
    display: grid;
    grid-template-columns: 43px minmax(0, 1fr);
    gap: 13px;
    align-items: center;
    padding: 13px;
    border: 1px solid var(--si-line);
    border-radius: 8px;
    background: var(--si-white);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.si-digital-point:hover {
    border-color: rgba(45, 133, 168, 0.45);
    box-shadow: var(--si-shadow-sm);
    transform: translateX(6px);
}

.si-digital-point-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    border-radius: 8px;
    color: var(--si-blue);
    background: var(--si-blue-light);
}

.si-digital-point-icon svg {
    width: 21px;
    height: 21px;
}

.si-digital-point strong,
.si-digital-point span {
    display: block;
}

.si-digital-point strong {
    color: var(--si-navy);
    font-size: 13px;
}

.si-digital-point span {
    color: var(--si-muted);
    font-size: 10px;
}

/* Digitales Dashboard */

.si-dashboard-wrap {
    position: relative;
    min-height: 590px;
}

.si-dashboard-back {
    position: absolute;
    inset: 35px 0 0 55px;
    border-radius: 13px;
    background: var(--si-navy);
    transform: rotate(3deg);
}

.si-dashboard {
    position: absolute;
    inset: 0 35px 35px 0;
    overflow: hidden;
    border: 1px solid var(--si-line);
    border-radius: 13px;
    background: var(--si-white);
    box-shadow: var(--si-shadow-lg);
}

.si-dashboard-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 20px 23px;
    color: var(--si-white);
    background: var(--si-navy);
}

.si-dashboard-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.si-dashboard-brand-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 7px;
    color: var(--si-white);
    background: var(--si-green);
}

.si-dashboard-brand-icon svg {
    width: 20px;
    height: 20px;
}

.si-dashboard-brand strong,
.si-dashboard-brand span {
    display: block;
}

.si-dashboard-brand strong {
    font-size: 12px;
}

.si-dashboard-brand span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 9px;
}

.si-dashboard-status {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 9px;
    border-radius: 5px;
    color: #BEE58A;
    background: rgba(131, 174, 43, 0.15);
    font-size: 9px;
    font-weight: 800;
}

.si-dashboard-status::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #9CCD42;
}

.si-dashboard-body {
    padding: 24px;
}

.si-dashboard-student {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.si-dashboard-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: var(--si-white);
    background: linear-gradient(135deg, var(--si-blue), var(--si-green));
    font-size: 13px;
    font-weight: 850;
}

.si-dashboard-student strong,
.si-dashboard-student span {
    display: block;
}

.si-dashboard-student strong {
    color: var(--si-navy);
    font-size: 13px;
}

.si-dashboard-student span {
    color: var(--si-muted);
    font-size: 9px;
}

.si-dashboard-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
    margin-bottom: 22px;
}

.si-dashboard-stat {
    padding: 13px;
    border-radius: 7px;
    text-align: center;
    background: var(--si-ice);
}

.si-dashboard-stat strong,
.si-dashboard-stat span {
    display: block;
}

.si-dashboard-stat strong {
    color: var(--si-navy);
    font-size: 20px;
}

.si-dashboard-stat span {
    color: var(--si-muted);
    font-size: 8px;
}

.si-dashboard-stat:nth-child(2) strong {
    color: var(--si-green-dark);
}

.si-dashboard-stat:nth-child(3) strong {
    color: var(--si-orange);
}

.si-progress-group {
    display: grid;
    gap: 16px;
}

.si-progress-row {
    display: grid;
    gap: 7px;
}

.si-progress-label {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    color: var(--si-navy);
    font-size: 10px;
    font-weight: 750;
}

.si-progress-track {
    height: 8px;
    overflow: hidden;
    border-radius: 10px;
    background: var(--si-ice);
}

.si-progress-fill {
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--si-blue), var(--si-green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.2s ease;
}

.si-visible .si-progress-fill {
    transform: scaleX(1);
}

.si-dashboard-note {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-top: 22px;
    padding: 13px;
    border-radius: 7px;
    color: var(--si-navy);
    background: var(--si-green-light);
    font-size: 9px;
    font-weight: 650;
}

.si-dashboard-note svg {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
    color: var(--si-green-dark);
}

/* =========================================================
   VEEDEL
   ========================================================= */

.si-veedel-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    min-height: 620px;
    overflow: hidden;
    border-radius: 13px;
    background: var(--si-navy);
    box-shadow: var(--si-shadow-lg);
}

.si-veedel-image {
    position: relative;
    min-height: 620px;
    overflow: hidden;
}

.si-veedel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.si-veedel-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(12, 53, 83, 0.08),
        var(--si-navy)
    );
}

.si-veedel-image-label {
    position: absolute;
    bottom: 27px;
    left: 27px;
    z-index: 2;
    max-width: 230px;
    padding: 16px;
    border-radius: 8px;
    color: var(--si-white);
    background: rgba(6, 31, 50, 0.82);
    backdrop-filter: blur(10px);
}

.si-veedel-image-label strong {
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
}

.si-veedel-image-label span {
    display: block;
    color: rgba(255, 255, 255, 0.73);
    font-size: 10px;
}

.si-veedel-content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 52px;
}

.si-veedel-content .si-eyebrow {
    color: #B6D76E;
}

.si-veedel-content h2 {
    margin-bottom: 18px;
    color: var(--si-white);
    font-size: clamp(34px, 4.5vw, 52px);
}

.si-veedel-content > p {
    margin-bottom: 27px;
    color: rgba(255, 255, 255, 0.74);
}

.si-veedel-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 11px;
}

.si-veedel-item {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 11px;
    align-items: center;
    padding: 13px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.055);
    transition:
        background-color 0.25s ease,
        transform 0.25s ease;
}

.si-veedel-item:hover {
    background: rgba(131, 174, 43, 0.14);
    transform: translateY(-4px);
}

.si-veedel-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 7px;
    color: var(--si-navy);
    background: var(--si-green);
}

.si-veedel-item:nth-child(2) .si-veedel-icon {
    background: var(--si-blue);
}

.si-veedel-item:nth-child(3) .si-veedel-icon {
    background: var(--si-orange);
}

.si-veedel-item:nth-child(4) .si-veedel-icon {
    background: var(--si-green);
}

.si-veedel-icon svg {
    width: 19px;
    height: 19px;
    color: var(--si-white);
}

.si-veedel-item strong,
.si-veedel-item span {
    display: block;
}

.si-veedel-item strong {
    color: var(--si-white);
    font-size: 11px;
}

.si-veedel-item span {
    color: rgba(255, 255, 255, 0.64);
    font-size: 8px;
}

/* =========================================================
   BEWERTUNGEN
   ========================================================= */

.si-review-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 35px;
}

.si-review-filter button {
    min-height: 40px;
    padding: 8px 15px;
    border: 1px solid var(--si-line);
    border-radius: 6px;
    color: var(--si-navy);
    background: var(--si-white);
    font-family: inherit;
    font-size: 11px;
    font-weight: 750;
    cursor: pointer;
    transition:
        color 0.22s ease,
        border-color 0.22s ease,
        background-color 0.22s ease,
        transform 0.22s ease;
}

.si-review-filter button:hover,
.si-review-filter button.is-active {
    color: var(--si-white);
    border-color: var(--si-navy);
    background: var(--si-navy);
    transform: translateY(-2px);
}

.si-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 19px;
}

.si-review {
    position: relative;
    min-height: 320px;
    padding: 29px;
    overflow: hidden;
    border: 1px solid var(--si-line);
    border-radius: 10px;
    background: var(--si-white);
    box-shadow: var(--si-shadow-sm);
    transition:
        opacity 0.3s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.si-review:hover {
    box-shadow: var(--si-shadow-md);
    transform: translateY(-7px);
}

.si-review.is-hidden {
    display: none;
}

.si-review-quote {
    position: absolute;
    top: 15px;
    right: 20px;
    color: rgba(12, 53, 83, 0.07);
    font-size: 90px;
    font-family: Georgia, serif;
    font-weight: 900;
    line-height: 1;
}

.si-review-stars {
    position: relative;
    z-index: 2;
    margin-bottom: 21px;
    color: var(--si-orange);
    font-size: 16px;
    letter-spacing: 2px;
}

.si-review-text {
    position: relative;
    z-index: 2;
    min-height: 125px;
    margin-bottom: 24px;
    color: var(--si-navy) !important;
    font-size: 15px;
    font-weight: 620;
    line-height: 1.7;
}

.si-review-author {
    display: flex;
    align-items: center;
    gap: 11px;
    padding-top: 18px;
    border-top: 1px solid var(--si-line);
}

.si-review-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    border-radius: 50%;
    color: var(--si-white);
    background: var(--si-green);
    font-size: 12px;
    font-weight: 850;
}

.si-review:nth-child(2) .si-review-avatar {
    background: var(--si-blue);
}

.si-review:nth-child(3) .si-review-avatar {
    background: var(--si-orange);
}

.si-review-author strong,
.si-review-author span {
    display: block;
}

.si-review-author strong {
    color: var(--si-navy);
    font-size: 12px;
}

.si-review-author span {
    color: var(--si-muted);
    font-size: 9px;
}

.si-review-grade {
    margin-left: auto;
    padding: 5px 8px;
    border-radius: 4px;
    color: var(--si-green-dark);
    background: var(--si-green-light);
    font-size: 8px;
    font-weight: 850;
    text-transform: uppercase;
}

/* =========================================================
   ABSCHLUSS
   ========================================================= */

.si-final {
    position: relative;
    overflow: hidden;
    padding: 92px 0;
    background: var(--si-green);
}

.si-final::before {
    content: "";
    position: absolute;
    top: -250px;
    right: -150px;
    width: 590px;
    height: 590px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    box-shadow:
        0 0 0 70px rgba(255, 255, 255, 0.04),
        0 0 0 140px rgba(255, 255, 255, 0.025);
}

.si-final::after {
    content: "";
    position: absolute;
    bottom: -240px;
    left: -160px;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: rgba(247, 147, 29, 0.2);
}

.si-final-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
}

.si-final-content {
    max-width: 730px;
}

.si-final h2 {
    margin-bottom: 17px;
    color: var(--si-white);
    font-size: clamp(35px, 4.8vw, 56px);
}

.si-final p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
}

.si-final-actions {
    display: flex;
    min-width: 240px;
    flex-direction: column;
    gap: 10px;
}

/* =========================================================
   ENTRANCE-ANIMATIONEN
   ========================================================= */

.si-reveal {
    opacity: 0;
    transform: translateY(31px);
    transition:
        opacity 0.75s ease,
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.si-reveal-left {
    opacity: 0;
    transform: translateX(-45px);
    transition:
        opacity 0.75s ease,
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.si-reveal-right {
    opacity: 0;
    transform: translateX(45px);
    transition:
        opacity 0.75s ease,
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.si-visible {
    opacity: 1;
    transform: translate(0, 0);
}

.si-delay-1 {
    transition-delay: 0.1s;
}

.si-delay-2 {
    transition-delay: 0.2s;
}

@keyframes siPulse {
    0% {
        opacity: 0.8;
        transform: scale(0.8);
    }
    100% {
        opacity: 0;
        transform: scale(1.8);
    }
}

@keyframes siUnderline {
    to {
        transform: scaleX(1);
    }
}

@keyframes siFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-9px);
    }
}

@keyframes siSlideProgress {
    to {
        transform: scaleX(1);
    }
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1024px) {
    .si-section {
        padding: 84px 0;
    }

    .si-slide-inner {
        gap: 35px;
    }

    .si-slide h1 {
        font-size: clamp(42px, 6vw, 62px);
    }

    .si-benefits-grid {
        grid-template-columns: 1fr;
    }

    .si-benefit-card {
        min-height: 135px;
    }

    .si-history-layout,
    .si-digital-layout {
        gap: 48px;
    }

    .si-teacher-layout {
        grid-template-columns: 1fr;
    }

    .si-teacher-intro {
        position: static;
        text-align: center;
    }

    .si-workshop-grid {
        grid-template-columns: 1fr 1fr;
    }

    .si-workshop-card:last-child {
        grid-column: 1 / -1;
    }

    .si-veedel-content {
        padding: 40px;
    }
}

/* =========================================================
   MOBIL
   ========================================================= */

@media (max-width: 767px) {
    .si-home {
        font-size: 15px;
    }

    .si-container {
        width: min(100% - 28px, 1200px);
    }

    .si-section {
        padding: 68px 0;
    }

    .si-section-head,
    .si-history-content,
    .si-digital-content {
        margin-right: auto;
        margin-left: auto;
        text-align: center;
    }

    .si-section-head:not(.si-section-head--center) .si-eyebrow,
    .si-history-content .si-eyebrow,
    .si-digital-content .si-eyebrow {
        justify-content: center;
    }

    .si-section-head:not(.si-section-head--center) .si-eyebrow::after,
    .si-history-content .si-eyebrow::after,
    .si-digital-content .si-eyebrow::after {
        content: "";
        width: 28px;
        height: 3px;
        border-radius: 20px;
        background: var(--si-orange);
    }

    .si-hero,
    .si-slider {
        min-height: 0;
    }

    .si-slide {
        align-items: flex-start;
    }

    .si-slide-inner {
        grid-template-columns: 1fr;
        min-height: 0;
        padding: 55px 0 115px;
        text-align: center;
    }

    .si-slide-content {
        order: 1;
    }

    .si-slide-visual {
        order: 2;
        min-height: 410px;
    }

    .si-slide h1 {
        margin-right: auto;
        margin-left: auto;
        font-size: clamp(40px, 12vw, 57px);
    }

    .si-slide-description {
        margin-right: auto;
        margin-left: auto;
    }

    .si-opening-badge,
    .si-discount {
        margin-right: auto;
        margin-left: auto;
    }

    .si-actions,
    .si-hero-points {
        justify-content: center;
    }

    .si-slide-image {
        inset: 0 0 25px;
        border-radius: 13px 13px 55px 13px;
    }

    .si-floating-card--top {
        top: 18px;
        left: 8px;
    }

    .si-floating-card--bottom {
        right: 8px;
    }

    .si-slider-controls {
        bottom: 25px;
    }

    .si-slider-status {
        display: none;
    }

    .si-benefits {
        margin-top: 0;
        padding-top: 30px;
    }

    .si-benefit-card {
        grid-template-columns: 1fr;
        justify-items: center;
        padding: 25px;
        text-align: center;
    }

    .si-values-grid {
        grid-template-columns: 1fr;
    }

    .si-value {
        grid-template-columns: 55px 1fr;
        max-width: 400px;
        margin: 0 auto;
        padding: 22px;
    }

    .si-value + .si-value {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        border-left: 0;
    }

    .si-history-layout,
    .si-digital-layout {
        grid-template-columns: 1fr;
    }

    .si-history-visual {
        min-height: 470px;
    }

    .si-history-image {
        inset: 0 20px 55px 0;
    }

    .si-history-badge {
        width: 205px;
        padding: 21px;
        text-align: center;
    }

    .si-history-checks {
        grid-template-columns: 1fr;
    }

    .si-history-check {
        justify-content: center;
    }

    .si-teacher-cards {
        grid-template-columns: 1fr;
    }

    .si-teacher-card,
    .si-teacher-card--wide {
        grid-column: auto;
        display: block;
        width: min(100%, 440px);
        margin: 0 auto;
        text-align: center;
    }

    .si-teacher-card--wide .si-teacher-image {
        min-height: 300px;
    }

    .si-teacher-tags {
        justify-content: center;
    }

    .si-workshop-grid {
        grid-template-columns: 1fr;
    }

    .si-workshop-card,
    .si-workshop-card:last-child {
        grid-column: auto;
        min-height: 0;
        text-align: center;
    }

    .si-workshop-icon,
    .si-workshop-free {
        margin-right: auto;
        margin-left: auto;
    }

    .si-workshop-list {
        justify-items: center;
    }

    .si-digital-point {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .si-digital-point-icon {
        margin: 0 auto;
    }

    .si-dashboard-wrap {
        min-height: 530px;
    }

    .si-dashboard-back {
        inset: 25px 0 0 20px;
    }

    .si-dashboard {
        inset: 0 15px 25px 0;
    }

    .si-dashboard-body {
        padding: 18px;
    }

    .si-veedel-layout {
        grid-template-columns: 1fr;
    }

    .si-veedel-image {
        min-height: 350px;
    }

    .si-veedel-image::after {
        background: linear-gradient(
            to bottom,
            transparent 58%,
            var(--si-navy)
        );
    }

    .si-veedel-content {
        align-items: center;
        padding: 42px 23px 48px;
        text-align: center;
    }

    .si-veedel-content .si-eyebrow {
        justify-content: center;
    }

    .si-veedel-content .si-eyebrow::after {
        content: "";
        width: 28px;
        height: 3px;
        border-radius: 20px;
        background: var(--si-orange);
    }

    .si-veedel-grid {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .si-veedel-item {
        text-align: left;
    }

    .si-reviews-grid {
        grid-template-columns: 1fr;
    }

    .si-review {
        width: min(100%, 440px);
        min-height: 0;
        margin: 0 auto;
        text-align: center;
    }

    .si-review-text {
        min-height: 0;
    }

    .si-review-author {
        text-align: left;
    }

    .si-final {
        padding: 73px 0;
    }

    .si-final-inner {
        flex-direction: column;
        text-align: center;
    }

    .si-final-actions {
        width: 100%;
        min-width: 0;
    }

    .si-final-actions .si-button {
        width: 100%;
    }
}

@media (max-width: 440px) {
    .si-slide-inner {
        padding-top: 45px;
    }

    .si-slide h1 {
        font-size: 39px;
    }

    .si-slide-content .si-actions,
    .si-slide-content .si-button {
        width: 100%;
    }

    .si-slide-visual {
        min-height: 360px;
    }

    .si-floating-card {
        padding: 11px;
    }

    .si-floating-card--top {
        min-width: 155px;
    }

    .si-floating-card--bottom {
        min-width: 180px;
    }

    .si-dashboard-summary {
        grid-template-columns: 1fr;
    }

    .si-dashboard-wrap {
        min-height: 650px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .si-home *,
    .si-home *::before,
    .si-home *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .si-reveal,
    .si-reveal-left,
    .si-reveal-right {
        opacity: 1;
        transform: none;
    }
}


/* =========================================================
   KORREKTUR: BILDER & ICON-AUSRICHTUNG
   Alle vorhandenen Bereiche bleiben unver?ndert erhalten.
   ========================================================= */
.si-home svg {
    display: block;
}

.si-workshop-icon,
.si-digital-point-icon,
.si-dashboard-brand-icon,
.si-veedel-icon {
    flex: 0 0 auto;
    box-sizing: border-box;
    overflow: hidden;
}

.si-workshop-icon svg,
.si-digital-point-icon svg,
.si-dashboard-brand-icon svg,
.si-veedel-icon svg {
    display: block;
    flex: 0 0 auto;
    max-width: 100%;
    max-height: 100%;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Digitalbereich: echtes Bild plus sauber dar?berliegendes Dashboard */
.si-dashboard-wrap {
    min-height: 690px;
    isolation: isolate;
}

.si-dashboard-wrap::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    width: 76%;
    height: 285px;
    border-radius: 16px;
    background:
        linear-gradient(90deg, rgba(12,53,83,.10), rgba(12,53,83,.58)),
        url("https://images.pexels.com/photos/8923039/pexels-photo-8923039.jpeg?auto=compress&cs=tinysrgb&w=1400") center 42% / cover no-repeat;
    box-shadow: 0 20px 48px rgba(12,53,83,.16);
}

.si-dashboard-wrap::after {
    content: "Lernen digital begleitet";
    position: absolute;
    z-index: 1;
    top: 28px;
    right: 28px;
    padding: 9px 13px;
    border: 1px solid rgba(255,255,255,.38);
    border-radius: 7px;
    color: #fff;
    background: rgba(6,31,50,.74);
    box-shadow: 0 9px 25px rgba(6,31,50,.20);
    backdrop-filter: blur(8px);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .04em;
}

.si-dashboard-back {
    z-index: 1;
    inset: 176px 0 10px 55px;
    transform: rotate(2deg);
}

.si-dashboard {
    z-index: 2;
    inset: 145px 35px 35px 0;
    box-shadow: 0 24px 55px rgba(12,53,83,.22);
}

.si-dashboard-avatar {
    overflow: hidden;
    padding: 0;
    border: 3px solid #fff;
    box-shadow: 0 5px 14px rgba(12,53,83,.15);
}

.si-dashboard-avatar img,
.si-review-avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Bewertungen: echte Fotos, korrekt zugeschnitten und ohne Versatz */
.si-review {
    min-height: 492px;
}

.si-review-photo {
    position: relative;
    height: 154px;
    margin: -29px -29px 23px;
    overflow: hidden;
    background: var(--si-blue-light);
}

.si-review-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12,53,83,.34), transparent 65%);
    pointer-events: none;
}

.si-review-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
    transition: transform .55s ease;
}

.si-review:hover .si-review-photo img {
    transform: scale(1.045);
}

.si-review:nth-child(2) .si-review-photo img {
    object-position: center 38%;
}

.si-review:nth-child(3) .si-review-photo img {
    object-position: center 44%;
}

.si-review-quote {
    top: 166px;
}

.si-review-avatar {
    overflow: hidden;
    padding: 0;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px var(--si-green-light);
}

.si-review:nth-child(2) .si-review-avatar {
    box-shadow: 0 0 0 2px var(--si-blue-light);
}

.si-review:nth-child(3) .si-review-avatar {
    box-shadow: 0 0 0 2px rgba(255,143,23,.18);
}

/* Veedel-Foto und Iconboxen zuverl?ssig zentriert */
.si-veedel-image img {
    display: block;
    object-position: center center;
}

.si-veedel-item {
    grid-template-columns: 40px minmax(0,1fr);
}

.si-veedel-icon {
    width: 40px;
    height: 40px;
    align-self: center;
}

.si-veedel-icon svg {
    width: 21px;
    height: 21px;
}

@media (max-width: 980px) {
    .si-dashboard-wrap {
        width: min(100%, 720px);
        min-height: 720px;
        margin: 0 auto;
    }

    .si-dashboard-wrap::before {
        width: 78%;
        height: 290px;
    }

    .si-dashboard-back {
        inset: 180px 0 8px 28px;
    }

    .si-dashboard {
        inset: 150px 20px 30px 0;
    }
}

@media (max-width: 600px) {
    .si-dashboard-wrap {
        min-height: 930px;
    }

    .si-dashboard-wrap::before {
        right: 0;
        width: 100%;
        height: 220px;
        border-radius: 11px;
    }

    .si-dashboard-wrap::after {
        top: 16px;
        right: 16px;
        font-size: 9px;
    }

    .si-dashboard-back {
        top: 155px;
        right: 0;
        bottom: 14px;
        left: 12px;
    }

    .si-dashboard {
        top: 132px;
        right: 8px;
        bottom: auto;
        left: 0;
    }

    .si-dashboard-student {
        justify-content: center;
        text-align: left;
    }

    .si-review {
        min-height: 0;
        padding: 23px;
    }

    .si-review-photo {
        height: 170px;
        margin: -23px -23px 22px;
    }

    .si-review-quote {
        top: 180px;
        right: 17px;
    }

    .si-review-author {
        align-items: center;
    }

    .si-veedel-image img {
        object-position: center 36%;
    }
}



/* =========================================================
   ICON-KORREKTUR V2 ? klare Motive, perfekte Zentrierung
   ========================================================= */
.si-digital-point-icon,
.si-dashboard-brand-icon,
.si-veedel-icon {
    position: relative;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 auto !important;
    line-height: 0 !important;
}

.si-digital-point-icon {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255,255,255,.34);
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(145deg, #3b96b8, #236f90);
    box-shadow: 0 8px 18px rgba(45,133,168,.18);
}

.si-digital-point:nth-child(2) .si-digital-point-icon {
    color: #fff;
    background: linear-gradient(145deg, #93bf31, #6f9c17);
    box-shadow: 0 8px 18px rgba(131,174,43,.20);
}

.si-digital-point:nth-child(3) .si-digital-point-icon {
    color: #fff;
    background: linear-gradient(145deg, #ff9f34, #ec7c07);
    box-shadow: 0 8px 18px rgba(255,143,23,.20);
}

.si-digital-point-icon svg {
    width: 23px !important;
    height: 23px !important;
    margin: 0 !important;
    overflow: visible;
    color: currentColor;
    stroke: currentColor;
    stroke-width: 1.9;
}

.si-dashboard-brand-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 10px;
    color: #fff;
    background: linear-gradient(145deg, #98c532, #72a315);
    box-shadow: 0 7px 16px rgba(0,0,0,.14);
}

.si-dashboard-brand-icon svg {
    width: 23px !important;
    height: 23px !important;
    margin: 0 !important;
    overflow: visible;
    stroke: currentColor;
    stroke-width: 1.9;
}

.si-veedel-item {
    grid-template-columns: 44px minmax(0,1fr);
    gap: 13px;
    min-height: 70px;
}

.si-veedel-icon {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 12px;
    color: #fff !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.22), 0 7px 16px rgba(4,27,44,.14);
}

.si-veedel-icon::after {
    content: "";
    position: absolute;
    inset: 3px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 9px;
    pointer-events: none;
}

.si-veedel-icon svg {
    position: relative;
    z-index: 1;
    width: 23px !important;
    height: 23px !important;
    margin: 0 !important;
    overflow: visible;
    color: #fff !important;
    stroke: #fff !important;
    stroke-width: 1.9;
}

@media (max-width: 600px) {
    .si-digital-point-icon {
        width: 48px;
        height: 48px;
    }

    .si-veedel-item {
        grid-template-columns: 44px minmax(0,1fr) !important;
        align-items: center;
    }
}



/* Elementor-SVG-Override: Iconlinien sicher wei? darstellen */
.si-home .si-digital-point-icon svg,
.si-home .si-dashboard-brand-icon svg,
.si-home .si-veedel-icon svg {
    color: #ffffff !important;
    fill: none !important;
    stroke: #ffffff !important;
}

.si-home .si-digital-point-icon svg *,
.si-home .si-dashboard-brand-icon svg *,
.si-home .si-veedel-icon svg * {
    fill: none !important;
    stroke: #ffffff !important;
    stroke-width: 2 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
    vector-effect: non-scaling-stroke;
}

.si-home .si-digital-point-icon {
    border-color: rgba(255,255,255,.42) !important;
}



/* =========================================================
   HERO-TITEL: IMMER EXAKT ZWEI ZEILEN
   ========================================================= */
.si-home .si-slide h1.si-hero-title {
    width: max-content;
    max-width: 100%;
    margin-bottom: 21px;
    font-size: clamp(42px, 4.7vw, 68px);
    line-height: 1.06;
    letter-spacing: -0.052em;
}

.si-home .si-hero-title .si-title-line {
    display: block !important;
    width: max-content;
    max-width: 100%;
    white-space: nowrap !important;
}

.si-home .si-hero-title .si-highlight {
    display: block !important;
}

@media (max-width: 980px) {
    .si-home .si-slide h1.si-hero-title {
        margin-right: auto;
        margin-left: auto;
        font-size: clamp(38px, 7vw, 58px);
    }
}

@media (max-width: 600px) {
    .si-home .si-slide h1.si-hero-title {
        font-size: clamp(29px, 9.2vw, 42px);
        line-height: 1.08;
        letter-spacing: -0.045em;
    }
}

@media (max-width: 360px) {
    .si-home .si-slide h1.si-hero-title {
        font-size: 27px;
    }
}



/* =========================================================
   PREMIUM-BILDWELT: natuerlich, europaeisch, einheitlich
   ========================================================= */
.si-home .si-slide-image img,
.si-home .si-history-image img,
.si-home .si-teacher-image img,
.si-home .si-veedel-image img,
.si-home .si-review-photo img {
    filter: saturate(.88) contrast(1.035) brightness(1.015);
}

.si-home .si-slide:nth-child(1) .si-slide-image img {
    object-position: 52% 44%;
}

.si-home .si-slide:nth-child(2) .si-slide-image img {
    object-position: 50% 40%;
}

.si-home .si-slide:nth-child(3) .si-slide-image img {
    object-position: 50% 45%;
}

.si-home .si-history-image img {
    object-position: 50% 42%;
}

.si-home .si-teacher-card:nth-child(1) .si-teacher-image img {
    object-position: 50% 28%;
}

.si-home .si-teacher-card:nth-child(2) .si-teacher-image img {
    object-position: 50% 30%;
}

.si-home .si-teacher-card:nth-child(3) .si-teacher-image img {
    object-position: 50% 35%;
}

.si-home .si-veedel-image img {
    object-position: 50% 43%;
}

.si-home .si-review-photo::after {
    background: linear-gradient(to top, rgba(12,53,83,.38), transparent 62%);
}

@media (max-width: 600px) {
    .si-home .si-slide:nth-child(1) .si-slide-image img,
    .si-home .si-slide:nth-child(2) .si-slide-image img,
    .si-home .si-slide:nth-child(3) .si-slide-image img {
        object-position: center 38%;
    }
}

/* =========================================================
   BILDUNG UND TEILHABE (BuT)
   ========================================================= */
.si-but-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 16%, rgba(131, 174, 43, .18), transparent 28%),
        radial-gradient(circle at 92% 86%, rgba(45, 133, 168, .2), transparent 30%),
        linear-gradient(135deg, var(--si-navy) 0%, var(--si-navy-dark) 100%);
}

.si-but-section::before {
    content: "";
    position: absolute;
    top: -175px;
    right: -130px;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow:
        0 0 0 55px rgba(255, 255, 255, .025),
        0 0 0 110px rgba(255, 255, 255, .018);
    pointer-events: none;
}

.si-but-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(270px, .65fr);
    min-height: 390px;
    isolation: isolate;
}

.si-but-card::before,
.si-but-card::after {
    content: "";
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 50%;
    pointer-events: none;
}

.si-but-card::before {
    left: -180px;
    bottom: -230px;
    width: 420px;
    height: 420px;
}

.si-but-card::after {
    left: -100px;
    bottom: -150px;
    width: 260px;
    height: 260px;
    box-shadow: 0 0 0 45px rgba(255, 255, 255, .02);
}

.si-but-content {
    position: relative;
    z-index: 2;
    padding: 18px 70px 18px 0;
}

.si-but-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: #B9DB63;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.si-but-label::before {
    content: "";
    width: 28px;
    height: 3px;
    border-radius: 20px;
    background: var(--si-orange);
}

.si-but-content h2 {
    max-width: 690px;
    margin-bottom: 20px;
    color: var(--si-white);
    font-size: clamp(35px, 4.6vw, 54px);
}

.si-but-content h2 span {
    color: #B9DB63;
}

.si-but-content > p {
    max-width: 690px;
    margin-bottom: 27px;
    color: rgba(255, 255, 255, .76);
    font-size: 16px;
    line-height: 1.72;
}

.si-but-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 11px;
    margin-bottom: 31px;
}

.si-but-point {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 58px;
    padding: 11px 12px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 10px;
    color: rgba(255, 255, 255, .84);
    background: rgba(255, 255, 255, .055);
    font-size: 11px;
    font-weight: 720;
    line-height: 1.4;
    transition:
        transform .25s ease,
        border-color .25s ease,
        background-color .25s ease;
}

.si-but-point:hover {
    border-color: rgba(185, 219, 99, .5);
    background: rgba(255, 255, 255, .09);
    transform: translateY(-3px);
}

.si-but-check {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    color: var(--si-white);
    background: var(--si-green);
}

.si-but-check svg {
    display: block;
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.si-but-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.si-but-actions .si-button {
    min-width: 230px;
}

.si-but-note {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, .58);
    font-size: 10px;
    font-weight: 650;
}

.si-but-note svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: #B9DB63;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.si-but-visual {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding: 18px 0 18px 32px;
    border-left: 1px solid rgba(255, 255, 255, .12);
}

.si-but-info-card {
    position: relative;
    width: 100%;
    max-width: 310px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 18px;
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 24px 55px rgba(0, 0, 0, .22);
    transform: rotate(2deg);
    transition: transform .35s ease, box-shadow .35s ease;
}

.si-but-card:hover .si-but-info-card {
    transform: rotate(0) translateY(-5px);
    box-shadow: 0 30px 65px rgba(0, 0, 0, .28);
}

.si-but-info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 22px;
    border-radius: 16px;
    color: var(--si-white);
    background: linear-gradient(135deg, var(--si-green), var(--si-green-dark));
    box-shadow: 0 12px 24px rgba(131, 174, 43, .27);
}

.si-but-info-icon svg {
    display: block;
    width: 30px;
    height: 30px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.si-but-info-card small {
    display: block;
    margin-bottom: 6px;
    color: var(--si-green-dark);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.si-but-info-card strong {
    display: block;
    margin-bottom: 12px;
    color: var(--si-navy);
    font-size: 25px;
    line-height: 1.18;
    letter-spacing: -.03em;
}

.si-but-info-card p {
    margin-bottom: 20px;
    color: var(--si-muted);
    font-size: 12px;
    line-height: 1.55;
}

.si-but-status {
    display: flex;
    align-items: center;
    gap: 9px;
    padding-top: 17px;
    border-top: 1px solid var(--si-line);
    color: var(--si-navy);
    font-size: 11px;
    font-weight: 750;
}

.si-but-status span {
    position: relative;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--si-green);
}

.si-but-status span::after {
    content: "";
    position: absolute;
    inset: -4px;
    border: 1px solid var(--si-green);
    border-radius: 50%;
    animation: siButPulse 2s ease-out infinite;
}

@keyframes siButPulse {
    0% { opacity: .8; transform: scale(.7); }
    75%, 100% { opacity: 0; transform: scale(1.45); }
}

@media (max-width: 980px) {
    .si-but-card {
        grid-template-columns: 1fr;
    }

    .si-but-content {
        padding: 0 20px 46px;
        text-align: center;
    }

    .si-but-label {
        justify-content: center;
    }

    .si-but-content h2,
    .si-but-content > p {
        margin-right: auto;
        margin-left: auto;
    }

    .si-but-actions {
        justify-content: center;
    }

    .si-but-visual {
        padding: 46px 20px 0;
        border-top: 1px solid rgba(255, 255, 255, .12);
        border-left: 0;
    }
}

@media (max-width: 650px) {
    .si-but-section {
        padding: 76px 0;
    }

    .si-but-content {
        padding: 0 0 38px;
    }

    .si-but-content h2 {
        font-size: clamp(31px, 10vw, 42px);
    }

    .si-but-content > p {
        font-size: 14px;
    }

    .si-but-points {
        grid-template-columns: 1fr;
    }

    .si-but-point {
        justify-content: center;
        min-height: 52px;
    }

    .si-but-actions {
        flex-direction: column;
    }

    .si-but-actions .si-button {
        width: 100%;
        min-width: 0;
    }

    .si-but-visual {
        padding: 38px 0 0;
    }

    .si-but-info-card {
        max-width: 100%;
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .si-but-status span::after {
        animation: none;
    }
}/* End custom CSS */