/**
 * Zemra Landing Page Styles
 * Komplettes Design für die Landing-Page
 */

.zemra-landing {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #1a1a1a;
    line-height: 1.6;
}

.zemra-landing * { box-sizing: border-box; }

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

/* ===== NAVIGATION ===== */
.zl-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.zl-logo {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #ff4458, #fd267d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.zl-nav-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.zl-nav-actions .zemra-language-switcher select {
    padding: 8px 12px;
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
}

/* ===== HERO ===== */
.zl-hero {
    padding: 60px 0 100px;
    background: linear-gradient(135deg, #fff5f7 0%, #fef3f5 50%, #ffffff 100%);
    overflow: hidden;
}

.zl-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.zl-hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 24px;
    color: #1a1a1a;
}

.zl-hero-subtitle {
    font-size: 20px;
    color: #666;
    line-height: 1.5;
    margin: 0 0 32px;
}

.zl-hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.zl-btn-large {
    padding: 16px 32px !important;
    font-size: 17px !important;
}

.zl-trust-badges {
    font-size: 14px;
    color: #999;
    margin: 0;
}

/* Hero Visual: Animierte Karten */
.zl-hero-visual {
    position: relative;
    height: 500px;
}

.zl-cards-stack {
    position: relative;
    width: 320px;
    height: 480px;
    margin: 0 auto;
}

.zl-demo-card {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.zl-card-1 {
    transform: rotate(-8deg) translateX(-30px);
    z-index: 1;
    opacity: 0.7;
}

.zl-card-2 {
    transform: rotate(4deg) translateX(20px);
    z-index: 2;
    opacity: 0.85;
}

.zl-card-3 {
    z-index: 3;
    animation: zlCardFloat 3s ease-in-out infinite;
}

/* ===== Slideshow (auf der oberen Karte) ===== */
.zl-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 700ms ease;
    pointer-events: none;
    display: flex;
    flex-direction: column;
}
.zl-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}
/* Die Slides enthalten ihr eigenes .zl-card-image (80%) und .zl-card-info (Rest) */
.zl-slide .zl-card-image { height: 80%; }
.zl-slide .zl-card-info  { flex: 1; }

.zl-slide-dots {
    position: absolute;
    bottom: 92px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 6px;
    z-index: 4;
}
.zl-slide-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.55);
    box-shadow: 0 1px 3px rgba(0,0,0,0.25);
    transition: width 300ms ease, background 300ms ease;
}
.zl-slide-dot.is-active {
    width: 22px;
    background: #fff;
}

@keyframes zlCardFloat {
    0%, 100% { transform: translateY(0) rotate(2deg); }
    50% { transform: translateY(-10px) rotate(-2deg); }
}

.zl-card-image {
    width: 100%;
    height: 80%;
    background-size: cover;
    background-position: center;
}

.zl-card-info {
    padding: 16px 20px;
    background: #fff;
}

.zl-card-info strong {
    display: block;
    font-size: 20px;
    margin-bottom: 4px;
}

.zl-card-info span {
    font-size: 14px;
    color: #666;
}

.zl-card-like {
    position: absolute;
    top: 30px;
    right: 30px;
    padding: 10px 20px;
    border: 4px solid #66d7ee;
    border-radius: 8px;
    color: #66d7ee;
    font-size: 24px;
    font-weight: 800;
    transform: rotate(15deg);
    background: rgba(255,255,255,0.9);
}

/* ===== SECTIONS ===== */
.zl-features, .zl-how, .zl-testimonials {
    padding: 100px 0;
}

.zl-features { background: #fff; }
.zl-how { background: #fafafa; }
.zl-testimonials { background: #fff; }

.zl-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.zl-section-header h2 {
    font-size: 42px;
    font-weight: 800;
    margin: 0 0 16px;
    color: #1a1a1a;
}

.zl-section-header p {
    font-size: 18px;
    color: #666;
    margin: 0;
}

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

.zl-feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    text-align: center;
    transition: all 0.3s;
}

.zl-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    border-color: transparent;
}

.zl-feature-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.zl-feature-card h3 {
    font-size: 24px;
    margin: 0 0 12px;
    font-weight: 700;
}

.zl-feature-card p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* STEPS */
.zl-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

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

.zl-step-number {
    font-size: 80px;
    font-weight: 800;
    background: linear-gradient(135deg, #ff4458, #fd267d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
}

.zl-step h3 {
    font-size: 24px;
    margin: 0 0 12px;
    font-weight: 700;
}

.zl-step p {
    color: #666;
    margin: 0;
}

/* TESTIMONIALS */
.zl-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.zl-testimonial {
    background: #fafafa;
    padding: 30px;
    border-radius: 16px;
}

.zl-stars {
    color: #fbbf24;
    font-size: 20px;
    margin-bottom: 16px;
}

.zl-testimonial p {
    font-style: italic;
    color: #333;
    line-height: 1.6;
    margin: 0 0 20px;
}

.zl-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.zl-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    flex-shrink: 0;
}

.zl-testimonial-author strong {
    display: block;
    font-size: 15px;
}

.zl-testimonial-author small {
    font-size: 13px;
    color: #999;
}

/* CTA SECTION */
.zl-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #ff4458 0%, #fd267d 100%);
    text-align: center;
    color: #fff;
}

.zl-cta h2 {
    font-size: 48px;
    font-weight: 800;
    margin: 0 0 16px;
    color: #fff;
}

.zl-cta p {
    font-size: 20px;
    margin: 0 0 32px;
    opacity: 0.95;
}

.zl-cta-btn {
    background: #fff !important;
    color: #ff4458 !important;
    font-size: 18px !important;
    padding: 18px 40px !important;
    font-weight: 700 !important;
    border: none;
}

.zl-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

/* ===== MOBILE ===== */
@media (max-width: 968px) {
    .zl-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .zl-hero-title {
        font-size: 40px;
    }
    
    .zl-features-grid, .zl-steps-grid, .zl-testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .zl-section-header h2 {
        font-size: 32px;
    }
    
    .zl-cta h2 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .zl-hero-title {
        font-size: 32px;
    }
    
    .zl-hero-subtitle {
        font-size: 16px;
    }
    
    .zl-cards-stack {
        width: 260px;
        height: 380px;
    }
    
    .zl-nav-actions {
        gap: 6px;
    }
    
    .zl-nav-actions .zemra-btn {
        padding: 8px 16px !important;
        font-size: 13px !important;
    }
}
