/* WEBSEITE - EINFACH & KLAR FÜR NICHT-IT-MENSCHEN */

/**
 * Farbschema: Freundlich & Professionell
 */
:root {
    /* Main Colors */
    --primary: #980a0a;
    --primary-light: #B03030;
    --secondary: #0891B2;
    --secondary-light: #22D3EE;
    --dark: #1F2937;
    --dark-light: #374151;
    --light: #F9FAFB;
    --white: #FFFFFF;
    --gray: #6B7280;
    --gray-light: #D1D5DB;
    --success: #10B981;
    --warning: #F59E0B;

    /* Gradient */
    --gradient: linear-gradient(135deg, #6B46C1 0%, #22D3EE 100%);

    /* Fonts */
    --font-main: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background: var(--white);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Simple Navigation */
.simple-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-light);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
}

.logo-icon {
    font-size: 1.8rem;
}

.logo-text strong {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-cta {
    background: var(--gradient);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(107, 70, 193, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 1.2rem;
    cursor: pointer;
}

/* Hero Section */
.hero-simple {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, var(--light) 0%, #EEF2FF 100%);
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: var(--success);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.hero-simple h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--dark);
}

.highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 35px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 5px 20px rgba(107, 70, 193, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(107, 70, 193, 0.4);
}

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

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

/* Trust Badges */
.trust-badges {
    padding: 60px 0;
    background: var(--white);
    text-align: center;
}

.trust-badges p {
    color: var(--gray);
    margin-bottom: 30px;
    font-size: 1rem;
}

.badges-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    color: var(--dark);
}

.badge-icon {
    font-size: 1.5rem;
}

/* Problems Section */
.problems-section {
    padding: 100px 0;
    background: var(--light);
}

.problems-section h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 60px;
    color: var(--dark);
}

.problem-card {
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.problem-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.problem-text {
    color: var(--gray);
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 25px;
    padding: 15px;
    background: var(--light);
    border-radius: 8px;
}

.solution {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 20px;
    border-top: 2px solid var(--gray-light);
}

.solution-icon {
    color: var(--success);
    font-size: 1.5rem;
    font-weight: 700;
}

.solution-text {
    color: var(--dark);
    font-weight: 600;
    text-align: left;
    flex: 1;
}

/* Packages Section */
.packages-simple {
    padding: 100px 0;
    background: var(--white);
}

.packages-simple h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--dark);
}

.packages-simple .subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.2rem;
    margin-bottom: 60px;
}

.package-card {
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(107, 70, 193, 0.15);
    border-color: var(--primary);
}

.package-card.featured {
    border: 3px solid var(--primary);
    box-shadow: 0 15px 40px rgba(107, 70, 193, 0.2);
}

.package-card.featured::before {
    content: "⭐ BELIEBT";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.package-card h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--dark);
}

.package-price {
    margin-bottom: 30px;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
}

.price-note {
    color: var(--gray);
    font-size: 1rem;
}

.package-features {
    list-style: none;
    margin-bottom: 30px;
}

.package-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-light);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
}

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

.check {
    color: var(--success);
    font-size: 1.3rem;
    font-weight: 700;
}

.package-note {
    background: var(--light);
    padding: 15px;
    border-radius: 8px;
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 25px;
}

.package-card .btn {
    width: 100%;
}

/* Process Section */
.process-simple {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light) 0%, #F0F9FF 100%);
}

.process-simple h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--dark);
}

.process-simple .subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.2rem;
    margin-bottom: 60px;
}

.process-steps {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
}

.step {
    flex: 1;
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(107, 70, 193, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    margin: 0 auto 20px;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.step-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.step-icon {
    font-size: 2.5rem;
    margin-top: 15px;
}

.step-arrow {
    font-size: 2rem;
    color: var(--primary);
    font-weight: 700;
}

/* Why Us Section */
.why-us-section {
    padding: 100px 0;
    background: var(--white);
}

.why-us-section h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 60px;
    color: var(--dark);
}

.reason-card {
    background: var(--light);
    border-left: 4px solid var(--primary);
    border-radius: 8px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.reason-card:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.reason-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.reason-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.reason-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--light);
}

.faq-section h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 60px;
    color: var(--dark);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    flex: 1;
}

.faq-toggle {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--gradient);
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 25px;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-section .btn {
    background: var(--white);
    color: var(--primary);
}

.cta-section .btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* Contact Section */
.contact-simple {
    padding: 100px 0;
    background: var(--white);
}

.contact-simple h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--dark);
}

.contact-simple .subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.2rem;
    margin-bottom: 60px;
}

.contact-card {
    background: var(--light);
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    height: 100%;
}

.contact-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(107, 70, 193, 0.15);
    text-decoration: none;
}

.contact-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.contact-value {
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--gray);
}

/* Footer */
.footer-simple {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    font-size: 1.8rem;
    font-weight: 700;
}

.footer-brand .logo-icon {
    font-size: 2rem;
}

.footer-brand strong {
    color: var(--primary-light);
}

.footer-tagline {
    color: var(--gray-light);
    margin-top: 15px;
    font-size: 1rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-section a {
    display: block;
    color: var(--gray-light);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-light);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
    color: var(--white);
    font-size: 2rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .mobile-menu-toggle {
        display: block;
    }

    .process-steps {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-simple {
        padding: 120px 0 80px;
    }

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

    .btn {
        width: 100%;
    }

    .badges-grid {
        flex-direction: column;
        align-items: center;
    }

    .problems-section,
    .packages-simple,
    .process-simple,
    .why-us-section,
    .faq-section,
    .contact-simple {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-icon {
        font-size: 1.5rem;
    }
}


/* Mobile Sidebar Menu (Project 4 Fix) */
@media (max-width: 992px) {
  .nav-links {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    padding: 90px 24px 24px;
    background: var(--white);
    box-shadow: -20px 0 60px rgba(0,0,0,0.15);
    transition: right 0.3s ease;
    z-index: 99999;
  }
  .nav-links.active { right: 0; }
  .nav-links a { font-size: 1.1rem; }
  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 98;
  }
  .nav-backdrop.active {
    opacity: 1;
    pointer-events: auto;
  }
}
