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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    overflow-x: hidden;
}

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

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a73e8;
    margin: 10px 0;
}

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

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

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

/* Hamburger button (mobile only) */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #1a202c;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Nav Login Icon */
.nav-login-icon {
    display: flex;
    align-items: center;
    color: #333;
    transition: color 0.3s ease;
}

.nav-login-icon:hover {
    color: #1a73e8;
}

/* ===== LOGIN MODAL ===== */
.login-modal-content {
    width: 420px;
    max-width: 96vw;
    border-radius: 24px;
    overflow: hidden;
    padding: 0;
    margin: 6% auto;
}

.login-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem 1rem;
    border-bottom: 1px solid #f1f5f9;
}

.login-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a73e8;
}

.login-modal-body {
    padding: 1.5rem 2rem 2rem;
}

.login-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.4rem;
}

.login-subtitle {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.login-form-group {
    margin-bottom: 1.2rem;
}

.login-form-group label {
    display: block;
    font-weight: 600;
    color: #1a202c;
    font-size: 0.9rem;
    margin-bottom: 0.45rem;
}

.login-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: white;
    transition: border-color 0.3s ease;
    overflow: hidden;
}

.login-input-wrap:focus-within {
    border-color: #1a73e8;
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.12);
}

.login-input-wrap > svg {
    flex-shrink: 0;
    margin-left: 0.9rem;
}

.login-input-wrap input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0.85rem 0.9rem;
    font-size: 1rem;
    color: #1a202c;
    background: transparent;
}

.pw-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0 0.9rem;
    display: flex;
    align-items: center;
    color: #94a3b8;
    transition: color 0.2s;
}

.pw-toggle:hover {
    color: #1a73e8;
}

.login-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    font-size: 0.88rem;
}

.login-remember {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4a5568;
    cursor: pointer;
}

.login-remember input[type="checkbox"] {
    accent-color: #1a73e8;
    width: 15px;
    height: 15px;
}

.login-forgot {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.login-forgot:hover {
    color: #0d47a1;
    text-decoration: underline;
}

.login-error {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #dc2626;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
}

.login-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #1a73e8, #0d47a1);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.login-submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(26, 115, 232, 0.4);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.login-spinner {
    animation: spin 0.8s linear infinite;
}

.login-contact-hint {
    text-align: center;
    font-size: 0.88rem;
    color: #64748b;
    margin-top: 1.5rem;
}

.login-contact-hint a {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 500;
}

.login-contact-hint a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    min-height: 110vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="200" cy="200" r="2" fill="%23e2e8f0"/><circle cx="400" cy="100" r="1.5" fill="%23cbd5e1"/><circle cx="600" cy="300" r="1" fill="%23e2e8f0"/><circle cx="800" cy="150" r="2" fill="%23cbd5e1"/></svg>') repeat;
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease forwards;
}

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

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #4a5568;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 115, 232, 0.3);
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    line-height: normal;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 115, 232, 0.4);
}

.hero-video {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateX(50px);
    opacity: 0;
    animation: slideInRight 1s ease 0.5s forwards;
}

/* Section subtitle */
.section-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 1.15rem;
    margin-top: -2rem;
    margin-bottom: 1rem;
}

/* Showcase Section */
.showcase {
    padding: 6rem 0;
    background: #f8fafc;
    overflow-x: clip; /* clip side cards horizontally without affecting vertical */
}

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

/* ===== REFERENZEN CAROUSEL ===== */
.carousel-wrapper {
    position: relative;
    margin-top: 3rem;
    padding: 0 90px; /* raum für die absolut positionierten pfeile */
}

.carousel-stage {
    width: 100%;
    position: relative;
    height: 540px;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a73e8;
    transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.carousel-arrow--prev { left: 0; }
.carousel-arrow--next { right: 0; }

.carousel-arrow:hover {
    background: #1a73e8;
    color: white;
    border-color: #1a73e8;
    box-shadow: 0 6px 20px rgba(26, 115, 232, 0.35);
}

.carousel-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 2rem;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
    border: none;
    cursor: pointer;
    transition: all 0.35s ease;
    padding: 0;
}

.carousel-dot.active {
    background: #1a73e8;
    width: 26px;
    border-radius: 4px;
}

/* Showcase card – carousel positioning */
.showcase-card {
    position: absolute;
    width: 360px;
    height: 540px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.52s cubic-bezier(0.35, 0, 0.25, 1);
    opacity: 0;
    pointer-events: none;
    transform: scale(0.75);
    display: flex;
    flex-direction: column;
}

.showcase-card.pos-prev {
    opacity: 0.7;
    transform: translateX(-360px) scale(0.88);
    pointer-events: auto;
    cursor: pointer;
    z-index: 1;
}

.showcase-card.pos-active {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
    z-index: 3;
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.16);
}

.showcase-card.pos-next {
    opacity: 0.7;
    transform: translateX(360px) scale(0.88);
    pointer-events: auto;
    cursor: pointer;
    z-index: 1;
}

.card-image {
    height: 200px;
    background: linear-gradient(45deg, #f1f5f9, #e2e8f0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #64748b;
    position: relative;
    overflow: hidden;
}

.card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #1a73e8, #0d47a1);
    opacity: 0.1;
}

/* Reference card browser mockup */
.card-preview {
    height: 220px;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    background: #f1f5f9;
    overflow: hidden;
}

.card-browser-bar {
    height: 30px;
    min-height: 30px;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 10px;
    flex-shrink: 0;
}

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

.cb-url {
    flex: 1;
    background: white;
    border-radius: 20px;
    padding: 2px 10px;
    font-size: 0.7rem;
    color: #64748b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-mock-body {
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e2e8f0, #f1f5f9);
    color: #94a3b8;
    font-size: 0.85rem;
}

.card-mock-body img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}


.card-content {
    padding: 1.5rem 1.75rem 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-body {
    flex: 1;
}

.card-content h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a202c;
}

.card-content p {
    color: #4a5568;
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 0.9rem;
}

/* Features list on card */
.ref-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.ref-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    font-size: 0.85rem;
    color: #4a5568;
    line-height: 1.4;
}

.ref-features li::before {
    content: '✓';
    color: #059669;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 0.05rem;
}

/* Card footer: tag + package badge + link */
.ref-footer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
}

.ref-footer-meta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.card-tag {
    display: inline-block;
    background: #f1f5f9;
    color: #475569;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.ref-package {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
}

.ref-package--business {
    background: linear-gradient(135deg, #1a73e8, #0d47a1);
    color: white;
}

.ref-package--starter {
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
}

.ref-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #1a73e8;
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    transition: gap 0.2s ease, color 0.2s ease;
}

.ref-link:hover {
    gap: 0.6rem;
    color: #0d47a1;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: #f8fafc;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    border-color: #1a73e8;
    transform: translateY(-5px);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a73e8, #0d47a1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

/* Workflow Section - Direkt hier platziert */
.workflow-section {
    padding: 6rem 0;
    background: #ffffff;
}

.workflow-grid {
    display: flex;
    gap: 2rem;
    margin-top: 4rem;
    justify-content: space-between;
}

.workflow-card {
    flex: 1;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    padding: 2.5rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    color: white;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.15);
}

.workflow-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.25);
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.workflow-number {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.12);
    border: 3px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    margin-bottom: 1.5rem;
}

.workflow-title {
    font-size: 1.3rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.workflow-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    margin: 0;
    flex: 1;
    display: flex;
    align-items: flex-start;
    text-align: center;
}

/* Mobile stepper – hidden on desktop */
.workflow-stepper {
    display: none;
}

@media (max-width: 768px) {
    .workflow-grid {
        display: none; /* desktop cards hidden on mobile */
    }

    .workflow-stepper {
        display: block;
        margin-top: 2.5rem;
    }

    .step-buttons {
        display: flex;
        justify-content: center;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .step-btn {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        border: 2px solid #3b82f6;
        background: white;
        color: #3b82f6;
        font-size: 1rem;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.25s ease;
    }

    .step-btn.active {
        background: linear-gradient(135deg, #60a5fa, #3b82f6);
        color: white;
        border-color: transparent;
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.35);
    }

    .step-card {
        background: linear-gradient(135deg, #60a5fa, #3b82f6);
        border-radius: 15px;
        padding: 2rem 1.5rem;
        text-align: center;
        color: white;
        box-shadow: 0 8px 20px rgba(59, 130, 246, 0.2);
        transition: all 0.3s ease;
    }

    .step-card .workflow-number {
        width: 64px;
        height: 64px;
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .step-card .workflow-title {
        height: auto;
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }

    .step-card .workflow-description {
        font-size: 0.95rem;
        align-items: center;
        justify-content: center;
    }
}

/* Process Section */
.process {
    padding: 6rem 0;
    background: #fff;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 2.5rem;
    margin-top: 4rem;
    align-items: stretch;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 1.5rem 1rem;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.3);
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.process-step::after {
    content: '→';
    position: absolute;
    top: 50%;
    right: -2rem;
    font-size: 3.5rem;
    font-weight: 900;
    color: #1a73e8;
    transform: translateY(-50%);
    z-index: -1;
    text-shadow: 0 3px 6px rgba(26, 115, 232, 0.4);
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.8rem;
    display: block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    height: 2.6rem;
    line-height: 2.6rem;
}

.process-step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: white;
    font-weight: 600;
    line-height: 1.3;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-step p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
        gap: 2rem;
    }
}



/* Self-Check Section */
.self-check {
    padding: 4rem 0;
    background: #fff;
}

.self-check .section-subtitle {
    max-width: 660px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
    line-height: 1.65;
}

.quiz-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-height: 400px;
}

.quiz-progress {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    gap: 0.5rem;
}

.progress-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e2e8f0;
    transition: all 0.3s ease;
}

.progress-dot.active {
    background: #1a73e8;
}

.progress-dot.completed {
    background: #059669;
}

.questions-container {
    position: relative;
    min-height: 200px;
}

.question {
    margin-bottom: 1.5rem;
    display: none;
    transform: translateY(20px);
    transition: all 0.3s ease;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

.question.active {
    display: block;
    transform: translateY(0);
    position: relative;
    z-index: 10;
}

.question h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
    text-align: center;
}

.question-options {
    display: grid;
    gap: 0.8rem;
}

.option {
    padding: 1.2rem;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-weight: 500;
}

.option:hover {
    background: #e2e8f0;
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

.option.selected {
    background: #1a73e8;
    color: white;
    border-color: #0d47a1;
    transform: translateY(-2px);
}

.quiz-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.quiz-counter {
    color: #64748b;
    font-size: 0.9rem;
}

.quiz-btn {
    background: #1a73e8;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 120px;
}

.quiz-btn:hover {
    background: #0d47a1;
    transform: translateY(-1px);
}

.quiz-btn:disabled {
    background: #cbd5e1;
    cursor: not-allowed;
    transform: none;
}

.quiz-result {
    display: none;
    text-align: center;
    padding: 2.5rem 2rem;
}

.result-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a202c;
}

.result-text {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #4a5568;
    margin-bottom: 2rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: #f8fafc;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

/* Team Grid – 6 ghost-columns so row 2 (cards 4+5) sits centred */
.team-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}

.team-card {
    grid-column: span 2;
}

/* Row 2: shift cards 4 & 5 inward by one column each */
.team-card:nth-child(4) { grid-column: 2 / span 2; }
.team-card:nth-child(5) { grid-column: 4 / span 2; }

.team-card {
    text-align: center;
}

.team-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    margin-bottom: 0.75rem;
    position: relative;
    overflow: hidden;
}

.team-photo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 55%;
    height: 60%;
    background: #94a3b8;
    border-radius: 50% 50% 0 0;
}

.team-photo::before {
    content: '';
    position: absolute;
    top: 22%;
    left: 50%;
    transform: translateX(-50%);
    width: 30%;
    height: 30%;
    background: #94a3b8;
    border-radius: 50%;
    z-index: 1;
}

.team-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: #1a202c;
    margin-bottom: 0.2rem;
}

.team-role {
    font-size: 0.82rem;
    color: #64748b;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: #f8fafc;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.contact-form {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.message-quiz-row {
    align-items: flex-start;
}

.message-column {
    margin-bottom: 0;
}

.message-column textarea {
    min-height: 200px;
}

.quiz-column {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.quiz-placeholder {
    background: #f8fafc;
    border: 2px dashed #cbd5e1;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-content h4 {
    color: #64748b;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.placeholder-content p {
    color: #64748b;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.placeholder-link {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.placeholder-link:hover {
    color: #0d47a1;
}

.quiz-summary {
    height: 100%;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .contact-form {
        max-width: 100%;
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .message-quiz-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .quiz-placeholder {
        min-height: 200px;
    }
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a202c;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.privacy-note {
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 1rem;
}

.quiz-summary {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border: 2px solid #1a73e8;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.quiz-summary h4 {
    color: #1a73e8;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.quiz-summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.quiz-summary-item:last-child {
    border-bottom: none;
}

.quiz-question {
    font-weight: 600;
    color: #1a202c;
    flex: 1;
}

.quiz-answer {
    color: #1a73e8;
    font-weight: 500;
    text-align: right;
    flex: 1;
}

.quiz-recommendation {
    background: #1a73e8;
    color: white;
    padding: 0.8rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    margin-top: 1rem;
}

.quiz-summary {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border: 2px solid #1a73e8;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.quiz-summary h4 {
    color: #1a73e8;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.quiz-summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.quiz-summary-item:last-child {
    border-bottom: none;
}

.quiz-note {
    padding: 0.5rem 0;
}

.quiz-question {
    font-weight: 600;
    color: #1a202c;
    flex: 1;
}

.quiz-answer {
    color: #1a73e8;
    font-weight: 500;
    text-align: right;
    flex: 1;
}

.quiz-recommendation {
    background: #1a73e8;
    color: white;
    padding: 0.8rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    margin-top: 1rem;
}

.checkbox-group {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.checkbox-wrapper {
    position: relative;
    min-width: 20px;
}

.checkbox-wrapper input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    width: 20px;
    height: 20px;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #cbd5e1;
    border-radius: 4px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.checkbox-wrapper input[type="checkbox"]:checked+.checkbox-custom {
    background: #1a73e8;
    border-color: #1a73e8;
}

.checkbox-wrapper input[type="checkbox"]:checked+.checkbox-custom::after {
    content: '✓';
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.checkbox-wrapper input[type="checkbox"]:focus+.checkbox-custom {
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.2);
}

.checkbox-label {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #4a5568;
    cursor: pointer;
}

.checkbox-label a {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 500;
}

.privacy-note {
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 1rem;
}

.privacy-note a {
    color: #1a73e8;
    text-decoration: none;
}

.submit-btn {
    background: linear-gradient(135deg, #1a73e8, #0d47a1);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 115, 232, 0.4);
}

/* Footer */
footer {
    background: #1a202c;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #1a73e8;
}

.footer-section p,
.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: block;
}

.footer-section a:hover {
    color: #1a73e8;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #9ca3af;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: white;
        padding: 1.5rem 2rem;
        gap: 0;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        z-index: 999;
        border-top: 1px solid #f1f5f9;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 0.85rem 0;
        border-bottom: 1px solid #f1f5f9;
        font-size: 1rem;
    }

    .nav-links li:last-child a {
        border-bottom: none;
        padding-top: 1rem;
    }

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

    .hero h1 {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
        padding: 0 0.5rem;
    }

    /* 2er-Reihen: jede Karte nimmt 2 von 4 Spalten */
    .team-card,
    .team-card:nth-child(4) {
        grid-column: span 2;
    }

    /* 5. Karte mittig in der letzten Reihe */
    .team-card:nth-child(5) {
        grid-column: 2 / span 2;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .process-step::after {
        display: none;
    }

    /* Carousel mobile */
    .carousel-wrapper {
        padding: 0 52px;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
    }

    .carousel-stage {
        height: 570px;
    }

    .showcase-card {
        width: 290px;
        height: 570px;
    }

    /* Seitenkarten auf kleinen Bildschirmen ausblenden */
    .showcase-card.pos-prev,
    .showcase-card.pos-next {
        opacity: 0;
        pointer-events: none;
        transform: scale(0.75);
    }

    .container {
        padding: 0 15px;
    }
}

/* ===== PAKETE SECTION ===== */
.pakete {
    padding: 6rem 0;
    background: #fff;
}

.pakete-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    align-items: stretch;
}

.paket-card {
    background: white;
    border-radius: 20px;
    padding: 2rem 1.6rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
}

.paket-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.paket-card--featured {
    border-color: #1a73e8;
    box-shadow: 0 8px 30px rgba(26,115,232,0.18);
}

.paket-card--pro {
    background: #0f172a;
    color: white;
}

.paket-card--individuell {
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
    color: white;
}

.paket-recommended {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: #1a73e8;
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    white-space: nowrap;
}

.paket-badge {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1a73e8;
    margin-bottom: 0.6rem;
}

.paket-card--pro .paket-badge,
.paket-card--individuell .paket-badge {
    color: rgba(255,255,255,0.7);
}

.paket-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.25rem;
}

.paket-card--pro .paket-title,
.paket-card--individuell .paket-title {
    color: white;
}

.paket-tagline {
    font-size: 0.88rem;
    color: #64748b;
    margin-bottom: 1rem;
    font-weight: 500;
}

.paket-card--pro .paket-tagline,
.paket-card--individuell .paket-tagline {
    color: rgba(255,255,255,0.65);
}

.paket-desc {
    font-size: 0.88rem;
    color: #4a5568;
    line-height: 1.55;
    margin-bottom: 1.2rem;
}

.paket-card--pro .paket-desc,
.paket-card--individuell .paket-desc {
    color: rgba(255,255,255,0.75);
}

.paket-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    flex: 1;
}

.paket-features li {
    font-size: 0.85rem;
    color: #4a5568;
    padding: 0.35rem 0;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.paket-features li::before {
    content: '✓';
    color: #1a73e8;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.05rem;
}

.paket-card--pro .paket-features li {
    color: rgba(255,255,255,0.8);
    border-bottom-color: rgba(255,255,255,0.1);
}

.paket-card--pro .paket-features li::before {
    color: #60a5fa;
}

.paket-card--individuell .paket-features li {
    color: rgba(255,255,255,0.85);
    border-bottom-color: rgba(255,255,255,0.15);
}

.paket-card--individuell .paket-features li::before {
    color: rgba(255,255,255,0.9);
}

.paket-price {
    margin-bottom: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.paket-card--pro .paket-price {
    border-top-color: rgba(255,255,255,0.15);
}

.paket-card--individuell .paket-price {
    border-top-color: rgba(255,255,255,0.2);
}

.paket-price--custom .paket-price-monthly {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

.paket-price-monthly {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    margin-bottom: 0.25rem;
}

.paket-price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a202c;
}

.paket-card--pro .paket-price-amount {
    color: white;
}

.paket-price-period {
    font-size: 0.9rem;
    color: #64748b;
}

.paket-card--pro .paket-price-period {
    color: rgba(255,255,255,0.6);
}

.paket-price-setup {
    font-size: 0.8rem;
    color: #94a3b8;
}

.paket-card--pro .paket-price-setup {
    color: rgba(255,255,255,0.5);
}

.paket-cta {
    width: 100%;
    background: linear-gradient(135deg, #1a73e8, #0d47a1);
    color: white;
    border: none;
    padding: 0.85rem;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.paket-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(26,115,232,0.4);
}

.paket-card--pro .paket-cta {
    background: white;
    color: #0f172a;
}

.paket-card--pro .paket-cta:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.paket-card--individuell .paket-cta {
    background: white;
    color: #1a73e8;
}

.paket-card--individuell .paket-cta:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

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

@media (max-width: 600px) {
    .pakete-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== FORM PACKAGE SELECTOR ===== */
.form-package-selector {
    margin-bottom: 1.5rem;
}

.form-package-label {
    display: block;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

.form-package-optional {
    font-weight: 400;
    color: #94a3b8;
    font-size: 0.85rem;
}

.form-package-tiles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.6rem;
}

.form-package-tile {
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 0.7rem 0.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    background: white;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.form-package-tile:hover {
    border-color: #1a73e8;
    background: #f0f7ff;
}

.form-package-tile.active {
    border-color: #1a73e8;
    background: #1a73e8;
}

.fpt-name {
    font-weight: 700;
    font-size: 0.88rem;
    color: #1a202c;
    transition: color 0.2s;
}

.fpt-sub {
    font-size: 0.72rem;
    color: #64748b;
    transition: color 0.2s;
}

.form-package-tile.active .fpt-name,
.form-package-tile.active .fpt-sub {
    color: white;
}

@media (max-width: 500px) {
    .form-package-tiles {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== QUIZ RESULT ACTIONS ===== */
.result-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.cta-button--outline {
    background: white !important;
    color: #1a73e8 !important;
    border: 2px solid #1a73e8;
    box-shadow: none !important;
}

.cta-button--outline:hover {
    background: #f0f7ff !important;
}