/* === LOCAL INTER FONT (GDPR SAFE) === */
@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-300.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-400.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Default font */
body {
    font-family: 'Inter', sans-serif;
}

.hp-field {
    position: absolute !important;
    left: -99999px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

/* OPTIONAL: Flip-Slide (alt, falls irgendwo noch genutzt) */
.flip-slide {
    position: relative;
}

.flip-slide .flip-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

    animation-duration: 0.08s;  /* Geschwindigkeit */
    animation-timing-function: steps(1);
    animation-iteration-count: 20; /* 10 Wechsel */
}

.flip-slide .imgA { animation-name: flipA; }
.flip-slide .imgB { animation-name: flipB; }

@keyframes flipA {
    0%   { opacity: 1; }
    50%  { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes flipB {
    0%   { opacity: 0; }
    50%  { opacity: 1; }
    100% { opacity: 0; }
}


/* COLORS */
:root {
    --bg: #000000;
    --primary: #3ba4ff;
    --primary-soft: #3ba4ff22;
    --primary-glow: #5be8ff;      /* CYAN / TÜRKIS */
    --text-main: #e9f1f8;
    --text-muted: #b8cee3;
    --menu-text: #d0e2f5;
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text-main);
}

html, body {
    height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* main soll den „Rest“ füllen */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* NAVIGATION (Basics) */
.top-nav {
    width: 100%;        /* volle Breite nutzen */
    max-width: none;    /* keine künstliche Begrenzung mehr */
    margin: 0 auto;
    padding: 20px 60px; /* etwas geringeres Innenpadding links/rechts */
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu {
    display: flex;
    gap: 10px;
    flex: 1;                 /* nimmt den verfügbaren Platz zwischen Logo und CTA ein */
    justify-content: center; /* Buttons werden in diesem Bereich zentriert */
}

/* CTA rechts im Header */
.nav-cta {
    display: flex;
    gap: 16px;
    margin-left: auto;       /* schiebt Pricing/Contact nach ganz rechts */
}

.brand img {
    height: 120px;
    filter: drop-shadow(0 0 10px var(--primary-soft));
}
/* NAV-MENÜ ALS GLOW-PILL BUTTONS */
.nav-menu a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 5px 16px;   /* kompakter */

    border-radius: 999px;   /*  <<< WICHTIG!!! Macht die Buttons rund */

    font-size: 0.90rem;  
    font-weight: 500;
    text-decoration: none;

    background: rgba(0, 0, 0, 0.65);
    color: #ffffff;
    opacity: 0.9;

    border: 2px solid var(--accent);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.7);

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        opacity 0.25s ease;
}
/* Hover: wie "Pricing" nur etwas heller */
.nav-menu a:hover {
    opacity: 1;
    color: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 14px var(--accent-soft);
}

/* Active: voll gefüllter Button – wie "Contact" */
.nav-menu a.active {
    opacity: 1;
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
    box-shadow: 0 0 16px var(--accent-soft);
}

/* CTA rechts im Header */
.nav-cta {
    display: flex;
    gap: 16px;
}

/* BUTTONS */
.btn {
    padding: 10px 22px;
    border-radius: 24px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(140, 180, 220, 0.7);
    color: #d0e2f5;
}

.btn-outline:hover {
    border-color: var(--accent);
    box-shadow: 0 0 12px var(--accent-soft);
}

.btn-accent {
    background: var(--accent);
    color: #03101e;
    box-shadow: 0 0 15px var(--accent-soft);
}

.btn-accent:hover {
    box-shadow: 0 0 22px var(--accent-soft);
    transform: translateY(-1px);
}

/* ------------------------------------------------ */
/* HEADLINE ABOVE SLIDESHOW */
/* ------------------------------------------------ */
.hero-headline {
    width: 70%;
    margin: 10px auto 10px auto;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.35;
    color: var(--accent);
    text-shadow: 0 0 12px rgba(0,0,0,0.8);
}

/* NEU: Überschrift direkt über dem Slide (pro Slide unterschiedlich) */
.slide-title {
    text-align: center;
    font-size: 1.4rem;
    margin-top: 20px;
    margin-bottom: 5px;
    color: var(--accent);
    text-shadow: 0 0 10px var(--accent-soft);
}


/* ------------------------------------------------ */
/* SLIDESHOW – Basislayout (für alle Seiten) */
/* ------------------------------------------------ */

/* Wrapper: standardmäßig 50% Breite – zentriert */
.slideshow-wrapper {
    width: 50%;
    margin: 35px auto 0 auto;
    position: relative;
}

/* Glow hinter der Slideshow */
.slideshow-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140%;
    height: 140%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, var(--accent-soft), transparent 70%);
    filter: blur(90px);
    z-index: 0;
    pointer-events: none;
}

/* Container */
.slideshow {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.framed-slideshow {
    border-radius: 18px;
    border: 2px solid #1b2d45;
    box-shadow:
        0 0 25px rgba(30,120,255,0.35),
        0 0 45px rgba(30,120,255,0.18);
    position: relative;
    overflow: visible; /* WICHTIG: Pfeile außerhalb sichtbar */
}

/* Slides (Bilder & Videos) */
.slide {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 18px;
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.6);
}

.slide.active {
    display: block;
}

/* Videos explizit (für Sicherheit) */
video.slide {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 18px;
}

/* ================================
   SLIDESHOW NAVIGATION ARROWS
   ================================ */

.slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 2.2rem;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    transition: background 0.2s ease, transform 0.15s ease;
    z-index: 50; /* IMMER sichtbar */
}

/* Pfeile außerhalb der Slideshow positionieren */
.slide-nav.prev {
    left: -3.5rem;     /* LINKS außerhalb */
}

.slide-nav.next {
    right: -3.5rem;    /* RECHTS außerhalb */
}

.slide-nav:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.12);
}

/* Dots / Indicators */
.slideshow-indicators {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 0.9rem;
}

.indicator-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.indicator-dot:hover {
    transform: scale(1.2);
}

.indicator-dot.active {
    width: 22px;
    background: #1dd3c0; /* Türkis */
}

/* ------------------------------------------------ */
/* TEXT SECTION unter der Slideshow */
/* ------------------------------------------------ */
.text-section {
    width: 50%;               /* gleiche Breite wie Slideshow */
    max-width: none;          /* Begrenzung aufheben */
    margin: 50px auto 100px auto;
    padding: 0 20px;
    text-align: center;
}

.slideshow-wrapper .text-section {
    width: 100%;
    padding: 0;
    margin: 40px auto 80px auto;
}

.slide-heading {
    font-size: 1.3rem;
    margin-bottom: 0.4rem;
    color: var(--accent);
}

.hero-sub {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 28px;
}

.hero-badges {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 28px;
}

.badge {
    background: var(--primary-soft);
    border: 1px solid #3ba4ff44;
    color: var(--primary-glow);
    padding: 6px 14px;
    border-radius: 999px;
}

.hero-cta-row {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.hero-note {
    color: var(--text-muted);
    font-size: 0.85rem;
}


/* === QSdiP NAV + COLOR SYSTEM OVERRIDES === */

:root {
    --accent: #22a7ff;
    --accent-soft: rgba(34, 167, 255, 0.55);
}



/* ------------------------------------------------ */
/* RESPONSIVE ANPASSUNGEN */
/* ------------------------------------------------ */

@media (max-width: 900px) {
    .slideshow-wrapper {
        width: 100%;
        padding: 0 1rem;
    }

    /* Pfeile näher an den Slide rücken, bleiben aber außen */
    .slide-nav.prev {
        left: -1.6rem;
    }

    .slide-nav.next {
        right: -1.6rem;
    }

    .hero-headline {
        width: 90%;
        font-size: 1.4rem;
    }
}

@media (max-width: 600px) {
    .slide-nav.prev {
        left: -0.8rem;
    }

    .slide-nav.next {
        right: -0.8rem;
    }
}

/* ================================
   LIGHTBOX FÜR SLIDES
   ================================ */

.slide-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.slide-lightbox.open {
    display: flex;
}

.slide-lightbox img {
    max-width: 95vw;
    max-height: 95vh;
    border-radius: 10px;
    box-shadow:
        0 0 40px rgba(0, 0, 0, 0.9),
        0 0 25px rgba(255, 255, 255, 0.15);
}

.slideshow .slide {
    cursor: zoom-in;
}


/* ================================
   CONTACT PAGE
   ================================ */

.contact-wrapper {
    max-width: 720px;
    margin: 40px auto 90px auto;
    padding: 32px 26px 36px;
    border-radius: 20px;
    background: radial-gradient(circle at top,
                rgba(255,255,255,0.05),
                rgba(0,0,0,0.9));
    box-shadow:
        0 0 35px rgba(0,0,0,0.75),
        0 0 40px var(--accent-soft);
}

.contact-intro {
    text-align: center;
    font-size: 0.98rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-row label {
    font-size: 0.9rem;
    color: var(--text-main);
}

.form-row input,
.form-row textarea {
    border-radius: 10px;
    border: 1px solid rgba(180, 200, 230, 0.5);
    background: rgba(3, 12, 24, 0.85);
    color: var(--text-main);
    padding: 9px 11px;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: border 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.form-row input:focus,
.form-row textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent-soft);
    background: rgba(3, 18, 36, 0.95);
}

.form-row textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-hint {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.contact-submit {
    margin-top: 10px;
    align-self: flex-end;
}

/* Mobile layout */
@media (max-width: 640px) {
    .contact-wrapper {
        margin: 30px 14px 70px;
        padding: 24px 18px 28px;
    }

    .contact-submit {
        width: 100%;
        align-self: stretch;
        text-align: center;
    }
}
/* ---- Compact Footer ---- */
.site-footer {
    margin-top: auto;          /* statt fester 40px → schiebt ihn ans Ende */
    padding: 10px 0 15px;
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    width: 100%;
    line-height: 1.4;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 4px;        /* kleiner Abstand */
    white-space: nowrap;
}

.footer-links a:hover {
    color: var(--accent);
}


/* -------------------------------------- */
/* Special Header Buttons: Pricing/Contact */
/* -------------------------------------- */

.nav-cta .nav-btn {
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;

    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;

    border: 2px solid #25c9ff;     /* Leuchtendes Blau */
    box-shadow: 0 0 12px #25c9ff66;
    transition: 0.25s ease;
}

/* Hover – heller */
.nav-cta .nav-btn:hover {
    background: #25c9ff;
    color: #000;
    box-shadow: 0 0 16px #25c9ffaa;
}

/* ACTIVE STATE → wie "Contact" im Screenshot */
.nav-cta .nav-btn.active {
    background: #25c9ff;
    color: #000000;
    border-color: #25c9ff;
    box-shadow: 0 0 16px #25c9ffcc;
}


/* --- PRICING PAGE --- */

.page-pricing main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

.pricing-hero {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 30px;
}

.pricing-section {
    margin-top: 10px;
}

.pricing-grid {
    display: flex;
    justify-content: center;     /* Karten zentrieren */
    align-items: stretch;
    gap: 32px;                   /* Abstand zwischen Karten */
    flex-wrap: nowrap;           /* NICHT umbrechen → 3 Karten nebeneinander */
    margin-top: 30px;
}

.pricing-card {
    position: relative;
    padding: 22px 22px 26px;
    border-radius: 22px;
    background: radial-gradient(circle at top, rgba(91, 232, 255, 0.08), rgba(0, 0, 0, 0.95));
    border: 1px solid rgba(91, 232, 255, 0.35);
    box-shadow: 0 0 26px rgba(0, 0, 0, 0.9);
}

.pricing-card-highlight {
    box-shadow: 0 0 32px rgba(91, 232, 255, 0.7);
    border-color: var(--primary-glow);
}

.pricing-badge {
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 0.72rem;
    padding: 3px 9px;
    border-radius: 999px;
    background: var(--primary-glow);
    color: #000;
    font-weight: 600;
}

.pricing-title {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.pricing-price {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-glow);
    margin-bottom: 4px;
}

.pricing-tagline {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
    font-size: 0.88rem;
}

.pricing-list li {
    margin-bottom: 6px;
}

.pricing-cta {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 999px;
    border: 1px solid var(--primary-glow);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
    background: rgba(0, 0, 0, 0.75);
    transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.pricing-cta:hover {
    background: var(--primary-glow);
    color: #000;
    box-shadow: 0 0 18px rgba(91, 232, 255, 0.8);
}

.pricing-note {
    margin-top: 28px;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
}


.pricing-grid.single-option .pricing-card {
    max-width: 360px;     /* vorher 420px */
}

.pricing-grid.single-option {
    justify-items: center;
}


.os-icon svg {
    display: block;
}

.os-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 10px 0 20px 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: #00A4EF;
}

.os-icon-img {
    width: 22px;
    height: 22px;
    display: block;
}

.nav-menu a.disabled {
    opacity: 0.35;
    pointer-events: none;
    filter: grayscale(100%);
}

/* PRICE-CARD FEATURE BUTTONS — same style as top-menu glow-pill buttons */
.price-feature-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 8px 18px;               /* gleiche Größe wie Top-Nav */
    font-size: 1.02rem;
    font-weight: 500;

    border-radius: 28px;             /* gleiche Pill-Form */
    background: rgba(0, 0, 0, 0.65);
    color: #ffffff;
    border: 2px solid var(--accent);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.7);

    text-decoration: none;
    opacity: 0.9;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        opacity 0.25s ease;
}

.price-feature-btn:hover {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
    box-shadow: 0 0 20px var(--accent-glow);
    opacity: 1;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    width: 320px;       /* feste Kartenbreite */
    flex: 0 0 320px;    /* verhindert Strecken/Schrumpfen */
}

.pricing-card .pricing-cta {
    margin-top: auto;
}

.pricing-content {
    margin-bottom: 20px;
}

.feature-section {
    display: flex;
    justify-content: center;
    padding: 40px 0 60px 0;
}

.feature-container {
    max-width: 900px;
    width: 90%;
    color: #d4e9ff;
    text-align: left;
    line-height: 1.6;
}

.feature-container h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: #5be8ff;
    text-align: center;
}

.feature-container h3 {
    font-size: 1.3rem;
    margin-top: 32px;
    margin-bottom: 12px;
    color: #3ba4ff;
}

.feature-container p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: #cfe7ff;
}

.feature-container ul {
    padding-left: 20px;
    margin: 0;
}

.feature-container ul li {
    margin-bottom: 8px;
}

/* Make H1 look like our sub-hero text */
h1.hero-sub {
    font-size: 0.9rem !important;
    font-weight: 400 !important;
    color: var(--text-muted) !important;
    line-height: 1.7 !important;
    text-align: center;
    margin-bottom: 28px;
}
/* MOBILE FIX – NAVIGATION */
@media (max-width: 768px) {

    .nav-menu {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
        margin-top: 10px;
    }

    .nav-menu a {
        font-size: 0.8rem;
        padding: 6px 14px;
        border-radius: 30px;
        width: auto;
    }

    .top-nav .brand img {
        max-width: 140px;
    }
}

@media (max-width: 768px) {
    .slide-wrapper {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }

    .slide-wrapper img,
    .slide-wrapper video {
        width: 100%;
        border-radius: 12px;
    }
}

@media (max-width: 768px) {
    .page-home {
        padding-top: 20px;
    }
}

@media (max-width: 768px) {
    .hero-description {
        font-size: 0.85rem;
        line-height: 1.4;
        padding: 0 12px;
    }
}

/* ========================================= */
/* HAMBURGER BUTTON – BASISSTIL (DESKTOP: aus) */
/* ========================================= */

.hamburger {
    display: none;                  /* Desktop: unsichtbar, nur Mobile zeigt ihn */
    position: relative;
    width: 38px;
    height: 32px;
    padding: 6px 7px;
    border-radius: 999px;
    border: 2px solid var(--accent);
    background: rgba(0, 0, 0, 0.75);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.7);
    cursor: pointer;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    z-index: 1000;
}

.hamburger span {
    height: 2px;
    border-radius: 999px;
    background: #ffffff;
    transition:
        transform 0.2s ease,
        opacity 0.2s ease,
        width 0.2s ease;
}

/* "X"-Icon Zustand */
.hamburger.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* ========================================= */
/* MOBILE SLIDE-OUT NAVIGATION (von rechts)  */
/* ========================================= */

.mobile-nav-panel {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: flex-end;
    background: rgba(0, 0, 0, 0.0);      /* wird beim Öffnen eingeblendet */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, background 0.25s ease;
    z-index: 900;
}

.mobile-nav-inner {
    width: 260px;
    max-width: 80vw;
    height: 100%;
    padding: 26px 22px 32px;
    background: radial-gradient(circle at top,
                rgba(91, 232, 255, 0.22),
                rgba(0, 0, 0, 0.96));
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.95);
    transform: translateX(100%);
    transition: transform 0.25s ease;
    border-left: 1px solid rgba(91, 232, 255, 0.4);
}

/* Panel geöffnet */
.mobile-nav-panel.open {
    opacity: 1;
    background: rgba(0, 0, 0, 0.78);
    pointer-events: auto;
}

.mobile-nav-panel.open .mobile-nav-inner {
    transform: translateX(0);
}

/* Links im mobilen Menü */
.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-nav-menu a {
    display: block;
    padding: 9px 12px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.98rem;
    font-weight: 500;

    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    border: 1px solid var(--accent);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.8);

    transition:
        background 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.mobile-nav-menu a:hover {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
    box-shadow: 0 0 20px var(--accent-soft);
}

.mobile-nav-menu hr {
    margin: 14px 0 6px;
    border: none;
    border-top: 1px solid rgba(200, 230, 255, 0.2);
}

/* Body nicht scrollen, wenn das Mobile-Menü offen ist */
body.mobile-nav-open {
    overflow: hidden;
}



/* ========================================= */
/* HAMBURGER BUTTON – BASISSTIL              */
/* ========================================= */

.hamburger {
    display: none;                  /* Standard: ausgeblendet */

    position: relative;
    width: 38px;
    height: 32px;
    padding: 6px 7px;
    border-radius: 999px;
    border: 2px solid var(--accent);
    background: rgba(0, 0, 0, 0.75);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.7);
    cursor: pointer;

    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    z-index: 1000;
}

.hamburger span {
    height: 2px;
    border-radius: 999px;
    background: #ffffff;
    transition:
        transform 0.2s ease,
        opacity 0.2s ease,
        width 0.2s ease;
}

/* "X"-Icon Zustand */
.hamburger.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}


/* ========================================= */
/* RESPONSIVE: HAMBURGER nur auf Mobile      */
/* ========================================= */

@media (max-width: 1300px) {

    .top-nav {
        max-width: 100%;
        padding: 14px 16px;
        gap: 12px;
    }

    .brand img {
        height: 80px;
    }

    .nav-menu,
    .nav-cta {
        display: none;      /* Desktop-Nav auf Mobile ausblenden */
    }

    .hamburger {
        display: flex;      /* Nur bei <= 900px anzeigen */
        margin-left: auto;
    }
}

/* Mobile: Pricing-Cards untereinander anordnen */
@media (max-width: 900px) {

    .pricing-grid {
        flex-wrap: wrap;           /* erlaubt Zeilenumbruch */
        justify-content: center;   /* schön mittig */
    }

    .pricing-card {
        flex: 1 1 100%;            /* nimmt ganze Breite */
        max-width: 420px;          /* optional: limitieren */
        margin: 0 auto;            /* zentrieren */
    }
}


.page-version-ip .pricing-card {
    width: min(920px, 96vw);     /* deutlich breiter */
    max-width: none;
    flex: none;

    padding: 44px 56px 48px;
    border-radius: 32px;

    box-shadow:
        0 0 40px rgba(34,167,255,0.45),
        0 0 80px rgba(34,167,255,0.18);
}


/* kleinere Feature-Pills nur auf version-ip */
.page-version-ip .price-feature-btn {
    padding: 4px 10px;
    font-size: 0.72rem;
    border-width: 1px;
}

/* Feature button row (wrap) – only on version-ip */
.page-version-ip .feature-btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
    margin-bottom: 12px;
}

/* Back button row – only on version-ip */
.page-version-ip .back-btn-row {
    margin-top: 25px;
    display: flex;
    justify-content: flex-start;
}
