@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
:root {
    --bg-main: #0D0D0D;
    --bg-dark: #0D0D0D;
    --bg-card: rgba(255, 255, 255, 0.02);
    --text-main: #FFFFFF;
    --text-muted: #A0A0A0;
    --accent-gold: #F5B942;
    --accent-blue: #3B82F6;
    --accent-purple: #8B5CF6;
    --accent-pink: #FF4D6D;
    --gradient-glow: linear-gradient(135deg, rgba(245, 185, 66, 0.15), rgba(255, 77, 109, 0.15));
    --gradient-btn: linear-gradient(135deg, #ff8a76, #ff5e7e);
    --gradient-accent: linear-gradient(135deg, #ff8a76, #ff5e7e);
    --border-glass: rgba(255, 255, 255, 0.1);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
}

.badge-premium {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(255, 94, 126, 0.1);
    border: 1px solid rgba(255, 94, 126, 0.3);
    color: var(--accent-pink);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--accent-pink);
}

p,
li {
    word-wrap: break-word;
    hyphens: auto;
}

.text-center p {
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
}


/* Layout & Spacing */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 7rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-8 {
    margin-top: 7rem;
}

.text-gradient {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    align-items: center;
    gap: 4rem;
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    /* a:hover global bleibt, aber Social-Icons sollen nicht pink werden */
    a.social-btn:hover,
    .social-btn:active,
    .social-btn:focus {
        color: white;
        filter: none;
        outline: none;
    }
}

@media (max-width: 900px) {
    .grid-2 {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
}


/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    text-decoration: none;
    font-size: 1.05rem;
}

.btn-primary {
    background: var(--gradient-btn);
    color: white;
    box-shadow: 0 4px 20px rgba(255, 94, 126, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 94, 126, 0.7);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    border-color: var(--text-main);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px) scale(1.02);
}


/* Layout & Cards */

.card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 2.5rem;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    will-change: transform;
    transform-style: preserve-3d;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

.card:hover {
    border-color: rgba(255, 94, 126, 0.5);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    transform: translateY(-5px);
}


/* Navigation */

header {
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 100;
    transition: background 0.3s, border-bottom 0.3s;
    padding: 1.5rem 0;
}

header.scrolled {
    background: rgba(13, 13, 13, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-glass);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    height: 150px;
    max-width: 380px;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.25));
}

.brand-logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-muted);
}

.nav-links a:hover {
    color: var(--text-main);
}


/* Hero */

.hero {
    min-height: calc(100vh - 150px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 20px;
    text-align: center;
    overflow: hidden;
}

.hero-content {
    z-index: 2;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin: 0 auto 2.5rem;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

#hero-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    opacity: 0.85;
    /* Increased opacity for krassem effekt */
    mix-blend-mode: screen;
}


/* Neon Ambient Glow */

.ambient-glow {
    position: fixed;
    width: 55vw;
    height: 55vw;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -2;
    opacity: 0.25;
    pointer-events: none;
    animation: floatOrb 25s infinite alternate ease-in-out;
    mix-blend-mode: screen;
}

.glow-pink {
    top: -15vh;
    left: -15vw;
    background: var(--accent-pink);
}

.glow-gold {
    bottom: -20vh;
    right: -10vw;
    background: var(--accent-gold);
    animation-duration: 30s;
    animation-delay: -5s;
}

.glow-blue {
    top: 30vh;
    right: -25vw;
    background: var(--accent-blue);
    animation-duration: 22s;
    animation-delay: -2s;
}

.glow-purple {
    bottom: -10vh;
    left: 10vw;
    background: var(--accent-purple);
    animation-duration: 28s;
    animation-delay: -7s;
}

@keyframes floatOrb {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(15vw, 15vh) scale(1.3);
    }
    100% {
        transform: translate(-15vw, 10vh) scale(0.85);
    }
}


/* Trust Strip */

.trust-strip {
    padding: 3rem 0;
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    background: rgba(255, 255, 255, 0.01);
}

.trust-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.trust-item {
    display: flex;
    align-items: center;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 1.1rem;
}


/* Smart Form */

.smart-form {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    text-align: left;
}

.smart-form::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: var(--gradient-glow);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid var(--border-glass);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-pink);
    box-shadow: 0 0 15px rgba(255, 94, 126, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.multi-select {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.select-box {
    padding: 1rem;
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.02);
}

.select-box:hover {
    border-color: rgba(255, 94, 126, 0.5);
    background: rgba(255, 94, 126, 0.1);
    transform: translateY(-2px);
}

.select-box.selected {
    border-color: var(--accent-pink);
    background: rgba(255, 94, 126, 0.15);
    box-shadow: 0 4px 15px rgba(255, 94, 126, 0.2);
}

.form-step {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.form-step.active {
    display: block;
}

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


/* Number Circles for Lists */

.number-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 94, 126, 0.1);
    color: var(--accent-pink);
    font-size: 0.8rem;
    font-weight: 700;
    border: 1px solid rgba(255, 94, 126, 0.3);
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.list-item-clean {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.list-item-clean p {
    margin: 0;
}


/* Timeline */

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    height: 100%;
    width: 2px;
    background: var(--gradient-glow);
}

.timeline-item {
    position: relative;
    padding-left: 4rem;
    margin-bottom: 3rem;
}

.timeline-step {
    position: absolute;
    left: 0;
    top: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-main);
    border: 2px solid var(--accent-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--accent-pink);
    box-shadow: 0 0 15px rgba(255, 94, 126, 0.3);
    z-index: 2;
}


/* Reveal Animation */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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


/* Footer */

footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-glass);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 1.5rem;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.footer-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(-5px);
}

.footer-card h4 {
    color: var(--text-main);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.footer-card ul {
    list-style: none;
}

.footer-card li {
    margin-bottom: 1rem;
    line-height: 1.5;
}

.footer-card p {
    margin-bottom: 1rem;
    line-height: 1.5;
}

footer .logo img {
    height: 110px !important;
    max-width: 320px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.25));
    transition: transform 0.3s;
    margin-bottom: 1rem;
}

footer .logo img:hover {
    transform: scale(1.05);
}

.social-icons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: white;
    transition: transform 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-3px);
}

.social-ig {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-fb {
    background: #1877F2;
}

.social-x {
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-wa {
    background: #25D366;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--border-glass);
    padding-top: 2rem;
}


/* =========================================
   Mobile Responsiveness
   ========================================= */

@media (max-width: 768px) {
    /* Typography */
    h1 {
        font-size: 2.2rem;
    }
    h2 {
        font-size: 1.8rem;
    }
    h3 {
        font-size: 1.3rem;
    }
    /* Containers & Spacing */
    .container {
        padding: 0 1rem;
    }
    .mb-8 {
        margin-bottom: 4rem;
    }
    .mt-8 {
        margin-top: 4rem;
    }
    /* Navigation */
    header {
        padding: 1rem 0;
    }
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    header .btn-secondary {
        display: none;
    }
    .brand-logo {
        height: 70px;
        max-width: 100%;
    }
    footer .logo img {
        height: 70px !important;
    }
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
        font-size: 0.95rem;
    }
    /* Hero */
    .hero {
        padding-top: 2rem;
        align-items: flex-start;
    }
    .hero-content p {
        font-size: 1.05rem;
    }
    /* Grids */
    .grid-2,
    .grid-3,
    .multi-select,
    .grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    /* Cards & Forms */
    .card,
    .smart-form,
    .module-card {
        padding: 1.5rem;
    }
    /* Timeline */
    .timeline-item {
        padding-left: 3rem;
    }
    .timeline-step {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    .timeline::before {
        left: 18px;
    }
    /* Trust Strip */
    .trust-items {
        gap: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
}