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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

.nav-minimal {
    background: rgba(255, 255, 255, 0.98);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e8e8e8;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a5490;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #1a5490;
}

.hero-visual {
    height: 85vh;
    background: linear-gradient(135deg, #1a5490 0%, #2d7ab8 100%);
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?w=1600&h=900&fit=crop');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.hero-overlay {
    background: rgba(26, 84, 144, 0.88);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    color: white;
    padding: 2rem;
}

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

.hero-lead {
    font-size: 1.35rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.7;
}

.cta-hero {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #ff6b35;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.cta-hero:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

.story-intro {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.story-container {
    max-width: 740px;
    margin: 0 auto;
}

.story-intro h2 {
    font-size: 2.2rem;
    line-height: 1.4;
    margin-bottom: 2rem;
    color: #1a5490;
    font-weight: 700;
}

.story-intro p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.problem-section {
    padding: 5rem 2rem;
    background: white;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.problem-visual {
    flex: 1;
}

.problem-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.problem-text {
    flex: 1;
}

.problem-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.problem-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
    line-height: 1.8;
}

.highlight-box {
    background: #fff4e6;
    padding: 1.8rem;
    border-left: 4px solid #ff6b35;
    margin-top: 2rem;
    border-radius: 4px;
}

.highlight-box strong {
    color: #1a5490;
}

.insight-reveal {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.insight-reveal h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #1a5490;
}

.insight-reveal > .story-container > p {
    text-align: center;
    font-size: 1.15rem;
    margin-bottom: 4rem;
    color: #4a5568;
}

.pillars-grid {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.pillar-card {
    flex: 1;
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.pillar-card:hover {
    transform: translateY(-5px);
}

.pillar-icon {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.pillar-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.pillar-card p {
    color: #4a5568;
    line-height: 1.7;
}

.trust-builder {
    padding: 5rem 2rem;
    background: white;
}

.content-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.split-text {
    flex: 1.2;
}

.split-text h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.benefits-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.benefits-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.6;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 1.3rem;
}

.cta-inline {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #1a5490;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-inline:hover {
    background: #154171;
    transform: translateX(5px);
}

.split-visual {
    flex: 1;
}

.split-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

.testimonials-inline {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.testimonials-inline h3 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #1a5490;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    border-left: 4px solid #ff6b35;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    color: #718096;
    font-weight: 600;
}

.services-reveal {
    padding: 6rem 2rem;
    background: white;
}

.services-reveal h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a5490;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    color: #4a5568;
}

.services-funnel {
    max-width: 900px;
    margin: 0 auto;
}

.service-item {
    background: #f8f9fa;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 12px;
    border: 2px solid #e8e8e8;
    transition: all 0.3s;
    position: relative;
}

.service-item:hover {
    border-color: #1a5490;
    box-shadow: 0 8px 30px rgba(26, 84, 144, 0.12);
}

.service-item.featured {
    background: linear-gradient(135deg, #1a5490 0%, #2d7ab8 100%);
    color: white;
    border-color: #1a5490;
}

.service-item.featured .service-header h4,
.service-item.featured .service-price,
.service-item.featured .service-description,
.service-item.featured .service-features li {
    color: white;
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #ff6b35;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-header {
    margin-bottom: 1.5rem;
}

.service-header h4 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ff6b35;
}

.service-item.featured .service-price {
    color: #ffd700;
}

.service-description {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: #4a5568;
}

.service-features li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1a5490;
    font-weight: 700;
}

.service-item.featured .service-features li:before {
    color: #ffd700;
}

.service-cta {
    width: 100%;
    padding: 1rem 2rem;
    background: #1a5490;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.service-cta:hover {
    background: #154171;
    transform: translateY(-2px);
}

.service-item.featured .service-cta {
    background: white;
    color: #1a5490;
}

.service-item.featured .service-cta:hover {
    background: #f0f0f0;
}

.service-cta.selected {
    background: #10b981;
    position: relative;
}

.service-cta.selected:after {
    content: "✓ Ausgewählt";
}

.urgency-section {
    padding: 4rem 2rem;
    background: #fff4e6;
}

.urgency-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.urgency-box h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.urgency-box p {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: #4a5568;
    line-height: 1.8;
}

.form-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8eef3 100%);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-container h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a5490;
}

.form-intro {
    text-align: center;
    margin-bottom: 2.5rem;
    color: #4a5568;
    font-size: 1.05rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid #e8e8e8;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a5490;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.form-checkbox input {
    margin-top: 0.3rem;
    width: 18px;
    height: 18px;
}

.form-checkbox label {
    font-size: 0.95rem;
    color: #4a5568;
}

.form-checkbox a {
    color: #1a5490;
}

.form-submit {
    padding: 1.2rem 2rem;
    background: #ff6b35;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

.form-submit:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.final-cta {
    padding: 5rem 2rem;
    background: #1a5490;
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-final {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: white;
    color: #1a5490;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.cta-final:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #4a5568;
    text-align: center;
    color: #cbd5e0;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-cta a {
    display: block;
    padding: 1rem 2rem;
    background: #ff6b35;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    transition: all 0.3s;
}

.sticky-cta a:hover {
    background: #e55a2b;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #ffd700;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-accept,
.cookie-reject {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-accept {
    background: #10b981;
    color: white;
}

.cookie-accept:hover {
    background: #0e9f6e;
}

.cookie-reject {
    background: #4a5568;
    color: white;
}

.cookie-reject:hover {
    background: #374151;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1.5rem;
        font-size: 0.9rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-lead {
        font-size: 1.1rem;
    }

    .content-wrapper,
    .content-split {
        flex-direction: column;
    }

    .pillars-grid {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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

    .story-intro h2,
    .insight-reveal h2,
    .services-reveal h2 {
        font-size: 1.8rem;
    }
}

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background: white;
    padding: 4rem 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.thanks-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a5490;
}

.thanks-content p {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

.thanks-service {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid #ff6b35;
}

.thanks-service strong {
    color: #1a5490;
}

.thanks-cta {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: #1a5490;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.thanks-cta:hover {
    background: #154171;
}

.page-header {
    background: linear-gradient(135deg, #1a5490 0%, #2d7ab8 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.page-content h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #1a5490;
}

.page-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.page-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #4a5568;
}

.page-content ul,
.page-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    color: #4a5568;
}

.page-content li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.contact-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.contact-info h3 {
    margin-top: 0;
}

.contact-info p {
    margin-bottom: 0.8rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 3rem 0;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid #e8e8e8;
}

.service-card h3 {
    margin-top: 0;
    color: #1a5490;
}

.service-card .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b35;
    margin: 1rem 0;
}
