/* ========================================
   NeulandPro Education – Premium Styles
   Corporate: #47b6a1 (Mint), #000, #fff, #5f5f5f
   Fonts: Poppins (Headlines), Work Sans (Body)
   ======================================== */

/* ========================================
   Decorative Floating Elements
   ======================================== */
.deco {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

/* Spirals */
.deco__spiral {
    position: absolute;
    color: var(--mint);
    opacity: 0.07;
}

.deco__spiral--1 {
    width: 280px;
    height: 280px;
    top: 15%;
    right: -60px;
    animation: deco-rotate 40s linear infinite;
}

.deco__spiral--2 {
    width: 200px;
    height: 200px;
    top: 65%;
    left: -40px;
    animation: deco-rotate 55s linear infinite reverse;
}

.deco__spiral path {
    stroke-dasharray: 1;
    stroke-dashoffset: 0;
    animation: deco-draw 8s ease-in-out infinite alternate;
}

/* Circles */
.deco__circle {
    position: absolute;
    border-radius: 50%;
    background: var(--mint);
}

.deco__circle--1 {
    width: 8px;
    height: 8px;
    top: 28%;
    left: 8%;
    opacity: 0.12;
    animation: deco-float 7s ease-in-out infinite;
}

.deco__circle--2 {
    width: 5px;
    height: 5px;
    top: 52%;
    right: 12%;
    opacity: 0.1;
    animation: deco-float 9s ease-in-out infinite 2s;
}

.deco__circle--3 {
    width: 6px;
    height: 6px;
    top: 78%;
    left: 15%;
    opacity: 0.08;
    animation: deco-float 11s ease-in-out infinite 4s;
}

/* Rings */
.deco__ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--mint);
}

.deco__ring--1 {
    width: 120px;
    height: 120px;
    top: 40%;
    right: 5%;
    opacity: 0.05;
    animation: deco-rotate 30s linear infinite, deco-float 8s ease-in-out infinite;
}

.deco__ring--2 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 4%;
    opacity: 0.04;
    animation: deco-rotate 25s linear infinite reverse, deco-float 10s ease-in-out infinite 3s;
}

/* Dot clusters */
.deco__dots {
    position: absolute;
    display: flex;
    gap: 12px;
}

.deco__dots span {
    display: block;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--mint);
    opacity: 0.1;
}

.deco__dots--1 {
    top: 35%;
    right: 8%;
    flex-direction: column;
    animation: deco-float 6s ease-in-out infinite 1s;
}

.deco__dots--1 span:nth-child(2) { opacity: 0.15; }
.deco__dots--1 span:nth-child(3) { opacity: 0.2; }
.deco__dots--1 span:nth-child(4) { opacity: 0.15; }
.deco__dots--1 span:nth-child(5) { opacity: 0.08; }

.deco__dots--2 {
    top: 70%;
    left: 6%;
    animation: deco-float 8s ease-in-out infinite 2s;
}

.deco__dots--2 span:nth-child(1) { opacity: 0.08; }
.deco__dots--2 span:nth-child(2) { opacity: 0.15; }
.deco__dots--2 span:nth-child(3) { opacity: 0.12; }

/* Subtle lines */
.deco__line {
    position: absolute;
    background: linear-gradient(to bottom, transparent, var(--mint), transparent);
    width: 1px;
    opacity: 0.05;
}

.deco__line--1 {
    height: 200px;
    top: 25%;
    left: 3%;
    animation: deco-float 12s ease-in-out infinite;
}

.deco__line--2 {
    height: 150px;
    top: 55%;
    right: 4%;
    animation: deco-float 10s ease-in-out infinite 5s;
}

/* Keyframes */
@keyframes deco-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes deco-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes deco-draw {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: 0.4; }
}

@media (max-width: 768px) {
    .deco { display: none; }
}

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

:root {
    --mint: #47b6a1;
    --mint-dark: #3a9e8c;
    --mint-light: rgba(71, 182, 161, 0.08);
    --mint-medium: rgba(71, 182, 161, 0.15);
    --mint-glow: rgba(71, 182, 161, 0.3);
    --black: #0a0a0a;
    --white: #ffffff;
    --gray: #5f5f5f;
    --gray-light: #f8f8f8;
    --gray-border: #e8e8e8;
    --gray-dark: #2a2a2a;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Work Sans', sans-serif;
    --max-width: 1140px;
    --section-padding: 120px 0;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-dark);
    background: var(--white);
    overflow-x: hidden;
}

/* Ensure content sits above deco elements */
nav, header, section, footer, .sticky-cta {
    position: relative;
    z-index: 1;
}

a { text-decoration: none; color: inherit; transition: color var(--transition); }
img { max-width: 100%; height: auto; display: block; }

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--black);
}

h1 { font-size: clamp(2.25rem, 4.5vw, 3.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.0625rem, 1.5vw, 1.25rem); }

.section-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8125rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: 16px;
}

.section-title { margin-bottom: 20px; max-width: 640px; }
.section-title--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-subtitle { color: var(--gray); font-size: 1.0625rem; max-width: 560px; line-height: 1.75; }
.section-header { margin-bottom: 64px; }
.section-header--center { text-align: center; }
.section-header--center .section-subtitle { margin-left: auto; margin-right: auto; }
.text-accent { color: var(--mint); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 15px 32px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    position: relative;
}

.btn--primary {
    background: var(--black);
    color: var(--white);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.btn--ghost {
    background: transparent;
    color: var(--gray-dark);
    border: 1.5px solid var(--gray-border);
}

.btn--ghost:hover {
    border-color: var(--mint);
    color: var(--mint);
}

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

.btn--white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

.btn--glow {
    box-shadow: 0 0 0 0 var(--mint-glow);
    animation: glow-pulse 3s ease-in-out infinite;
}

.btn--large { padding: 18px 44px; font-size: 1rem; }
.btn--sm { padding: 10px 20px; font-size: 0.8125rem; }
.btn--full { width: 100%; }

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 0 0 var(--mint-glow); }
    50% { box-shadow: 0 0 0 8px transparent; }
}

/* ========================================
   Navigation
   ======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition);
}

.nav--scrolled {
    border-bottom-color: var(--gray-border);
    box-shadow: 0 1px 30px rgba(0, 0, 0, 0.04);
}

.nav__container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.125rem;
}

.nav__logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--mint);
    color: var(--white);
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 700;
}

.nav__logo-text { font-weight: 400; color: var(--gray); font-size: 1rem; }

.nav__logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
}

.nav__links { display: flex; list-style: none; gap: 32px; }

.nav__links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray);
    position: relative;
}

.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--mint);
    transition: width var(--transition);
}

.nav__links a:hover { color: var(--black); }
.nav__links a:hover::after { width: 100%; }

.nav__cta {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.8125rem;
    padding: 10px 24px;
    background: var(--black);
    color: var(--white);
    border-radius: 8px;
    transition: all var(--transition);
}

.nav__cta:hover { background: var(--gray-dark); transform: translateY(-1px); }
.nav__cta--mobile { display: block; text-align: center; margin-top: 16px; }

.nav__mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav__mobile-toggle span { display: block; width: 22px; height: 2px; background: var(--black); transition: all var(--transition); border-radius: 2px; }
.nav__mobile { display: none; padding: 0 24px 24px; background: var(--white); }
.nav__mobile.active { display: block; }
.nav__mobile-links { list-style: none; }
.nav__mobile-links li { border-bottom: 1px solid var(--gray-light); }
.nav__mobile-links a { display: block; padding: 16px 0; font-size: 0.9375rem; font-weight: 500; }

/* ========================================
   Sticky CTA
   ======================================== */
.sticky-cta {
    position: fixed;
    bottom: -80px;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--black);
    transition: bottom var(--transition-slow);
    padding: 14px 24px;
}

.sticky-cta.visible { bottom: 0; }

.sticky-cta__container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sticky-cta__text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    font-weight: 500;
}

.sticky-cta .btn--primary {
    background: var(--mint);
    color: var(--white);
    font-size: 0.8125rem;
}

.sticky-cta .btn--primary:hover {
    background: var(--mint-dark);
}

/* ========================================
   Hero
   ======================================== */
.hero {
    position: relative;
    padding: 160px 24px 100px;
    background: var(--black);
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero__canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
}

.hero__gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 60% 50% at 70% 50%, rgba(71, 182, 161, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(71, 182, 161, 0.06) 0%, transparent 60%);
}

.hero__container {
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero__content { max-width: 720px; }

/* Hero Image */
.hero__image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.hero__image img {
    width: 100%;
    border-radius: 16px;
    display: block;
}

.hero__image-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.6875rem;
    padding: 6px 12px;
    border-radius: 6px;
    font-family: var(--font-body);
}

/* Rotating Headlines */
.hero__rotating-wrapper {
    display: block;
    position: relative;
    overflow: hidden;
    margin-bottom: 8px;
}

.hero__rotating {
    display: block;
    position: relative;
}

.hero__rotating-line {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero__rotating-line.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.hero__badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--mint);
    border: 1px solid rgba(71, 182, 161, 0.3);
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 32px;
}

.hero__title {
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.15;
}

.hero__subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 580px;
}

.hero__actions { display: flex; gap: 16px; margin-bottom: 64px; flex-wrap: wrap; }

.hero__actions .btn--ghost {
    border-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
}

.hero__actions .btn--ghost:hover {
    border-color: var(--mint);
    color: var(--mint);
}

.hero__proof {
    display: flex;
    align-items: center;
    gap: 32px;
}

.hero__proof-item { display: flex; flex-direction: column; gap: 2px; }

.hero__proof-number {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2rem;
    color: var(--white);
    line-height: 1;
}

.hero__proof-suffix {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2rem;
    color: var(--white);
    line-height: 1;
}

.hero__proof-label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

.hero__proof-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* ========================================
   Trust Bar
   ======================================== */
.trust-bar {
    padding: 48px 24px;
    background: var(--white);
    border-bottom: 1px solid var(--gray-border);
}

.trust-bar__container { max-width: var(--max-width); margin: 0 auto; text-align: center; padding: 0 24px; }

.trust-bar__label {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray);
    margin-bottom: 28px;
    opacity: 0.6;
}

/* Marquee */
.trust-bar__marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.trust-bar__track {
    display: flex;
    align-items: center;
    gap: 48px;
    width: max-content;
    animation: marquee 35s linear infinite;
}

.trust-bar__track:hover { animation-play-state: paused; }

.trust-bar__logo-item {
    flex-shrink: 0;
    opacity: 0.45;
    transition: opacity var(--transition);
}

.trust-bar__logo-item:hover { opacity: 0.8; }

.trust-bar__logo-item img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter var(--transition);
}

.trust-bar__logo-item:hover img { filter: grayscale(0%); }

.trust-bar__logo-text {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.25rem;
    color: #999;
    letter-spacing: 0.04em;
    white-space: nowrap;
    padding: 0 8px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========================================
   Problem Agitation
   ======================================== */
.problem {
    padding: var(--section-padding);
    padding-left: 24px;
    padding-right: 24px;
    background: var(--gray-light);
}

.problem__container { max-width: var(--max-width); margin: 0 auto; }

.problem__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.problem__card {
    padding: 36px 28px;
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 14px;
    transition: all var(--transition);
}

.problem__card:hover {
    border-color: #e53e3e;
    box-shadow: 0 8px 30px rgba(229, 62, 62, 0.06);
}

.problem__card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(229, 62, 62, 0.06);
    border-radius: 10px;
    color: #c53030;
    margin-bottom: 20px;
}

.problem__card-title { font-size: 1.0625rem; margin-bottom: 10px; }
.problem__card-text { font-size: 0.9375rem; color: var(--gray); line-height: 1.65; }

.problem__bottom { text-align: center; }

.problem__statement {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.25rem;
    color: var(--gray-dark);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

.problem__statement em {
    color: var(--mint);
    font-style: italic;
}

/* ========================================
   Values
   ======================================== */
.values {
    padding: var(--section-padding);
    padding-left: 24px;
    padding-right: 24px;
    position: relative;
    overflow: hidden;
}

.values__bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: 0.18;
    pointer-events: none;
    mix-blend-mode: multiply;
}

/* Radial Gradient Glow Effects */
.values::after {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(71, 182, 161, 0.08) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.values__container { max-width: var(--max-width); margin: 0 auto; }

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

.value-card {
    padding: 36px 24px;
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 14px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--mint);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.value-card:hover::before { transform: scaleX(1); }
.value-card:hover { box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06); transform: translateY(-4px); }

.value-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--mint-light);
    border-radius: 10px;
    color: var(--mint);
    margin-bottom: 20px;
    transition: all var(--transition);
}

.value-card:hover .value-card__icon {
    background: var(--mint);
    color: var(--white);
}

.value-card__title { font-size: 1rem; margin-bottom: 8px; }
.value-card__text { font-size: 0.875rem; color: var(--gray); line-height: 1.65; }

/* ========================================
   Modules (Teaser)
   ======================================== */
.content-section {
    padding: var(--section-padding);
    padding-left: 24px;
    padding-right: 24px;
    background: var(--gray-light);
}

.content-section__container { max-width: var(--max-width); margin: 0 auto; }

.modules { display: flex; flex-direction: column; gap: 3px; margin-bottom: 24px; }

.module {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 28px 32px;
    background: var(--white);
    border-radius: 12px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.module::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--mint);
    transform: scaleY(0);
    transition: transform var(--transition);
}

.module:hover::after { transform: scaleY(1); }
.module:hover { transform: translateX(6px); box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04); }

.module__number {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--mint);
    min-width: 36px;
    opacity: 0.4;
    padding-top: 2px;
}

.module__title { font-size: 1.0625rem; margin-bottom: 6px; }
.module__text { font-size: 0.9375rem; color: var(--gray); line-height: 1.65; }

/* Modules Teaser */
.modules__teaser {
    background: var(--white);
    border: 2px dashed var(--gray-border);
    border-radius: 12px;
    padding: 36px 32px;
    text-align: center;
    transition: all var(--transition);
}

.modules__teaser:hover {
    border-color: var(--mint);
    border-style: solid;
}

.modules__teaser-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8125rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--mint);
    background: var(--mint-light);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 12px;
}

.modules__teaser p {
    font-size: 0.9375rem;
    color: var(--gray);
    margin-bottom: 16px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.modules__teaser-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--mint);
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition);
}

.modules__teaser-link:hover { border-bottom-color: var(--mint); }

/* ========================================
   Process Steps
   ======================================== */
.process {
    padding: var(--section-padding);
    padding-left: 24px;
    padding-right: 24px;
}

.process__container { max-width: var(--max-width); margin: 0 auto; }

.process__steps { display: flex; align-items: flex-start; }

.process__step { flex: 1; text-align: center; padding: 0 20px; }

.process__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--mint);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 20px;
    transition: all var(--transition);
}

.process__step:hover .process__step-number {
    transform: scale(1.1);
    box-shadow: 0 8px 24px var(--mint-glow);
}

.process__step-title { font-size: 1rem; margin-bottom: 8px; }
.process__step-text { font-size: 0.875rem; color: var(--gray); line-height: 1.6; }

.process__step-line {
    width: 48px;
    height: 2px;
    background: var(--gray-border);
    margin-top: 26px;
    flex-shrink: 0;
}

/* ========================================
   Use Cases
   ======================================== */
.usecases {
    padding: var(--section-padding);
    padding-left: 24px;
    padding-right: 24px;
    background: var(--gray-light);
}

.usecases__container { max-width: var(--max-width); margin: 0 auto; }

.usecases__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.usecase-card {
    padding: 32px 28px;
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 14px;
    transition: all var(--transition);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.usecase-card:hover { border-color: var(--mint); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.04); }

.usecase-card__icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--mint-light);
    border-radius: 10px;
    color: var(--mint);
    transition: all var(--transition);
}

.usecase-card:hover .usecase-card__icon { background: var(--mint); color: var(--white); }

.usecase-card__title { font-size: 0.9375rem; margin-bottom: 4px; }
.usecase-card__text { font-size: 0.875rem; color: var(--gray); line-height: 1.6; }

.usecase-card--accent {
    background: var(--mint-light);
    border-color: var(--mint);
    grid-column: 1 / -1;
}

.usecase-card--accent .usecase-card__icon {
    background: var(--mint);
    color: var(--white);
}

/* ========================================
   Image Break
   ======================================== */
.image-break {
    padding: 0 24px;
    background: var(--white);
}

.image-break__container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.image-break__img {
    width: 100%;
    max-height: 480px;
    object-fit: contain;
    border-radius: 16px;
    display: block;
}

/* ========================================
   Compliance
   ======================================== */
.compliance {
    padding: var(--section-padding);
    padding-left: 24px;
    padding-right: 24px;
}

.compliance__container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 64px;
    align-items: center;
}

.compliance__text { color: var(--gray); font-size: 1.0625rem; line-height: 1.75; margin-bottom: 32px; }

.compliance__features { display: flex; flex-direction: column; gap: 16px; }

.compliance__feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-dark);
}

.compliance__feature svg { color: var(--mint); flex-shrink: 0; }

.compliance__card {
    background: var(--gray-light);
    border: 1px solid var(--gray-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all var(--transition);
}

.compliance__card:hover { box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08); transform: translateY(-4px); }

.compliance__card-header {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 18px 24px;
    letter-spacing: 0.02em;
}

.compliance__ampel { padding: 24px; display: flex; flex-direction: column; gap: 16px; }

.compliance__ampel-item { display: flex; align-items: flex-start; gap: 14px; }

.compliance__ampel-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 3px;
    position: relative;
}

.compliance__ampel-item--green .compliance__ampel-dot {
    background: #34c759;
    box-shadow: 0 0 12px rgba(52, 199, 89, 0.4);
}

.compliance__ampel-item--yellow .compliance__ampel-dot {
    background: #f5a623;
    box-shadow: 0 0 12px rgba(245, 166, 35, 0.4);
}

.compliance__ampel-item--red .compliance__ampel-dot {
    background: #e53e3e;
    box-shadow: 0 0 12px rgba(229, 62, 62, 0.4);
}

.compliance__ampel-item strong { font-family: var(--font-heading); font-weight: 600; font-size: 0.875rem; display: block; margin-bottom: 1px; color: var(--black); }
.compliance__ampel-item p { font-size: 0.8125rem; color: var(--gray); line-height: 1.5; }

.compliance__card-footer {
    padding: 14px 24px;
    background: var(--mint-light);
    font-size: 0.75rem;
    color: var(--mint-dark);
    font-weight: 500;
    text-align: center;
}

/* ========================================
   Included (Dark Block)
   ======================================== */
.included {
    padding: var(--section-padding);
    padding-left: 24px;
    padding-right: 24px;
    background: var(--black);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.included::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(71, 182, 161, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.included__container { max-width: var(--max-width); margin: 0 auto; position: relative; z-index: 1; }
.included .section-label { color: var(--mint); }
.included .section-title { color: var(--white); }

.included__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 48px;
}

.included__item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.included__item svg { color: var(--mint); flex-shrink: 0; }

/* ========================================
   Testimonials
   ======================================== */
.referenzen {
    padding: var(--section-padding);
    padding-left: 24px;
    padding-right: 24px;
    background: var(--gray-light);
}

.referenzen__container { max-width: var(--max-width); margin: 0 auto; }

.referenzen__testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 14px;
    padding: 36px 28px;
    transition: all var(--transition);
    position: relative;
}

.testimonial:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.06); transform: translateY(-4px); }

.testimonial__quote {
    font-family: Georgia, serif;
    font-size: 4rem;
    line-height: 1;
    color: var(--mint);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    right: 28px;
}

.testimonial__text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--gray-dark);
    margin-bottom: 28px;
}

.testimonial__author { display: flex; align-items: center; gap: 14px; }

.testimonial__avatar {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--mint-light);
    color: var(--mint);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial__author-info strong { font-family: var(--font-heading); font-weight: 600; font-size: 0.875rem; display: block; color: var(--black); }
.testimonial__author-info span { font-size: 0.8125rem; color: var(--gray); }

/* ========================================
   Team Section
   ======================================== */
.team {
    padding: var(--section-padding);
    padding-left: 24px;
    padding-right: 24px;
}

.team__container { max-width: var(--max-width); margin: 0 auto; }

/* Gründer – prominent, side-by-side */
.team__founder {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 64px;
    background: var(--gray-light);
    border-radius: 20px;
    overflow: hidden;
}

.team__founder-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0a0a;
    padding: 20px;
    min-height: 360px;
}

.team__founder-image img {
    width: 100%;
    max-height: 440px;
    object-fit: contain;
    border-radius: 12px;
}

.team__founder-content {
    padding: 48px 48px 48px 0;
}

/* Trainer – nebeneinander */
.team__trainers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.team__trainer {
    background: var(--gray-light);
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 32px;
}

.team__trainer-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    padding: 20px;
    margin-bottom: 24px;
}

.team__trainer-image img {
    max-width: 100%;
    max-height: 360px;
    object-fit: contain;
}

.team__role-badge {
    display: inline-block;
    background: var(--mint-light);
    color: var(--mint);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.75rem;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.team__name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--black);
}

.team__bio {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--gray);
    max-width: 400px;
}

.team__trainer .team__bio {
    margin: 0 auto;
    padding: 0 24px;
}

/* Mobile */
@media (max-width: 768px) {
    .team__founder {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .team__founder-image {
        min-height: 280px;
    }

    .team__founder-content {
        padding: 32px 24px;
    }

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

/* ========================================
   CTA Banner
   ======================================== */
.cta-banner {
    padding: 100px 24px;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.cta-banner__bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: 0.4;
    pointer-events: none;
}

.cta-banner__logo {
    height: 48px;
    width: auto;
    border-radius: 8px;
    margin-bottom: 24px;
    opacity: 0.9;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(71, 182, 161, 0.15) 0%, transparent 60%);
    border-radius: 50%;
}

.cta-banner__container { max-width: 660px; margin: 0 auto; position: relative; z-index: 1; }

.cta-banner__content { text-align: center; }

.cta-banner__title {
    color: var(--white);
    margin-bottom: 20px;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.cta-banner__text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 36px;
}

/* ========================================
   FAQ
   ======================================== */
.faq {
    padding: var(--section-padding);
    padding-left: 24px;
    padding-right: 24px;
}

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

.faq__list { display: flex; flex-direction: column; gap: 3px; }

.faq__item {
    background: var(--gray-light);
    border-radius: 12px;
    overflow: hidden;
    transition: all var(--transition);
}

.faq__item.active { background: var(--white); box-shadow: 0 4px 20px rgba(0,0,0,0.04); }

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.9375rem;
    text-align: left;
    color: var(--black);
    transition: all var(--transition);
    gap: 16px;
}

.faq__question:hover { color: var(--mint); }

.faq__question svg {
    flex-shrink: 0;
    transition: transform var(--transition);
    color: var(--gray);
}

.faq__question[aria-expanded="true"] svg { transform: rotate(180deg); color: var(--mint); }

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq__answer p { padding: 0 28px 24px; font-size: 0.9375rem; color: var(--gray); line-height: 1.7; }
.faq__item.active .faq__answer { max-height: 300px; }

/* ========================================
   Contact Form
   ======================================== */
.contact {
    padding: var(--section-padding);
    padding-left: 24px;
    padding-right: 24px;
    background: var(--gray-light);
}

.contact__container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact__text { color: var(--gray); font-size: 1.0625rem; line-height: 1.75; margin-bottom: 32px; }
.contact__benefits { display: flex; flex-direction: column; gap: 14px; }
.contact__benefit { display: flex; align-items: center; gap: 12px; font-size: 0.9375rem; font-weight: 500; color: var(--gray-dark); }
.contact__benefit svg { color: var(--mint); flex-shrink: 0; }

.contact__form {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.04);
}

.contact__calendly {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.04);
    min-height: 660px;
}

.form__group { margin-bottom: 18px; }
.form__group label { display: block; font-family: var(--font-heading); font-weight: 500; font-size: 0.8125rem; color: var(--black); margin-bottom: 6px; }

.form__group input,
.form__group select,
.form__group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--gray-border);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--black);
    background: var(--white);
    transition: all var(--transition);
    outline: none;
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
    border-color: var(--mint);
    box-shadow: 0 0 0 4px var(--mint-light);
}

.form__group input::placeholder,
.form__group textarea::placeholder { color: #bbb; }

.form__group textarea { resize: vertical; min-height: 90px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form__disclaimer { font-size: 0.75rem; color: var(--gray); margin-top: 12px; line-height: 1.5; opacity: 0.7; }

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--black);
    color: rgba(255, 255, 255, 0.6);
    padding: 80px 24px 40px;
}

.footer__container { max-width: var(--max-width); margin: 0 auto; }
.footer__top { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; margin-bottom: 60px; }
.footer__brand .nav__logo { margin-bottom: 16px; }
.footer__brand .nav__logo-text { color: rgba(255, 255, 255, 0.4); }
.footer__tagline { font-family: var(--font-heading); font-weight: 500; font-size: 0.875rem; color: var(--mint); margin-bottom: 12px; }
.footer__description { font-size: 0.875rem; line-height: 1.65; max-width: 280px; }
.footer__links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer__col-title { font-family: var(--font-heading); font-weight: 600; font-size: 0.8125rem; color: var(--white); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.06em; }
.footer__col ul { list-style: none; }
.footer__col li { margin-bottom: 10px; }
.footer__col a { font-size: 0.875rem; color: rgba(255, 255, 255, 0.5); transition: color var(--transition); }
.footer__col a:hover { color: var(--mint); }
.footer__bottom { padding-top: 32px; border-top: 1px solid rgba(255, 255, 255, 0.08); font-size: 0.8125rem; color: rgba(255, 255, 255, 0.3); }

/* ========================================
   Reveal Animations
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal--d1 { transition-delay: 0.1s; }
.reveal--d2 { transition-delay: 0.2s; }
.reveal--d3 { transition-delay: 0.3s; }
.reveal--d4 { transition-delay: 0.4s; }

/* Stagger children */
.values__grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.values__grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.values__grid .reveal:nth-child(4) { transition-delay: 0.24s; }

.problem__grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.problem__grid .reveal:nth-child(3) { transition-delay: 0.2s; }

.modules .reveal:nth-child(2) { transition-delay: 0.06s; }
.modules .reveal:nth-child(3) { transition-delay: 0.12s; }
.modules .reveal:nth-child(4) { transition-delay: 0.18s; }

.usecases__grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.usecases__grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.usecases__grid .reveal:nth-child(4) { transition-delay: 0.24s; }

.included__grid .reveal:nth-child(2) { transition-delay: 0.04s; }
.included__grid .reveal:nth-child(3) { transition-delay: 0.08s; }
.included__grid .reveal:nth-child(4) { transition-delay: 0.12s; }
.included__grid .reveal:nth-child(5) { transition-delay: 0.16s; }
.included__grid .reveal:nth-child(6) { transition-delay: 0.2s; }
.included__grid .reveal:nth-child(7) { transition-delay: 0.24s; }
.included__grid .reveal:nth-child(8) { transition-delay: 0.28s; }

.referenzen__testimonials .reveal:nth-child(2) { transition-delay: 0.1s; }
.referenzen__testimonials .reveal:nth-child(3) { transition-delay: 0.2s; }

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
    :root { --section-padding: 88px 0; }

    .hero { min-height: auto; padding: 140px 24px 80px; }
    .hero__container { grid-template-columns: 1fr; }
    .hero__image { max-width: 480px; }
    .values__grid { grid-template-columns: repeat(2, 1fr); }
    .problem__grid { grid-template-columns: 1fr; }
    .usecases__grid { grid-template-columns: 1fr; }
    .compliance__container { grid-template-columns: 1fr; gap: 40px; }
    .referenzen__testimonials { grid-template-columns: 1fr; }
    .contact__container { grid-template-columns: 1fr; }
    .footer__top { grid-template-columns: 1fr; gap: 40px; }
    .process__steps { flex-direction: column; gap: 20px; align-items: center; }
    .process__step-line { width: 2px; height: 32px; margin: 0; }
    .process__step { padding: 0; max-width: 320px; }
}

@media (max-width: 768px) {
    :root { --section-padding: 72px 0; }

    .nav__links, .nav__cta:not(.nav__cta--mobile) { display: none; }
    .nav__mobile-toggle { display: flex; }
    .hero { padding: 120px 24px 64px; }
    .hero__image { display: none; }
    .hero__rotating-line { white-space: normal; }
    .hero__proof { flex-direction: column; gap: 20px; align-items: flex-start; }
    .hero__proof-divider { width: 40px; height: 1px; }
    .values__grid { grid-template-columns: 1fr; }
    .included__grid { grid-template-columns: 1fr; }
    .form__row { grid-template-columns: 1fr; }
    .footer__links { grid-template-columns: 1fr; gap: 28px; }
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { width: 100%; }
    .trust-bar__logos { gap: 20px; }
    .sticky-cta__text { display: none; }
    .sticky-cta__container { justify-content: center; }
}
