/* ===== Product Header ===== */
.product-header {
    position: relative;
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 50%, #1a1a1a 100%);
    overflow: hidden;
    margin-bottom: 0;
}

.product-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.header-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 215, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 215, 0, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.header-particle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
}

.header-particle.p1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    top: -100px;
    right: 10%;
    animation: float-particle 8s ease-in-out infinite;
}

.header-particle.p2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.25) 0%, transparent 70%);
    bottom: -50px;
    left: 5%;
    animation: float-particle 10s ease-in-out infinite reverse;
}

.header-particle.p3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(155, 89, 182, 0.2) 0%, transparent 70%);
    top: 20%;
    left: 30%;
    animation: float-particle 12s ease-in-out infinite;
}

@keyframes float-particle {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.1); }
    66% { transform: translate(-20px, 30px) scale(0.9); }
}

.product-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.product-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #ffd700;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
    animation: badge-glow 3s ease-in-out infinite;
}

@keyframes badge-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.1); }
    50% { box-shadow: 0 0 30px rgba(255, 215, 0, 0.2); }
}

.product-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.header-highlight {
    background: linear-gradient(90deg, #ffd700 0%, #ffaa00 50%, #ffd700 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    to { background-position: 200% center; }
}

.product-header-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 32px;
    line-height: 1.6;
}

.product-header-price {
    display: inline-flex;
    flex-direction: column;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px 40px;
}

.price-tag {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.price-tag strong {
    font-size: 1.8rem;
    color: #ffd700;
    font-weight: 700;
}

.price-info {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .product-header {
        padding: 100px 0 40px;
    }
    
    .product-header h1 {
        font-size: 2.2rem;
    }
    
    .product-header-subtitle {
        font-size: 1rem;
    }
    
    .price-tag strong {
        font-size: 1.5rem;
    }
}

/* ===== Side Anchor Navigation (Desktop) ===== */
.side-nav {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: none; /* Hidden by default, shown on desktop */
}

@media (min-width: 1400px) {
    .side-nav {
        display: block;
    }
}

.side-nav-list {
    list-style: none;
    margin: 0;
    padding: 8px;
    background: rgba(26, 26, 26, 0.95);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-left: none;
    border-radius: 0 12px 12px 0;
    backdrop-filter: blur(10px);
}

.side-nav-list li {
    margin: 0;
}

.side-nav-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: #888;
    text-decoration: none;
    font-size: 12px;
    border-radius: 8px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.side-nav-list a i {
    font-size: 14px;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.side-nav-list a span {
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.side-nav:hover .side-nav-list a span {
    opacity: 1;
    max-width: 100px;
}

.side-nav-list a:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.side-nav-list a.active {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.15);
}

.side-nav-list a.active i {
    color: #ffd700;
}

/* CTA Button in Side Nav */
.side-nav-cta {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.side-nav-cta a {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.side-nav-cta a:hover {
    background: rgba(255, 215, 0, 0.2);
}

/* Schießkladde Hero */
.schiesskladde-hero {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 215, 0, 0.05) 50%, rgba(155, 89, 182, 0.05) 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 24px;
    padding: 48px 40px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}

.hero-background-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 60% 80%, rgba(255, 215, 0, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.schiesskladde-hero-content {
    display: flex;
    align-items: center;
    gap: 48px;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

/* Hero Visual / Icon */
.schiesskladde-hero-visual {
    position: relative;
    flex-shrink: 0;
}

.hero-icon-ring {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-ring 3s ease-in-out infinite;
}

.hero-icon-ring-inner {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3) 0%, rgba(255, 215, 0, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
}

.hero-icon-ring-inner i {
    font-size: 42px;
    color: #ffd700;
}

@keyframes pulse-ring {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.9; }
}

/* Floating Badges */
.hero-floating-badges {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-badge {
    position: absolute;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    animation: float 4s ease-in-out infinite;
}

.floating-badge.fb-1 {
    top: -5px;
    right: 10px;
    background: rgba(40, 167, 69, 0.3);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.5);
    animation-delay: 0s;
}

.floating-badge.fb-2 {
    bottom: 10px;
    left: -10px;
    background: rgba(255, 215, 0, 0.3);
    color: #ffd700;
    border: 1px solid rgba(255, 215, 0, 0.5);
    animation-delay: 1s;
}

.floating-badge.fb-3 {
    top: 50%;
    right: -15px;
    background: rgba(155, 89, 182, 0.3);
    color: #9b59b6;
    border: 1px solid rgba(155, 89, 182, 0.5);
    animation-delay: 2s;
}

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

/* Hero Text */
.schiesskladde-hero-text {
    flex: 1;
}

.hero-eyebrow {
    display: inline-block;
    background: rgba(255, 215, 0, 0.15);
    color: #ffd700;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.schiesskladde-hero-text h2 {
    margin: 0 0 16px 0;
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.hero-highlight {
    background: linear-gradient(90deg, #ffd700, #ffaa00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.schiesskladde-hero-text p {
    margin: 0 0 24px 0;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Hero CTA Buttons */
.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    color: #1a1a1a;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.hero-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 215, 0, 0.4);
    text-decoration: none;
    color: #1a1a1a;
}

.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    text-decoration: none;
}

.schiesskladde-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.schiesskladde-badge {
    background: rgba(255, 215, 0, 0.15);
    color: #ffd700;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.schiesskladde-badge-highlight {
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.3) 0%, rgba(255, 215, 0, 0.3) 100%);
    color: #fff;
    border: 1px solid rgba(155, 89, 182, 0.5);
}

/* Feature Statistics Bar */
.feature-stats-bar {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 48px;
}

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

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}

/* Screenshot Gallery */
.screenshot-hint {
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    margin-left: 12px;
}

.screenshot-hint i {
    margin-right: 4px;
}

.screenshot-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.screenshot-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: block;
    cursor: zoom-in;
    text-decoration: none;
}

.screenshot-item:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.2);
}

.screenshot-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.screenshot-item:hover img {
    transform: scale(1.02);
}

.screenshot-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
}

.screenshot-caption i {
    margin-right: 8px;
    opacity: 0.7;
}

/* Lightbox Styles */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    cursor: zoom-out;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-title {
    text-align: center;
    color: #fff;
    margin-top: 16px;
    font-size: 1rem;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10003;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.lightbox-close-hint {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    pointer-events: none;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10003;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* NEW Badge */
.new-badge {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #fff;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 10px;
    vertical-align: middle;
}

.new-badge-sm {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #fff;
    padding: 2px 8px;
    border-radius: 8px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 8px;
    vertical-align: middle;
}

/* AI Features Grid */
.ai-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Hero Responsive */
@media (max-width: 900px) {
    .schiesskladde-hero {
        padding: 32px 24px;
    }
    
    .schiesskladde-hero-content {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }
    
    .schiesskladde-hero-visual {
        margin: 0 auto;
    }
    
    .hero-icon-ring {
        width: 120px;
        height: 120px;
    }
    
    .hero-icon-ring-inner {
        width: 80px;
        height: 80px;
    }
    
    .hero-icon-ring-inner i {
        font-size: 32px;
    }
    
    .schiesskladde-hero-text h2 {
        font-size: 1.8rem;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .schiesskladde-hero-badges {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .schiesskladde-hero-text h2 {
        font-size: 1.5rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
    
    .hero-cta-primary,
    .hero-cta-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .floating-badge {
        display: none;
    }
}

@media (max-width: 1200px) {
    .ai-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ai-features-grid {
        grid-template-columns: 1fr;
    }
}

.ai-feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.ai-feature-card:hover {
    border-color: rgba(155, 89, 182, 0.4);
    transform: translateY(-4px);
}

.ai-feature-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.ai-feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(155, 89, 182, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-feature-icon i {
    font-size: 20px;
    color: #9b59b6;
}

.ai-feature-header h3 {
    margin: 0;
    font-size: 1.05rem;
    color: #fff;
    line-height: 1.3;
}

.ai-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ai-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.88rem;
    padding: 7px 0;
    line-height: 1.5;
}

.ai-feature-list li i {
    color: #9b59b6;
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 12px;
}

.ai-feature-list li span {
    flex: 1;
    min-width: 0;
    word-wrap: break-word;
}

.ai-feature-list li strong {
    color: #fff;
}

/* Alert Levels */
.alert-levels {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 12px 14px;
    margin: 12px 0;
}

.alert-level {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    padding: 5px 0;
}

.alert-level span:last-child {
    flex: 1;
}

.alert-dot {
    width: 10px;
    height: 10px;
    min-width: 10px;
    border-radius: 50%;
}

.alert-critical { color: #ff6b6b; }
.alert-critical .alert-dot { background: #ff6b6b; }
.alert-warning { color: #ffa500; }
.alert-warning .alert-dot { background: #ffa500; }
.alert-ok { color: #28a745; }
.alert-ok .alert-dot { background: #28a745; }

/* Analytics Grid */
.analytics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.analytics-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    padding: 24px;
}

.analytics-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.analytics-icon i {
    font-size: 22px;
    color: #ffd700;
}

.analytics-card h4 {
    font-size: 1rem;
    color: #fff;
    margin: 0 0 12px 0;
}

.analytics-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.analytics-card ul li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.analytics-card ul li:last-child {
    border-bottom: none;
}

/* Feature Card Highlight */
.feature-card-highlight {
    border-color: rgba(155, 89, 182, 0.4);
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.1) 0%, rgba(155, 89, 182, 0.05) 100%);
}

/* Section Styling */
.schiesskladde-section {
    margin-bottom: 48px;
}

.section-title {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title i {
    color: #ffd700;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    min-width: 0;
}

.feature-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-4px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.feature-icon i {
    font-size: 22px;
}

.feature-card h3 {
    font-size: 1.1rem;
    color: #fff;
    margin: 0 0 12px 0;
}

.feature-card > p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 16px 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    padding: 6px 0;
    line-height: 1.5;
    overflow-wrap: break-word;
}

.feature-list li i {
    color: #28a745;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 3px;
}

.feature-list li strong {
    display: contents;
}

/* User Management Grid */
.user-management-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.user-mgmt-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
}

.user-mgmt-card h4 {
    font-size: 1rem;
    color: #fff;
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-mgmt-card h4 i {
    color: #ffd700;
}

.user-mgmt-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.user-mgmt-card ul li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    padding: 5px 0;
    padding-left: 18px;
    position: relative;
}

.user-mgmt-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ffd700;
}

/* Legal Info Grid */
.legal-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.legal-card-intro {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-style: italic;
    margin: 0 0 12px 0;
    line-height: 1.5;
}

/* Rechtlicher Disclaimer */
.legal-disclaimer-box {
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.15) 0%, rgba(243, 156, 18, 0.08) 100%);
    border: 1px solid rgba(243, 156, 18, 0.3);
    border-left: 4px solid #f39c12;
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 32px;
}

.legal-disclaimer-box p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

.legal-disclaimer-box i {
    color: #f39c12;
    margin-right: 8px;
}

.legal-disclaimer-box strong {
    color: #fff;
}

.legal-info-card {
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.1) 0%, rgba(155, 89, 182, 0.05) 100%);
    border: 1px solid rgba(155, 89, 182, 0.2);
    border-radius: 16px;
    padding: 24px;
}

.legal-info-card h4 {
    font-size: 1rem;
    color: #fff;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.legal-info-card h4 i {
    color: #9b59b6;
}

.legal-info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.legal-info-card ul li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.legal-info-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #9b59b6;
}

/* API Table */
.api-table {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
}

.api-row {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    gap: 20px;
}

.api-row:last-child {
    border-bottom: none;
}

.api-row code {
    background: rgba(255, 215, 0, 0.15);
    color: #ffd700;
    padding: 6px 12px;
    border-radius: 6px;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.85rem;
    white-space: nowrap;
}

.api-row span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Hosting & Preise - Pricing Hero */
.pricing-hero {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.15) 0%, rgba(40, 167, 69, 0.05) 100%);
    border: 2px solid rgba(40, 167, 69, 0.4);
    border-radius: 24px;
    padding: 0;
    margin-bottom: 32px;
    overflow: hidden;
    position: relative;
}

.pricing-hero-badge {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: #fff;
    text-align: center;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.pricing-hero-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    padding: 32px 40px;
    align-items: center;
}

.pricing-hero-left h3 {
    font-size: 1.5rem;
    color: #fff;
    margin: 0 0 8px 0;
}

.pricing-hero-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    margin: 0 0 20px 0;
}

.pricing-hero-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
}

.pricing-hero-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

.pricing-hero-features li i {
    color: #28a745;
    font-size: 14px;
}

.pricing-hero-right {
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 32px 40px;
    min-width: 280px;
}

.pricing-hero-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    margin-bottom: 20px;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #28a745;
    margin-top: 8px;
}

.price-amount {
    font-size: 4rem;
    font-weight: 700;
    color: #28a745;
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    align-self: flex-end;
    margin-bottom: 8px;
}

.pricing-hero-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.pricing-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
}

.pricing-tag i {
    color: #28a745;
    font-size: 12px;
}

.pricing-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: #fff;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 20px rgba(40, 167, 69, 0.3);
}

.pricing-hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(40, 167, 69, 0.4);
    color: #fff;
    text-decoration: none;
}

/* Pricing Features Row */
.pricing-features-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.pricing-feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 20px;
    transition: all 0.3s ease;
}

.pricing-feature-item:hover {
    border-color: rgba(40, 167, 69, 0.3);
    transform: translateY(-2px);
}

.pf-icon {
    width: 48px;
    height: 48px;
    background: rgba(40, 167, 69, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pf-icon i {
    font-size: 20px;
    color: #28a745;
}

.pf-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pf-text strong {
    color: #fff;
    font-size: 0.95rem;
}

.pf-text span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

/* Responsive Pricing */
@media (max-width: 992px) {
    .pricing-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .pricing-hero-features {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    
    .pricing-hero-right {
        margin: 0 auto;
    }
    
    .pricing-features-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .pricing-hero-content {
        padding: 24px 20px;
    }
    
    .pricing-hero-right {
        padding: 24px 20px;
        min-width: auto;
    }
    
    .price-amount {
        font-size: 3rem;
    }
    
    .pricing-features-row {
        grid-template-columns: 1fr;
    }
}

/* Contract Info */
.contract-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contract-card {
    display: flex;
    gap: 16px;
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.1) 0%, rgba(155, 89, 182, 0.05) 100%);
    border: 1px solid rgba(155, 89, 182, 0.2);
    border-radius: 12px;
    padding: 20px;
}

.contract-icon {
    width: 48px;
    height: 48px;
    background: rgba(155, 89, 182, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contract-icon i {
    font-size: 20px;
    color: #9b59b6;
}

.contract-content h4 {
    font-size: 1rem;
    color: #fff;
    margin: 0 0 8px 0;
}

.contract-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.contract-link {
    color: #ffd700;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contract-link:hover {
    color: #6366f1;
    text-decoration: underline;
}

/* Admin Grid */
.admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.admin-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
}

.admin-card h4 {
    font-size: 1rem;
    color: #fff;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-card h4 i {
    color: #ffd700;
}

.admin-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.admin-card ul li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.admin-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ffd700;
}

/* UI Components */
.ui-components {
    margin-top: 32px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

.ui-components h4 {
    font-size: 1rem;
    color: #fff;
    margin: 0 0 16px 0;
}

.component-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.component-item {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
}

/* Roadmap Container */
.roadmap-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

.roadmap-done, .roadmap-planned {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
}

.roadmap-done {
    border-color: rgba(40, 167, 69, 0.3);
}

.roadmap-done h4, .roadmap-planned h4 {
    font-size: 1rem;
    color: #fff;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.roadmap-done h4 i {
    color: #28a745;
}

.roadmap-planned h4 i {
    color: #ffd700;
}

.roadmap-completed .roadmap-item-done {
    background: rgba(40, 167, 69, 0.1);
    border-color: rgba(40, 167, 69, 0.2);
}

.roadmap-completed .roadmap-item-done i {
    color: #28a745;
}

/* Feature Stats Table */
.feature-stats-table {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
}

.stats-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-row:last-child {
    border-bottom: none;
}

.stats-category {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.stats-count {
    background: rgba(255, 215, 0, 0.15);
    color: #ffd700;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
}

.stats-total {
    background: rgba(255, 215, 0, 0.1);
}

.stats-total .stats-count {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
}

/* Roles Grid */
.roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.role-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.role-card:hover {
    transform: translateY(-4px);
}

.role-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 18px;
}

.role-admin .role-icon { background: rgba(255, 215, 0, 0.2); color: #ffd700; }
.role-vorstand .role-icon { background: rgba(155, 89, 182, 0.2); color: #9b59b6; }
.role-aufsicht .role-icon { background: rgba(255, 215, 0, 0.2); color: #ffd700; }
.role-ausbilder .role-icon { background: rgba(40, 167, 69, 0.2); color: #28a745; }
.role-mitglied .role-icon { background: rgba(52, 152, 219, 0.2); color: #3498db; }
.role-gast .role-icon { background: rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.5); }

.role-card h4 {
    font-size: 0.95rem;
    color: #fff;
    margin: 0 0 8px 0;
}

.role-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    margin: 0;
    line-height: 1.4;
}

.user-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.user-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 16px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.user-feature i {
    color: #ffd700;
}

/* Comparison Table */
.comparison-table {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: rgba(255, 255, 255, 0.05);
}

.comparison-header .comparison-col {
    padding: 16px 20px;
    font-weight: 600;
    color: #fff;
    text-align: center;
}

.comparison-highlight {
    background: rgba(40, 167, 69, 0.15) !important;
    color: #28a745 !important;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-row .comparison-col {
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.comparison-bad {
    color: rgba(255, 255, 255, 0.5);
}

.comparison-bad i {
    color: #dc3545;
}

.comparison-good {
    color: rgba(255, 255, 255, 0.8);
    background: rgba(40, 167, 69, 0.05);
}

.comparison-good i {
    color: #28a745;
}

/* USP Grid - Alleinstellungsmerkmale */
.usp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.usp-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 20px;
    transition: all 0.3s ease;
}

.usp-card:hover {
    border-color: rgba(255, 215, 0, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

.usp-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(255, 215, 0, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.usp-icon i {
    font-size: 20px;
    color: #ffd700;
}

.usp-content h4 {
    font-size: 1rem;
    color: #fff;
    margin: 0 0 6px 0;
    font-weight: 600;
}

.usp-content p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.5;
}

/* Security Grid */
.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.security-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
}

.security-icon {
    width: 48px;
    height: 48px;
    background: rgba(40, 167, 69, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.security-icon i {
    font-size: 22px;
    color: #28a745;
}

.security-card h4 {
    font-size: 1.1rem;
    color: #fff;
    margin: 0 0 16px 0;
}

.security-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.security-card ul li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.security-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
}

/* Tech Grid */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.tech-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
}

.tech-card h4 {
    font-size: 1rem;
    color: #fff;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tech-card h4 i {
    color: #ffd700;
}

.tech-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tech-list li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.tech-list li strong {
    color: rgba(255, 255, 255, 0.9);
}

/* Platform Grid */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.platform-group {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
}

.platform-group h4 {
    font-size: 1rem;
    color: #fff;
    margin: 0 0 16px 0;
}

.platform-items {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.platform-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
}

/* Design Features */
.design-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.design-feature {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.design-feature:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 215, 0, 0.3);
}

.design-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 215, 0, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.design-icon i {
    font-size: 22px;
    color: #ffd700;
}

.design-feature h4 {
    font-size: 0.95rem;
    color: #fff;
    margin: 0 0 8px 0;
}

.design-feature p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    margin: 0;
}

/* Mini CTA Sections */
.mini-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 16px;
    padding: 24px 32px;
    margin: 30px 0 40px 0;
}

.mini-cta-alt {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.15) 0%, rgba(40, 167, 69, 0.05) 100%);
    border-color: rgba(40, 167, 69, 0.3);
}

.mini-cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mini-cta-text i {
    color: #ffd700;
    font-size: 1.2rem;
}

.mini-cta-alt .mini-cta-text i {
    color: #28a745;
}

.mini-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ffd700, #e6c200);
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.mini-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    color: #fff;
    text-decoration: none;
}

.mini-cta-alt .mini-cta-btn {
    background: linear-gradient(135deg, #28a745, #20903b);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.mini-cta-alt .mini-cta-btn:hover {
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
    text-decoration: none;
    color: #fff;
}

/* Toggleable Tech Sections */
.tech-details-section {
    padding: 0 !important;
    overflow: hidden;
}

.toggle-section-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: none;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: inherit;
    text-align: left;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.toggle-section-btn:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
}

.toggle-section-btn span {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toggle-section-btn i:first-child {
    color: #ffd700;
}

.toggle-hint {
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    gap: 8px !important;
}

.toggle-icon {
    transition: transform 0.3s ease;
}

.toggle-content {
    max-height: 1000px;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 20px 24px;
}

.toggle-content.collapsed {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
}

/* Tech Details Toggle (native details/summary) */
.tech-details-toggle {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    margin-bottom: 24px;
    overflow: hidden;
}

.tech-details-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    cursor: pointer;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    list-style: none;
    transition: all 0.3s ease;
}

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

.tech-details-summary::marker {
    display: none;
    content: '';
}

.tech-details-summary:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
}

.tech-details-summary span {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tech-details-summary span i:first-child {
    color: #ffd700;
}

.tech-details-summary .toggle-hint {
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
}

.tech-details-summary .toggle-hint i {
    transition: transform 0.3s ease;
    margin-left: 8px;
}

.tech-details-toggle[open] .tech-details-summary .toggle-hint i {
    transform: rotate(180deg);
}

.tech-details-content {
    padding: 20px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Roadmap */
.roadmap-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.roadmap-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 18px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.roadmap-item:last-child {
    margin-bottom: 0;
}

.roadmap-item i {
    color: #ffd700;
    flex-shrink: 0;
}

/* Audience Grid */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.audience-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
}

.audience-card h4 {
    font-size: 1rem;
    color: #fff;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.audience-card h4 i {
    color: #ffd700;
}

.audience-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.audience-card ul li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.audience-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ffd700;
}

/* Hero Trust Badges */
.hero-trust-badges {
    display: flex;
    gap: 16px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.hero-trust-badge {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-trust-badge i {
    color: #28a745;
    font-size: 0.85rem;
}

/* Steps Grid - "So starten Sie" */
.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 32px;
}

.step-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    flex: 1;
    max-width: 300px;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.15);
}

.step-number {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffd700, #cc9900);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    color: #ffd700;
}

.step-card h3 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin: 0;
}

.step-connector {
    color: rgba(255, 255, 255, 0.25);
    font-size: 1.5rem;
    padding: 0 12px;
    flex-shrink: 0;
}

/* CTA Trust Row */
.cta-trust-row {
    display: flex;
    gap: 20px;
    margin-top: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-trust-item {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 6px;
}

.cta-trust-item i {
    color: #28a745;
}

/* Related Tools Hint */
.related-tools-hint {
    text-align: center;
    padding: 16px 0;
    margin-bottom: 24px;
}

.related-tools-hint p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

.related-tools-hint a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.related-tools-hint a:hover {
    color: #ffd700;
    text-decoration: underline;
}

/* Section Subtitle */
.section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-top: -8px;
    margin-bottom: 24px;
}

/* CTA Section */
.schiesskladde-cta {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 48px;
}

.cta-content {
    text-align: center;
    margin-bottom: 32px;
}

.cta-content h2 {
    font-size: 1.5rem;
    color: #fff;
    margin: 0 0 12px 0;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 24px 0;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    text-decoration: none !important;
}

.cta-btn-primary {
    background: #ffd700;
    color: #1a1a2e;
}

.cta-btn-primary:hover {
    background: #ffed4a;
    transform: translateY(-2px);
    text-decoration: none !important;
    color: #1a1a2e;
}

.cta-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    text-decoration: none !important;
    color: #fff;
}

.cta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.cta-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.cta-info-item i {
    color: #ffd700;
}

/* FAQ Section */
.schiesskladde-faq {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 32px;
}

.faq-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.faq-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 215, 0, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-icon i {
    font-size: 22px;
    color: #ffd700;
}

.faq-header h2 {
    font-size: 1.25rem;
    color: #fff;
    margin: 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
}

.faq-item summary {
    padding: 16px 20px;
    cursor: pointer;
    color: #fff;
    font-weight: 500;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.faq-item summary::after {
    content: '+';
    font-size: 1.25rem;
    color: #ffd700;
    transition: transform 0.3s ease;
}

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

.faq-item p {
    padding: 0 20px 16px;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Footer Note */
.schiesskladde-footer-note {
    text-align: center;
    padding: 24px 0;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 1024px) {
    .screenshot-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .usp-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .screenshot-gallery {
        grid-template-columns: 1fr;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .schiesskladde-hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .schiesskladde-hero-badges {
        justify-content: center;
    }
    
    .feature-stats-bar {
        gap: 16px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .ai-features-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        font-size: 0.85rem;
    }
    
    .comparison-row .comparison-col {
        padding: 12px 14px;
    }
    
    .api-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .roadmap-container {
        grid-template-columns: 1fr;
    }
    
    .hosting-highlight {
        flex-direction: column;
        text-align: center;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-list {
        justify-content: center;
    }
    
    .schiesskladde-cta {
        padding: 24px;
    }
    
    .cta-content h2 {
        font-size: 1.25rem;
    }
    
    .faq-header {
        flex-direction: column;
        text-align: center;
    }
    
    .steps-grid {
        flex-direction: column;
        gap: 16px;
    }
    
    .step-connector {
        transform: rotate(90deg);
        padding: 0;
    }
    
    .step-card {
        max-width: 100%;
    }
    
    .hero-trust-badges {
        justify-content: center;
    }
    
    .cta-trust-row {
        justify-content: center;
    }
}

/* ===== Feature Showcase (Screenshot neben Feature, zweispaltig) ===== */
.feature-showcase-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.feature-showcase-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.feature-showcase-item.feature-showcase-reversed .feature-showcase-image {
    order: -1;
}

.feature-showcase-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.feature-showcase-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 14px;
    line-height: 1.2;
}

.feature-showcase-text > p {
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
}

.feature-showcase-image {
    position: relative;
}

.feature-showcase-image img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
}

.feature-showcase-image.screenshot-item {
    cursor: zoom-in;
}

.feature-showcase-image.screenshot-item::after {
    content: '\f00e';
    font-family: FontAwesome;
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.feature-showcase-image.screenshot-item:hover::after {
    opacity: 1;
}

.feature-showcase-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 36px 80px rgba(0, 0, 0, 0.65);
}

@media (max-width: 960px) {
    .feature-showcase-item {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 60px;
        padding-bottom: 60px;
    }

    .feature-showcase-item.feature-showcase-reversed .feature-showcase-image {
        order: 0;
    }
}
