/* Spezifische Styles f�r index.html */

body {
    line-height: 1.4;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #9c1eb0 0%, #673ab7 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero .subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero span {
    display: block;
    font-size: 1rem;
    margin-top: -1.8rem;
    font-weight: 400;
    opacity: 0.5;
}

.hero .description {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: #2196F3;
    color: white;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
    background: #1976D2;
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    margin-left: 1rem;
}

.cta-button.secondary:hover {
    background: rgba(255,255,255,0.1);
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: #222;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: #111;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.feature-icon {
    width: 3rem !important;
    height: 3rem !important;
    margin-bottom: 1rem;
    color: #9c1eb0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 3rem !important;
    height: 3rem !important;
    min-width: 3rem !important;
    min-height: 3rem !important;
    max-width: 3rem !important;
    max-height: 3rem !important;
    stroke-width: 1.5;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2196F3;
}

.feature-card p {
    color: #ccc;
    line-height: 1.8;
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background: #222;
}

.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    background: linear-gradient(135deg, #9c1eb0 0%, #1976D2 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(33, 150, 243, 0.3);
}

.pricing-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 4rem;
    font-weight: 700;
    margin: 1rem 0;
}

.price-period {
    font-size: 1.2rem;
    opacity: 0.9;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

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

.pricing-features li:before {
    content: "✓ ";
    font-weight: bold;
    margin-right: 0.5rem;
    color: #4CAF50;
}

/* How it works */
.how-it-works {
    padding: 5rem 0;
    background: #222;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: #2196F3;
    color: white;
    border-radius: 50%;
    line-height: 60px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
}

.step p {
    color: #ccc;
}

/* Guide Section */
.guide {
    padding: 5rem 0;
    background: #222;
}

.guide-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.guide-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.guide-icon-wrapper {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2196F3 0%, #673ab7 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.guide-icon-wrapper i {
    width: 40px !important;
    height: 40px !important;
}

.guide-icon-wrapper svg {
    width: 40px !important;
    height: 40px !important;
    stroke-width: 2;
}

.guide-icon-wrapper .record-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: white;
}

.guide-content {
    flex: 1;
}

.guide-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.guide-content p {
    color: #ccc;
    line-height: 1.8;
    padding-bottom: 0.8rem;
    font-size: 1.1rem;
}

.guide-items {
    max-width: 900px;
    margin: 3rem auto 0;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: #222;
}

.faq-item {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    background: #111;
    padding: 1.5rem;
    border-radius: 8px;
}

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2196F3;
}

.faq-item p {
    color: #ccc;
    line-height: 1.8;
}

footer {
    padding: 3rem 0;
}

.footer-links {
    margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .subtitle {
        font-size: 1.2rem;
    }
    
    .hero .description {
        font-size: 1rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .cta-button.secondary {
        display: block;
        margin: 1rem auto 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .guide-item {
        flex-direction: column !important;
        text-align: center;
    }
    
    .guide-icon-wrapper {
        margin: 0 auto;
    }
    
    .guide-content {
        text-align: left;
    }
}
