/* Reset und Basis-Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #0f172a;
    background: linear-gradient(to bottom, #f8fafc, #ffffff);
    min-height: 100vh;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

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

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid #e2e8f0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

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

.logo-icon {
    height: 2.25rem;
    width: 2.25rem;
    border-radius: 1rem;
    background: #0f172a;
    color: white;
    display: grid;
    place-items: center;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.logo-title {
    font-weight: 600;
    line-height: 1;
    font-size: 1rem;
}

.logo-text p {
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1;
}

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

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

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

.nav a:hover {
    color: #475569;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 0.75rem;
    background: #0f172a;
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    text-decoration: none;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: background-color 0.2s;
}

.cta-button:hover {
    background: #1e293b;
}

.cta-button:focus {
    outline: none;
    box-shadow: 0 0 0 2px #94a3b8;
}

/* Hero Section */
.hero {
    position: relative;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #ffffff, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4));
}

.hero-content {
    position: relative;
    padding: 5rem 0;
}

@media (min-width: 768px) {
    .hero-content {
        padding: 7rem 0;
    }
}

.hero-text {
    max-width: 48rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero h1 {
    font-size: 1.875rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #0f172a;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
    .hero h1 {
        font-size: 3rem;
    }
}

.hero p {
    margin-top: 1rem;
    font-size: 1.125rem;
    color: #334155;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

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

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 1rem;
    background: #0f172a;
    color: white;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: background-color 0.2s;
}

.btn-primary:hover {
    background: #1e293b;
}

.btn-primary:focus {
    outline: none;
    box-shadow: 0 0 0 2px #94a3b8;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 1rem;
    background: white;
    color: #0f172a;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: background-color 0.2s;
}

.btn-secondary:hover {
    background: #f8fafc;
}

/* Key badges */
.badges {
    margin-top: -2rem;
    position: relative;
}

@media (min-width: 768px) {
    .badges {
        margin-top: -3rem;
    }
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

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

.badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-radius: 1rem;
    background: white;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.badge-icon {
    height: 1.25rem;
    width: 1.25rem;
    color: #334155;
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 500;
}

/* Sections */
.section {
    padding: 3.5rem 0;
}

.section-bg {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

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

.section h2 {
    font-size: 1.5rem;
    font-weight: 700;
}

@media (min-width: 768px) {
    .section h2 {
        font-size: 1.875rem;
    }
}

/* Cards */
.cards-grid {
    display: grid;
    gap: 2rem;
}

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

.card {
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    background: white;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.card-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    background: rgba(248, 250, 252, 0.6);
}

.card-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
}

.card-header p {
    font-size: 0.875rem;
    color: #64748b;
}

.card-body {
    padding: 1.5rem;
}

.card-body ul {
    list-style-type: disc;
    padding-left: 1.25rem;
    color: #334155;
}

.card-body li {
    margin-bottom: 0.5rem;
}

/* Features */
.features-grid {
    margin-top: 2rem;
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature {
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    background: white;
    padding: 1.25rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-icon {
    height: 2.5rem;
    width: 2.5rem;
    border-radius: 0.75rem;
    background: #0f172a;
    color: white;
    display: grid;
    place-items: center;
}

.feature-icon svg {
    height: 1.25rem;
    width: 1.25rem;
}

.feature h3 {
    font-weight: 600;
}

.feature p {
    margin-top: 0.75rem;
    color: #334155;
    font-size: 0.875rem;
}

/* Accordion */
.accordion {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.accordion-item {
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    background: white;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.2s ease;
}

.accordion-item:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.accordion-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}

.accordion-header:hover {
    background: #f8fafc;
}

.accordion-header.active {
    background: #f1f5f9;
}

.accordion-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #64748b;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.accordion-header.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: #334155;
    flex: 1;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content.active {
    max-height: 200px;
}

.accordion-text {
    padding: 0 1.25rem 1.25rem 1.25rem;
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.6;
}

/* Contact */
.contact-grid {
    display: grid;
    gap: 2.5rem;
    align-items: start;
}

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

.contact-info h2 {
    color: white;
}

.contact-info p {
    margin-top: 0.75rem;
    color: #cbd5e1;
    max-width: 65ch;
}

.contact-links {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    text-decoration: none;
    transition: all 0.2s;
}

.contact-link:hover {
    color: #e2e8f0;
}

.contact-link-icon {
    height: 2.5rem;
    width: 2.5rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    display: grid;
    place-items: center;
    transition: background-color 0.2s;
}

.contact-link:hover .contact-link-icon {
    background: rgba(255, 255, 255, 0.2);
}

.contact-link-icon svg {
    height: 1.25rem;
    width: 1.25rem;
}

.contact-link span {
    font-size: 1.125rem;
}

/* Form */
.form {
    background: white;
    color: #0f172a;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid #e2e8f0;
}

.form h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

.form p {
    font-size: 0.875rem;
    color: #64748b;
    margin-top: 0.25rem;
}

.form-grid {
    margin-top: 1rem;
    display: grid;
    gap: 1rem;
}

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

.form-group {
    display: block;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    display: block;
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    border-radius: 0.75rem;
    border: 1px solid #cbd5e1;
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
    transition: all 0.2s;
}

.form-input:focus {
    outline: none;
    box-shadow: 0 0 0 2px #94a3b8;
}

.form-textarea {
    width: 100%;
    border-radius: 0.75rem;
    border: 1px solid #cbd5e1;
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
    resize: vertical;
    min-height: 6rem;
}

.form-textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px #94a3b8;
}

.form-choices {
    margin-top: 1rem;
}

.form-choices-label {
    font-size: 0.875rem;
    font-weight: 500;
    display: block;
    margin-bottom: 0.5rem;
}

.form-choices-grid {
    margin-top: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.choice {
    display: inline-flex;
    align-items: center;
    border-radius: 0.5rem;
    border: 1px solid #cbd5e1;
    background: white;
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
    color: #334155;
    cursor: pointer;
    transition: all 0.2s;
}

.choice:hover {
    background: #f8fafc;
}

.choice.selected {
    background: #0f172a;
    color: white;
    border-color: #0f172a;
}

.choice.multiple-selection {
    background: #f1f5f9;
    border-color: #0f172a;
    color: #0f172a;
}

.choice.multiple-selection.selected {
    background: #0f172a;
    color: white;
}

.form-submit {
    margin-top: 1.25rem;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 0.75rem;
    background: #0f172a;
    color: white;
    padding: 0.75rem 1.25rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.form-submit:hover:not(:disabled) {
    background: #1e293b;
}

.form-submit:disabled {
    background: #94a3b8;
    cursor: not-allowed;
    opacity: 0.6;
}

.form-disclaimer {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: #64748b;
}

/* Footer */
.footer {
    border-top: 1px solid #e2e8f0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 2rem 0;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
    }
}

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

.footer p a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}

.footer p a:hover {
    color: #334155;
}

.footer-info {
    font-size: 0.75rem;
    color: #94a3b8;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.modal-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #64748b;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 0.25rem;
    transition: all 0.2s;
}

.modal-close:hover {
    color: #334155;
    background: #f1f5f9;
}

.modal-body p {
    font-size: 0.875rem;
    color: #334155;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.modal-body strong {
    color: #0f172a;
    font-weight: 600;
}

/* Map Section */
.map-section {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.map-container {
    position: relative;
    height: 400px;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(100%) contrast(0.8) brightness(1.1);
    transition: filter 0.3s ease;
}

.map-iframe:hover {
    filter: grayscale(80%) contrast(0.9) brightness(1.05);
}

.map-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.map-overlay h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #0f172a;
}

.map-overlay p {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
}

.map-overlay .address {
    font-weight: 500;
    color: #334155;
}

/* Icons */
.icon {
    width: 1.25rem;
    height: 1.25rem;
    fill: currentColor;
}

.icon-sm {
    width: 1rem;
    height: 1rem;
}

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

