/* ===================================
   Google Font Import
   =================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

/* ===================================
   CSS Variables
   =================================== */
:root {
    --primary-color: #00d1ff;
    --primary-hover: #00b8e6;
    --background-color: #0a0e1a;
    --background-secondary: #0f162a;
    --text-color: #f0f0f0;
    --text-secondary: #b0b0b0;
    --card-bg: rgba(15, 22, 42, 0.9);
    --border-color: rgba(0, 209, 255, 0.2);
    --shadow-glow: 0 0 20px rgba(0, 209, 255, 0.3);
    --halloween-orange: #ff6b35;
    --halloween-purple: #8b5cf6;
}

/* ===================================
   Global Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Animated Background Grid */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(to right, rgba(0, 209, 255, 0.1) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 209, 255, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: background-pan 30s linear infinite;
    z-index: -1;
    pointer-events: none;
}

@keyframes background-pan {
    0% { background-position: 0 0; }
    100% { background-position: 400px 400px; }
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Container für größere Monitore */
@media (min-width: 1440px) {
    .container {
        max-width: 1200px;
    }
}

@media (min-width: 1920px) {
    .container {
        max-width: 1400px;
    }
}

@media (min-width: 2560px) {
    .container {
        max-width: 1600px;
    }
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Navigation für größere Monitore */
@media (min-width: 1440px) {
    .nav-container {
        max-width: 1200px;
    }
}

@media (min-width: 1920px) {
    .nav-container {
        max-width: 1400px;
    }
}

@media (min-width: 2560px) {
    .nav-container {
        max-width: 1600px;
    }
}

.nav-logo {
    font-size: 1.5em;
    font-weight: 600;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 209, 255, 0.5);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.nav-logo:hover {
    opacity: 0.8;
}


.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===================================
   Compact Hero Section
   =================================== */
.hero-compact {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 40px;
    text-align: center;
}

/* Hero Logo */
.hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-bottom: 15px;
}

.hero-logo svg {
    width: 50px;
    height: 50px;
    color: var(--primary-color);
    filter: drop-shadow(0 0 10px rgba(0, 209, 255, 0.5));
    animation: iconFloat 3s ease-in-out infinite;
}

.hero-logo .icon-chart { animation-delay: 0s; }
.hero-logo .icon-shield { animation-delay: 0.5s; }
.hero-logo .icon-server { animation-delay: 1s; }

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hero-title {
    font-size: 2.2em;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow:
        0 0 5px var(--primary-color),
        0 0 15px var(--primary-color),
        0 0 30px rgba(0, 209, 255, 0.5);
    margin-bottom: 8px;
}

.hero-slogan {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 8px;
    opacity: 0.95;
}

.hero-subtitle {
    font-size: 1em;
    font-weight: 400;
    margin-bottom: 15px;
    opacity: 0.85;
    font-style: italic;
}

.hero-badges {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.hero-badge {
    background: rgba(0, 209, 255, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 25px;
    padding: 8px 18px;
    font-size: 0.9em;
    font-weight: 500;
    color: var(--text-color);
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
}

.hero-badge-link {
    cursor: pointer;
    transition: all 0.3s ease;
    color: #f0f0f0; /* Helles Grau/Weiß für bessere Lesbarkeit auf dunklem Hintergrund */
}

.hero-badge-link:hover {
    background: rgba(0, 209, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 209, 255, 0.3);
}

/* Halloween Compact */
.halloween-compact {
    background: linear-gradient(135deg, var(--halloween-orange), var(--halloween-purple));
    border-radius: 15px;
    padding: 12px 20px;
    margin-bottom: 25px;
    display: inline-block;
    font-weight: 600;
    animation: halloweenGlow 2s ease-in-out infinite;
}

@keyframes halloweenGlow {
    0%, 100% { box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4); }
    50% { box-shadow: 0 5px 30px rgba(255, 107, 53, 0.7); }
}

.halloween-icon {
    font-size: 1.3em;
    margin-right: 5px;
}

.countdown-compact {
    display: inline-flex;
    gap: 10px;
    margin-left: 15px;
    font-weight: 700;
}

.countdown-compact span {
    background: rgba(255, 255, 255, 0.2);
    padding: 3px 8px;
    border-radius: 5px;
}


/* Beratung CTA in Hero */
.beratung-cta-hero {
    background: var(--card-bg);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 20px 25px;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 5px 25px rgba(0, 209, 255, 0.2);
    transition: all 0.3s ease;
}

.beratung-cta-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 209, 255, 0.3);
}

.beratung-cta-icon {
    font-size: 2.5em;
    animation: ring 2s ease-in-out infinite;
}

@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-15deg); }
    20%, 40% { transform: rotate(15deg); }
    50% { transform: rotate(0deg); }
}

.beratung-cta-content {
    font-size: 1.1em;
    flex: 1;
    min-width: 250px;
    text-align: left;
}

.beratung-cta-content strong {
    color: var(--primary-color);
}

.btn-beratung-small {
    background-color: var(--primary-color);
    color: var(--background-color);
    border: 2px solid var(--primary-color);
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-beratung-small:hover {
    background-color: transparent;
    color: var(--primary-color);
}

/* ===================================
   Pricing Compact
   =================================== */
.pricing-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.price-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 30px 25px;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.price-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.price-featured {
    border-color: var(--primary-color);
    box-shadow: 0 5px 25px rgba(0, 209, 255, 0.2);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--halloween-orange), var(--halloween-purple));
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.85em;
}

/* Premium Badge - Cyan/Blue Gradient */
.badge-premium {
    background: linear-gradient(135deg, #00d1ff, #0066ff);
    box-shadow: 0 4px 15px rgba(0, 209, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.75em;
    padding: 6px 18px;
}

/* Secondary Badge Position (for cards with 2 badges) */
.badge-secondary {
    top: 18px;
}

.price-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: var(--text-color);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 10px;
}

.amount {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--primary-color);
}

.period {
    font-size: 1em;
    margin-left: 5px;
    color: var(--text-secondary);
}

.yearly-total {
    font-size: 0.9em;
    color: var(--text-secondary);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.yearly-total .info-tooltip {
    font-size: 0.9em;
}

.save {
    font-size: 0.95em;
    color: var(--halloween-orange);
    font-weight: 600;
    margin-bottom: 15px;
}

.features-compact {
    list-style: none;
    margin-bottom: 25px;
    text-align: left;
}

.features-compact li {
    padding: 8px 0;
    font-size: 0.95em;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.features-compact li:last-child {
    border-bottom: none;
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    width: 100%;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--background-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--background-color);
    box-shadow: var(--shadow-glow);
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 209, 255, 0.7); }
    50% { box-shadow: 0 0 0 10px rgba(0, 209, 255, 0); }
}

/* Common Features */
.common-features {
    margin-top: 40px;
    text-align: center;
}

.common-features h4 {
    font-size: 1.2em;
    color: var(--text-color);
    margin-bottom: 20px;
    font-weight: 500;
}

.common-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    max-width: 700px;
    margin: 0 auto;
}

.common-features-grid span {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 0.95em;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.common-features-grid span:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    color: var(--text-color);
}

/* ===================================
   Info Section
   =================================== */
.section-info {
    background: linear-gradient(135deg, rgba(15, 22, 42, 0.5), rgba(10, 14, 26, 0.8));
    padding: 60px 20px;
}

.section-info h2 {
    text-align: center;
    font-size: 2em;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.info-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 209, 255, 0.2);
}

.info-card h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: var(--text-color);
}

.info-card p {
    font-size: 0.95em;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===================================
   FAQ Section
   =================================== */
.section-faq {
    padding: 60px 20px;
}

.section-faq h2 {
    text-align: center;
    font-size: 2em;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.faq-compact {
    max-width: 800px;
    margin: 0 auto 40px;
}

.faq-details {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-details:hover {
    border-color: var(--primary-color);
}

.faq-details summary {
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05em;
    color: var(--text-color);
    list-style: none;
    position: relative;
    user-select: none;
}

.faq-details summary::-webkit-details-marker {
    display: none;
}

.faq-details summary::after {
    content: '+';
    position: absolute;
    right: 25px;
    font-size: 1.5em;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-details[open] summary::after {
    transform: rotate(45deg);
}

.faq-details p {
    padding: 0 25px 20px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* YouTube Box */
.youtube-box {
    text-align: center;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.youtube-box p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.youtube-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.youtube-btn:hover {
    background-color: var(--primary-color);
    color: var(--background-color);
    box-shadow: var(--shadow-glow);
}

/* ===================================
   Service Section
   =================================== */
.section-service {
    padding: 60px 20px;
    background: var(--background-secondary);
}

.section-service h2 {
    text-align: center;
    font-size: 2em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-intro {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-size: 1.1em;
}

.service-card {
    max-width: 500px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(0, 209, 255, 0.2);
}

.service-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--text-color);
    font-size: 1.5em;
    margin-bottom: 15px;
}

.service-price {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.service-price-note {
    color: var(--text-secondary);
    font-size: 0.9em;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    text-align: left;
}

.service-features li {
    color: var(--text-secondary);
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-note {
    color: var(--text-secondary);
    font-size: 0.9em;
    font-style: italic;
    margin-bottom: 25px;
}

/* Info Tooltip */
.info-tooltip {
    cursor: help;
    font-size: 0.6em;
    vertical-align: middle;
    margin-left: 5px;
    position: relative;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.info-tooltip:hover {
    opacity: 1;
}

/* Custom Tooltip Styling */
.info-tooltip::after {
    content: attr(title);
    position: absolute;
    bottom: 130%;
    left: 50%;
    transform: translateX(-50%);
    background: #1a1f2e;
    color: #e0e0e0;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid var(--primary-color);
    font-size: 0.85rem;
    font-style: normal;
    font-weight: 400;
    width: 280px;
    text-align: left;
    line-height: 1.5;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    pointer-events: none;
}

.info-tooltip::before {
    content: '';
    position: absolute;
    bottom: 115%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: var(--primary-color);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 101;
}

.info-tooltip:hover::after,
.info-tooltip:hover::before {
    opacity: 1;
    visibility: visible;
}

/* Service Section Responsive */
@media (max-width: 768px) {
    .service-card {
        padding: 30px 20px;
    }

    .service-price {
        font-size: 2em;
    }

    .service-icon {
        font-size: 2.5em;
    }
}

/* ATAS Partner Section */
.section-atas-partner {
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(0, 209, 255, 0.05), rgba(139, 92, 246, 0.05));
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.atas-partner-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.atas-partner-text {
    font-size: 1.3em;
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.atas-partner-link {
    display: inline-block;
    transition: all 0.3s ease;
}

.atas-partner-logo {
    height: 60px;
    width: auto;
    filter: brightness(0.9);
    transition: all 0.3s ease;
}

.atas-partner-link:hover .atas-partner-logo {
    filter: brightness(1.1);
    transform: scale(1.05);
}

/* ===================================
   Steps Section - So einfach geht's
   =================================== */
.section-steps {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(0, 209, 255, 0.03), rgba(139, 92, 246, 0.03));
    border-top: 1px solid var(--border-color);
}

.section-steps h2 {
    font-size: 2.2em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1em;
    color: var(--text-secondary);
    margin-bottom: 50px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-color);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--halloween-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: 700;
    color: #fff;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(0, 209, 255, 0.4);
}

.step-card h3 {
    font-size: 1.4em;
    color: var(--text-color);
    margin-bottom: 15px;
}

.step-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.step-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.step-card a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

/* ===================================
   Beratung Section
   =================================== */
.section-beratung {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(255, 107, 53, 0.1));
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 60px 20px;
    text-align: center;
}

.section-beratung h2 {
    font-size: 2em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-beratung > p {
    font-size: 1.1em;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.calendar-placeholder {
    background: var(--card-bg);
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    padding: 40px 20px;
    max-width: 600px;
    margin: 0 auto;
}

.calendar-placeholder p {
    font-size: 1.1em;
    margin-bottom: 10px;
}

.calendar-note {
    font-size: 0.95em;
    color: var(--text-secondary);
    margin-top: 15px;
}

.calendar-note a {
    color: var(--primary-color);
    text-decoration: none;
}

.calendar-note a:hover {
    text-decoration: underline;
}

/* ===================================
   Contact Section
   =================================== */
.section-contact {
    padding: 40px 20px;
    text-align: center;
}

.section-contact p {
    font-size: 1.1em;
}

.section-contact a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.section-contact a:hover {
    text-decoration: underline;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: rgba(10, 14, 26, 0.95);
    border-top: 1px solid var(--border-color);
    padding: 30px 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-content p {
    color: var(--text-secondary);
    font-size: 0.9em;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s ease;
}

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

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 768px) {
    /* Navigation Mobile */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 14, 26, 0.98);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 30px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    /* Hero */
    .hero-title {
        font-size: 1.8em;
    }

    .hero-slogan {
        font-size: 1.05em;
    }

    .hero-subtitle {
        font-size: 0.9em;
    }

    .hero-badges {
        flex-direction: column;
        gap: 10px;
    }

    .hero-badge {
        font-size: 0.85em;
        padding: 6px 14px;
    }

    .hero-logo svg {
        width: 45px;
        height: 45px;
    }

    .hero-logo {
        gap: 18px;
    }


    .halloween-compact {
        font-size: 0.85em;
        padding: 10px 18px;
    }

    .countdown-compact {
        margin-left: 8px;
        gap: 5px;
    }

    /* Beratung CTA */
    .beratung-cta-hero {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .beratung-cta-content {
        text-align: center;
        font-size: 1em;
    }

    .beratung-cta-icon {
        font-size: 2em;
    }

    .pricing-compact {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .common-features-grid {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .section-info h2,
    .section-faq h2,
    .section-beratung h2 {
        font-size: 1.6em;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.7em;
    }

    .amount {
        font-size: 2em;
    }

    .price-card {
        padding: 25px 20px;
    }

    .halloween-compact {
        display: block;
    }

    .countdown-compact {
        margin-left: 0;
        margin-top: 10px;
        justify-content: center;
    }
}

/* ===================================
   Optimierung für große Monitore
   =================================== */
@media (min-width: 1920px) {
    /* Hero größere Schrift */
    .hero-title {
        font-size: 2.6em;
    }

    .hero-slogan {
        font-size: 1.4em;
    }

    .hero-logo svg {
        width: 60px;
        height: 60px;
    }

    /* Größere Badges */
    .halloween-compact {
        padding: 14px 24px;
        font-size: 1.05em;
    }


    /* Größere Preiskarten */
    .pricing-compact {
        gap: 30px;
    }

    .price-card {
        padding: 35px 30px;
    }

    .amount {
        font-size: 2.8em;
    }

    /* Mehr Spalten bei Features */
    .common-features-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 900px;
    }

    .info-grid {
        gap: 30px;
    }
}

@media (min-width: 2560px) {
    /* Extra große Monitore */
    .hero-title {
        font-size: 3em;
    }

    .hero-slogan {
        font-size: 1.6em;
    }

    .hero-logo svg {
        width: 70px;
        height: 70px;
    }

    .section-title {
        font-size: 2.8em;
    }


    /* Noch mehr Platz für Grids */
    .common-features-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1100px;
    }

    .info-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===================================
   Cookie Banner
   =================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 22, 42, 0.98);
    backdrop-filter: blur(10px);
    border-top: 2px solid var(--border-color);
    padding: 25px 20px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-text {
    flex: 1;
}

.cookie-text h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2em;
}

.cookie-text p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95em;
}

.cookie-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95em;
    white-space: nowrap;
}

.cookie-btn-primary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cookie-btn-primary:hover {
    background: rgba(0, 209, 255, 0.1);
}

.cookie-btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cookie-btn-secondary:hover {
    background: rgba(0, 209, 255, 0.1);
}

.cookie-btn-text {
    background: transparent;
    color: var(--text-secondary);
    padding: 12px 16px;
}

.cookie-btn-text:hover {
    color: var(--primary-color);
}

/* Cookie Settings Modal */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    backdrop-filter: blur(10px);
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    border-bottom: 1px solid var(--border-color);
}

.cookie-modal-header h2 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.5em;
}

.cookie-modal-close {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 2em;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    transition: color 0.3s ease;
}

.cookie-modal-close:hover {
    color: var(--primary-color);
}

.cookie-modal-body {
    padding: 25px;
}

.cookie-category {
    margin-bottom: 25px;
}

.cookie-category:last-child {
    margin-bottom: 0;
}

.cookie-category-header {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.cookie-category h3 {
    color: var(--text-color);
    margin-bottom: 8px;
    font-size: 1.1em;
}

.cookie-category p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    font-size: 0.9em;
}

/* Toggle Switch */
.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    flex-shrink: 0;
    margin-top: 2px;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: 0.3s;
    border-radius: 26px;
    border: 2px solid var(--border-color);
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 2px;
    bottom: 2px;
    background-color: var(--text-secondary);
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .cookie-slider {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

input:checked + .cookie-slider:before {
    transform: translateX(24px);
    background-color: #fff;
}

/* ===================================
   Partner Page Styles
   =================================== */

/* Partner Hero */
.partner-hero {
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, rgba(15, 22, 42, 0.95), rgba(10, 14, 26, 0.98));
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.partner-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.partner-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), #0066ff);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9em;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 209, 255, 0.4);
}

.partner-hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.partner-subtitle {
    font-size: 1.3em;
    color: var(--text-secondary);
    margin-bottom: 50px;
    line-height: 1.6;
}

.partner-subtitle strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Commission Cards */
.partner-commission-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.commission-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.commission-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.commission-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.commission-card h3 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: var(--text-color);
}

.commission-amount {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.commission-card p {
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.commission-note {
    display: block;
    font-size: 0.85em;
    color: var(--text-secondary);
    opacity: 0.7;
}

.btn-large {
    padding: 18px 50px;
    font-size: 1.1em;
    margin-top: 20px;
}

/* Affiliate Link Box in Commission Cards */
.affiliate-link-box {
    margin-top: 15px;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 209, 255, 0.3);
    border-radius: 8px;
    text-align: left;
}

.affiliate-link-box strong {
    color: var(--text-color);
    font-size: 0.85em;
}

.affiliate-link-box code {
    display: block;
    background: rgba(0, 0, 0, 0.5);
    color: var(--primary-color);
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 0.8em;
    margin-top: 8px;
    word-wrap: break-word;
    font-family: 'Courier New', monospace;
}

/* Affiliate Hint */
.affiliate-hint {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.95em;
    margin: 20px 0;
    padding: 15px;
    background: rgba(0, 209, 255, 0.05);
    border: 1px solid rgba(0, 209, 255, 0.2);
    border-radius: 10px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Copecart Note */
.copecart-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.85em;
    margin-top: 10px;
    opacity: 0.7;
}

/* Partner Calendly Section */
.partner-calendly-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
}

.partner-calendly-section h3 {
    text-align: center;
    font-size: 1.8em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.partner-calendly-section p {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1em;
    margin-bottom: 30px;
}

.partner-calendly-section .calendly-inline-widget {
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

/* Partner Benefits Section */
.partner-benefits {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(10, 14, 26, 0.5), rgba(15, 22, 42, 0.8));
}

.partner-benefits h2 {
    text-align: center;
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 209, 255, 0.2);
}

.benefit-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.benefit-card h3 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: var(--text-color);
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Partner Steps */
.partner-steps {
    padding: 80px 20px;
}

.partner-steps h2 {
    text-align: center;
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.step-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #0066ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: 700;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 209, 255, 0.4);
}

.step-card h3 {
    font-size: 1.4em;
    margin: 20px 0 15px;
    color: var(--text-color);
}

.step-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Partner Target Section */
.partner-target {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(15, 22, 42, 0.5), rgba(10, 14, 26, 0.8));
}

.partner-target h2 {
    text-align: center;
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.target-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.target-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 209, 255, 0.2);
}

.target-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.target-card h3 {
    font-size: 1.2em;
    margin-bottom: 15px;
    color: var(--text-color);
}

.target-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Partner Specs Section (kompakt) */
.partner-specs {
    padding: 60px 20px;
    background: var(--background-color);
}

.partner-specs h2 {
    text-align: center;
    font-size: 2em;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.specs-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.spec-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 15px 20px;
    color: var(--text-secondary);
    font-size: 0.95em;
    transition: all 0.3s ease;
}

.spec-item:hover {
    border-color: var(--primary-color);
    color: var(--text-color);
    transform: translateX(5px);
}

/* Partner Materials Section */
.partner-materials {
    padding: 80px 20px;
}

.partner-materials h2 {
    text-align: center;
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.section-intro {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1em;
    margin-bottom: 50px;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.material-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.material-card:hover {
    border-color: var(--primary-color);
}

.material-card h3 {
    font-size: 1.3em;
    margin-bottom: 20px;
    color: var(--text-color);
}

.material-content {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 209, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
}

.material-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 15px;
}

.material-content code {
    display: block;
    background: rgba(0, 0, 0, 0.5);
    color: var(--primary-color);
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 0.9em;
    margin: 10px 0;
    word-wrap: break-word;
    font-family: 'Courier New', monospace;
}

.material-content .note {
    font-size: 0.85em;
    color: var(--text-secondary);
    opacity: 0.7;
    font-style: italic;
    margin-top: 10px;
}

.specs-list {
    list-style: none;
    padding: 0;
}

.specs-list li {
    color: var(--text-secondary);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.specs-list li:last-child {
    border-bottom: none;
}

.btn-copy {
    background: var(--card-bg);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9em;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-copy:hover {
    background: var(--primary-color);
    color: var(--background-color);
}

/* Partner FAQ */
.partner-faq {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(15, 22, 42, 0.5), rgba(10, 14, 26, 0.8));
}

.partner-faq h2 {
    text-align: center;
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 50px;
}

/* Partner CTA */
.partner-cta {
    padding: 80px 20px;
    text-align: center;
}

.partner-cta h2 {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.partner-cta p {
    font-size: 1.2em;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.partner-support {
    margin-top: 30px;
    font-size: 0.95em;
    color: var(--text-secondary);
}

.partner-support a {
    color: var(--primary-color);
    text-decoration: none;
}

.partner-support a:hover {
    text-decoration: underline;
}

/* Responsive Partner Page */
@media (max-width: 768px) {
    .partner-hero h1 {
        font-size: 2em;
    }

    .partner-subtitle {
        font-size: 1.1em;
    }

    .commission-amount {
        font-size: 2em;
    }

    .partner-commission-cards {
        grid-template-columns: 1fr;
    }

    .benefits-grid,
    .steps-grid,
    .target-grid,
    .materials-grid {
        grid-template-columns: 1fr;
    }

    .partner-hero {
        padding: 100px 20px 60px;
        min-height: auto;
    }
}

input:disabled + .cookie-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 20px 25px;
    border-top: 1px solid var(--border-color);
    text-align: right;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
        text-align: center;
    }

    .cookie-category-header {
        flex-direction: row;
    }

    .cookie-modal-header h2 {
        font-size: 1.2em;
    }
}
