/* GLOBAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    color: white;
}

body {
    background: #0f1115;
    color: #eaeaea;
    line-height: 1.6;
}

/* NAVIGATION */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #0f1115;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
}

.logo span {
    color: #4da3ff;
}

.menu {
    list-style: none;
    display: flex;
    gap: 28px;
}

.menu a {
    text-decoration: none;
    color: #eaeaea;
    font-weight: 500;
}

.menu a:hover {
    color: #4da3ff;
}

/* MENU CTA BUTTON */
.menu-cta a {
    padding: 10px 22px;
    background: linear-gradient(135deg, #4da3ff, #1f6bff);
    color: #ffffff !important;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.menu-cta a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(77, 163, 255, 0.4);
}

/* HERO */
.hero {
    padding: 110px 20px;
    text-align: center;
    background: radial-gradient(circle at top, #1c1f26, #0f1115);
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
}

.hero h1 span {
    color: #4da3ff;
}

.hero p {
    max-width: 720px;
    margin: auto;
    color: #b5b5b5;
    font-size: 1.15rem;
}

/* SECTIONS */
.section {
    padding: 90px 20px;
    max-width: 1100px;
    margin: auto;
}

.section-title {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 60px;
}

/* CARDS */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    background: #161922;
    border-radius: 14px;
    padding: 30px;
}

.card h3 {
    color: #4da3ff;
    margin-bottom: 15px;
}

/* PROCESS */
.process {
    padding: 90px 20px;
    background: #12141b;
    text-align: center;
}

.process h2 {
    font-size: 2.4rem;
    margin-bottom: 60px;
}

.process h2 span {
    color: #4da3ff;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: auto;
}

.step {
    background: #161922;
    padding: 35px;
    border-radius: 14px;
}

.step-number {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    background: #4da3ff;
    color: #0f1115;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* STATS */
.stats {
    padding: 80px 20px;
    background: #0f1115;
}

.stats-grid {
    max-width: 1000px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat h3 {
    font-size: 2.4rem;
    color: #4da3ff;
}

/* CTA */
.cta {
    padding: 90px 20px;
    text-align: center;
    background: linear-gradient(135deg, #4da3ff, #1f6bff);
}

.cta a {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 38px;
    background: #0f1115;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
}

/* FOOTER */
footer {
    padding: 30px 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #777;
}

footer a {
    color: #4da3ff;
    text-decoration: none;
}

/* PRICING */
.pricing {
    padding: 90px 20px;
    background: #12141b;
    text-align: center;
}

.pricing-intro {
    max-width: 700px;
    margin: 0 auto 60px;
    color: #b5b5b5;
    font-size: 1.05rem;
}

.pricing-grid {
    max-width: 1000px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: #161922;
    border-radius: 16px;
    padding: 40px 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.pricing-card h3 {
    color: #4da3ff;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.price {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.pricing-card p {
    color: #c7c7c7;
    font-size: 1rem;
}

.pricing-card.featured {
    border: 2px solid #4da3ff;
    background: linear-gradient(180deg, #161922, #1b2130);
}

/* SPECS */
.specs {
    padding: 90px 20px;
    background: #0f1115;
    text-align: center;
}

.specs-intro {
    max-width: 720px;
    margin: 0 auto 40px;
    color: #b5b5b5;
    font-size: 1.05rem;
}

/* Specs Dropdown / iframe */
.specs-dropdown {
    max-width: 1200px;
    margin: auto;
    background: #161922;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.specs-dropdown iframe {
    width: 100%;
    height: 900px;
    border-radius: 12px;
    background: transparent;
}

/* CTK cards */
.ctk-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    max-width: 80%;
    margin: 0 auto 40px;
}

.ctk-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 20px;
    max-width: 90%;
    margin: 20px auto;
    width: 100%;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    color: #383838;
}

/* Prices table */
.prices-table {
    width: 90%;
    max-width: 800px;
    margin: 20px auto 40px;
    border-collapse: collapse;
    text-align: left;
}

.prices-table th,
.prices-table td {
    border: 1px solid #ddd;
    padding: 8px 12px;
    color:grey;
}

.prices-table th {
    background-color: #4da3ff;
    color: #fff;
}

.prices-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.prices-table tfoot td {
    font-weight: bold;
    background-color: #efefef;
    text-align: right;
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 22px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #4da3ff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* MOBILE */
@media screen and (max-width: 768px) {
    .desktop-menu {
        display: none;
    }

    .mobile-menu {
        display: none;
        flex-direction: column;
        background-color: #0f1115;
        position: absolute;
        top: 60px;
        right: 10px;
        width: 200px;
        border-radius: 8px;
        padding: 15px;
        z-index: 999;
    }

    .mobile-menu li {
        text-align: center;
        margin: 10px 0;
    }

    .mobile-menu li a {
        color: #fff;
        font-weight: 500;
        text-decoration: none;
    }

    .mobile-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.open span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}


/* Desktop */
.desktop-menu {
    display: flex;
    list-style: none;
    gap: 28px;
}

.desktop-menu li a {
    text-decoration: none;
    color: #eaeaea;
    font-weight: 500;
}

/* Mobile verstecken */
.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: #0f1115;
    position: absolute;
    top: 60px;
    right: 10px;
    width: 200px;
    border-radius: 8px;
    padding: 15px;
    z-index: 999;
}

/* Mobile aktiv */
.mobile-menu.active {
    display: flex;
}

/* Hamburger */
.hamburger {
    display: none; /* nur Mobile */
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 22px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #4da3ff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* MEDIA QUERY */
@media screen and (max-width: 768px) {
    .desktop-menu {
        display: none; /* Desktop-Menü ausblenden */
    }

    .hamburger {
        display: flex;
    }
}



@media screen and (max-width: 768px) {
    .desktop-menu {
        display: none;
    }

    .mobile-menu {
        display: none;
        flex-direction: column;
        background-color: #0f1115;
        position: absolute;
        top: 60px;
        right: 10px;
        width: 200px;
        border-radius: 8px;
        padding: 15px;
        z-index: 999;
    }

    .mobile-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}

/* HERO */
.hero {
    position: relative;
    overflow: hidden;
    padding: 120px 20px;
    text-align: center;
    background: radial-gradient(circle at top, #1c1f26, #0f1115);
}

/* Inhalt ber Animation */
.hero-content {
    position: relative;
    z-index: 3;
}

/* ===== BITS BACKGROUND ===== */
.bits-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

/* einzelne Bits */
.bit {
    position: absolute;
    top: -30px;
    font-family: monospace;
    font-size: 16px;
    font-weight: bold;
    color: rgba(77,163,255,0.75); /* <<< DEUTLICH SICHTBAR */
    text-shadow: 0 0 8px rgba(77,163,255,0.6);
    animation-name: fall;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

/* Bewegung */
@keyframes fall {
    from {
        transform: translateY(-40px);
    }
    to {
        transform: translateY(120vh);
    }
}

/* dunkler Verlauf fr Lesbarkeit */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(15,17,21,0.35),
        rgba(15,17,21,0.85)
    );
    z-index: 2;
}

@media (max-width: 768px) {
    .bits-bg,
    .hero::after {
        display: none;
    }

    .hero {
        background: #0f1115; /* fallback */
    }
}


