/* ==========================================================================
   KI-Seitenwerk Design System
   Mobile-First, Apple-Aesthetic, Vanilla CSS
   ========================================================================== */

/* Design Tokens */
:root {
    /* Colors - Digital Werkstatt Palette */
    --primary: #00B67A;              /* Craft Green: CTAs, Links, Highlights, Badges */
    --primary-dark: #009963;         /* Hover */
    --primary-on-light: #00A06B;     /* Etwas dunkler für bessere Lesbarkeit auf Weiß */
    --primary-on-light-hover: #009963;
    --primary-light: #E6F7F0;        /* Helles Mint für Hintergründe */
    --primary-lighter: #F0FBF6;
    --accent: #E8A838;               /* Bernstein: Sterne, Preise, Empfohlen-Badge, Scarcity */
    --accent-dark: #D09530;          /* Hover */
    --accent-light: #FDF6E8;         /* Helles Gold für Hintergründe */
    --btn-text-on-accent: #FFFFFF;   /* Weiße Schrift auf Bernstein */
    --neutral-900: #1A1A2E;          /* Anthrazit: Headlines, dunkle Sektionen */
    --neutral-700: #4A4A5A;          /* Graphit: Fließtext */
    --neutral-500: #6B7280;
    --neutral-400: #9CA3AF;
    --neutral-200: #D1D5DB;
    --neutral-100: #F3F4F6;
    --neutral-50: #F8F9FA;           /* Warmes Off-White */
    --white: #FFFFFF;
    --success: #00B67A;
    --error: #DC2626;

    /* Dark sections */
    --dark-bg: #1A1A2E;             /* Anthrazit */
    --dark-bg-deeper: #12121F;

    /* Button on primary */
    --btn-text-on-primary: #FFFFFF;

    /* Typography */
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.75rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3.5rem;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 1rem;
    --space-4: 1.5rem;
    --space-5: 2rem;
    --space-6: 3rem;
    --space-8: 4rem;
    --space-10: 5rem;
    --space-12: 6rem;
    --space-16: 8rem;

    /* Layout */
    --container-max: 980px;
    --container-wide: 1200px;
    --nav-height: 64px;

    /* Effects */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-pill: 50px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--nav-height) + 16px);
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.7;
    color: var(--neutral-900);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
}

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

a {
    color: var(--primary-on-light);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--primary-on-light-hover);
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
    color: var(--neutral-900);
    letter-spacing: -0.03em;
}

/* ==========================================================================
   Utilities
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-4);
    overflow-x: clip;
}

.section-headline {
    font-size: clamp(1.25rem, 3vw + 0.5rem, var(--font-size-3xl));
    text-align: center;
    margin-bottom: var(--space-6);
    font-weight: 700;
}

.section-headline:has(+ .section-subheadline) {
    margin-bottom: var(--space-3);
}

.section-subheadline {
    font-size: var(--font-size-lg);
    color: var(--neutral-700);
    text-align: center;
    margin-bottom: var(--space-6);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.required { color: var(--error); }
.optional { color: var(--neutral-400); font-weight: 400; }

/* ==========================================================================
   Buttons (Kontist-Style Pill Buttons)
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    font-weight: 600;
    line-height: 1;
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    min-height: 48px;
    white-space: nowrap;
    letter-spacing: -0.01em;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.btn--primary {
    background: var(--primary);
    color: var(--btn-text-on-primary);
    border-color: var(--primary);
    box-shadow: 0 2px 12px rgba(0, 182, 122, 0.35), 0 0 40px rgba(0, 182, 122, 0.15);
}

.btn--primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--btn-text-on-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 182, 122, 0.45), 0 0 60px rgba(0, 182, 122, 0.2);
}

.btn--primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 182, 122, 0.25);
}

.btn--outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn--outline:hover {
    background: var(--primary);
    color: var(--btn-text-on-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 182, 122, 0.25);
}

.btn--outline:active {
    transform: translateY(0);
}

.btn--lg {
    font-size: var(--font-size-lg);
    padding: 16px 36px;
    min-height: 52px;
}

.btn--full {
    width: 100%;
}

.btn--ghost {
    background: transparent;
    color: rgba(255,255,255,0.85);
    border-color: rgba(255,255,255,0.25);
}

.btn--ghost:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-2px);
}

.btn--ghost:active {
    transform: translateY(0);
}

/* Dark-Section-Varianten */
.contact .btn--outline {
    color: var(--white);
    border-color: var(--white);
}
.contact .btn--outline:hover {
    background: var(--white);
    color: var(--neutral-900);
}

/* ==========================================================================
   Badge
   ========================================================================== */
.badge {
    display: inline-block;
    font-size: var(--font-size-sm);
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 999px;
    line-height: 1.4;
    max-width: 100%;
}

.badge--accent {
    background: rgba(232, 168, 56, 0.15);
    color: var(--accent);
}

/* Made in Germany Badge */
.hero__made-in {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.8);
    margin-bottom: var(--space-2);
}

.hero__made-in-flag {
    width: 22px;
    height: 15px;
    border-radius: 2px;
    flex-shrink: 0;
}

/* ==========================================================================
   Navigation (Glassmorphism)
   ========================================================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--nav-height);
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}

.nav--scrolled {
    box-shadow: 0 1px 12px rgba(0,0,0,0.08);
    background: rgba(255,255,255,0.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom-color: rgba(0,0,0,0.06);
}

.nav__container {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 var(--space-4);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    font-size: var(--font-size-xl);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    transition: color 0.4s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav__logo-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    flex-shrink: 0;
}

.nav--scrolled .nav__logo {
    color: var(--neutral-900);
}

.nav__logo:hover {
    color: var(--primary);
}

.nav__links {
    display: none;
    align-items: center;
    gap: var(--space-5);
}

.nav__link {
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    transition: color 0.4s ease;
    position: relative;
}

.nav--scrolled .nav__link {
    color: var(--neutral-700);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav__link:hover {
    color: #fff;
}

.nav--scrolled .nav__link:hover {
    color: var(--neutral-900);
}

.nav__link:hover::after {
    transform: scaleX(1);
}

.nav__cta-btn {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--btn-text-on-primary);
    background: var(--primary);
    padding: 10px 22px;
    border-radius: var(--radius-pill);
    transition: all var(--transition);
    box-shadow: 0 2px 8px rgba(0, 182, 122, 0.25);
}

.nav__cta-btn:hover {
    background: var(--primary-dark);
    color: var(--btn-text-on-primary);
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 182, 122, 0.3);
}

.nav__cta-btn:active {
    transform: translateY(0) scale(1);
}

.nav__mobile-actions {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.nav__mail-icon {
    color: rgba(255,255,255,0.85);
    display: flex;
    align-items: center;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    transition: color 0.4s ease;
}

.nav--scrolled .nav__mail-icon {
    color: var(--neutral-700);
}

.nav__mail-icon:hover {
    color: var(--primary);
}

/* Hamburger */
.nav__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.nav--scrolled .nav__hamburger span {
    background: var(--neutral-900);
}

.nav__hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.4s ease;
    transform-origin: center;
}

.nav__hamburger.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

.nav__hamburger.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
}

.mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-5);
    transform: translateY(20px);
    transition: transform 0.35s ease;
}

.mobile-menu.is-open .mobile-menu__content {
    transform: translateY(0);
}

.mobile-menu__link {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    color: var(--neutral-900);
    transition: color var(--transition);
}

.mobile-menu__link:hover {
    color: var(--primary-on-light);
}

.mobile-menu__cta {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--btn-text-on-primary);
    background: var(--primary);
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    margin-top: var(--space-3);
    transition: all var(--transition);
    box-shadow: 0 2px 8px rgba(0, 182, 122, 0.25);
}

.mobile-menu__cta:hover {
    background: var(--primary-dark);
    color: var(--btn-text-on-primary);
}

.mobile-menu__secondary {
    font-size: var(--font-size-sm);
    color: var(--neutral-700);
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
    padding-top: calc(var(--nav-height) + var(--space-10));
    padding-bottom: var(--space-6);
    background:
        radial-gradient(ellipse 80% 70% at 50% 50%, rgba(0, 182, 122, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 50% 60% at 15% 10%, rgba(0, 182, 122, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 85% 90%, rgba(232, 168, 56, 0.06) 0%, transparent 50%),
        var(--dark-bg);
    color: var(--white);
    text-align: center;
    overflow-x: clip;
    overflow-y: visible;
    position: relative;
    z-index: 2;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 720px;
    margin: 0 auto;
    gap: var(--space-6);
    text-align: center;
}

.hero-wrapper {
    position: relative;
    overflow-x: clip;
    overflow-y: visible;
}

.hero__portrait {
    display: none;
}

.hero__portrait img {
    height: 100%;
    width: auto;
    max-height: 100%;
    object-fit: contain;
    object-position: bottom right;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.4));
    opacity: 0.35;
}

.hero__text {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.hero__headline {
    font-size: clamp(1.125rem, 4.5vw + 0.25rem, var(--font-size-4xl));
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
    overflow-wrap: break-word;
    word-break: break-word;
    color: var(--white);
}

.hero__highlight {
    display: inline;
    background: rgba(255, 255, 255, 0.95);
    color: var(--neutral-900);
    padding: 2px 14px 6px;
    border-radius: 4px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.hero__subheadline {
    font-size: clamp(0.875rem, 2vw + 0.5rem, var(--font-size-xl));
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
    font-weight: 500;
}

.hero__sub-detail {
    font-size: var(--font-size-sm);
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.02em;
}

.hero__usps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: var(--space-3);
    overflow: hidden;
}

.hero__usp {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 5px 12px;
    border-radius: 999px;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero__usp-icon {
    width: 13px;
    height: 13px;
    color: var(--primary);
    flex-shrink: 0;
}

/* Hero Equation */
.hero__equation {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 14px;
    padding: 20px 24px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(4px);
}

.hero__eq-term {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--white);
    padding: 6px 14px;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-pill);
    white-space: nowrap;
}

.hero__eq-op {
    font-size: var(--font-size-lg);
    font-weight: 300;
    color: var(--primary);
}

.hero__eq-result {
    font-size: var(--font-size-sm);
    font-weight: 700;
    color: var(--primary);
    padding: 6px 14px;
    background: rgba(0, 182, 122, 0.15);
    border: 1px solid rgba(0, 182, 122, 0.3);
    border-radius: var(--radius-pill);
    white-space: nowrap;
}

.hero__ctas {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero__secondary-link {
    font-size: var(--font-size-base);
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    transition: color var(--transition);
}

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

.hero__scarcity {
    font-size: var(--font-size-sm);
    color: rgba(255,255,255,0.6);
    margin-bottom: var(--space-2);
    overflow-wrap: anywhere;
}

.hero__scarcity strong {
    color: var(--white);
}

.hero__cta-with-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero__price-hint {
    display: block;
    text-align: center;
    font-size: var(--font-size-xs);
    color: rgba(255,255,255,0.45);
    margin-top: 6px;
    letter-spacing: 0.02em;
}

.hero__stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero__stat-number {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.hero__stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.3;
}

.hero__stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.hero__stars {
    display: flex;
    gap: 1px;
    color: var(--primary);
}

.hero__stars svg {
    width: 16px;
    height: 16px;
}

.hero__visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--neutral-50);
    border: 2px dashed var(--neutral-200);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-4);
    color: var(--neutral-400);
    font-size: var(--font-size-sm);
    text-align: center;
}

/* ==========================================================================
   Trust Bar (Dunkler Hintergrund)
   ========================================================================== */


/* ==========================================================================
   Problem Section (Dark Theme)
   ========================================================================== */
.problem {
    padding: var(--space-12) 0;
    background: var(--white);
    color: var(--neutral-900);
    position: relative;
    z-index: 1;
}

.problem__headline {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--neutral-900);
    text-align: center;
    margin-bottom: var(--space-8);
}

/* Website Checker */
.problem__checker {
    max-width: 560px;
    margin: var(--space-8) auto 0;
    text-align: center;
}

.problem__checker-label {
    display: block;
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: var(--space-3);
}

.problem__checker-input {
    display: flex;
    align-items: stretch;
    background: var(--white);
    border: 2px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.problem__checker-input:focus-within {
    border-color: var(--primary);
}

.problem__checker-prefix {
    display: flex;
    align-items: center;
    padding: 0 0 0 var(--space-3);
    font-size: var(--font-size-sm);
    color: var(--neutral-400);
    white-space: nowrap;
    user-select: none;
}

.problem__checker-input input {
    flex: 1;
    border: none;
    outline: none;
    padding: 14px 8px;
    font-size: var(--font-size-base);
    font-family: inherit;
    color: var(--neutral-900);
    background: transparent;
    min-width: 0;
}

.problem__checker-input input::placeholder {
    color: var(--neutral-300);
}

.problem__checker-input .btn {
    border-radius: 0;
    flex-shrink: 0;
    padding: 14px var(--space-4);
}

.problem__checker-hint {
    margin-top: 8px;
    font-size: var(--font-size-xs);
    color: var(--neutral-400);
}

/* Pain Cards */
.problem__cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
    max-width: 960px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .problem__cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

.problem__item {
    padding: var(--space-5);
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--neutral-100);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.problem__item:hover {
    border-color: rgba(239, 68, 68, 0.25);
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.08);
    transform: translateY(-2px);
}

.problem__item-title {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 8px;
    line-height: 1.4;
}

.problem__text {
    font-size: var(--font-size-sm);
    line-height: 1.65;
    color: var(--neutral-500);
}

/* Danger-Variante des text-highlight (rot statt dunkel) */

.problem__transition {
    text-align: center;
    margin-top: var(--space-8);
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--neutral-600);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* ==========================================================================
   GEO Awareness Banner
   ========================================================================== */
/* ==========================================================================
   Solution Section
   ========================================================================== */
.solution {
    padding: var(--space-12) 0;
    background:
        radial-gradient(ellipse 60% 50% at 30% 20%, rgba(0, 182, 122, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 50% 60% at 80% 70%, rgba(0, 182, 122, 0.04) 0%, transparent 60%),
        var(--neutral-50);
}

.solution__grid {
    display: grid;
    gap: var(--space-4);
    margin-top: var(--space-6);
}

.solution__card {
    padding: var(--space-6) var(--space-5);
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.solution__card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.7);
}

.solution__icon {
    color: var(--primary-on-light);
    margin-bottom: var(--space-4);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 182, 122, 0.08);
    border-radius: 14px;
}

.solution__card h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--space-3);
    letter-spacing: -0.01em;
}

.solution__card p {
    color: var(--neutral-500);
    line-height: 1.7;
    font-size: var(--font-size-base);
}

.solution__statement {
    margin-top: var(--space-8);
    padding: var(--space-5);
    background: var(--accent-light);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius-sm);
    text-align: center;
}

.solution__statement p {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--neutral-900);
}

.solution__equation {
    margin-top: var(--space-8);
    display: flex;
    justify-content: center;
}

.solution__equation .hero__equation {
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 24px 32px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.solution__equation .hero__eq-term {
    color: var(--neutral-900);
    background: rgba(0, 182, 122, 0.08);
    border: 1px solid rgba(0, 182, 122, 0.12);
    font-weight: 600;
}

.solution__equation .hero__eq-op {
    color: var(--primary);
    font-weight: 400;
}

.solution__cta {
    text-align: center;
    margin-top: var(--space-6);
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */
.pricing {
    padding: var(--space-12) 0;
    background:
        radial-gradient(ellipse 70% 60% at 40% 30%, rgba(0, 182, 122, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 80% 70%, rgba(0, 182, 122, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 15% 80%, rgba(232, 168, 56, 0.04) 0%, transparent 50%),
        var(--dark-bg);
    color: var(--white);
}

.pricing .section-headline,
.pricing .section-subheadline {
    color: var(--white);
}

.pricing .section-subheadline {
    color: rgba(255, 255, 255, 0.7);
}

.pricing__founding-banner {
    text-align: center;
    padding: var(--space-3) var(--space-4);
    background: var(--accent-light);
    color: var(--neutral-900);
    border-radius: var(--radius-pill);
    margin-bottom: var(--space-8);
    font-size: var(--font-size-sm);
    border: 1px solid rgba(232, 168, 56, 0.3);
}

.pricing__grid {
    display: grid;
    gap: var(--space-4);
}

.pricing__card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: var(--space-5);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.pricing__card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.pricing__card--featured {
    border: 2px solid var(--primary);
    background: rgba(0, 182, 122, 0.06);
    box-shadow: 0 4px 24px rgba(0, 182, 122, 0.15);
}

.pricing__card--featured:hover {
    box-shadow: 0 8px 40px rgba(0, 182, 122, 0.25);
    background: rgba(0, 182, 122, 0.08);
}

.pricing__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--btn-text-on-accent);
    font-size: var(--font-size-sm);
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 999px;
    white-space: nowrap;
}

.pricing__tier-label {
    display: block;
    text-align: center;
    font-size: var(--font-size-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: var(--space-2);
}

.pricing__tier-label--featured {
    color: var(--primary);
}

.pricing__card-header {
    text-align: center;
    padding-bottom: var(--space-4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: var(--space-4);
}

.pricing__card--featured .pricing__card-header {
    padding-top: var(--space-3);
    border-bottom-color: rgba(0, 182, 122, 0.2);
}

.pricing__card-name {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--space-2);
    color: var(--white);
}

.pricing__card-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-1);
}

.pricing__price-old {
    font-size: var(--font-size-base);
    color: var(--neutral-400);
    text-decoration: line-through;
}

.pricing__price-current {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.03em;
}

.pricing__card--featured .pricing__price-current {
    color: var(--accent);
}

.pricing__price-note {
    font-size: var(--font-size-xs);
    color: rgba(255, 255, 255, 0.5);
}

.pricing__delivery {
    display: inline-block;
    margin-top: var(--space-2);
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--primary);
}

.pricing__features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: var(--space-5);
}

.pricing__feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: var(--font-size-sm);
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.75);
}

.pricing__feature svg {
    flex-shrink: 0;
    margin-top: 1px;
}

.pricing__feature--included svg {
    color: var(--success);
}

.pricing__feature--excluded {
    color: var(--neutral-400);
}

.pricing__feature--excluded svg {
    color: var(--neutral-400);
}

.pricing__cta {
    margin-top: auto;
}

.pricing__footnote {
    text-align: center;
    margin-top: var(--space-4);
    font-size: var(--font-size-xs);
    color: rgba(255, 255, 255, 0.4);
}

/* Retainer */
.retainer {
    margin-top: var(--space-10);
    padding-top: var(--space-8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.retainer__headline {
    font-size: var(--font-size-xl);
    text-align: center;
    margin-bottom: var(--space-2);
    color: var(--white);
}

.retainer__subline {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: var(--space-6);
    font-size: var(--font-size-sm);
}

.retainer__grid {
    display: grid;
    gap: var(--space-4);
}

.retainer__card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: var(--space-5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all var(--transition);
}

.retainer__card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.retainer__card h4 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-2);
    color: var(--white);
}

.retainer__price {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--accent);
    display: block;
    margin-bottom: var(--space-3);
}

.retainer__price small {
    font-size: var(--font-size-sm);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
}

.retainer__card ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.retainer__card li {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.65);
    padding-left: var(--space-4);
    position: relative;
}

.retainer__card li::before {
    content: "·";
    position: absolute;
    left: 8px;
    font-weight: 700;
    color: var(--primary);
}

.retainer__note {
    color: rgba(255, 255, 255, 0.35) !important;
    font-style: italic;
}


/* ==========================================================================
   Bonuses Section
   ========================================================================== */
.bonuses {
    padding: var(--space-12) 0;
    background:
        radial-gradient(ellipse 50% 50% at 50% 30%, rgba(0, 182, 122, 0.05) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 10% 80%, rgba(232, 168, 56, 0.04) 0%, transparent 60%),
        var(--neutral-50);
}

.bonuses__stack {
    max-width: 560px;
    margin: var(--space-6) auto var(--space-8);
    background: var(--neutral-50);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    padding: var(--space-5);
}

.bonuses__stack-header {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--neutral-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-3);
}

.bonuses__stack-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: var(--font-size-sm);
}

.bonuses__stack-row--bonus {
    color: var(--success);
}

.bonuses__stack-divider {
    height: 1px;
    background: var(--neutral-200);
    margin: var(--space-2) 0;
}

.bonuses__stack-row--total {
    font-weight: 600;
    color: var(--neutral-700);
}

.bonuses__stack-row--investment {
    font-weight: 800;
    font-size: var(--font-size-lg);
    color: var(--accent);
}

/* Bonus Card Grid */
.bonuses__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3);
    margin-bottom: var(--space-8);
}

@media (min-width: 640px) {
    .bonuses__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .bonuses__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bonuses__card {
    display: flex;
    gap: var(--space-3);
    padding: var(--space-4);
    background: var(--white);
    border: 1px solid var(--neutral-100);
    border-radius: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.bonuses__card:hover {
    border-color: rgba(0, 182, 122, 0.3);
    box-shadow: 0 4px 20px rgba(0, 182, 122, 0.08);
    transform: translateY(-2px);
}

.bonuses__card-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-lighter);
    border-radius: 12px;
    color: var(--primary);
}

.bonuses__card-body h3 {
    font-size: var(--font-size-sm);
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 4px;
    line-height: 1.3;
}

.bonuses__card-value {
    display: inline-block;
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
}

.bonuses__tag {
    font-size: 10px;
    font-weight: 600;
    background: rgba(0, 182, 122, 0.1);
    color: var(--primary);
    padding: 2px 7px;
    border-radius: 999px;
    vertical-align: middle;
    margin-left: 4px;
}

.bonuses__card-body p {
    color: var(--neutral-500);
    font-size: var(--font-size-xs);
    line-height: 1.6;
}

/* Guarantees */
.guarantees {
    display: grid;
    gap: var(--space-4);
    max-width: 680px;
    margin: 0 auto;
}

.guarantees__card {
    text-align: center;
    padding: var(--space-5);
    background: var(--primary-light);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 182, 122, 0.15);
    transition: all var(--transition);
}

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

.guarantees__icon {
    color: var(--primary);
    margin-bottom: var(--space-3);
}

.guarantees__card h3 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-2);
}

.guarantees__card p {
    color: var(--neutral-700);
    font-size: var(--font-size-sm);
    line-height: 1.7;
}

/* ==========================================================================
   Process Section
   ========================================================================== */
.process {
    padding: var(--space-12) 0;
    background: var(--white);
}

.process__grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin-top: var(--space-6);
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.process__step {
    background: var(--white);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    padding: var(--space-5);
    text-align: center;
    transition: all var(--transition);
}

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

.process__number {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: var(--space-2);
    line-height: 1;
}

.process__step h3 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-2);
}

.process__step p {
    color: var(--neutral-700);
    font-size: var(--font-size-sm);
    line-height: 1.7;
}

.process__connector {
    display: none;
}

.process__cta {
    text-align: center;
    margin-top: var(--space-6);
}

/* ==========================================================================
   CTA Banner (Dark)
   ========================================================================== */
.cta-banner {
    padding: var(--space-10) 0;
    background:
        radial-gradient(ellipse 90% 80% at 50% 50%, rgba(0, 182, 122, 0.1) 0%, transparent 70%),
        radial-gradient(ellipse 50% 70% at 10% 30%, rgba(0, 182, 122, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 90% 70%, rgba(232, 168, 56, 0.06) 0%, transparent 50%),
        var(--dark-bg);
    text-align: center;
    color: var(--white);
}

.cta-banner__headline {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-2);
    color: var(--white);
}

.cta-banner__sub {
    font-size: var(--font-size-lg);
    color: rgba(255,255,255,0.6);
    margin-bottom: var(--space-6);
}

.cta-banner__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
}

.cta-banner__link {
    font-size: var(--font-size-sm);
    color: rgba(255,255,255,0.5);
    transition: color 0.2s ease;
}

.cta-banner__link:hover {
    color: var(--primary);
}

/* ==========================================================================
   Social Proof Section
   ========================================================================== */
/* ==========================================================================
   Logo Bar (Trenner zwischen dunklen Sektionen)
   ========================================================================== */
.logo-bar {
    background: var(--primary);
    padding: var(--space-3) 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.logo-bar__label {
    color: var(--white);
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
    padding-left: var(--space-4);
    opacity: 0.9;
    flex-shrink: 0;
}

.logo-bar__track {
    flex: 1;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.logo-bar__scroll {
    display: flex;
    gap: var(--space-8);
    animation: logoScroll 25s linear infinite;
    width: max-content;
}

.logo-bar__logo {
    height: 24px;
    width: auto;
    color: rgba(255, 255, 255, 0.7);
    flex-shrink: 0;
}

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

@media (max-width: 640px) {
    .logo-bar__label {
        display: none;
    }
}

/* ==========================================================================
   Social Proof
   ========================================================================== */
/* Case Study Section */
.case-study-section {
    padding: var(--space-12) 0;
    background:
        radial-gradient(ellipse 50% 35% at 50% 30%, rgba(0, 182, 122, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 35% 25% at 20% 25%, rgba(0, 182, 122, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse 50% 35% at 50% 75%, rgba(0, 182, 122, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 35% 25% at 80% 80%, rgba(0, 182, 122, 0.04) 0%, transparent 60%),
        var(--white);
}

/* Social Proof */
.social-proof {
    padding: var(--space-12) 0;
    background: var(--neutral-50);
    overflow-x: clip;
}

.social-proof--dark {
    background:
        radial-gradient(ellipse 70% 60% at 60% 30%, rgba(0, 182, 122, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 10% 70%, rgba(0, 182, 122, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 90% 80%, rgba(232, 168, 56, 0.05) 0%, transparent 50%),
        var(--dark-bg);
    color: var(--white);
}

.social-proof--dark .section-headline {
    color: var(--white);
}

.social-proof__subtitle {
    text-align: center;
    color: var(--neutral-500);
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-6);
}

.social-proof--dark .social-proof__subtitle {
    color: rgba(255, 255, 255, 0.5);
}

/* Testimonials Slider */
.testimonials__slider {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 var(--space-4);
    margin-bottom: var(--space-8);
}

.testimonials__slider::-webkit-scrollbar {
    display: none;
}

.testimonials__track {
    display: flex;
    gap: var(--space-4);
    padding: var(--space-2) 0;
}

.testimonial {
    flex: 0 0 300px;
    scroll-snap-align: start;
    background: var(--white);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    padding: var(--space-5);
    transition: all var(--transition);
}

.testimonial:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--neutral-100);
}

/* Glassmorphism Testimonials (dark) */
.social-proof--dark .testimonial {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.social-proof--dark .testimonial:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.testimonial__stars {
    display: flex;
    gap: 2px;
    margin-bottom: var(--space-3);
}

.testimonial__stars svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
}

.testimonial__text {
    font-size: var(--font-size-sm);
    color: var(--neutral-700);
    line-height: 1.7;
    margin-bottom: var(--space-4);
    font-style: normal;
}

.social-proof--dark .testimonial__text {
    color: rgba(255, 255, 255, 0.7);
}

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

.testimonial__name {
    font-weight: 700;
    font-size: var(--font-size-sm);
    color: var(--neutral-900);
}

.social-proof--dark .testimonial__name {
    color: var(--white);
}

.testimonial__source {
    font-size: var(--font-size-xs);
    color: var(--neutral-400);
}

.social-proof--dark .testimonial__source {
    color: rgba(255, 255, 255, 0.35);
}

/* Desktop: Karten zentrieren, größer */
@media (min-width: 768px) {
    .testimonials__slider {
        padding: 0 calc((100vw - 4 * 300px - 3 * 1.5rem) / 2);
    }

    .testimonial {
        flex: 0 0 300px;
    }
}

/* Case Study Card (Dark Premium) */
.case-study {
    margin-top: var(--space-4);
    background:
        radial-gradient(ellipse 80% 60% at 80% 20%, rgba(0, 182, 122, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 10% 80%, rgba(232, 168, 56, 0.04) 0%, transparent 50%),
        var(--neutral-900);
    border: none;
    border-radius: var(--radius-xl);
    overflow: hidden;
    color: var(--white);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Hero Image */
.case-study__hero-image {
    text-align: center;
    margin-bottom: var(--space-4);
}

.case-study__hero-image img {
    max-width: 680px;
    width: 90%;
    height: auto;
    display: inline-block;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.3));
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.case-study__hero-image:hover img {
    transform: scale(1.03) translateY(-4px);
    filter: drop-shadow(0 28px 60px rgba(0, 0, 0, 0.4));
}

/* Card Header */
.case-study__header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-2);
    padding: var(--space-5) var(--space-5) 0;
    margin-bottom: var(--space-4);
}

.case-study__eyebrow {
    font-size: var(--font-size-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
}

.case-study__title {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--white);
    line-height: 1.3;
}

.case-study__tag {
    display: inline-block;
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: var(--primary);
    background: rgba(0, 182, 122, 0.12);
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    white-space: nowrap;
    letter-spacing: 0.02em;
}

/* Content Grid */
.case-study__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
    padding: 0 var(--space-5) var(--space-5);
}

@media (min-width: 640px) {
    .case-study__grid {
        grid-template-columns: 1fr 1fr;
    }

    .case-study__block--result {
        grid-column: 1 / -1;
    }
}

.case-study__block {
    padding: var(--space-4);
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.case-study__block--result {
    background: rgba(0, 182, 122, 0.08);
    border-color: rgba(0, 182, 122, 0.15);
}

.case-study__label {
    display: inline-block;
    font-size: var(--font-size-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--white);
    margin-bottom: var(--space-2);
}

.case-study__label--result {
    color: var(--primary);
}

.case-study__block p {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
}

.case-study__block--result p {
    color: rgba(255, 255, 255, 0.85);
}

/* Case Study Light Variant (white glassmorphism) */
.case-study--light {
    background:
        radial-gradient(ellipse 80% 60% at 80% 20%, rgba(0, 182, 122, 0.04) 0%, transparent 60%),
        rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.06);
    color: var(--neutral-900);
}

.case-study--light .case-study__eyebrow {
    color: var(--primary);
}

.case-study--light .case-study__title {
    color: var(--neutral-900);
}

.case-study--light .case-study__tag {
    color: var(--primary);
    background: var(--primary-light);
}

/* Showcase image (full width above card) */
.case-study__showcase {
    text-align: center;
    margin-bottom: var(--space-5);
}

.case-study__showcase-img {
    max-width: 820px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.15));
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.case-study__showcase-img:hover {
    transform: scale(1.02) translateY(-4px);
}

/* Service tags */
.case-study__services {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: var(--space-6);
}

.case-study__service {
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: var(--neutral-700);
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    letter-spacing: 0.02em;
}

.case-study--light .case-study__block {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.case-study--light .case-study__block--result {
    background: var(--primary-lighter);
    border-color: rgba(0, 182, 122, 0.12);
}

.case-study--light .case-study__label {
    color: var(--neutral-900);
}

.case-study--light .case-study__block p {
    color: var(--neutral-700);
}

.case-study--light .case-study__block--result p {
    color: var(--neutral-900);
}

/* Social Proof Honest Block */
.social-proof__honest {
    text-align: center;
    padding: var(--space-6) var(--space-4);
    margin-top: var(--space-6);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.social-proof__honest-text {
    font-size: var(--font-size-lg);
    color: var(--neutral-700);
    margin-bottom: var(--space-4);
    line-height: 1.7;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about {
    padding: var(--space-12) 0;
    background: var(--white);
}

.about--dark {
    background:
        radial-gradient(ellipse 60% 50% at 70% 30%, rgba(0, 182, 122, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 50% 60% at 20% 70%, rgba(0, 182, 122, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 85% 80%, rgba(232, 168, 56, 0.04) 0%, transparent 50%),
        var(--dark-bg);
    color: var(--white);
}

.about--dark .about__content h2 {
    color: var(--white);
}

.about--dark .about__content p {
    color: rgba(255, 255, 255, 0.7);
}

.about--dark .about__intro {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--font-size-lg);
    font-weight: 500;
}

.about--dark .about__image img {
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.about--dark .about__badge {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.about--dark .about__badge:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 182, 122, 0.3);
    box-shadow: 0 2px 12px rgba(0, 182, 122, 0.15);
}

.about--dark .about__badge span {
    color: rgba(255, 255, 255, 0.8);
}

.about--dark .about__badge svg {
    color: var(--primary);
}

.about__grid {
    display: grid;
    gap: var(--space-6);
    max-width: 680px;
    margin: 0 auto;
}

.about__image {
    text-align: center;
}

.about__image img {
    border-radius: var(--radius-lg);
    max-width: 100%;
    box-shadow: var(--shadow-lg);
    margin: 0 auto;
}

.about__content h2 {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--space-4);
}

.about__content p {
    color: var(--neutral-700);
    margin-bottom: var(--space-3);
    line-height: 1.7;
}

.about__badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
    margin-top: var(--space-5);
}

.about__badge {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3);
    background: var(--neutral-50);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.about__badge:hover {
    box-shadow: var(--shadow-sm);
    transform: translateY(-1px);
}

.about__badge svg {
    flex-shrink: 0;
    color: var(--primary);
}

.about__badge span {
    font-size: var(--font-size-xs);
    color: var(--neutral-700);
    font-weight: 600;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq {
    padding: var(--space-12) 0;
    background: var(--neutral-50);
}

.faq__list {
    max-width: 680px;
    margin: var(--space-6) auto 0;
    display: flex;
    flex-direction: column;
}

.faq__item {
    border-bottom: 1px solid var(--neutral-200);
}

.faq__item:first-child {
    border-top: 1px solid var(--neutral-200);
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3);
    padding: var(--space-4) 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--neutral-900);
    min-height: 56px;
    transition: color var(--transition);
}

.faq__question:hover {
    color: var(--primary-on-light);
}

.faq__chevron {
    flex-shrink: 0;
    transition: transform var(--transition);
    color: var(--neutral-400);
}

.faq__item.is-open .faq__chevron {
    transform: rotate(180deg);
    color: var(--primary-on-light);
}

.faq__answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq__item.is-open .faq__answer {
    max-height: 400px;
}

.faq__answer p {
    padding-bottom: var(--space-4);
    color: var(--neutral-700);
    line-height: 1.7;
    font-size: var(--font-size-sm);
}

.faq__cta {
    text-align: center;
    margin-top: var(--space-8);
}

.faq__cta p {
    margin-bottom: var(--space-3);
    color: var(--neutral-700);
}

/* ==========================================================================
   Contact Section (Dunkles Grün)
   ========================================================================== */
.contact {
    padding: var(--space-12) 0;
    background:
        radial-gradient(ellipse 80% 70% at 50% 30%, rgba(0, 182, 122, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 50% 60% at 10% 80%, rgba(0, 182, 122, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 90% 20%, rgba(232, 168, 56, 0.05) 0%, transparent 50%),
        var(--dark-bg);
    color: var(--neutral-50);
}

.contact__headline {
    font-size: var(--font-size-3xl);
    color: var(--white);
    text-align: center;
    margin-bottom: var(--space-2);
}

.contact__subheadline {
    font-size: var(--font-size-lg);
    color: rgba(248,250,251,0.7);
    text-align: center;
    margin-bottom: var(--space-8);
}

.contact__grid {
    display: grid;
    gap: var(--space-8);
    min-width: 0;
}

.contact__grid > * {
    min-width: 0;
}

/* Form */
.contact__form {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    max-width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.form-group label {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: rgba(248,250,251,0.9);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    padding: 14px 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-md);
    color: var(--white);
    transition: all var(--transition);
    min-height: 48px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(248,250,251,0.35);
}

.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
    outline: 2px solid var(--primary-light);
    outline-offset: 2px;
    border-color: var(--primary-light);
    background: rgba(255,255,255,0.12);
    box-shadow: 0 0 0 3px rgba(232, 245, 241, 0.25);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option {
    background: var(--dark-bg);
    color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group--checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--space-2);
}

.form-group--checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--primary-light);
}

.form-group--checkbox label {
    font-weight: 400;
    font-size: var(--font-size-xs);
    line-height: 1.5;
    color: rgba(248,250,251,0.6);
}

.form-group--checkbox label a {
    color: rgba(248,250,251,0.8);
    text-decoration: underline;
}

.contact__trust {
    font-size: var(--font-size-sm);
    color: rgba(248,250,251,0.5);
    text-align: center;
}

.contact__form-success {
    text-align: center;
    padding: var(--space-8) var(--space-4);
}

.contact__form-success h3 {
    color: var(--success);
    font-size: var(--font-size-2xl);
    margin-bottom: var(--space-2);
}

.contact__form-success p {
    color: rgba(248,250,251,0.7);
}

/* Alternative Contact */
.contact__alternative {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-5);
    padding: var(--space-6);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
}

.contact__alternative h3 {
    color: var(--white);
    font-size: var(--font-size-lg);
}

.contact__email {
    margin-top: var(--space-3);
}

.contact__email p {
    font-size: var(--font-size-sm);
    color: rgba(248,250,251,0.5);
    margin-bottom: var(--space-2);
}

.contact__email-link {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--primary-light) !important;
    transition: color var(--transition);
}

.contact__email-link:hover {
    color: var(--white) !important;
}

/* ==========================================================================
   Footer (Noch dunkleres Grün)
   ========================================================================== */
.footer {
    padding: var(--space-8) 0 var(--space-5);
    background: var(--white);
    border-top: 1px solid var(--neutral-100);
    color: var(--neutral-500);
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
    padding-bottom: var(--space-6);
    border-bottom: 1px solid var(--neutral-100);
}

.footer__col h4 {
    font-size: var(--font-size-sm);
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: var(--space-3);
}

.footer__col ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__col a {
    font-size: var(--font-size-sm);
    color: var(--neutral-500);
    transition: color var(--transition);
}

.footer__col a:hover {
    color: var(--neutral-900);
}

.footer__bottom {
    padding-top: var(--space-5);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    align-items: center;
    text-align: center;
}

.footer__bottom a {
    font-size: var(--font-size-sm);
    color: var(--neutral-500);
}

.footer__bottom a:hover {
    color: var(--neutral-900);
}

.footer__bottom p {
    font-size: var(--font-size-xs);
    color: var(--neutral-400);
}

.footer__tagline {
    font-size: var(--font-size-sm);
    color: var(--neutral-500);
    margin-bottom: var(--space-2);
}

/* ==========================================================================
   Sticky Mobile CTA
   ========================================================================== */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    padding: 10px 16px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
    background: var(--white);
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
    transform: translateY(100%);
    transition: transform 0.35s ease;
    display: none;
}

.sticky-cta.is-visible {
    transform: translateY(0);
}

/* ==========================================================================
   Cookie Banner
   ========================================================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
    border-top: 1px solid var(--neutral-200);
}

.cookie-banner__content {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--space-2) var(--space-4);
    display: flex;
    flex-direction: row;
    gap: var(--space-3);
    align-items: center;
    text-align: left;
}

.cookie-banner__content p {
    font-size: var(--font-size-xs);
    color: var(--neutral-700);
    line-height: 1.4;
    flex: 1;
}

.cookie-banner__content a {
    text-decoration: underline;
}

.cookie-banner__btn {
    flex-shrink: 0;
    min-width: 60px;
    white-space: nowrap;
    padding: 8px 20px;
    font-size: var(--font-size-sm);
}

/* ==========================================================================
   Scroll Animations (Apple-Style)
   ========================================================================== */

/* Fade up from below */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Stagger für Kinder-Elemente */
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.15s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.2s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.25s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.3s; }
.reveal-stagger.is-visible > *:nth-child(7) { transition-delay: 0.35s; }
.reveal-stagger.is-visible > *:nth-child(8) { transition-delay: 0.4s; }

.reveal-stagger.is-visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* Scale-in für Cards */
.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.is-visible {
    opacity: 1;
    transform: scale(1);
}

/* Legacy fade-up (Kompatibilität) */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Reduced Motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    html { scroll-behavior: auto; }
    .fade-up,
    .reveal,
    .reveal-scale { opacity: 1; transform: none; }
    .reveal-stagger > * { opacity: 1; transform: none; }
}

/* ==========================================================================
   Responsive: Tablet (768px+)
   ========================================================================== */
@media (min-width: 768px) {
    .section-headline {
        font-size: var(--font-size-4xl);
    }

    /* Solution */
    .solution__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pricing__card--featured {
        transform: scale(1.03);
    }

    .pricing__card--featured:hover {
        transform: scale(1.03) translateY(-4px);
    }

    /* Retainer */
    .retainer__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Guarantees */
    .guarantees {
        grid-template-columns: repeat(2, 1fr);
    }

    /* About: 2-Spalten Layout */
    .about__grid {
        grid-template-columns: 360px 1fr;
        align-items: end;
        max-width: none;
    }

    .about__image img {
        max-width: 360px;
    }

    .about__badges {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Contact */
    .contact__grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }

    /* Footer */
    .footer__grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

/* Cookie Banner horizontal ab 500px */
@media (min-width: 500px) {
    .cookie-banner__content p {
        font-size: var(--font-size-sm);
    }
}

/* ==========================================================================
   Responsive: Desktop (1024px+)
   ========================================================================== */
@media (min-width: 1024px) {
    /* Navigation */
    .nav__links {
        display: flex;
    }

    .nav__mobile-actions {
        display: none;
    }

    /* Pricing 3-Spalten erst ab Desktop */
    .pricing__grid {
        grid-template-columns: repeat(3, 1fr);
        align-items: start;
    }

    /* Hero */
    .hero {
        padding-top: calc(var(--nav-height) + var(--space-12));
        padding-bottom: var(--space-10);
    }

    .hero__grid {
        grid-template-columns: 1fr;
        max-width: 720px;
        margin: 0 auto;
        gap: var(--space-6);
        text-align: center;
    }

    .hero__portrait {
        display: none;
    }

    .hero__portrait img {
        opacity: 0.5;
    }

    .hero__grid {
        position: relative;
        z-index: 2;
    }

    .hero__headline {
        font-size: var(--font-size-5xl);
    }

    .hero__ctas {
        flex-direction: row;
        align-items: flex-start;
    }

    /* Process horizontal */
    .process__grid {
        flex-direction: row;
        align-items: flex-start;
        max-width: none;
    }

    .process__step {
        flex: 1;
    }

    .process__connector {
        display: flex;
        align-items: center;
        padding-top: var(--space-8);
    }

    .process__connector::after {
        content: "";
        width: 40px;
        height: 2px;
        background: var(--neutral-200);
    }

    /* Sticky CTA: hidden on desktop */
    .sticky-cta {
        display: none !important;
    }
}

/* ==========================================================================
   Mobile-only: show sticky CTA
   ========================================================================== */
@media (max-width: 1023px) {
    .sticky-cta {
        display: block;
    }
}

/* ==========================================================================
   Small Mobile (<= 430px)
   ========================================================================== */
@media (max-width: 430px) {
    :root {
        --font-size-5xl: 1.875rem;
        --font-size-4xl: 1.5rem;
        --font-size-3xl: 1.25rem;
        --font-size-2xl: 1.125rem;
    }

    .badge--accent {
        padding: 6px 12px;
        font-size: var(--font-size-xs);
        word-break: break-word;
    }

    .container {
        padding: 0 var(--space-3);
    }

    /* Nav: Logo kürzen damit Hamburger sichtbar bleibt */
    .nav__logo {
        font-size: 1rem;
        flex-shrink: 1;
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .nav__container {
        padding: 0 var(--space-3);
        gap: var(--space-2);
    }

    .nav__mobile-actions {
        flex-shrink: 0;
    }

    .hero {
        padding-top: calc(var(--nav-height) + var(--space-5));
        padding-bottom: var(--space-5);
    }

    .hero__headline {
        font-size: 1.2rem;
        line-height: 1.25;
        overflow-wrap: anywhere;
    }

    .hero__highlight {
        padding: 2px 6px 3px;
    }

    .hero__subheadline {
        font-size: var(--font-size-sm);
    }

    .hero__scarcity {
        font-size: var(--font-size-xs);
    }

    .hero__equation {
        gap: 6px 8px;
        padding: 14px 16px;
    }

    .hero__eq-term {
        font-size: 11px;
        padding: 4px 10px;
    }

    .hero__eq-op {
        font-size: var(--font-size-sm);
    }

    .hero__eq-result {
        font-size: 11px;
        padding: 4px 10px;
    }

    .hero__stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .hero__stat-divider {
        display: none;
    }

    .hero__stat {
        flex-direction: row;
        align-items: center;
        gap: 8px;
    }

    .hero__stat-number {
        font-size: 18px;
    }

    .pricing__card {
        padding: var(--space-4);
    }

    .contact__headline {
        font-size: var(--font-size-3xl);
    }

    /* Cookie Banner kompakt auf Small Mobile */
    .cookie-banner__content {
        padding: var(--space-2) var(--space-3);
        gap: var(--space-2);
    }

    .cookie-banner__content p {
        font-size: 0.6875rem;
        line-height: 1.3;
    }

    .cookie-banner__btn {
        min-width: auto;
        padding: 8px 16px;
        font-size: var(--font-size-xs);
    }
}

/* ==========================================================================
   Screen Reader Only
   ========================================================================== */
.sr-only {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

/* ==========================================================================
   Contact Phone
   ========================================================================== */
.contact__phone {
    margin-top: var(--space-3);
}

.contact__phone p {
    font-size: var(--font-size-sm);
    color: rgba(248,250,251,0.5);
    margin-bottom: var(--space-2);
}

.contact__phone-link {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--primary-light) !important;
    transition: color var(--transition);
}

.contact__phone-link:hover {
    color: var(--white) !important;
}

/* Body scroll lock when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

/* ==========================================================================
   Large Desktop (>= 1280px): Portrait im Hero
   ========================================================================== */
@media (min-width: 1280px) {
    .hero {
        position: relative;
    }

    .hero__portrait {
        display: block;
        position: absolute;
        right: 0;
        top: 15%;
        bottom: 0;
        height: auto;
        width: auto;
        pointer-events: none;
        z-index: 3;
    }
}

@media (min-width: 1600px) {
    .hero__portrait {
        right: 5%;
    }
}

/* ==========================================================================
   Trust Bar (scrolling logo ticker, inside hero)
   ========================================================================== */
.trust-bar {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 10px 0;
    margin-top: var(--space-8);
    overflow: hidden;
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
}

.trust-bar__label {
    font-size: var(--font-size-sm);
    font-weight: 700;
    color: var(--white);
    white-space: nowrap;
    padding-left: 32px;
    padding-right: 24px;
    flex-shrink: 0;
    letter-spacing: 0.01em;
}

.trust-bar__track {
    overflow: hidden;
    flex: 1;
    mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}

.trust-bar__scroll {
    display: flex;
    align-items: center;
    gap: 0;
    animation: trust-scroll 18s linear infinite;
    width: max-content;
}

.trust-bar__logo {
    height: 72px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 1;
    flex-shrink: 0;
    padding: 0 48px;
}

@media (max-width: 639px) {
    .trust-bar__label {
        display: none;
    }

    .trust-bar__logo {
        height: 34px;
        padding: 0 28px;
    }
}

@keyframes trust-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ==========================================================================
   Reference Ticker (opposite-scrolling rows)
   ========================================================================== */
.ref-ticker {
    margin-top: var(--space-8);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ref-ticker__row {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.ref-ticker__scroll {
    display: flex;
    gap: 16px;
    width: max-content;
}

.ref-ticker__row--left .ref-ticker__scroll {
    animation: ref-scroll-left 30s linear infinite;
}

.ref-ticker__row--right .ref-ticker__scroll {
    animation: ref-scroll-right 30s linear infinite;
}

.ref-ticker__img {
    height: 200px;
    width: auto;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .ref-ticker__img {
        height: 260px;
    }
}

@keyframes ref-scroll-left {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes ref-scroll-right {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

/* ==========================================================================
   Text Highlight (on light backgrounds - inverted)
   ========================================================================== */
.text-highlight {
    display: inline;
    background: var(--neutral-900);
    color: var(--white);
    padding: 2px 14px 6px;
    border-radius: 4px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.text-highlight--danger {
    background: var(--error);
    color: var(--white);
}

.text-highlight--primary {
    background: var(--primary);
    color: var(--white);
}

.text-highlight--accent {
    background: var(--accent);
    color: var(--neutral-900);
}

@media (max-width: 430px) {
    .text-highlight {
        padding: 2px 8px 4px;
    }
}

/* ==========================================================================
   V3 Additions: Objection, Target Audience, Comparison, Lead Magnet
   ========================================================================== */

/* Objection Section (KI-Einwand) - Apple Editorial Style */
.objection {
    padding: var(--space-16) 0;
    background: var(--white);
    overflow-x: clip;
}

.objection__card {
    max-width: 680px;
    margin: 0 auto;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
    text-align: center;
}

.objection__headline {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: var(--space-6);
    letter-spacing: -0.02em;
}

.objection__card p {
    color: var(--neutral-500);
    line-height: 1.8;
    margin-bottom: var(--space-4);
    font-size: var(--font-size-lg);
}

.objection__card p:first-of-type {
    font-size: var(--font-size-xl);
    color: var(--neutral-700);
    font-weight: 500;
}

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

/* Target Audience Section - Apple Style */
/* Comparison / Preisanker Section */
.comparison {
    padding: var(--space-12) 0;
    background:
        radial-gradient(ellipse 60% 50% at 20% 60%, rgba(0, 182, 122, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 80% 30%, rgba(232, 168, 56, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 50% 20%, rgba(0, 182, 122, 0.06) 0%, transparent 50%),
        var(--dark-bg);
    color: var(--white);
}

.comparison .section-headline {
    color: var(--white);
}

.comparison__table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: var(--space-2);
    position: relative;
}

.comparison__table-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 40px;
    background: linear-gradient(90deg, transparent, rgba(26, 26, 46, 0.8));
    border-radius: 0 20px 20px 0;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.3s ease;
}

@media (min-width: 768px) {
    .comparison__table-wrapper::after {
        display: none;
    }
}

.comparison__table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    font-size: var(--font-size-sm);
}

.comparison__table thead th {
    padding: var(--space-3) var(--space-4);
    text-align: center;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: var(--font-size-sm);
}

.comparison__table thead th.comparison__highlight {
    color: var(--primary);
    font-size: var(--font-size-base);
    background: rgba(0, 182, 122, 0.15);
}

.comparison__table tbody td {
    padding: var(--space-3) var(--space-4);
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.6);
}

.comparison__table tbody tr:last-child td {
    border-bottom: none;
}

.comparison__table tbody td:first-child {
    text-align: left;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.comparison__table tbody td.comparison__highlight {
    background: rgba(0, 182, 122, 0.1);
    color: var(--white);
    font-weight: 600;
    border-left: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
}

.comparison__table thead th.comparison__highlight {
    border-left: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
    border-top: 2px solid var(--primary);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.comparison__table tbody tr:last-child td.comparison__highlight {
    border-bottom: 2px solid var(--primary);
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.comparison__table tbody td small {
    display: block;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
    font-size: var(--font-size-xs);
}

@media (min-width: 768px) {
    .comparison__table {
        font-size: var(--font-size-base);
    }
}



/* Sticky CTA Secondary */
.sticky-cta__secondary {
    display: block;
    text-align: center;
    padding: var(--space-2) 0;
    font-size: var(--font-size-sm);
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.sticky-cta__secondary:hover {
    text-decoration: underline;
}