/* ═══════════════════════════════════════════
   KLINCOV.IT - Main Stylesheet
   Bereinigt und optimiert
═══════════════════════════════════════════ */

:root {
    /* Hero warm backgrounds */
    --bg-warm: #f9f7f3;
    --bg-cream: #f3efe7;
    --bg-soft: #eae5d9;
    --white: #ffffff;

    /* Dark bases (Footer, Nav on dark) */
    --bg-dark: #08090b;
    --bg-dark-secondary: #0d0e11;
    --bg-dark-elevated: #131519;
    --bg-dark-card: #101214;

    /* Light content areas */
    --bg-light: #f4f1eb;
    --bg-light-secondary: #eeebe6;
    --bg-light-elevated: #faf8f5;
    --bg-light-card: #ffffff;

    /* Text colors */
    --text-on-dark: #f5f5f5;
    --text-on-dark-secondary: #a8a8a8;
    --text-on-dark-muted: #6b6b6b;

    --text-on-light: #1a1a1a;
    --text-on-light-secondary: #4a4a4a;
    --text-on-light-muted: #7a7a7a;

    /* Hero text colors (warm) */
    --text-dark: #2c2a26;
    --text-medium: #5a564d;
    --text-muted: #8a857a;

    /* Gold accents (consolidated) */
    --accent-gold: #c9a227;
    --accent-gold-rich: #b8931f;
    --accent-gold-light: #dbb84a;
    --accent-gold-dark: #a8871f;
    --accent-gold-muted: #d4b85c;
    --accent-gold-soft: rgba(201, 162, 39, 0.1);
    --accent-gold-glow: rgba(201, 162, 39, 0.2);
    --accent-gold-glow-medium: rgba(201, 162, 39, 0.12);
    --accent-gold-glow-light: rgba(201, 162, 39, 0.08);

    /* Legacy aliases (for backwards compatibility) */
    --gold: var(--accent-gold);
    --gold-rich: var(--accent-gold-rich);
    --gold-muted: var(--accent-gold-muted);
    --gold-soft: var(--accent-gold-soft);
    --gold-glow: var(--accent-gold-glow);

    /* Card accent colors */
    --copper: #c17f59;
    --sage: #7a9a6d;
    --dusty-blue: #7a8fa3;

    /* Borders */
    --border-dark-subtle: rgba(255, 255, 255, 0.06);
    --border-dark-medium: rgba(255, 255, 255, 0.12);
    --border-dark-gold: rgba(201, 162, 39, 0.3);

    --border-light-subtle: rgba(0, 0, 0, 0.06);
    --border-light-medium: rgba(0, 0, 0, 0.1);
    --border-light-gold: rgba(201, 162, 39, 0.35);

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;

    /* Animations */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);

    /* Layout */
    --section-padding: clamp(5rem, 12vw, 9rem);
    --container-max: 1200px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-light);
    color: var(--text-on-light);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--accent-gold);
    color: var(--bg-dark);
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 5%;
}

/* ═══════════════════════════════════════════
   NAVIGATION - Animated Pill Style
═══════════════════════════════════════════ */
.nav-wrapper {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(-150%);
    z-index: 1000;
    display: flex;
    align-items: center;
    animation: navSlideIn 0.8s var(--ease-out-expo) 0.1s forwards;
}

@keyframes navSlideIn {
    to { transform: translateX(-50%) translateY(0); }
}

/* The visible pill container - sized to active item */
.nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 62px;
    height: 100%;
    background: rgba(232, 228, 220, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid var(--accent-gold);
    border-radius: 50px;
    box-shadow:
        0 2px 16px rgba(0, 0, 0, 0.06),
        0 1px 2px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition:
        width 0.5s var(--ease-out-expo),
        left 0.5s var(--ease-out-expo),
        background 0.3s ease,
        box-shadow 0.3s ease;
    pointer-events: none;
    z-index: 0;
}

/* Nav scrolled state - applied via JavaScript */
.nav--scrolled {
    background: rgba(232, 228, 220, 0.92);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.1),
        0 1px 3px rgba(0, 0, 0, 0.05);
}

.nav__links {
    display: flex;
    gap: 0.1rem;
    list-style: none;
    position: relative;
    padding: 0.3rem;
    z-index: 1;
}

.nav__link {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--text-on-light-muted);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 40px;
    transition: opacity 0.5s var(--ease-out-expo), color 0.5s var(--ease-out-expo), background 0.25s var(--ease-out-expo);
    white-space: nowrap;
    opacity: 0.4;
    position: relative;
    z-index: 2;
}

.nav__link:hover {
    opacity: 1;
    color: var(--text-on-light-secondary);
    background: rgba(232, 228, 220, 0.95);
}

.nav__link.active {
    color: var(--accent-gold-dark);
    font-weight: 600;
    opacity: 1;
}

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown__trigger {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
}

.nav-dropdown__arrow {
    width: 10px;
    height: 10px;
    transition: transform 0.3s var(--ease-out-expo);
}

.nav-dropdown:hover .nav-dropdown__arrow {
    transform: rotate(180deg);
}

.nav-dropdown__menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%) translateY(-5px);
    min-width: 220px;
    background: rgba(232, 228, 220, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 162, 39, 0.25);
    border-radius: 12px;
    padding: 0.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1), 0 0 8px rgba(201, 162, 39, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease-out-expo);
    z-index: 100;
    list-style: none;
}

.nav-dropdown:hover .nav-dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown__item {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-on-light-muted);
    text-decoration: none;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nav-dropdown__item:hover {
    background: rgba(201, 162, 39, 0.1);
    color: var(--accent-gold-dark);
}

.nav-dropdown__item.active {
    color: var(--accent-gold-dark);
    font-weight: 600;
    background: rgba(201, 162, 39, 0.08);
}

/* Mobile Navigation - Hamburger Menu */
.nav-hamburger {
    display: none;
    width: 44px;
    height: 44px;
    background: rgba(232, 228, 220, 0.95);
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    z-index: 1001;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nav-hamburger__line {
    width: 18px;
    height: 2px;
    background: var(--accent-gold-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-hamburger.active .nav-hamburger__line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.active .nav-hamburger__line:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.active .nav-hamburger__line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay - Fullscreen Centered */
.nav-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(232, 228, 220, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out-expo);
}

.nav-mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu - Centered */
.nav-mobile {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    text-align: center;
    pointer-events: none;
}

.nav-mobile.active {
    pointer-events: auto;
}

.nav-mobile__links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.nav-mobile__link {
    display: inline-block;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--text-on-light-muted);
    text-decoration: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid var(--border-light-subtle);
    transition: all 0.4s var(--ease-out-expo);
    opacity: 0;
    transform: translateY(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.nav-mobile.active .nav-mobile__link {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays */
.nav-mobile.active .nav-mobile__links li:nth-child(1) .nav-mobile__link { transition-delay: 0.1s; }
.nav-mobile.active .nav-mobile__links li:nth-child(2) .nav-mobile__link { transition-delay: 0.15s; }
.nav-mobile.active .nav-mobile__links li:nth-child(3) .nav-mobile__link { transition-delay: 0.2s; }
.nav-mobile.active .nav-mobile__links li:nth-child(4) .nav-mobile__link { transition-delay: 0.25s; }
.nav-mobile.active .nav-mobile__links li:nth-child(5) .nav-mobile__link { transition-delay: 0.3s; }
.nav-mobile.active .nav-mobile__links li:nth-child(6) .nav-mobile__link { transition-delay: 0.35s; }

.nav-mobile__link:hover {
    color: var(--text-on-light);
    border-color: var(--border-light-gold);
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.nav-mobile__link.active {
    color: var(--accent-gold-dark);
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(201, 162, 39, 0.15);
}

/* Bug Report Button - Fixed at bottom */
.nav-mobile__bug {
    display: none;
    position: fixed;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
    transition: all 0.4s var(--ease-out-expo);
    z-index: 1001;
    pointer-events: none;
}

.nav-mobile__bug.active {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    transition-delay: 0.4s;
    pointer-events: auto;
}

.nav-mobile__bug-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--bg-dark);
    text-decoration: none;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    background: var(--accent-gold);
    border: 2px solid var(--accent-gold);
    transition: all 0.4s var(--ease-out-expo);
    box-shadow: 0 4px 20px rgba(201, 162, 39, 0.25);
}

.nav-mobile__bug-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 162, 39, 0.35);
}

.nav-mobile__bug-btn svg {
    width: 16px;
    height: 16px;
}

/* ═══════════════════════════════════════════
   HERO SECTION (WARM)
═══════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 5%;
    position: relative;
    overflow: hidden;
    background: var(--bg-warm);
}

/* Mobile hero hidden by default (shown via media query) */
.hero-mobile {
    display: none;
}

/* Warm gradient background */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 100% 80% at 20% 10%, rgba(201, 162, 39, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 80% 60% at 80% 90%, rgba(193, 127, 89, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 60% 50% at 50% 50%, rgba(122, 154, 109, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

/* Subtle grain */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.025;
    pointer-events: none;
    z-index: 1;
}

/* Floating Cards */
.float-card {
    position: absolute;
    background: var(--white);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.04),
        0 10px 20px rgba(0, 0, 0, 0.06),
        0 25px 50px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 0, 0, 0.02);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    opacity: 0;
    z-index: 5;
    transition: box-shadow 0.3s ease;
}

.float-card:hover {
    box-shadow:
        0 6px 10px rgba(0, 0, 0, 0.06),
        0 15px 30px rgba(0, 0, 0, 0.1),
        0 35px 60px rgba(0, 0, 0, 0.14),
        0 0 0 1px rgba(0, 0, 0, 0.02);
}

/* Scroll-controlled: marks cards as ready for scroll transforms, animation continues naturally */
.float-card.scroll-controlled {
    opacity: 1;
}

@keyframes floatUp {
    0%, 100% { transform: translateY(-5px) rotate(var(--rotate, 0deg)); }
    50% { transform: translateY(5px) rotate(var(--rotate, 0deg)); }
}

/* Card reveal animation - comes from above while fading in */
@keyframes cardRevealFromAbove {
    from {
        opacity: 0;
        transform: translateY(-80px) rotate(var(--rotate, 0deg));
    }
    to {
        opacity: 1;
        transform: translateY(-5px) rotate(var(--rotate, 0deg));
    }
}

/* Left Side Cards - Start after nav begins */
.float-card--left-1 {
    --rotate: -2deg;
    --float-duration: 6s;
    top: 24%;
    left: calc(50% - 500px);
    animation: cardRevealFromAbove 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards, floatUp 6s ease-in-out 1.5s infinite;
}

.float-card--left-2 {
    --rotate: 1deg;
    --float-duration: 7s;
    top: 38%;
    left: calc(50% - 450px);
    animation: cardRevealFromAbove 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards, floatUp 7s ease-in-out 1.6s infinite;
}

.float-card--left-3 {
    --rotate: -1deg;
    --float-duration: 5.5s;
    top: 50%;
    left: calc(50% - 500px);
    animation: cardRevealFromAbove 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards, floatUp 5.5s ease-in-out 1.7s infinite;
}

.float-card--left-4 {
    --rotate: 2deg;
    --float-duration: 6.5s;
    top: 61%;
    left: calc(50% - 400px);
    animation: cardRevealFromAbove 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards, floatUp 6.5s ease-in-out 1.8s infinite;
}

/* Right Side Cards - Start after nav begins */
.float-card--right-1 {
    --rotate: 2deg;
    --float-duration: 7s;
    top: 22%;
    right: calc(50% - 500px);
    animation: cardRevealFromAbove 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards, floatUp 7s ease-in-out 1.55s infinite;
}

.float-card--right-2 {
    --rotate: -1deg;
    --float-duration: 6s;
    top: 37%;
    right: calc(50% - 430px);
    animation: cardRevealFromAbove 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.45s forwards, floatUp 6s ease-in-out 1.65s infinite;
}

.float-card--right-3 {
    --rotate: 1deg;
    --float-duration: 5.5s;
    top: 51%;
    right: calc(50% - 470px);
    animation: cardRevealFromAbove 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.55s forwards, floatUp 5.5s ease-in-out 1.75s infinite;
}

.float-card--right-4 {
    --rotate: -2deg;
    --float-duration: 7.5s;
    top: 62%;
    right: calc(50% - 390px);
    animation: cardRevealFromAbove 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.65s forwards, floatUp 7.5s ease-in-out 1.85s infinite;
}

.float-card__icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
}

.float-card__icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.float-card__icon svg {
    width: 18px;
    height: 18px;
}

.float-card__icon--gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-rich) 100%);
    color: var(--white);
}

.float-card__icon--sage {
    background: linear-gradient(135deg, var(--sage) 0%, #5a7a4d 100%);
    color: var(--white);
}

.float-card__icon--copper {
    background: linear-gradient(135deg, var(--copper) 0%, #a36a45 100%);
    color: var(--white);
}

.float-card__icon--blue {
    background: linear-gradient(135deg, var(--dusty-blue) 0%, #5a7089 100%);
    color: var(--white);
}

.float-card__icon--transparent {
    background: transparent;
}

.float-card__title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
}

.hero__content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    text-align: center;
}

/* Badge - starts shortly after cards begin */
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.25rem;
    background: var(--white);
    border-radius: 100px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(201, 162, 39, 0.15);
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(15px);
    animation: fadeUp 0.8s ease-out 0.5s forwards;
    position: relative;
    overflow: hidden;
}

.hero__badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.15), transparent);
    animation: shimmer 3s ease-in-out 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 0 3px var(--gold-soft);
    animation: pulse 2.5s ease-in-out infinite;
}

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

.hero__badge-text {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-medium);
    letter-spacing: 0.02em;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Title */
.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero__title-line {
    display: block;
    overflow: hidden;
}

.hero__title-line span {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    animation: revealText 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Title starts shortly after cards begin (while cards are still animating) */
.hero__title-line:nth-child(1) span { animation-delay: 0.6s; }
.hero__title-line:nth-child(2) span { animation-delay: 0.75s; }

@keyframes revealText {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__title em {
    font-style: italic;
    color: var(--gold-rich);
}

/* Description - starts while cards are still animating */
.hero__desc {
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.85;
    color: var(--text-medium);
    max-width: 640px;
    margin: 0 auto 2.5rem;
    opacity: 0;
    transform: translateY(15px);
    animation: fadeUp 0.8s ease-out 0.9s forwards;
}

/* CTA */
.hero__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(15px);
    animation: fadeUp 0.8s ease-out 1.1s forwards;
}

.hero__cta-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 500px;
    text-align: center;
    margin-top: 0.5rem;
}

/* ═══════════════════════════════════════════
   HERO BUTTONS - Dedicated stable buttons
═══════════════════════════════════════════ */
.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    cursor: pointer;
    white-space: nowrap;
    box-sizing: border-box;
    transition: box-shadow 0.3s ease;
}

.hero-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Golden shine animation for CTA buttons */
@keyframes btnShine {
    0% {
        left: -100%;
    }
    20%, 100% {
        left: 100%;
    }
}

.hero-btn--primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-rich) 100%);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 15px var(--gold-glow);
    position: relative;
    overflow: hidden;
}

.hero-btn--primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transform: skewX(-20deg);
    animation: btnShine 4s ease-in-out infinite;
    animation-delay: 1s;
}

.hero-btn--primary:hover {
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.35);
}

.hero-btn--primary:active {
    transform: scale(0.98);
}

.hero-btn--secondary {
    background: var(--white);
    color: var(--text-on-light);
    border: 1px solid var(--border-dark-subtle);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-btn--secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 0, 0, 0.08),
        transparent
    );
    transform: skewX(-20deg);
    animation: btnShine 4s ease-in-out infinite;
    animation-delay: 2.5s;
}

.hero-btn--secondary:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.hero-btn--secondary:active {
    transform: scale(0.98);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    cursor: pointer;
    transition: color 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                background 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--gold);
    color: var(--white);
    border: 2px solid var(--gold);
    box-shadow: 0 4px 15px var(--gold-glow);
}

.btn--primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.btn--primary:hover::before {
    left: 100%;
}

.btn--primary:hover {
    background: var(--gold-rich);
    border-color: var(--gold-rich);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(201, 162, 39, 0.35), 0 5px 15px rgba(201, 162, 39, 0.2);
}

.btn--primary:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.3);
}

.btn--secondary {
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid rgba(0, 0, 0, 0.08);
}

.btn--secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.2), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.btn--secondary:hover::before {
    left: 100%;
}

.btn--secondary:hover {
    border-color: var(--gold);
    color: var(--gold-rich);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn--secondary:active {
    transform: translateY(-1px);
}

/* Light section button variants */
.section--light .btn--secondary {
    color: var(--text-on-light);
    border-color: var(--border-light-medium);
}

.section--light .btn--secondary:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.btn:hover svg {
    transform: translateX(3px);
}

/* Trust Section */
.hero__trust {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    opacity: 0;
    transform: translateY(15px);
    animation: fadeUp 0.8s ease-out 1.3s forwards;
}

.hero__trust-label {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.hero__trust-items {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: nowrap;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-medium);
    white-space: nowrap;
}

.hero__trust-icon {
    color: var(--gold);
    flex-shrink: 0;
}

/* Scroll Hint */
.scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    opacity: 0;
    animation: fadeUp 0.8s ease-out 1.8s forwards;
    transition: opacity 0.4s ease;
    z-index: 10;
}

.scroll-hint.hidden {
    opacity: 0 !important;
}

.scroll-hint__text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.scroll-hint__line {
    width: 2px;
    height: 45px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(0.7); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* Responsive - all cards hide together */
@media (max-width: 1000px) {
    .float-card { display: none; }
}

@media (max-width: 768px) {
    .hero__trust {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .hero__trust-items {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }

    .hero__trust-item {
        white-space: normal;
        text-align: center;
        justify-content: center;
        font-size: 0.8rem;
    }
}

@media (max-width: 640px) {
    .hero { padding: 5rem 5%; }

    .hero__title {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
    }

    .hero__desc { font-size: 0.95rem; }

    .hero__cta {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn { width: 100%; justify-content: center; }
    .hero-btn { width: 100%; }
}

/* ═══════════════════════════════════════════
   SECTION STYLING
═══════════════════════════════════════════ */
.section {
    padding: var(--section-padding) 5%;
    position: relative;
}

.section--light {
    background: var(--bg-light);
    color: var(--text-on-light);
}

.section--light-alt {
    background: var(--bg-light-secondary);
    color: var(--text-on-light);
}

.section--dark {
    background: var(--bg-dark);
    color: var(--text-on-dark);
}

.section__header {
    text-align: center;
    margin-bottom: 4rem;
}

.section__label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-light-gold);
    background: var(--accent-gold-glow-light);
}

.section--dark .section__label {
    border-color: var(--border-dark-gold);
    background: var(--accent-gold-glow);
}

.section__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-on-light);
}

.section--dark .section__title {
    color: var(--text-on-dark);
}

.section__subtitle {
    font-size: 1.1rem;
    color: var(--text-on-light-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.section--dark .section__subtitle {
    color: var(--text-on-dark-secondary);
}

/* ═══════════════════════════════════════════
   PROBLEM-AGITATE SECTION (LIGHT) - Compact Icons
═══════════════════════════════════════════ */
.problems {
    background: var(--bg-light-secondary);
}

/* ═══════════════════════════════════════════
   CHALLENGE CARDS - Hero Card Style (Static)
═══════════════════════════════════════════ */
.challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto 3rem;
}

.challenge-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.04),
        0 10px 20px rgba(0, 0, 0, 0.06),
        0 25px 50px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Subtle accent bar at top */
.challenge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.challenge-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 6px 10px rgba(0, 0, 0, 0.06),
        0 15px 30px rgba(0, 0, 0, 0.1),
        0 35px 60px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(0, 0, 0, 0.02);
}

.challenge-card:hover::before {
    opacity: 1;
}

/* Card Header with Icon and Title */
.challenge-card__header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.challenge-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.challenge-card:hover .challenge-card__icon {
    transform: scale(1.05);
}

/* Icon color variants - matching hero cards */
.challenge-card__icon--compass {
    background: linear-gradient(135deg, #5b9aa0 0%, #3d7a80 100%);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(91, 154, 160, 0.3);
}

.challenge-card__icon--warning {
    background: linear-gradient(135deg, #e8a838 0%, #d4922a 100%);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(232, 168, 56, 0.3);
}

.challenge-card__icon--lock {
    background: linear-gradient(135deg, #c17f59 0%, #a36a45 100%);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(193, 127, 89, 0.3);
}

.challenge-card__icon--question {
    background: linear-gradient(135deg, #7a8fa3 0%, #5a7089 100%);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(122, 143, 163, 0.3);
}

.challenge-card__icon--layers {
    background: linear-gradient(135deg, #7a9a6d 0%, #5a7a4d 100%);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(122, 154, 109, 0.3);
}

.challenge-card__icon--cog {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-rich) 100%);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(201, 162, 39, 0.3);
}

.challenge-card__icon svg {
    width: 24px;
    height: 24px;
}

.challenge-card__title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
}

/* Card Body */
.challenge-card__body {
    flex: 1;
}

.challenge-card__text {
    font-size: 0.95rem;
    color: var(--text-on-light-secondary);
    line-height: 1.75;
}

/* Pain indicator - optional visual cue */
.challenge-card__impact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.5rem 0.75rem;
    background: rgba(232, 168, 56, 0.08);
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #b8860b;
}

.challenge-card__impact svg {
    width: 14px;
    height: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .challenges-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .challenge-card {
        padding: 1.5rem;
    }

    .challenge-card__icon {
        width: 44px;
        height: 44px;
    }

    .challenge-card__icon svg {
        width: 22px;
        height: 22px;
    }

    .challenge-card__title {
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    .challenge-card__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
}

/* Interactive Pain Point Card */
.challenge-card--interactive {
    background: linear-gradient(135deg, var(--white) 0%, #faf9f7 100%);
    border: 2px dashed var(--accent-gold);
    position: relative;
    overflow: hidden;
}

.challenge-card--interactive::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.03) 0%, rgba(232, 168, 56, 0.05) 100%);
    pointer-events: none;
}

.challenge-card__icon--interactive {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--gold) 100%);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(201, 162, 39, 0.35);
}

.challenge-card__input-state,
.challenge-card__success-state {
    position: relative;
    z-index: 1;
}

/* Form Styling */
.painpoint-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.painpoint-input {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-dark);
    background: var(--white);
    border: 1.5px solid var(--border-light-subtle);
    border-radius: 10px;
    resize: none;
    transition: all 0.3s ease;
    line-height: 1.5;
}

.painpoint-input:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.painpoint-input::placeholder {
    color: var(--text-on-light-muted);
}

.painpoint-email {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-dark);
    background: var(--white);
    border: 1.5px solid var(--border-light-subtle);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.painpoint-email:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.painpoint-email::placeholder {
    color: var(--text-on-light-muted);
}

.painpoint-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--gold) 100%);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
}

.painpoint-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.4);
}

.painpoint-submit:active {
    transform: translateY(0);
}

.painpoint-submit svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.painpoint-submit:hover svg {
    transform: translateX(3px);
}

/* Success State */
.challenge-card__success-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1rem;
    min-height: 200px;
}

.success-checkmark {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.success-checkmark svg {
    width: 100%;
    height: 100%;
}

.checkmark-circle {
    stroke: var(--accent-gold);
    stroke-width: 2;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    animation: checkmark-circle 0.6s ease-in-out forwards;
}

.checkmark-check {
    stroke: var(--accent-gold);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: checkmark-check 0.3s ease-in-out 0.4s forwards;
}

@keyframes checkmark-circle {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes checkmark-check {
    to {
        stroke-dashoffset: 0;
    }
}

.success-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    animation: fadeInUp 0.5s ease-out 0.5s both;
}

.success-text {
    font-size: 0.95rem;
    color: var(--text-on-light-secondary);
    line-height: 1.6;
    animation: fadeInUp 0.5s ease-out 0.6s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Card transition animation */
.challenge-card--interactive.submitting .challenge-card__input-state {
    animation: fadeOut 0.3s ease-out forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: scale(0.95);
    }
}

/* ═══════════════════════════════════════════
   VALUE STACK SECTION (LIGHT)
═══════════════════════════════════════════ */
.value-stack {
    background: var(--bg-light);
    padding-top: 0;
}

.value-stack__intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.value-stack__intro p {
    font-size: 1.05rem;
    color: var(--text-on-light-secondary);
    line-height: 1.8;
}

.tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.tier-card {
    background: var(--bg-light-card);
    border: 1px solid var(--border-light-subtle);
    padding: 2.5rem 2rem;
    position: relative;
    transition: transform 0.5s var(--ease-out-expo), border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
    transform-style: preserve-3d;
}

.tier-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    opacity: 0;
    transition: opacity 0.4s ease;
    box-shadow: 0 25px 60px rgba(201, 162, 39, 0.1), 0 10px 30px rgba(0, 0, 0, 0.08);
    pointer-events: none;
    z-index: -1;
}

.tier-card--featured {
    border-color: var(--accent-gold);
    background: linear-gradient(135deg, var(--bg-light-card), rgba(201, 162, 39, 0.04));
}

.tier-card--featured::before {
    content: 'Empfohlen';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gold);
    color: var(--bg-dark);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    z-index: 2;
}

.tier-card:hover {
    transform: translateY(-10px) rotateX(2deg);
    border-color: var(--border-light-gold);
}

.tier-card:hover::after {
    opacity: 1;
}

.tier-card__header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-light-subtle);
    margin-bottom: 1.5rem;
}

.tier-card__name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-on-light);
    margin-bottom: 0.5rem;
}

.tier-card__phase {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 0.25rem;
}

.tier-card__outcome {
    margin-top: auto;
    padding: 1rem 1.25rem;
    background: var(--accent-gold-glow-light);
    border-left: 3px solid var(--accent-gold);
    font-size: 0.9rem;
    color: var(--accent-gold-dark);
    font-style: italic;
    line-height: 1.6;
}

.tier-card__description {
    font-size: 0.95rem;
    color: var(--text-on-light-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.tier-card__features {
    list-style: none;
    flex-grow: 1;
}

.tier-card__features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-on-light-secondary);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.tier-card__features li::before {
    content: '✓';
    color: var(--accent-gold);
    font-weight: 600;
    flex-shrink: 0;
}

.tier-card__value {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light-subtle);
}

.tier-card__value-label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-on-light-muted);
    margin-bottom: 0.5rem;
}

.tier-card__value-text {
    font-size: 0.9rem;
    color: var(--accent-gold-dark);
    font-style: italic;
}

/* ROI Box */
.roi-box {
    background: var(--bg-light-card);
    border: 1px solid var(--border-light-gold);
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.roi-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.roi-box__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-on-light);
    margin-bottom: 1.5rem;
}

.roi-box__stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.roi-box__stat {
    text-align: center;
}

.roi-box__stat-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--accent-gold-dark);
    transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.roi-box__stat-value.counting {
    text-shadow: 0 0 20px rgba(201, 162, 39, 0.4);
}

.roi-box__stat-value .counter-num {
    display: inline-block;
    min-width: 0.6em;
    transition: transform 0.1s ease;
}

.roi-box__stat:hover .roi-box__stat-value {
    transform: scale(1.05);
    text-shadow: 0 0 30px rgba(201, 162, 39, 0.5);
}

.roi-box__stat-label {
    font-size: 0.85rem;
    color: var(--text-on-light-muted);
    margin-top: 0.25rem;
}

.roi-box__text {
    font-size: 1rem;
    color: var(--text-on-light-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ═══════════════════════════════════════════
   NEW LEISTUNGEN SECTION (Dual Audience)
═══════════════════════════════════════════ */

/* Core Message Box */
.core-message {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--border-light-subtle);
    position: relative;
}

.core-message::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -1px;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light));
    border-radius: 0 0 3px 3px;
}

.core-message__text {
    font-size: 1.1rem;
    color: var(--text-on-light-secondary);
    line-height: 1.7;
}

.core-message__text strong {
    color: var(--text-on-light);
    font-weight: 600;
}

.core-message__highlight {
    color: var(--accent-gold-dark);
    font-weight: 500;
}

/* Dual Audience Split */
.audience-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (max-width: 800px) {
    .audience-split {
        grid-template-columns: 1fr;
    }
}

.audience-panel {
    background: var(--white);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid var(--border-light-subtle);
    position: relative;
    transition: all 0.4s var(--ease-out-expo);
}

.audience-panel:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}

.audience-panel__badge {
    position: absolute;
    top: -12px;
    left: 2rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    padding: 0.5rem 1rem;
    border-radius: 100px;
    box-shadow: 0 4px 12px var(--accent-gold-glow);
}

.audience-panel__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--accent-gold-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.audience-panel__icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent-gold);
}

.audience-panel__title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--text-on-light);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.audience-panel__description {
    font-size: 0.95rem;
    color: var(--text-on-light-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.audience-panel__services {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.audience-panel__service {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-light-elevated);
    border-radius: 12px;
    transition: all 0.3s var(--ease-out-expo);
}

.audience-panel__service:hover {
    background: var(--bg-cream);
}

.audience-panel__service-icon {
    width: 20px;
    height: 20px;
    color: var(--accent-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.audience-panel__service-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-on-light);
    margin-bottom: 0.25rem;
}

.audience-panel__service-content p {
    font-size: 0.85rem;
    color: var(--text-on-light-muted);
    line-height: 1.5;
}

/* Services Divider */
.services-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
    color: var(--text-on-light-muted);
}

.services-divider::before,
.services-divider::after {
    content: '';
    flex: 1;
    max-width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-light-gold), transparent);
}

.services-divider__text {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-gold);
}

/* All Services Grid */
.all-services {
    margin-bottom: 4rem;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

@media (max-width: 800px) {
    .services-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .services-list {
        grid-template-columns: 1fr;
    }
}

.service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--white);
    border-radius: 14px;
    border: 1px solid var(--border-light-subtle);
    transition: all 0.3s var(--ease-out-expo);
}

.service-item:hover {
    border-color: var(--border-light-gold);
    transform: translateY(-2px);
}

.service-item__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--accent-gold-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-item__icon svg {
    width: 22px;
    height: 22px;
    color: var(--accent-gold);
}

.service-item__content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-on-light);
    margin-bottom: 0.15rem;
}

.service-item__content p {
    font-size: 0.8rem;
    color: var(--text-on-light-muted);
}

/* Workshop Example Section */
.workshop-example {
    background: var(--white);
    border-radius: 24px;
    padding: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-light-subtle);
}

.workshop-example::before {
    content: 'Beispiel';
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    padding: 0.4rem 0.85rem;
    border-radius: 100px;
    box-shadow: 0 4px 12px var(--accent-gold-glow);
}

.workshop-example__header {
    margin-bottom: 2rem;
}

.workshop-example__title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--text-on-light);
    margin-bottom: 0.5rem;
}

.workshop-example__subtitle {
    font-size: 0.95rem;
    color: var(--text-on-light-secondary);
}

.workshop-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    position: relative;
}

/* Timeline connecting line - positioned behind cards */
.workshop-timeline::before {
    content: '';
    position: absolute;
    top: 44px;
    left: calc(12.5% + 20px);
    right: calc(12.5% + 20px);
    height: 3px;
    background: var(--bg-cream);
    border-radius: 2px;
    z-index: 0;
}

/* Progress line overlay */
.workshop-timeline::after {
    content: '';
    position: absolute;
    top: 44px;
    left: calc(12.5% + 20px);
    right: calc(12.5% + 20px);
    height: 3px;
    background: linear-gradient(90deg,
        var(--accent-gold) 0%,
        var(--accent-gold) 25%,
        var(--accent-gold-light) 50%,
        var(--accent-gold) 75%,
        var(--accent-gold) 100%);
    border-radius: 2px;
    z-index: 0;
}

@media (max-width: 900px) {
    .workshop-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .workshop-timeline::before,
    .workshop-timeline::after {
        display: none;
    }
}

@media (max-width: 500px) {
    .workshop-timeline {
        grid-template-columns: 1fr;
    }
}

.workshop-step {
    background: var(--bg-cream);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all 0.3s var(--ease-out-expo);
    border: 1px solid var(--border-light-subtle);
}

.workshop-step:hover {
    background: var(--bg-soft);
    transform: translateY(-2px);
}


.workshop-step__number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    color: var(--white);
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 12px var(--accent-gold-glow);
    position: relative;
    z-index: 2;
}

.workshop-step__label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-gold-dark);
    margin-bottom: 0.35rem;
}

.workshop-step__title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-on-light);
    margin-bottom: 0.5rem;
}

.workshop-step__text {
    font-size: 0.85rem;
    color: var(--text-on-light-secondary);
    line-height: 1.5;
}

/* New ROI Section (replaces old roi-box) */
.roi-section {
    background: var(--bg-cream);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.roi-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light), var(--accent-gold));
}

.roi-section__header {
    text-align: center;
    margin-bottom: 2rem;
}

.roi-section__title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--text-on-light);
    margin-bottom: 0.25rem;
}

.roi-section__subtitle {
    font-size: 0.9rem;
    color: var(--text-on-light-muted);
}

.roi-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 600px) {
    .roi-metrics {
        grid-template-columns: 1fr;
    }
}

.roi-metric {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
}

.roi-metric__value {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 0.35rem;
    line-height: 1;
}

.roi-metric__label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-on-light-secondary);
    margin-bottom: 0.5rem;
}

.roi-metric__context {
    font-size: 0.8rem;
    color: var(--text-on-light-muted);
    line-height: 1.5;
}

.roi-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-on-light-muted);
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light-subtle);
}

/* ═══════════════════════════════════════════
   SOCIAL PROOF SECTION (LIGHT ALT)
═══════════════════════════════════════════ */
.social-proof {
    background: var(--bg-light-secondary);
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-light-card);
    border: 1px solid var(--border-light-subtle);
    padding: 2.5rem;
    position: relative;
    transition: transform 0.5s var(--ease-out-expo), border-color 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
    transform-style: preserve-3d;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(201, 162, 39, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    opacity: 0;
    transition: opacity 0.4s ease;
    box-shadow: 0 20px 50px rgba(201, 162, 39, 0.12), 0 8px 24px rgba(0, 0, 0, 0.08);
    pointer-events: none;
}

.testimonial-card:hover {
    border-color: var(--border-light-gold);
    transform: translateY(-8px) rotateX(2deg) rotateY(-1deg);
}

.testimonial-card:hover::before,
.testimonial-card:hover::after {
    opacity: 1;
}

.testimonial-card__quote {
    font-family: var(--font-display);
    font-size: 6rem;
    color: var(--accent-gold);
    opacity: 0.2;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    line-height: 1;
}

.testimonial-card__result {
    display: inline-block;
    background: var(--accent-gold-glow-light);
    border: 1px solid var(--border-light-gold);
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-gold-dark);
    margin-bottom: 1.25rem;
}

.testimonial-card__text {
    font-size: 1rem;
    color: var(--text-on-light-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light-subtle);
}

.testimonial-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-light-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--accent-gold-dark);
    border: 1px solid var(--border-light-gold);
}

.testimonial-card__name {
    font-weight: 500;
    color: var(--text-on-light);
}

.testimonial-card__role {
    font-size: 0.85rem;
    color: var(--text-on-light-muted);
}

.testimonial-card__avatar-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--border-light-gold);
    flex-shrink: 0;
}

.testimonial-card__name-link {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

.testimonial-card__name-link:hover .testimonial-card__name {
    color: var(--accent-gold-dark);
}

/* ═══════════════════════════════════════════
   TRANSFORMATION SECTION (LIGHT)
═══════════════════════════════════════════ */
.transformation {
    background: var(--bg-light);
    overflow: hidden;
}

.transformation__timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.transformation__timeline::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-light-subtle);
}

.transformation__timeline::after {
    content: '';
    position: absolute;
    left: 35px;
    top: 0;
    width: 2px;
    height: 0;
    background: linear-gradient(180deg, var(--accent-gold), var(--accent-gold-light));
    transition: height 0.1s ease-out;
    box-shadow: 0 0 10px rgba(201, 162, 39, 0.4);
}

.transformation__stage {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    padding-left: 0;
}

.transformation__marker {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: var(--bg-light);
    border: 2px solid var(--border-light-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-on-light-muted);
    z-index: 1;
    transition: all 0.5s var(--ease-out-expo);
    position: relative;
}

.transformation__marker::before {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2px solid transparent;
    opacity: 0;
    transition: all 0.5s var(--ease-out-expo);
}

.transformation__stage.active .transformation__marker {
    border-color: var(--accent-gold);
    color: var(--accent-gold-dark);
    background: rgba(201, 162, 39, 0.05);
}

.transformation__stage.active .transformation__marker::before {
    border-color: rgba(201, 162, 39, 0.3);
    opacity: 1;
    animation: markerPulse 2s ease-in-out infinite;
}

@keyframes markerPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.15); opacity: 0; }
}

.transformation__stage.completed .transformation__marker {
    border-color: var(--accent-gold);
    color: var(--accent-gold-dark);
    background: rgba(201, 162, 39, 0.08);
}

.transformation__content {
    flex: 1;
    padding-top: 0.5rem;
}

.transformation__time {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-gold-dark);
    margin-bottom: 0.5rem;
}

.transformation__title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--text-on-light);
    margin-bottom: 0.75rem;
}

.transformation__text {
    font-size: 0.95rem;
    color: var(--text-on-light-secondary);
    line-height: 1.8;
}

.transformation__features {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
}

.transformation__features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-on-light-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.transformation__features li::before {
    content: '✓';
    color: var(--accent-gold);
    font-weight: 600;
    flex-shrink: 0;
}

.transformation__outcome {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: var(--accent-gold-glow-light);
    border-left: 3px solid var(--accent-gold);
    font-size: 0.9rem;
    color: var(--accent-gold-dark);
    font-style: italic;
}

/* ═══════════════════════════════════════════
   SECONDARY CTA SECTION (LIGHT)
═══════════════════════════════════════════ */
.secondary-cta {
    background: var(--bg-light-secondary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.secondary-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.secondary-cta__avatars {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.secondary-cta__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid var(--bg-light-secondary);
    margin-left: -12px;
    background: var(--bg-light-card);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.secondary-cta__avatar:first-child {
    margin-left: 0;
}

.secondary-cta__avatar--count {
    background: var(--accent-gold);
    color: var(--bg-dark);
    font-size: 0.75rem;
    font-weight: 600;
}

.secondary-cta__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--text-on-light);
    margin-bottom: 1rem;
}

.secondary-cta__subtitle {
    font-size: 1.1rem;
    color: var(--text-on-light-secondary);
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.btn--large {
    padding: 1.25rem 3rem;
    font-size: 1rem;
}

.secondary-cta__email-intro {
    font-size: 1rem;
    color: var(--text-on-light-secondary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.secondary-cta__escape-intro {
    font-size: 0.9rem;
    color: var(--text-on-light-secondary);
    margin-top: 3rem;
    margin-bottom: 1rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
}

.escape-btn-placeholder {
    display: block;
    height: 10px;
    margin-top: 0.5rem;
}

.escape-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    background: var(--white);
    color: var(--text-on-light);
    border: 1px solid var(--border-dark-subtle);
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: fixed;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
}

.escape-btn.visible {
    opacity: 1;
    pointer-events: auto;
}

.escape-btn.moving {
    transition: left 0.2s ease-out, top 0.2s ease-out;
}

/* ═══════════════════════════════════════════
   FOOTER (DARK)
═══════════════════════════════════════════ */
.footer {
    background: var(--bg-dark);
    padding: 3rem 5%;
    border-top: 1px solid var(--border-dark-subtle);
}

.footer__container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__logo {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-on-dark);
    text-decoration: none;
}

.footer__tagline {
    font-size: 0.85rem;
    color: var(--text-on-dark-muted);
}

.footer__nav {
    display: flex;
    gap: 2rem;
}

.footer__nav-link {
    font-size: 0.85rem;
    color: var(--text-on-dark-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__nav-link:hover {
    color: var(--accent-gold);
}

.footer__social {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.footer__social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-dark-subtle);
    color: var(--text-on-dark-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer__social-link:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.footer__bottom {
    max-width: var(--container-max);
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--border-dark-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer__legal {
    font-size: 0.8rem;
    color: var(--text-on-dark-muted);
}

.footer__legal-links {
    display: flex;
    gap: 1.5rem;
}

.footer__legal-link {
    font-size: 0.8rem;
    color: var(--text-on-dark-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__legal-link:hover {
    color: var(--accent-gold);
}

/* ═══════════════════════════════════════════
   IMPRESSUM MODAL
═══════════════════════════════════════════ */
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out-expo);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.modal__content {
    position: relative;
    width: 100%;
    max-width: 700px;
    max-height: 80vh;
    overflow-y: auto;
    background: var(--bg-light-card);
    border: 1px solid var(--border-light-medium);
    padding: 3rem;
    transform: translateY(30px);
    transition: transform 0.4s var(--ease-out-expo);
}

.modal.active .modal__content {
    transform: translateY(0);
}

.modal__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--border-light-subtle);
    color: var(--text-on-light-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal__close:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.modal__title {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 500;
    color: var(--text-on-light);
}

.modal__section {
    margin-bottom: 1.5rem;
}

.modal__section h3 {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-gold-dark);
    margin-bottom: 0.5rem;
}

.modal__section p {
    font-size: 0.95rem;
    color: var(--text-on-light-secondary);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
    will-change: opacity, transform;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
    will-change: auto;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* Performance: content-visibility for below-fold sections */
.section:not(.hero) {
    content-visibility: auto;
    contain-intrinsic-size: 0 800px;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .transformation__timeline::before {
        left: 35px;
    }

    .transformation__stage {
        gap: 1.5rem;
    }

    .transformation__marker {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }

    .hero__trust-items {
        gap: 1rem;
    }

    .hero__trust-item {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    /* Hide desktop nav, show hamburger */
    .nav,
    .nav__links {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .nav-mobile,
    .nav-mobile-overlay,
    .nav-mobile__bug {
        display: block;
    }

    .nav-wrapper {
        left: auto;
        right: 1.5rem;
        transform: translateX(0) translateY(-150%);
    }

    @keyframes navSlideIn {
        to { transform: translateX(0) translateY(0); }
    }

    .hero {
        padding: 5rem 5% 4rem;
        padding-bottom: calc(4rem + 80px);
        min-height: 100svh;
    }

    .hero__title {
        font-size: clamp(1.8rem, 8vw, 2.8rem);
        margin-bottom: 1rem;
    }

    .hero__desc {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 2rem;
    }

    .hero__cta {
        width: 100%;
        gap: 1rem;
    }

    .hero__cta .btn,
    .hero-btn {
        width: 100%;
    }

    .hero__trust {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .hero__trust-items {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }

    .hero__trust-item {
        white-space: normal;
        text-align: center;
        justify-content: center;
        font-size: 0.8rem;
    }

    /* Sections */
    .section {
        padding: clamp(3rem, 8vw, 5rem) 5%;
    }

    .section__header {
        margin-bottom: 2.5rem;
    }

    .section__title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .section__subtitle {
        font-size: 0.95rem;
    }

    /* Timeline */
    .transformation__timeline::before,
    .transformation__timeline::after {
        left: 25px;
    }

    .transformation__stage {
        gap: 1rem;
    }

    .transformation__marker {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }

    .transformation__title {
        font-size: 1.15rem;
    }

    .transformation__text {
        font-size: 0.9rem;
    }

    /* Tiers and Testimonials */
    .tiers {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .tier-card {
        padding: 2rem 1.5rem;
    }

    .testimonials {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .testimonial-card__text {
        font-size: 0.9rem;
    }

    /* ROI Box */
    .roi-box {
        padding: 2rem 1.5rem;
    }

    .roi-box__stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .roi-box__stat-value {
        font-size: 2rem;
    }

    /* Secondary CTA */
    .secondary-cta__title {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
    }

    .secondary-cta__subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    /* Footer */
    .footer {
        padding: 2rem 5%;
    }

    .footer__container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .footer__social {
        justify-content: center;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
        padding-top: 1.5rem;
        margin-top: 1.5rem;
    }

    /* Modal */
    .modal__content {
        padding: 2rem 1.5rem;
        max-height: 90vh;
    }

    .modal__title {
        font-size: 1.5rem;
        padding-right: 2rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    /* Hide desktop hero, show mobile hero */
    .hero-desktop {
        display: none !important;
    }

    .hero-mobile {
        display: flex;
        flex-direction: column;
        height: 860px;
        min-height: 860px;
        max-height: 860px;
        overflow: hidden;
    }

    /* Reset parent hero container for mobile */
    .hero {
        height: 880px;
        min-height: 880px;
        max-height: 880px;
        padding: 0;
        padding-bottom: 20px;
        overflow: hidden;
    }

    /* Prevent horizontal scroll affecting centering */
    body {
        overflow-x: hidden;
    }

    /* Disable content-visibility on mobile to fix scroll calculation */
    .section:not(.hero) {
        content-visibility: visible;
        contain-intrinsic-size: auto;
    }

    /* Reduce gap after mobile hero */
    .problems {
        padding-top: 2rem;
    }

    .hero__title {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }

    .btn {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 0.85rem;
    }

    .transformation__marker {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .transformation__timeline::before,
    .transformation__timeline::after {
        left: 22px;
    }

    .roi-box__stat-value {
        font-size: 1.75rem;
    }
}

/* Landscape mode on mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 4rem 5% 3rem;
    }

    .scroll-hint {
        display: none;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Disable hover effects that don't work well on touch */
    .challenge-card:hover,
    .testimonial-card:hover,
    .tier-card:hover {
        transform: none;
    }

    /* Make touch targets larger */
    .nav-mobile__link {
        padding: 1rem 2.5rem;
        min-height: 48px;
    }

    .btn {
        min-height: 48px;
    }
}
