/* ===== BEGEMOT DESIGN SYSTEM ===== */

/* Carbon Black Font (Headline Font) */
@font-face {
    font-family: 'Carbon';
    src: url('assets/fonts/carbon-black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Begemot Brand Colors (Offizieller Styleguide 2023) */
    --bp-violet:  #50037F;  /* Hauptfarbe */
    --bp-pink:    #AC1361;
    --bp-orange:  #ED8C00;

    /* Begemot Gradient (33deg, Violett→Pink→Orange) */
    --bp-gradient: linear-gradient(33deg,
        #50037F 11%,
        #AC1361 39%,
        #ED8C00 77%
    );

    /* Begemot Gradient Alternativen */
    --bp-gradient-horizontal: linear-gradient(90deg,
        #50037F 0%,
        #AC1361 50%,
        #ED8C00 100%
    );

    --bp-gradient-intense: linear-gradient(33deg,
        #50037F 0%,
        #AC1361 35%,
        #ED8C00 70%
    );

    /* KitaPlaner Produktfarben (vom Cover) */
    --kita-orange: #FF9300;
    --kita-red: #EE612C;
    --kita-pink: #C8267C;
    --kita-purple: #6B2C91;

    /* Abgeleitete Farben */
    --begemot-orange-dark: #D17A00;  /* Dunklere Orange-Variante */
    --bp-violet-light: #7A1BB8;      /* Helleres Violett */

    /* Greys & Neutrals */
    --begemot-text: #333333;
    --begemot-text-light: #333333;
    --begemot-bg-light: #EDEDED;
    --begemot-footer: #3A3A3A;
    --bp-white: #FFFFFF;
    --bp-black: #000000;

    /* Typography (Begemot Styleguide 2023) */
    --font-headline: 'Carbon', 'Arial Black', sans-serif;
    --font-body: "Helvetica Neue", Arial, sans-serif;

    /* Harmonische Type Scale (Perfect Fourth - 1.333, Basis: 16px) */
    --text-display: 48px;    /* H1 - Hero Headlines */
    --text-h2: 36px;          /* H2 - Section Headlines */
    --text-h3: 27px;          /* H3 - Card Headlines (1.333 × 20px) */
    --text-lead: 20px;        /* Lead Text, Subtitles */
    --text-large: 18px;       /* Hervorgehobener Text */
    --text-body: 16px;        /* Standard (MINIMUM!) */
    --text-nav: 14px;         /* Navigation (erlaubt) */
    --text-footer: 13px;      /* Footer Copyright (erlaubt) */
}

* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--begemot-text);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: #FFFFFF;
}

h1, h2, h3, h4 {
    font-family: var(--font-headline);
    font-weight: 900;
    margin-top: 0;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-wrap: balance;
}

h1 {
    font-size: 48px;
    color: white;
    line-height: 1.1;
    margin-bottom: 20px;
}

h2 {
    font-size: 36px;
    color: var(--bp-violet);
    margin-bottom: 25px;
    line-height: 1.2;
}

h3 {
    font-size: 27px;
    color: var(--bp-violet);
    margin-bottom: 15px;
    line-height: 1.3;
}

p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* ===== NAVIGATION (Begemot Style) ===== */
.navbar {
    background: #FFFFFF;
    border-bottom: 1px solid var(--begemot-bg-light);
    margin-bottom: 0;
    min-height: 70px;
}

.navbar-brand {
    padding: 15px;
    height: 70px;
}

.navbar-brand img {
    height: 40px;
    width: auto;
}

.navbar-nav > li > a {
    color: var(--begemot-text);
    font-size: 14px;
    padding-top: 25px;
    padding-bottom: 25px;
    transition: color 0.3s;
}

.navbar-nav > li > a:hover,
.navbar-nav > li > a:focus {
    color: var(--bp-violet);
    background: transparent;
}

.nav-cta {
    background: var(--bp-gradient) !important;
    color: white !important;
    border-radius: 0;
    margin-left: 10px;
    font-weight: 600 !important;
    letter-spacing: 0.03em;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(80, 3, 127, 0.3);
}

.nav-cta:hover {
    background: var(--bp-gradient-intense) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(80, 3, 127, 0.5) !important;
}

/* ===== NEUE REDUZIERTE NAVIGATION ===== */

/* Navbar Header - Logo + Zurück-Link Container */
.navbar-header {
    display: flex;
    align-items: center;
    gap: 24px;
    float: left;
}

/* Dezenter Zurück-Link */
.nav-back-link {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    color: rgba(80, 3, 127, 0.5);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 8px 12px;
    border-radius: 6px;
    letter-spacing: 0.01em;
    font-weight: 400;
    position: relative;
    overflow: hidden;
}

/* Subtiler Hover-Effekt */
.nav-back-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(80, 3, 127, 0.05);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-back-link:hover::before {
    opacity: 1;
}

.nav-back-link:hover {
    color: rgba(80, 3, 127, 0.85);
    text-decoration: none;
    transform: translateX(-2px);
}

.nav-back-link svg {
    transition: transform 0.3s ease;
}

.nav-back-link:hover svg {
    transform: translateX(-3px);
}

/* Rechter CTA-Container */
.navbar-right-cta {
    float: right;
    padding: 15px 0;
    display: flex;
    align-items: center;
    height: 70px;
}

/* Prominenter "Jetzt bestellen" Button - Initial transparent, violett nach Scroll */
.nav-cta-button {
    display: inline-block;
    padding: 12px 28px;
    background: transparent;
    color: transparent;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-decoration: none;
    border-radius: 6px;
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: none;
    position: relative;
    overflow: hidden;
    pointer-events: none;
}

/* Violett wenn Hero-Button nicht mehr sichtbar */
.nav-cta-button.visible {
    background: var(--bp-violet);
    color: white;
    border-color: var(--bp-violet);
    box-shadow: 0 2px 12px rgba(80, 3, 127, 0.3);
    pointer-events: auto;
}

.nav-cta-button.visible:hover {
    text-decoration: none;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(80, 3, 127, 0.5);
    opacity: 0.9;
}

.nav-cta-button.visible:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(80, 3, 127, 0.4);
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
    .navbar-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        width: 100%;
    }

    .nav-back-link {
        font-size: 12px;
        padding: 6px 8px;
    }

    .nav-back-link svg {
        width: 12px;
        height: 12px;
        margin-right: 4px;
    }

    /* Navigation CTA Button auf Mobile ausblenden */
    .navbar-right-cta {
        display: none;
    }
}

/* ===== HERO SECTION (Neue Gallery-Struktur) ===== */
.hero {
    background: var(--bp-gradient);
    padding: 80px 0 100px;
    color: white;
    position: relative;
    overflow: hidden;
}

/* Bootstrap Container übernimmt Padding */

.hero-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 20px;
    align-items: center;
}

/* Thumbnail Container mit Navigation */
.gallery-thumbnails-wrapper {
    flex: 0 0 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

/* Thumbnails - Links */
.gallery-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
    position: relative;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    user-select: none;
}

.gallery-thumbnails:active {
    cursor: grabbing;
}

/* Hide scrollbar but keep functionality */
.gallery-thumbnails::-webkit-scrollbar {
    display: none;
}

/* Thumbnail Navigation Buttons */
.thumb-nav-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    user-select: none;
}

.thumb-nav-btn:hover {
    background: var(--begemot-orange);
    transform: scale(1.1);
}

.thumb-nav-btn:active {
    transform: scale(0.95);
}

.thumb-nav-btn.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.gallery-thumb {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
    opacity: 0.7;
}

.gallery-thumb:hover {
    opacity: 1;
    transform: scale(1.05);
    border-color: rgba(255,255,255,0.8);
}

.gallery-thumb.active {
    opacity: 1;
    border-color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hauptbild - Mitte */
.gallery-main {
    flex: 0 0 450px;
    position: relative;
    cursor: zoom-in;
}

.gallery-main-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    transition: opacity 0.3s ease;
}

/* Lupen-Icon */
.zoom-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.gallery-main:hover .zoom-icon {
    background: var(--begemot-orange);
    opacity: 1;
    transform: scale(1.1);
}

.zoom-icon svg {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

/* Text-Content - Rechts */
.hero .hero-content {
    flex: 1;
    padding-left: 40px;
    padding-right: 20px;
}

.cta-with-disclaimer {
    display: inline-block;
    text-align: center;
}

.hero .btn-primary {
    display: inline-block;
    max-width: 100%;
    white-space: normal;
    line-height: 1.3;
}

.hero .price-disclaimer {
    color: white;
    font-size: 12px;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 0;
    opacity: 0.85;
}

.hero h1 {
    font-family: var(--font-headline);
    color: white;
    font-size: 48px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 300;
}

.hero-text {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Responsive Anpassungen - Tablet */
@media (max-width: 991px) {
    /* Gallery Tablet Layout: Hauptbild oben, Thumbnails unten horizontal (wie Mobile, aber größer) */
    .hero-wrapper {
        flex-direction: column;
        gap: 0;
    }

    .gallery-main {
        flex: 0 0 auto;
        width: 100%;
        order: 1;
        margin-top: 2rem;
    }

    .gallery-thumbnails-wrapper {
        flex: 0 0 auto;
        width: 100%;
        order: 2;
        flex-direction: row;
        gap: 12px;
        align-items: center;
        justify-content: center;
        margin-top: 20px;
    }

    .gallery-thumbnails {
        flex-direction: row;
        max-height: none;
        max-width: calc(100% - 100px);
        overflow-x: auto;
        overflow-y: hidden;
        touch-action: pan-x;
        gap: 10px;
        padding: 10px 0;
    }

    .gallery-thumb {
        width: 80px;
        height: 80px;
        flex-shrink: 0;
    }

    /* Navigation Buttons: Links und Rechts, mittelgroß */
    .thumb-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
        flex-shrink: 0;
        align-self: flex-start;
        margin-top: 42px;
    }

    .thumb-nav-up {
        order: 0;
    }

    .thumb-nav-down {
        order: 2;
    }

    .gallery-thumbnails {
        order: 1;
    }

    /* Pfeile horizontal: ◀ ▶ */
    .thumb-nav-up {
        text-indent: -9999px;
        position: relative;
    }

    .thumb-nav-up::after {
        content: "◀";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        text-indent: 0;
        font-size: 18px;
    }

    .thumb-nav-down {
        text-indent: -9999px;
        position: relative;
    }

    .thumb-nav-down::after {
        content: "▶";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        text-indent: 0;
        font-size: 18px;
    }

    .hero-content {
        order: 3;
        padding-left: 0;
        text-align: center;
        margin-top: 30px;
    }

    .hero h1 {
        font-size: 38px;
    }

    /* Tablet Padding für alle Sections */

    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .problem-section,
    .features-section,
    .product-section,
    .about-section,
    .faq-section,
    .cta-section {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 768px) {
    /* Gallery Mobile Layout: Hauptbild oben, Thumbnails unten horizontal */
    .hero-wrapper {
        flex-direction: column;
        gap: 0;
    }

    .gallery-main {
        flex: 0 0 auto;
        width: 100%;
        order: 1;
        margin-top: 2rem;
    }

    .gallery-thumbnails-wrapper {
        margin-top: 20px;
    }

    .hero-content {
        order: 3;
        margin-top: 20px;
        padding: 0 10px;
    }

    /* Thumbnails horizontal unter dem Hauptbild */
    .gallery-thumbnails-wrapper {
        flex: 0 0 auto;
        width: 100%;
        order: 2;
        flex-direction: row;
        gap: 12px;
        align-items: center;
        justify-content: center;
    }

    .gallery-thumbnails {
        flex-direction: row;
        max-height: none;
        max-width: calc(100% - 80px);
        overflow-x: auto;
        overflow-y: hidden;
        touch-action: pan-x;
        gap: 8px;
        padding: 8px 0;
    }

    .gallery-thumb {
        width: 60px;
        height: 60px;
        flex-shrink: 0;
    }

    /* Navigation Buttons: Links und Rechts, kleiner */
    .thumb-nav-btn {
        width: 32px;
        height: 32px;
        font-size: 16px;
        flex-shrink: 0;
        align-self: flex-start;
        margin-top: 38px;
    }

    .thumb-nav-up {
        order: 0;
    }

    .thumb-nav-down {
        order: 2;
    }

    /* Thumbnails Container in der Mitte */
    .gallery-thumbnails {
        order: 1;
    }

    /* Pfeile horizontal: ◀ ▶ - Original-Text überschreiben */
    .thumb-nav-up {
        text-indent: -9999px;
        position: relative;
    }

    .thumb-nav-up::after {
        content: "◀";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        text-indent: 0;
        font-size: 16px;
    }

    .thumb-nav-down {
        text-indent: -9999px;
        position: relative;
    }

    .thumb-nav-down::after {
        content: "▶";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        text-indent: 0;
        font-size: 16px;
    }

    .hero h1 {
        font-size: 28px;
        line-height: 1.2;
        word-wrap: break-word;
        padding: 0 5px;
    }

    .hero-subtitle {
        font-size: 18px;
        line-height: 1.3;
        padding: 0 5px;
    }

    .hero-text {
        font-size: 15px;
        line-height: 1.5;
        padding: 0 5px;
    }

    /* Hero CTA Button auf Mobile: Weiß mit violetter Schrift */
    .hero .btn-primary {
        background: white;
        color: var(--bp-violet);
        border: 2px solid var(--bp-violet);
        box-shadow: 0 4px 12px rgba(80, 3, 127, 0.2);
        font-size: 16px;
        padding: 14px 20px;
        width: calc(100% - 20px);
        max-width: 100%;
        white-space: normal;
        line-height: 1.3;
        margin-left: auto;
        margin-right: auto;
    }

    .hero .btn-primary::before {
        display: none; /* Gradient-Animation deaktivieren */
    }

    .hero .btn-primary:hover,
    .hero .btn-primary:focus {
        background: white;
        color: var(--bp-violet);
        border-color: var(--bp-violet);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(80, 3, 127, 0.3);
    }

    .hero .btn-primary:active {
        transform: translateY(0);
        box-shadow: 0 3px 10px rgba(80, 3, 127, 0.25);
    }

    /* Mobile Padding für alle Sections */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .feature-grid {
        padding: 0 10px;
    }

    .problem-section,
    .features-section,
    .product-section,
    .about-section,
    .faq-section,
    .cta-section {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* ===== LIGHTBOX / LUPE (Bildvergrößerung) ===== */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: block;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
    box-shadow: 0 4px 30px rgba(255, 255, 255, 0.1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #ffffff;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10000;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--begemot-orange);
    transform: scale(1.1);
}

/* Lightbox Navigation */
.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
    font-size: 60px;
    font-weight: 300;
    cursor: pointer;
    padding: 20px;
    user-select: none;
    transition: all 0.3s;
    z-index: 10000;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--begemot-orange);
    transform: translateY(-50%) scale(1.2);
}

.lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 15px 0;
    font-size: 16px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 40px;
    }

    .lightbox-content {
        max-width: 95%;
    }
}

/* ===== BUTTONS (Begemot Style - Neu 2023) ===== */

/* Primary CTA - Violett mit weißer Schrift (Desktop) */
.btn-primary {
    background: var(--bp-violet);
    border: none;
    color: white;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    border-radius: 6px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(80, 3, 127, 0.3);
    cursor: pointer;
}

/* Gradient-Animation beim Hover */
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.6s;
}

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

.btn-primary:hover,
.btn-primary:focus {
    background: var(--bp-violet);
    color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(80, 3, 127, 0.5);
    text-decoration: none;
    opacity: 0.9;
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 4px 12px rgba(80, 3, 127, 0.4);
}

/* Large Button Variant */
.btn-lg {
    padding: 20px 50px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* Secondary Button (falls benötigt) */
.btn-secondary {
    background: transparent;
    border: 3px solid var(--bp-violet);
    color: var(--bp-violet);
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--bp-gradient);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

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

.btn-secondary:hover {
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(80, 3, 127, 0.4);
}

/* ===== PROBLEM SECTION ===== */
.problem-section {
    padding: 80px 0;
    background: white;
}

.problem-intro {
    font-size: 18px;
    color: var(--begemot-text);
    margin-bottom: 30px;
}

.problem-list {
    margin: 30px 0;
}

.problem-list p {
    font-size: 16px;
    margin-bottom: 12px;
    padding-left: 0;
}

.problem-list-alt {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.problem-list-alt li {
    font-size: 16px;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.problem-list-alt li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--begemot-orange);
    font-weight: bold;
    font-size: 20px;
}

.problem-highlight {
    font-size: 22px;
    font-weight: bold;
    color: var(--bp-violet);
    margin: 25px 0 15px;
}

/* ===== FEATURES SECTION (mit Gradient) ===== */
.features-section {
    padding: 80px 0;
    background: linear-gradient(to right, #F0F9FF 0%, #FFF8F0 100%);
    position: relative;
}

/* Equal Heights für Feature-Cards */
.features-section .row {
    display: flex;
    flex-wrap: wrap;
}

.features-section .col-md-4,
.features-section .col-sm-6 {
    display: flex;
    flex-direction: column;
}

.feature-card {
    background: white;
    padding: 30px 25px;
    margin-bottom: 25px;
    border: none;
    border-radius: 4px;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.feature-icon {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(80, 3, 127, 0.05), rgba(237, 140, 0, 0.05));
    border-radius: 12px;
    flex-shrink: 0;
}

.feature-icon img {
    filter: brightness(0) saturate(100%) invert(13%) sepia(76%) saturate(4682%) hue-rotate(276deg) brightness(84%) contrast(106%);
}

.feature-card:hover .feature-icon img {
    filter: brightness(0) saturate(100%) invert(43%) sepia(91%) saturate(2137%) hue-rotate(13deg) brightness(99%) contrast(104%);
}

.feature-card h3 {
    color: var(--bp-violet);
    margin-bottom: 12px;
    font-size: 18px;
    flex-shrink: 0;
}

.feature-card p {
    font-size: 16px;
    color: var(--begemot-text-light);
    margin: 0;
    flex-grow: 1;
    line-height: 1.6;
}

/* ===== PRODUCT SECTION ===== */
.product-section {
    padding: 80px 0;
    background: white;
}

.product-box {
    background: #FFF8F0;
    border: 4px solid var(--begemot-orange);
    border-radius: 8px;
    padding: 40px;
    margin-top: 30px;
}

.product-details h3 {
    font-size: 28px;
    color: var(--bp-violet);
    margin-bottom: 20px;
}

.product-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-details li {
    font-size: 16px;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.product-details li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--begemot-orange);
    font-weight: bold;
    font-size: 20px;
}

.product-price-box {
    text-align: center;
    padding: 20px;
}

.product-price {
    font-size: 56px;
    font-weight: 700;
    color: var(--begemot-orange);
    margin-bottom: 5px;
}

.product-price-info {
    font-size: 16px;
    color: var(--begemot-text-light);
    margin-bottom: 20px;
}

.product-images {
    margin-top: 40px;
    text-align: center;
}

.product-images img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 80px 0;
    background: var(--begemot-bg-light);
}

/* Lisa Video - Living Portrait */
.lisa-video-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(80, 3, 127, 0.15);
    background: white;
    margin-bottom: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lisa-video-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(80, 3, 127, 0.25);
}

.lisa-video {
    width: 100%;
    height: auto;
    display: block;
    background: #f5f5f5;
}

/* Elegant Replay Button - Left Bottom Corner */
.video-replay-btn {
    position: absolute;
    bottom: 16px;
    left: 16px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(80, 3, 127, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10;
}

.video-replay-btn:hover {
    background: var(--bp-gradient);
    transform: scale(1.1) rotate(-15deg);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 20px rgba(80, 3, 127, 0.4);
}

.video-replay-btn:active {
    transform: scale(0.95) rotate(-15deg);
}

.video-replay-btn svg {
    transition: transform 0.3s ease;
}

.video-replay-btn:hover svg {
    transform: rotate(360deg);
}

/* Replay Button Animations */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeOutScale {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.5);
    }
}

/* Video Caption */
.lisa-video-caption {
    text-align: center;
    font-size: 14px;
    color: var(--bp-violet);
    font-weight: 600;
    margin-top: 12px;
    margin-bottom: 0;
    letter-spacing: 0.02em;
}

.about-photo {
    margin-bottom: 30px;
}

.about-photo img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.about-text p {
    font-size: 16px;
    line-height: 1.7;
}

.about-text strong {
    color: var(--bp-violet);
    font-weight: 600;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-item {
    background: #F9FAFB;
    border: 2px solid var(--begemot-bg-light);
    border-radius: 4px;
    padding: 25px;
    margin-bottom: 15px;
    transition: border-color 0.3s;
}

.faq-item:hover {
    border-color: var(--begemot-orange);
}

.faq-item h3 {
    font-size: 18px;
    color: var(--bp-violet);
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 16px;
    color: var(--begemot-text-light);
    margin: 0;
    line-height: 1.6;
}

.faq-item ul {
    margin: 0;
    padding-left: 20px;
}

.faq-item li {
    font-size: 16px;
    color: var(--begemot-text-light);
    line-height: 1.6;
    margin-bottom: 8px;
}

/* ===== FINAL CTA ===== */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg,
        var(--kita-orange) 0%,
        var(--kita-red) 50%,
        var(--kita-pink) 100%);
    color: white;
    text-align: center;
    position: relative;
}

.final-cta-content {
    position: relative;
    z-index: 2;
}

.final-cta h2 {
    font-size: 42px;
    color: white;
    margin-bottom: 20px;
    font-weight: 400;
}

.final-cta p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.final-cta .btn-primary {
    background: white;
    color: var(--bp-violet);
    font-size: 20px;
    padding: 22px 55px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

/* Gradient-Overlay für Hover - MUSS HINTER dem Text sein */
.final-cta .btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--bp-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.final-cta .btn-primary:hover {
    color: white;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.final-cta .btn-primary:hover::after {
    opacity: 1;
}

.final-cta .price-disclaimer {
    color: white;
    font-size: 12px;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 0;
    opacity: 0.85;
}

.trust-elements {
    margin-top: 30px;
    font-size: 16px;
}

.trust-elements span {
    display: inline-block;
    margin: 0 20px;
}

.trust-elements span:before {
    content: "✓";
    color: white;
    margin-right: 8px;
    font-weight: bold;
}

/* ===== FOOTER (Begemot Style) ===== */
.footer {
    background: var(--bp-violet);
    color: white;
    padding: 40px 0 20px;
}

.footer a {
    color: white;
    text-decoration: none;
}

.footer a:hover {
    color: var(--begemot-orange);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.footer-links li {
    display: inline-block;
    margin-right: 20px;
    margin-bottom: 10px;
}

.footer-copy {
    background: rgba(0, 0, 0, 0.2);
    padding: 15px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    h1 { font-size: 36px; }
    .hero h1 { font-size: 38px; }
    .hero-subtitle { font-size: 20px; }

    .product-box {
        padding: 30px 20px;
    }

    .product-price {
        font-size: 42px;
    }

    /* Final CTA für Tablet */
    .final-cta {
        padding: 80px 20px;
    }

    .final-cta .btn-primary {
        font-size: 19px;
        padding: 20px 40px;
        max-width: calc(100% - 40px);
        white-space: normal;
        line-height: 1.3;
    }

    .trust-elements {
        padding: 0 20px;
    }
}

@media (max-width: 767px) {
    h1 { font-size: 32px; }
    h2 { font-size: 28px; }
    h3 { font-size: 22px; }
    .hero h1 { font-size: 32px; }
    .hero-subtitle { font-size: 18px; }
    .hero-text { font-size: 16px; }

    .hero {
        padding: 60px 0 70px;
    }

    .problem-section,
    .features-section,
    .product-section,
    .about-section,
    .faq-section {
        padding: 60px 0;
    }

    .final-cta {
        padding: 70px 15px;
    }

    .final-cta h2 {
        font-size: 32px;
        padding: 0 10px;
    }

    .final-cta p {
        font-size: 18px;
        padding: 0 10px;
    }

    .final-cta .btn-primary {
        font-size: 18px;
        padding: 18px 30px;
        width: calc(100% - 30px);
        max-width: 100%;
        white-space: normal;
        line-height: 1.3;
    }

    .trust-elements {
        padding: 0 15px;
    }

    .trust-elements span {
        display: block;
        margin: 10px 0;
    }
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

.feature-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:nth-child(1) { transition-delay: 0.1s; }
.feature-card:nth-child(2) { transition-delay: 0.2s; }
.feature-card:nth-child(3) { transition-delay: 0.3s; }
.feature-card:nth-child(4) { transition-delay: 0.4s; }
.feature-card:nth-child(5) { transition-delay: 0.5s; }
.feature-card:nth-child(6) { transition-delay: 0.6s; }
