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

:root {
    --emerald-50:#ecfdf5;--emerald-100:#d1fae5;--emerald-400:#34d399;--emerald-500:#10b981;--emerald-600:#059669;--gray-50:#f9fafb;--gray-100:#f3f4f6;--gray-200:#e5e7eb;--gray-300:#d1d5db;--gray-400:#9ca3af;--gray-500:#6b7280;--gray-600:#4b5563;--gray-700:#374151;--gray-800:#1f2937;--gray-900:#111827;--radius-sm:6px;--radius:12px;--transition:0.25s cubic-bezier(.4,0,.2,1);
}

a {
    color: #10b981;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

.min-h-screen {
    min-height: 100vh;
    background: linear-gradient(135deg, #ecfdf5 0%, #ffffff 50%, #f0fdf4 100%);
}

/* Header */
.header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    /* border-bottom: 1px solid #e5e7eb; */
    z-index: 50;
}



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

/* Skip-Link für Tastatur-Nutzer */
.skip-link {position:absolute;left:-999px;top:auto;width:1px;height:1px;overflow:hidden;}
.skip-link:focus {left:1rem;top:1rem;width:auto;height:auto;padding:.75rem 1rem;background:#111827;color:#fff;border-radius:8px;z-index:1000;}

/* Besser sichtbarer Fokus */
button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {outline:2px solid var(--emerald-500);outline-offset:3px;border-radius:6px;}

.mobile-toggle {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {

    .header {
        min-height: 73px;
    }

    .mobile-toggle {
        display: block;
        position: relative;
        padding: 0.5rem;
        width: 30px;
    }

    .mobile-toggle::before {
        content: '';
        display: block;
        width: 30px;
        height: 2px;
        background: #333;
        position: absolute;
        top: 0;
        right: 0;
        transition: all 0.3s ease;
    }

    .mobile-toggle::after {
        content: '';
        display: block;
        width: 30px;
        height: 2px;
        background: #333;
        position: absolute;
        top: 8px;
        right: 0;
        transition: all 0.3s ease;
    }

    .mobile-toggle.active::after {
        transform: rotate(45deg);
        top: 4px;
    }

    .mobile-toggle.active::before {
        transform: rotate(-45deg);
        top: 4px;
    }

    .header-content .btn {
        display: none
    }

    .header-content {
        flex-wrap: wrap;
    }

    .header-content .nav.open {
        /* min-height: 360px; */
        max-height: 420px;
        margin-top: 1rem;
        transition: all 0.3s ease;
    }

    .header-content .nav {
        max-height: 0px;
        display: flex;
        overflow: hidden;
        order: 3;
        width: 100%;
        margin-top: 0rem;
        flex-direction: column;
        /* justify-content: space-around; */
        text-align: left;
        gap: 0;
        transition: all 0.3s ease;
    }

    .header-content .nav a {
        padding: 1rem;
        margin: 0;
    }

}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon img {
    width: 40px;
    height: 40px;
    /* background: linear-gradient(to right, #10b981, #16a34a); */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(to right, #10b981, #1fc28b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.breadcrumb {
    padding: 1rem;
    color: #6b7280;
}

.breadcrumb a {
    color: #10b981;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.nav {
    /* display: none; */
    gap: 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

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

.nav a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}
.nav a.active {color: var(--emerald-500);font-weight:600;position:relative;}
.nav a.active:after {content:"";position:absolute;left:0;bottom:-6px;width:100%;height:2px;background:linear-gradient(to right,var(--emerald-500),#1fc28b);border-radius:2px;}

.nav a:hover {
    color: #1fc28b;
}

.btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: linear-gradient(to right, #10b981, #1fc28b);
    color: white;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1.125rem;
}

.btn-outline {
    border: 1px solid #333;
    /* #d1d5db */
    /* background: white; */
    color: #333;
}

.section-emerald .btn-outline {
    border-color: white;
    color: white;
    background: transparent;
}

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

.btn-secondary {
    background: white;
    color: #10b981;
}

.section-emerald .btn-secondary:hover {
    background: #f3f4f6;
}

.btn svg {
    width: 20px;
    height: 20px;
    /* fill: currentColor; */
}

/* Sections */
.section {
    padding: 5.5rem 1rem;
    /* padding-top: ; */
}

.section-white {
    background: rgba(255, 255, 255, 0.5);
}

.section-emerald {
    background: linear-gradient(to right, #10b981, #1fc28b);
    color: white;
}

.section-dark {
    background: #111827;
    color: white;
}

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

.container-md {
    max-width: 896px;
    margin: 0 auto;
}

.grid {
    display: grid;
    gap: 1.5rem;
}

.grid-2 {

    grid-template-columns: 7fr 7fr;
    grid-auto-rows: minmax(200px, auto);
}

#hero .grid-2 {
    grid-template-columns: 7fr 5fr;
    grid-auto-rows: minmax(200px, auto);
}


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

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

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

.grid-row {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 1rem 0 2rem 0;
    margin: -1rem 0;
}

.grid-row>* {
    flex: 0 0 auto;
    min-width: calc(100%/5 - 1.5rem);
    min-height: 160px;
}

@media (max-width: 768px) {
    .hero-image-wrapper {
        display: none;
    }

    #hero .grid-2,
    .grid-2,
    .grid-3,
    .grid-4,
    .grid-5 {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

.text-5xl {
    font-size: 3rem;
    line-height: 1.1;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 1.2;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 1.2;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 1.3;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.4;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.5;
}

.text-sm {
    font-size: 0.875rem;
}

.text-xs {
    font-size: 0.75rem;
}

.font-bold {
    font-weight: bold;
}

.font-semibold {
    font-weight: 600;
}

.text-gray-600 {
    color: #4b5563;
}

.text-gray-700 {
    color: #374151;
}

.text-gray-400 {
    color: #9ca3af;
}

.text-emerald-600 {
    color: #059669;
}

.text-emerald-700 {
    color: #1fc28b;
}

.text-emerald-100 {
    color: #d1fae5;
}

.text-emerald-400 {
    color: #34d399;
}

.text-gradient {
    background: linear-gradient(to right, #10b981, #1fc28b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.ml-4 {
    margin-left: 1rem;
}

.ml-3 {
    margin-left: 0.75rem;
}

.ml-2 {
    margin-left: 0.5rem;
}

.ml-1 {
    margin-left: 0.25rem;
}

.space-y-8>*+* {
    margin-top: 2rem;
}

.space-y-4>*+* {
    margin-top: 1rem;
}

.space-x-2>*+* {
    margin-left: 0.5rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-2 {
    gap: 0.5rem;
}

/* Cards */
.card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

/* Scroll-Einblendeanimation */
.card.fade-in {opacity:0;transform:translateY(24px);}
.card.fade-in.visible {opacity:1;transform:translateY(0);transition:opacity .6s var(--transition),transform .6s var(--transition);}

.pricing-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.03), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
    transform: translateY(-4px);
}

.card-feature {
    background: linear-gradient(to bottom, #ecfdf5, white);
}

.card-popular {
    position: relative;
    border: 2px solid #10b981;
    background: linear-gradient(to bottom, #ecfdf5, white);
}

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

.badge-outline {
    border: 1px solid #d1fae5;
    background: #ecfdf5;
    color: #047857;
}

.badge-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, #10b981, #1fc28b);
    color: white;
    z-index: 10;
}

.badge-secondary {
    background: #f3f4f6;
    color: #374151;
}

/* Icons */
.icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.icon-sm {
    width: 16px;
    height: 16px;
}

.icon-container {
    width: 48px;
    height: 48px;
    background: linear-gradient(to right, #ecfdf5, #f0fdf4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    margin-right: 1rem;
    overflow: hidden;

    transition: all 0.3s;
    box-shadow: inset 0 20px 25px -5px rgba(0, 0, 0, 0), inset 0 10px 10px -5px rgba(0, 0, 0, 0.0);
}

.card:hover .icon-container {
    box-shadow: inset 0 20px 25px -5px rgba(0, 0, 0, 0.04), inset 0 10px 10px -5px rgba(0, 0, 0, 0.03);
}

.icon-container svg {
    width: 32px;
    height: 32px;
    margin-top: 2px;
    /* margin-left: 0; */
    /* fill: #10b981; */
    transition: all 0.3s;
    /* transition-delay: 50ms; */
}

.card:hover .icon-container svg {
    color: #1fc28b;
    fill: #1fc28b;
    transform: translateY(4px);
    transition: all 0.3s;
}

.hero-buttons {
    padding-bottom: 40px;
}

.hero-buttons .flex {
    flex-wrap: wrap;
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    margin-left: 40px;
    margin-top: 24px;
    /* height: 500px; */
}

.hero-image-bg {
    position: absolute;
    top: -16px;
    left: -16px;
    width: 70%;
    height: 100%;
    background: linear-gradient(to right, #a7f3d0, #86efac);
    border-radius: 24px;
    transform: rotate(3deg);
}

.hero-image {
    position: relative;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    width: 60%;
    height: 50%;
    object-fit: cover;
    transform: rotate(-1deg);
    transition: transform 0.3s;
}

.hero-image:hover {
    transform: rotate(0deg);
}

/* Stars */
.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star {
    width: 16px;
    height: 16px;
    fill: #fbbf24;
    color: #fbbf24;
}

/* Pricing Toggle */
.pricing-toggle {
    background: white;
    border-radius: 12px;
    padding: 4px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    margin-bottom: 2rem;
}

.pricing-toggle button {
    padding: 0.5rem 1rem;
    border: none;
    background: transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.pricing-toggle button.active {
    background: linear-gradient(to right, #10b981, #1fc28b);
    color: white;
}

/* Flex utilities */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.flex-1 {
    flex: 1;
}

.flex-2 {
    flex: 2;
}

.flex-3 {
    flex: 3;
}

.flex-wrap {
    flex-wrap: wrap;
}

.screenshot-container {
    width: 400px;
    margin-left: auto;
}

.order-2 .screenshot-container {
    margin-left: 0;
}

.screenshot-container img {
    position: relative;
    /* width: 100%; */
    max-width: 400px;
    max-height: 600px;
    margin: 0;

    /* overflow: hidden; */
    border-radius: 12px;
}

/* Cookie Banner & Settings */
.cookie-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-out;
    overflow: hidden;
}

.cookie-banner.show {
    opacity: 1;
    visibility: visible;
}

/* Prevent body scroll when dialog is open */
body.cookie-dialog-open {
    overflow: hidden;
    height: 100vh;
}

.cookie-banner-content {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(0.95) translateY(20px);
    transition: transform 0.3s ease-out;
}

.cookie-banner.show .cookie-banner-content {
    transform: scale(1) translateY(0);
}

.cookie-banner-text {
    margin-bottom: 1.5rem;
}

.cookie-banner-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
    text-align: center;
}

.cookie-banner-text p {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

.cookie-banner-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cookie-banner-buttons .btn {
    white-space: nowrap;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-out;
}

.cookie-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-content {
    background: white;
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(0.95) translateY(20px);
    transition: transform 0.3s ease-out;
}

.cookie-modal.show .cookie-modal-content {
    transform: scale(1) translateY(0);
}

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

.cookie-modal-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    color: #333;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #9ca3af;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.cookie-modal-close:hover {
    background: #f3f4f6;
    color: #6b7280;
}

.cookie-modal-body {
    padding: 1.5rem;
    max-height: 50vh;
    overflow-y: auto;
}

.cookie-category {
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.cookie-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.cookie-category-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.cookie-category h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.cookie-category p {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

/* Custom Toggle Switch */
.cookie-switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #d1d5db;
    transition: 0.3s;
    border-radius: 24px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

input:checked+.cookie-slider {
    background: linear-gradient(to right, #10b981, #1fc28b);
}

input:checked+.cookie-slider:before {
    transform: translateX(24px);
}

input:disabled+.cookie-slider {
    background-color: #9ca3af;
    cursor: not-allowed;
}

input:disabled+.cookie-slider:before {
    background-color: #f9fafb;
}

.cookie-modal-footer {
    padding: 1.5rem;
    border-top: 1px solid #e5e7eb;
    background: #f9fafb;
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
}

/* Floating Cookie Settings Button */
.cookie-settings-floating {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(to right, #10b981, #1fc28b);
    color: white;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    z-index: 999;
    transition: all 0.2s ease;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
}

.cookie-settings-floating.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.cookie-settings-floating:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 1rem;
    }

    .cookie-banner-content {
        padding: 1.5rem;
        border-radius: 12px;
    }

    .cookie-banner-text h3 {
        font-size: 1.25rem;
    }

    .cookie-banner-text p {
        font-size: 0.875rem;
    }

    .cookie-banner-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }

    .cookie-banner-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .cookie-modal {
        padding: 0.5rem;
    }

    .cookie-modal-content {
        max-height: 95vh;
    }

    .cookie-category-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .cookie-switch {
        align-self: flex-start;
    }

    .cookie-modal-footer {
        flex-direction: column;
    }

    .cookie-settings-floating {
        bottom: 1rem;
        right: 1rem;
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
}

/* Form Styles */
.contact-form-container {
    max-width: none;
    padding: 2rem;
}

.contact-form {
    max-width: 100%;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

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

.form-group select {
    cursor: pointer;
}

/* Checkbox Styles */
.checkbox-container {
    display: flex;
    align-items: center;
    /* justify-content: center; */
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    line-height: 1.5;
}

.checkbox-container p {
    display: inline-block;

}
.checkbox-container a {
    display: contents;

}

.checkbox-container input[type="checkbox"] {
    display: none;
}

.checkbox-container .checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    /* margin-top: 2px; */
    transition: all 0.2s;
}

.checkbox-container input[type="checkbox"]:checked+.checkmark {
    background: linear-gradient(to right, #10b981, #1fc28b);
    border-color: #10b981;
}

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

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

/* Form Messages */
.form-message {
    margin: 1.5rem 0;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid;
    animation: slideInFromTop 0.3s ease-out;
}

.form-message-success {
    background-color: #ecfdf5;
    border-color: #10b981;
    color: #065f46;
}

.form-message-error {
    background-color: #fef2f2;
    border-color: #ef4444;
    color: #991b1b;
}

.form-message-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

/* reCAPTCHA Required Message */
.recaptcha-required-message {
    margin-bottom: 2rem;
    padding: 0;
    animation: slideInFromTop 0.4s ease-out;
}

.recaptcha-notice {
    background: linear-gradient(135deg, #fff7ed 0%, #fff 100%);
    border: 2px solid #fb923c;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.recaptcha-notice-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.recaptcha-notice-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.recaptcha-notice-text h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ea580c;
    margin-bottom: 0.5rem;
}

.recaptcha-notice-text p {
    color: #9a3412;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

.recaptcha-notice-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.recaptcha-checkbox-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    color: #9a3412;
}

.recaptcha-checkbox {
    display: none;
}

.recaptcha-checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #fb923c;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
    background: white;
}

.recaptcha-checkbox:checked+.recaptcha-checkmark {
    background: linear-gradient(to right, #fb923c, #f97316);
    border-color: #fb923c;
}

.recaptcha-checkbox:checked+.recaptcha-checkmark::after {
    content: '✓';
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

@keyframes slideInFromTop {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments for reCAPTCHA notice */
@media (max-width: 768px) {
    .recaptcha-notice-content {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .recaptcha-notice-actions {
        align-items: center;
        width: 100%;
    }

    .recaptcha-notice-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Partner Page Styles */
.partner-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
}

.partner-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.partner-hero .hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.partners-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.partners-grid {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    /* max-width: 100px; */
    margin: 0 auto;
    /* flex-wrap: wrap; */
}

.partner-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    /* flex: 1; */
    min-width: 450px;
    max-width: 500px;
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: var(--partner-color, #e5e7eb);
}

.partner-image {
    height: 250px;
    overflow: hidden;
    /* background: var(--partner-color, #f3f4f6); */
}

.partner-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.partner-card:hover .partner-image img {
    transform: scale(1.05);
}

.partner-content {
    padding: 2rem;
}

.partner-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.partner-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.partner-actions {
    display: flex;
    justify-content: flex-start;
}

.partner-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.partner-btn:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 15px -3px rgba(0, 0, 0, 0.2);
}

/* Insurance Calculator Section */
.insurance-calculator-section {
    padding: 4rem 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.calculator-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.calculator-form {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid #e5e7eb;
}

.calculator-form h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
}

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

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

.calculator-preview {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.preview-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid #e5e7eb;
    text-align: center;
}

.preview-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.price-preview {
    margin-bottom: 2rem;
}

.price-range {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #059669;
    margin-bottom: 0.5rem;
}

.price-note {
    display: block;
    color: #6b7280;
    font-size: 0.875rem;
}

.coverage-highlights h5 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.coverage-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.coverage-list li {
    padding: 0.5rem 0;
    color: #374151;
    font-size: 0.875rem;
}

.trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f0f9ff;
    border-radius: 12px;
    border: 1px solid #bae6fd;
}

.trust-icon {
    height: 1.5rem;
    width: 1.5rem;
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-text strong {
    font-weight: 600;
    color: #1f2937;
    font-size: 0.875rem;
}

.trust-text span {
    color: #6b7280;
    font-size: 0.75rem;
}

.calculator-disclaimer {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
    text-align: center;
}

.calculator-disclaimer p {
    color: #92400e;
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.5;
}

/* Partner Benefits Section */
.partner-benefits {
    padding: 4rem 0;
    background: #f8fafc;
}

.partner-benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: flex;

    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-4px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.benefit-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* Responsive Design for Partner Page */
@media (max-width: 1024px) {
    .calculator-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .partner-card {
        min-width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .partner-hero {
        padding: 4rem 0 3rem;
    }

    .partner-hero h1 {
        font-size: 2rem;
    }

    .partner-hero .hero-subtitle {
        font-size: 1rem;
    }

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

    .calculator-form {
        padding: 1.5rem;
    }

    .preview-card {
        padding: 1.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .partner-benefits h2 {
        font-size: 2rem;
    }

    .benefit-item {
        padding: 1.5rem;
    }
}

/* Loading Animation */
.animate-spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Support Categories */
.support-category {
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.support-category:hover {
    border-color: #10b981;
    transform: translateY(-2px);
}

.support-category.selected {
    border-color: #10b981;
    background: linear-gradient(to bottom, #ecfdf5, white);
}

.support-list {
    list-style: none;
    padding: 0;
}

.support-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f3f4f6;
    color: #6b7280;
    font-size: 0.875rem;
}

.support-list li:last-child {
    border-bottom: none;
}

.support-list li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* FAQ Styles */
.faq-section {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    padding: 1.5rem;
}

.faq-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f3f4f6;
}

.faq-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

/* Navigation Active State */
.nav a.active {
    color: #10b981;
    font-weight: 600;
}

/* Utility Classes */
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mt-16 {
    margin-top: 4rem;
}

/* Responsive Form Adjustments */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-container {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
        /* Prevents zoom on iOS */
    }
}

/* Responsive */
@media (max-width: 640px) {
    .text-5xl {
        font-size: 2.0rem;
    }

    .text-4xl {
        font-size: 1.6rem;
    }

    .section {
        padding: 3rem 1rem;
    }

    .flex-col-sm {
        flex-direction: column;
    }

    .gap-4 {
        flex-wrap: wrap;
    }
}


#how-it-works .hero-image-bg {
    width: 50%;
}

#how-it-works .hero-image {
    width: 50%;
}

/* Verhindert, dass Anker hinter dem Sticky-Header verschwinden */
[id] { scroll-margin-top: 90px; }

/* Bessere Lesbarkeit von Fließtext */
.prose {max-width:65ch;}
.prose p {margin-bottom:1.25rem;}

/* Reduzierte Bewegung berücksichtigen */
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } }

/* Cookie Toast */
.cookie-toast {position:fixed;bottom:1.25rem;right:1.25rem;background:#111827;color:#fff;padding:.85rem 1.1rem;border-radius:10px;font-size:.875rem;line-height:1.3;box-shadow:0 8px 24px -4px rgba(0,0,0,.25);opacity:0;transform:translateY(12px);pointer-events:none;transition:opacity .35s var(--transition),transform .35s var(--transition);z-index:1200;max-width:260px;font-weight:500;}
.cookie-toast.show {opacity:1;transform:translateY(0);pointer-events:auto;}
@media (max-width:640px){.cookie-toast{left:50%;right:auto;transform:translate(-50%,12px);}.cookie-toast.show{transform:translate(-50%,0);} }
@media (prefers-reduced-motion:reduce){.cookie-toast{transition:none;}}