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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.main {
    min-height: 100vh;
    background-color: #f8fafc;
    color: #020617;
}

/* Header */
.header {
    border-bottom: 1px solid #f3e8ff;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.header-container {
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 1rem;
    background-color: #7e22ce;
    color: white;
    font-size: 1.125rem;
    font-weight: 900;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.logo-text {
    font-size: 1.125rem;
    font-weight: 900;
    letter-spacing: -0.025em;
    color: #3b0764;
}

.logo-subtitle {
    display: none;
    font-size: 0.75rem;
    font-weight: 500;
    color: #64748b;
}

.nav {
    display: none;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.nav a {
    color: #475569;
    text-decoration: none;
    transition: color 0.2s;
}

.nav a:hover {
    color: #7e22ce;
}

.btn-primary {
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    background-color: #7e22ce;
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    border: none;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-primary:hover {
    background-color: #6b21a8;
}

/* Search Container */
.search-container {
    border-top: 1px solid #f3e8ff;
}

.search-wrapper {
    max-width: 56rem;
    margin: 0 auto;
    padding: 0.75rem 1.5rem 1rem;
}

.search-field {
    position: relative;
}

.search-icon {
    pointer-events: none;
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.125rem;
    color: #c084fc;
}

.search-input {
    width: 100%;
    border-radius: 1rem;
    border: 1px solid #e9d5ff;
    background-color: white;
    padding: 0.875rem 1rem 0.875rem 3.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f172a;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.search-input::placeholder {
    color: #94a3b8;
}

.search-input:focus {
    border-color: #a855f7;
    box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.1);
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #3b0764 0%, #581c87 50%, #020617 100%);
}

.hero-bg-1 {
    position: absolute;
    right: -6rem;
    top: -6rem;
    width: 18rem;
    height: 18rem;
    border-radius: 50%;
    background-color: rgba(168, 85, 247, 0.3);
    filter: blur(64px);
}

.hero-bg-2 {
    position: absolute;
    bottom: -7rem;
    left: -5rem;
    width: 18rem;
    height: 18rem;
    border-radius: 50%;
    background-color: rgba(217, 70, 239, 0.2);
    filter: blur(64px);
}

.hero-container {
    position: relative;
    max-width: 80rem;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 3.5rem;
    display: grid;
    gap: 2rem;
}

.hero-content {
    max-width: 100%;
}

.badge-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    border-radius: 9999px;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid;
}

.badge-amber {
    background-color: #fef3c7;
    color: #92400e;
    border-color: #fde68a;
}

.badge-purple {
    background-color: #f3e8ff;
    color: #6b21a8;
    border-color: #e9d5ff;
}

.badge-slate {
    background-color: #f1f5f9;
    color: #334155;
    border-color: #e2e8f0;
}

.badge-green {
    background-color: #d1fae5;
    color: #065f46;
    border-color: #a7f3d0;
}

.hero-label {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #e9d5ff;
    margin-bottom: 0.75rem;
}

.hero-title {
    max-width: 48rem;
    font-size: 1.875rem;
    font-weight: 900;
    letter-spacing: -0.025em;
    color: white;
    line-height: 1.1;
}

.hero-description {
    max-width: 48rem;
    margin-top: 1.25rem;
    font-size: 1rem;
    line-height: 1.75;
    color: #f3e8ff;
}

.hero-actions {
    margin-top: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-white {
    display: block;
    text-align: center;
    padding: 0.75rem 1.25rem;
    border-radius: 1rem;
    background-color: white;
    color: #3b0764;
    font-size: 0.875rem;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: background-color 0.2s;
}

.btn-white:hover {
    background-color: #faf5ff;
}

.btn-outline-white {
    display: block;
    text-align: center;
    padding: 0.75rem 1.25rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    font-size: 0.875rem;
    font-weight: 900;
    text-decoration: none;
    transition: background-color 0.2s;
}

.btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.hero-sidebar {
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.25rem;
    color: white;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
}

.sidebar-label {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    color: #e9d5ff;
}

.sidebar-aktenzeichen {
    margin-top: 0.5rem;
    font-size: 1.875rem;
    font-weight: 900;
}

.sidebar-info {
    margin-top: 1.5rem;
    display: grid;
    gap: 1rem;
    font-size: 0.875rem;
}

.sidebar-info-label {
    color: #e9d5ff;
}

.sidebar-info-value {
    font-weight: 700;
}

/* Content Container */
.content-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

/* Timeline Section */
.timeline-section {
    margin-bottom: 2rem;
    border-radius: 1.5rem;
    border: 1px solid #f3e8ff;
    background-color: white;
    padding: 1.25rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.timeline-header {
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.timeline-label {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    color: #7e22ce;
}

.timeline-title {
    margin-top: 0.25rem;
    font-size: 1.5rem;
    font-weight: 900;
    color: #020617;
}

.timeline {
    display: grid;
    gap: 0.75rem;
}

.timeline-item {
    position: relative;
    border-radius: 1rem;
    border: 1px solid;
    padding: 1rem;
}

.timeline-item-done {
    border-color: #a7f3d0;
    background-color: #ecfdf5;
    color: #022c22;
}

.timeline-item-active {
    border-color: #d8b4fe;
    background-color: #faf5ff;
    color: #3b0764;
}

.timeline-item-pending {
    border-color: #e2e8f0;
    background-color: white;
    color: #64748b;
}

.timeline-item-header {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.timeline-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
}

.timeline-item-done .timeline-number {
    background-color: #059669;
    color: white;
}

.timeline-item-active .timeline-number {
    background-color: #7e22ce;
    color: white;
}

.timeline-item-pending .timeline-number {
    background-color: #e2e8f0;
    color: #475569;
}

.timeline-status {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.timeline-item-label {
    font-size: 0.875rem;
    font-weight: 600;
}

/* Grid Container */
.grid-container {
    display: grid;
    gap: 1.5rem;
}

.grid-left,
.grid-right {
    display: grid;
    gap: 1.5rem;
}

/* Card */
.card {
    border-radius: 1.5rem;
    border: 1px solid #e2e8f0;
    background-color: white;
    padding: 1.25rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.card-header {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #020617;
}

.card-text {
    font-size: 0.875rem;
    line-height: 1.75;
    color: #334155;
}

/* Data List */
.data-row {
    display: grid;
    gap: 0.25rem;
    border-bottom: 1px solid #f1f5f9;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.data-row:last-child {
    border-bottom: none;
}

.data-row dt {
    font-size: 0.875rem;
    font-weight: 500;
    color: #64748b;
}

.data-row dd {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f172a;
}

/* Excerpt Section */
.excerpt-section {
    margin-top: 1.5rem;
}

.excerpt-header {
    border-bottom: 1px solid #f1f5f9;
    padding: 1.25rem;
}

.excerpt-label {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    color: #7e22ce;
}

.excerpt-title {
    margin-top: 0.25rem;
    font-size: 1.5rem;
    font-weight: 900;
    color: #020617;
}

.excerpt-content {
    padding: 1.25rem;
}

.excerpt-box {
    border-radius: 1rem;
    background-color: #020617;
    padding: 1rem;
}

.excerpt-text {
    white-space: pre-line;
    font-size: 0.875rem;
    line-height: 1.75;
    color: #f1f5f9;
}

/* CTA Section */
.cta-section {
    margin-top: 1.5rem;
    display: grid;
    gap: 1rem;
    border-radius: 1.5rem;
    border: 1px solid #f3e8ff;
    background-color: #faf5ff;
    padding: 1.25rem;
    align-items: center;
}

.cta-title {
    font-size: 1.25rem;
    font-weight: 900;
    color: #3b0764;
}

.cta-text {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    color: rgba(88, 28, 135, 0.8);
}

/* Responsive Breakpoints */
@media (min-width: 640px) {
    .logo-subtitle {
        display: block;
    }

    .search-input {
        padding-top: 1rem;
        padding-bottom: 1rem;
        padding-left: 3.5rem;
        font-size: 1rem;
    }

    .hero-container {
        padding: 3.5rem 1.5rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1.125rem;
    }

    .hero-actions {
        flex-direction: row;
    }

    .hero-sidebar {
        padding: 1.5rem;
    }

    .timeline-section {
        padding: 1.5rem;
    }

    .timeline-header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }

    .timeline {
        grid-template-columns: repeat(4, 1fr);
    }

    .card {
        padding: 1.5rem;
    }

    .data-row {
        grid-template-columns: 150px 1fr;
        gap: 1rem;
    }

    .excerpt-header {
        padding: 1.5rem;
    }

    .excerpt-content {
        padding: 1.5rem;
    }

    .excerpt-box {
        padding: 1.25rem;
    }

    .cta-section {
        grid-template-columns: 1fr auto;
        padding: 1.5rem;
    }
}

@media (min-width: 768px) {
    .nav {
        display: flex;
    }
}

@media (min-width: 1024px) {
    .header-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .hero-container {
        padding-left: 2rem;
        padding-right: 2rem;
        grid-template-columns: 1.35fr 0.65fr;
        align-items: flex-end;
    }

    .hero-title {
        font-size: 3.75rem;
    }

    .content-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .grid-container {
        grid-template-columns: 0.9fr 1.1fr;
    }
}

/* Toggle Button - Aufklapp-Funktionalität */
.btn-toggle {
    display: block;
    margin: 1rem auto 0;
    padding: 0.5rem 1.25rem;
    border-radius: 0.75rem;
    border: 1px solid #e9d5ff;
    background-color: transparent;
    color: #7e22ce;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-toggle:hover {
    background-color: #faf5ff;
    border-color: #d8b4fe;
}

.btn-toggle:active {
    background-color: #f3e8ff;
}

.btn-toggle-text {
    pointer-events: none;
}

/* Footer */
.footer {
    background-color: #020617;
    color: #f8fafc;
    padding: 3rem 1.5rem 2rem;
}

.footer-container {
    max-width: 80rem;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    max-width: 24rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 1rem;
    background-color: #7e22ce;
    color: white;
    font-size: 1.125rem;
    font-weight: 900;
}

.footer-logo-text {
    font-size: 1.125rem;
    font-weight: 900;
    letter-spacing: -0.025em;
    color: white;
}

.footer-logo-subtitle {
    font-size: 0.75rem;
    font-weight: 500;
    color: #94a3b8;
}

.footer-description {
    font-size: 0.875rem;
    line-height: 1.75;
    color: #cbd5e1;
}

.footer-links {
    display: grid;
    gap: 2rem;
}

.footer-section-title {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    color: white;
    margin-bottom: 0.75rem;
}

.footer-link-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    font-size: 0.875rem;
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link:hover {
    color: #c084fc;
}

.footer-social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-social-link:hover {
    color: white;
}

.footer-social-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-divider {
    border-top: 1px solid #334155;
    margin: 2rem 0;
}

.footer-bottom {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-disclaimer {
    background-color: rgba(51, 65, 85, 0.3);
    border-left: 3px solid #7e22ce;
    padding: 1rem;
    border-radius: 0.5rem;
}

.disclaimer-text {
    font-size: 0.75rem;
    line-height: 1.6;
    color: #cbd5e1;
}

.disclaimer-text strong {
    color: white;
    font-weight: 700;
}

.btn-report-error {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: 0.75rem;
    background-color: #7e22ce;
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
    justify-self: start;
}

.btn-report-error:hover {
    background-color: #6b21a8;
}

.btn-report-icon {
    width: 1.125rem;
    height: 1.125rem;
}

.footer-copyright {
    padding-top: 1.5rem;
    border-top: 1px solid #1e293b;
    text-align: center;
}

.footer-copyright p {
    font-size: 0.75rem;
    color: #64748b;
}

@media (min-width: 640px) {
    .footer {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-bottom {
        grid-template-columns: 1fr auto;
        align-items: center;
    }
}

@media (min-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 2fr;
        gap: 4rem;
    }
}

/* ============================================
   LANDINGPAGE & CONTENT PAGES
   ============================================ */

/* Landing Hero */
.landing-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #3b0764 0%, #581c87 50%, #020617 100%);
    padding: 4rem 1.5rem 6rem;
}

.landing-hero-bg-1 {
    position: absolute;
    right: -6rem;
    top: -6rem;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    background-color: rgba(168, 85, 247, 0.3);
    filter: blur(64px);
}

.landing-hero-bg-2 {
    position: absolute;
    bottom: -7rem;
    left: -5rem;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    background-color: rgba(217, 70, 239, 0.2);
    filter: blur(64px);
}

.landing-hero-container {
    position: relative;
    max-width: 80rem;
    margin: 0 auto;
    text-align: center;
}

.landing-hero-badge {
    display: inline-block;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #f3e8ff;
    font-size: 0.875rem;
    font-weight: 600;
}

.landing-hero-title {
    max-width: 56rem;
    margin: 0 auto 1.5rem;
    font-size: 2.25rem;
    font-weight: 900;
    letter-spacing: -0.025em;
    color: white;
    line-height: 1.1;
}

.landing-hero-subtitle {
    max-width: 42rem;
    margin: 0 auto 2.5rem;
    font-size: 1.125rem;
    line-height: 1.75;
    color: #e9d5ff;
}

.landing-search-container {
    max-width: 40rem;
    margin: 0 auto 2rem;
}

.landing-search-field {
    position: relative;
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.landing-search-icon {
    pointer-events: none;
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
    color: #c084fc;
}

.landing-search-input {
    width: 100%;
    border: none;
    background: transparent;
    padding: 1.25rem 1.25rem 1.25rem 3.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    outline: none;
    border-radius: 1rem;
}

.landing-search-input::placeholder {
    color: #94a3b8;
}

.landing-cta-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
}

/* Features Section */
.features-section {
    padding: 5rem 1.5rem;
    background-color: white;
}

.features-container {
    max-width: 80rem;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    color: #7e22ce;
}

.section-title {
    margin-bottom: 1rem;
    font-size: 2.25rem;
    font-weight: 900;
    letter-spacing: -0.025em;
    color: #020617;
}

.section-subtitle {
    max-width: 42rem;
    margin: 0 auto 3rem;
    font-size: 1.125rem;
    line-height: 1.75;
    color: #64748b;
    text-align: center;
}

.features-grid {
    display: grid;
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid #e2e8f0;
    background-color: #f8fafc;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: #d8b4fe;
    box-shadow: 0 10px 25px -5px rgba(126, 34, 206, 0.1);
    transform: translateY(-2px);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background-color: #7e22ce;
    color: white;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-title {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #020617;
}

.feature-description {
    font-size: 0.875rem;
    line-height: 1.75;
    color: #64748b;
}

/* Stats Section */
.stats-section {
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, #f3e8ff 0%, #faf5ff 100%);
}

.stats-container {
    max-width: 80rem;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    border-radius: 1rem;
    background-color: white;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.stat-number {
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
    font-weight: 900;
    color: #7e22ce;
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
}

/* Process Section */
.process-section {
    padding: 5rem 1.5rem;
    background-color: white;
}

.process-container {
    max-width: 80rem;
    margin: 0 auto;
}

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

.process-step {
    position: relative;
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid #e2e8f0;
    background-color: white;
}

.process-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: #7e22ce;
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-title {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #020617;
}

.process-description {
    font-size: 0.875rem;
    line-height: 1.75;
    color: #64748b;
}

/* CTA Section */
.cta-section-landing {
    padding: 5rem 1.5rem;
    background: linear-gradient(135deg, #3b0764 0%, #581c87 100%);
    text-align: center;
}

.cta-container-landing {
    max-width: 48rem;
    margin: 0 auto;
}

.cta-title-landing {
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 900;
    color: white;
}

.cta-subtitle-landing {
    margin-bottom: 2rem;
    font-size: 1.125rem;
    line-height: 1.75;
    color: #f3e8ff;
}

/* Content Pages (Impressum, AGB, etc.) */
.content-page {
    min-height: 100vh;
    background-color: #f8fafc;
    color: #020617;
}

.content-container-page {
    max-width: 56rem;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.page-header {
    margin-bottom: 3rem;
}

.page-title {
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
    font-weight: 900;
    color: #020617;
}

.page-subtitle {
    font-size: 1.125rem;
    color: #64748b;
}

.content-section {
    margin-bottom: 2.5rem;
}

.content-section-title {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    border-bottom: 2px solid #f3e8ff;
    padding-bottom: 0.5rem;
}

.content-text {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: #334155;
    margin-bottom: 1rem;
}

.content-text:last-child {
    margin-bottom: 0;
}

.content-list {
    list-style: none;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.content-list li {
    position: relative;
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #334155;
}

.content-list li::before {
    content: "•";
    position: absolute;
    left: -1rem;
    color: #7e22ce;
    font-weight: 700;
}

.info-box {
    padding: 1.5rem;
    border-radius: 1rem;
    background-color: #faf5ff;
    border: 1px solid #e9d5ff;
    margin-bottom: 1.5rem;
}

.info-box-title {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: #581c87;
}

.info-box-text {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #6b21a8;
}

/* Contact Form */
.contact-grid {
    display: grid;
    gap: 3rem;
}

.contact-info-card {
    padding: 2rem;
    border-radius: 1.5rem;
    background-color: white;
    border: 1px solid #e2e8f0;
}

.contact-info-title {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #020617;
}

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

.contact-info-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background-color: #faf5ff;
    color: #7e22ce;
    font-size: 1.125rem;
}

.contact-info-content {
    flex: 1;
}

.contact-info-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.contact-info-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: #020617;
}

.contact-form-card {
    padding: 2rem;
    border-radius: 1.5rem;
    background-color: white;
    border: 1px solid #e2e8f0;
}

.contact-form-title {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #020617;
}

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

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
}

.form-label-required::after {
    content: " *";
    color: #dc2626;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid #e2e8f0;
    background-color: white;
    font-size: 0.875rem;
    color: #020617;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus,
.form-textarea:focus {
    border-color: #a855f7;
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

.form-textarea {
    min-height: 8rem;
    resize: vertical;
}

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

.form-checkbox {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 0.25rem;
    border: 1px solid #d1d5db;
    background-color: white;
    cursor: pointer;
}

.form-checkbox-label {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #64748b;
}

.form-checkbox-label a {
    color: #7e22ce;
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 0.875rem 2rem;
    border-radius: 0.75rem;
    background-color: #7e22ce;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-submit:hover {
    background-color: #6b21a8;
}

.btn-submit:disabled {
    background-color: #d1d5db;
    cursor: not-allowed;
}

/* FAQ Accordion */
.faq-grid {
    display: grid;
    gap: 1rem;
}

.faq-item {
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    background-color: white;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.25rem;
    background-color: transparent;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s;
}

.faq-question:hover {
    background-color: #faf5ff;
}

.faq-icon {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background-color: #f3e8ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7e22ce;
    font-weight: 700;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.25rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.25rem 1.25rem;
}

.faq-answer-text {
    font-size: 0.875rem;
    line-height: 1.75;
    color: #64748b;
}

/* Active Navigation Link */
.nav a.active,
.footer-link.active {
    color: #7e22ce;
    font-weight: 700;
}

/* Companies Table */
.companies-table-container {
    margin: 2rem 0;
}

.companies-table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.companies-table thead {
    background-color: #7e22ce;
    color: white;
}

.companies-table th {
    padding: 1rem;
    text-align: left;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.companies-table td {
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.875rem;
}

.companies-table tbody tr:hover {
    background-color: #faf5ff;
}

.companies-table tbody tr:last-child td {
    border-bottom: none;
}

.company-name-cell {
    font-weight: 600;
    color: #0f172a;
}

.company-link {
    color: #7e22ce;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s;
}

.company-link:hover {
    color: #6b21a8;
    text-decoration: underline;
}

.company-euid {
    display: inline-block;
    font-family: 'Courier New', Courier, monospace;
    background-color: #f1f5f9;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.8125rem;
    color: #475569;
    font-weight: 600;
}

.company-status-cell {
    white-space: nowrap;
}

.company-actions-cell {
    white-space: nowrap;
}

.btn-view-company {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    background-color: #faf5ff;
    color: #7e22ce;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid #e9d5ff;
}

.btn-view-company:hover {
    background-color: #7e22ce;
    color: white;
}

/* Mobile Table Cards */
@media (max-width: 767px) {
    .companies-table thead {
        display: none;
    }

    .companies-table tbody tr {
        display: block;
        margin-bottom: 1rem;
        border: 1px solid #e2e8f0;
        border-radius: 1rem;
        padding: 1rem;
        background-color: white;
    }

    .companies-table tbody tr:last-child {
        margin-bottom: 0;
    }

    .companies-table td {
        display: block;
        text-align: left;
        padding: 0.75rem 0;
        border-bottom: 1px solid #f1f5f9;
    }

    .companies-table td:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .companies-table td:before {
        content: attr(data-label);
        display: block;
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.025em;
        color: #64748b;
        margin-bottom: 0.25rem;
    }
}

/* Responsive Adjustments */
@media (min-width: 640px) {
    .landing-hero {
        padding: 5rem 2rem 8rem;
    }

    .landing-hero-title {
        font-size: 3rem;
    }

    .landing-hero-subtitle {
        font-size: 1.25rem;
    }

    .landing-cta-group {
        flex-direction: row;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr 1.5fr;
    }
}

@media (min-width: 1024px) {
    .landing-hero {
        padding: 6rem 2rem 10rem;
    }

    .landing-hero-title {
        font-size: 3.75rem;
    }

    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .page-title {
        font-size: 3rem;
    }
}