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

:root {
    --primary-color: #0a3556;
    --primary-light: #339af0;
    --secondary-color: #3b82f6;
    --accent-color: #60a5fa;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --bg-color: #eaf2ff;
    --bg-light: #cfe3ff;
    --bg-gradient: linear-gradient(135deg, #0a3556 0%, #339af0 100%);
    --border-color: #93c5fd;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #eaf2ff;
    overflow-x: hidden;
}

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

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
}

/* Navigation */
.navbar {
    background-color: rgba(234, 242, 255, 0.95);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease-in-out;
}

.navbar.nav-hidden {
    transform: translateY(-100%);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 140px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0a3556 0%, #339af0 50%, #cfe3ff 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s both;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.cta-button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button.primary {
    background-color: white;
    color: var(--primary-color);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-button.secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background-color: white;
    color: var(--primary-color);
}

/* Video Section */
.video-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #eaf2ff 0%, #cfe3ff 100%);
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: #000;
}

.main-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    min-height: 300px;
    background: #000;
}

/* Vorteile Section */
.vorteile {
    padding: 5rem 0 2rem 0;
    background: linear-gradient(to bottom, #cfe3ff 0%, #eaf2ff 100%);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--text-color);
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
}

/* Vorteile Horizontal Scroll */
.vorteile-scroll-container {
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) rgba(234, 242, 255, 0.5);
    -webkit-overflow-scrolling: touch;
}

.vorteile-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.vorteile-scroll-container::-webkit-scrollbar-track {
    background: rgba(234, 242, 255, 0.5);
    border-radius: 10px;
}

.vorteile-scroll-container::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.vorteile-scroll-container::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

.vorteile-scroll-wrapper {
    display: flex;
    gap: 2rem;
    padding-bottom: 0.5rem;
    min-width: min-content;
}

.vorteil-card {
    background: rgba(255, 255, 255, 0.7);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 2px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 0 0 300px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
}

.vorteil-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.vorteil-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.vorteil-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    flex-grow: 0;
}

.vorteil-features {
    list-style: none;
}

.vorteil-features li {
    padding: 0.5rem 0;
    color: var(--text-color);
    font-weight: 500;
}

/* Service Plans - jetzt in Scroll-Leiste integriert */
.plan-card {
    background: rgba(255, 255, 255, 0.7);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 2px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 0 0 300px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.plan-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.plan-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    flex-grow: 0;
}

.plan-features {
    list-style: none;
}

.plan-features li {
    padding: 0.5rem 0;
    color: var(--text-color);
    font-weight: 500;
}

/* Formular Section */
.formular-section {
    padding: 2rem 0 5rem 0;
    background: linear-gradient(to bottom, #eaf2ff 0%, #cfe3ff 50%, #eaf2ff 100%);
}

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

.form-container {
    background: rgba(255, 255, 255, 0.75);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-xl);
    backdrop-filter: blur(10px);
    max-width: 900px;
    margin: 0 auto;
    border: 2px solid rgba(147, 197, 253, 0.5);
}

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

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    width: 100%;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
}

.required {
    color: #e53e3e;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
    font-family: inherit;
    color: var(--text-color);
}

.form-field textarea {
    resize: vertical;
    min-height: 80px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 0 3px rgba(10, 53, 86, 0.15);
    color: var(--text-color);
}

/* Dropzone */
.dropzone {
    border: 2px dashed var(--primary-color);
    border-radius: 12px;
    padding: 2rem;
    background: rgba(234, 242, 255, 0.8);
    text-align: center;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dropzone:hover {
    background: rgba(207, 227, 255, 0.9);
    border-color: var(--primary-light);
}

.dropzone.dragover {
    background: rgba(147, 197, 253, 0.5);
    border-color: var(--secondary-color);
}

.dropzone-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dropzone-text strong {
    font-weight: 600;
    font-size: 1rem;
}

.dropzone-text span {
    font-size: 0.9rem;
    opacity: 0.8;
}

.preview-container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.preview-item {
    width: 84px;
    height: 84px;
    border: 1px solid #ccd6e8;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(234, 242, 255, 0.9);
    position: relative;
}

.preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.custom-input-wrap {
    margin-top: 0.5rem;
}

.custom-input-wrap input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-color);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--bg-gradient);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Send Modal */
.send-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    backdrop-filter: blur(5px);
    overflow-y: auto;
    padding: 1rem;
    box-sizing: border-box;
}

/* Modal als inline Element (wenn nach Button verschoben) */
.send-modal[style*="position: relative"] {
    position: relative !important;
    background: transparent !important;
    backdrop-filter: none !important;
    padding: 0 !important;
    height: auto !important;
    align-items: center;
}

.send-modal[style*="position: relative"] .send-modal-content {
    margin-top: auto;
    margin-bottom: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 500px;
}

@media (max-width: 768px) {
    .send-modal {
        align-items: center;
        padding: 1rem;
    }
    
    .send-modal-content {
        margin-top: auto;
        margin-bottom: auto;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }
}

.send-modal-content {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    max-width: 500px;
    width: 90%;
    text-align: center;
    animation: fadeInUp 0.3s ease;
    margin: auto;
    position: relative;
}

.send-modal-content h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.send-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.send-btn {
    width: 100%;
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: white;
}

.send-icon {
    font-size: 1.5rem;
}

.email-btn {
    background: linear-gradient(135deg, #0a3556 0%, #339af0 100%);
}

.email-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #0d4269 0%, #4aa8f5 100%);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #2ee577 0%, #15a68f 100%);
}

.close-modal-btn {
    width: 100%;
    padding: 0.75rem;
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal-btn:hover {
    background: rgba(234, 242, 255, 0.5);
    color: var(--text-color);
    border-color: var(--primary-color);
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background-color: #cfe3ff;
}

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

.faq-item {
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(207, 227, 255, 0.5);
}

.faq-icon {
    transition: transform 0.3s ease;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.faq-item[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.6;
    display: none;
}

.faq-item[aria-expanded="true"] .faq-answer {
    display: block;
}

/* Kontakt Section */
.kontakt-section {
    padding: 5rem 0;
    background-color: #eaf2ff;
}

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

.kontakt-card {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.kontakt-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    color: inherit;
}

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

.kontakt-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 600;
}

.kontakt-card p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.kontakt-value {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Map Section */
.map-section {
    padding: 5rem 0;
    background-color: #cfe3ff;
}

.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-address {
    text-align: center;
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.footer a {
    color: white;
    text-decoration: underline;
}

.footer a:hover {
    color: #cfe3ff;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    body {
        font-size: 15px;
    }

    .navbar {
        padding: 0.75rem 0;
        background-color: rgba(255, 255, 255, 0.98);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    }

    .nav-logo {
        height: 70px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        padding: 1.5rem 0;
        gap: 0;
        backdrop-filter: blur(20px);
    }

    .nav-menu.active {
        left: 0;
    }

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

    .nav-menu a {
        display: block;
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
        font-weight: 500;
        color: var(--text-color);
        border-bottom: 1px solid rgba(147, 197, 253, 0.2);
    }

    .nav-menu a:hover {
        background-color: rgba(234, 242, 255, 0.5);
        color: var(--primary-color);
    }

    .nav-toggle {
        display: flex;
        padding: 0.5rem;
        min-width: 44px;
        min-height: 44px;
        justify-content: center;
        align-items: center;
    }

    .nav-toggle span {
        width: 22px;
        height: 2.5px;
    }

    .hero {
        padding: 1.75rem 0;
        background: linear-gradient(135deg, #0a3556 0%, #339af0 60%, #cfe3ff 100%);
        min-height: auto;
    }

    .hero-title {
        font-size: 1.65rem;
        margin-bottom: 0.75rem;
        line-height: 1.25;
        font-weight: 700;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
        line-height: 1.4;
        opacity: 0.95;
        padding: 0 0.5rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        font-weight: 700;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        line-height: 1.4;
    }

    .video-section {
        padding: 0;
        margin: 0;
    }

    .video-section .container {
        padding: 0;
    }

    .video-section .section-title {
        padding: 1.5rem 1rem 1rem 1rem;
        margin-bottom: 0;
    }

    .video-wrapper {
        border-radius: 0;
        margin: 0;
        box-shadow: none;
    }

    .main-video {
        border-radius: 0;
    }

    .vorteile {
        padding: 1.5rem 0 0.75rem 0;
    }

    .vorteile-scroll-container {
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
    }

    .vorteil-card,
    .plan-card {
        scroll-snap-align: start;
    }

    .vorteile-scroll-wrapper {
        gap: 0.875rem;
    }

    .vorteil-card,
    .plan-card {
        flex: 0 0 28%;
        width: 28%;
        padding: 1.5rem;
        min-height: auto;
        max-height: none;
        border-radius: 12px;
        box-shadow: var(--shadow);
        border: 2px solid var(--border-color);
        background: rgba(255, 255, 255, 0.7);
        display: flex;
        flex-direction: column;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .vorteil-card h3,
    .plan-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
        color: var(--primary-color);
        font-weight: 700;
        flex-shrink: 0;
    }

    .vorteil-description,
    .plan-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        color: var(--text-light);
        flex-shrink: 0;
    }

    .vorteil-features,
    .plan-features {
        flex-shrink: 0;
        margin-top: auto;
        list-style: none;
    }

    .vorteil-features li,
    .plan-features li {
        font-size: 0.8rem;
        padding: 0.4rem 0;
        color: var(--text-color);
        font-weight: 500;
    }

    .kontakt-section {
        padding: 1.75rem 0;
    }

    .kontakt-grid {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }

    .kontakt-card {
        padding: 1.25rem 1rem;
        border-radius: 14px;
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
        background: rgba(255, 255, 255, 0.95);
        transition: all 0.3s ease;
    }

    .kontakt-card:active {
        transform: scale(0.98);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }

    .kontakt-card,
    .cta-button,
    .submit-btn,
    .send-btn {
        -webkit-tap-highlight-color: rgba(10, 53, 86, 0.1);
        touch-action: manipulation;
    }

    .kontakt-icon {
        font-size: 2rem;
        margin-bottom: 0.625rem;
    }

    .kontakt-card h3 {
        font-size: 1.05rem;
        margin-bottom: 0.375rem;
    }

    .kontakt-card p {
        font-size: 0.85rem;
        margin-bottom: 0.25rem;
    }

    .kontakt-value {
        font-size: 1rem;
        margin-top: 0.375rem;
    }

    .faq-section {
        padding: 1.75rem 0;
    }

    .faq-item {
        border-radius: 12px;
        margin-bottom: 0.625rem;
    }

    .faq-question {
        padding: 1rem 0.875rem;
        font-size: 0.95rem;
        font-weight: 600;
    }

    .faq-answer {
        padding: 0 0.875rem 1rem 0.875rem;
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .formular-section {
        padding: 1.75rem 0 2.5rem 0;
    }

    .formular-header {
        margin-bottom: 1.25rem;
    }

    .form-container {
        padding: 1.75rem;
        border-radius: 20px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.95);
    }

    .kfz-form {
        gap: 1.25rem;
    }

    .form-field {
        margin-bottom: 0;
    }

    .form-field label {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
        font-weight: 600;
    }

    .form-field input,
    .form-field select,
    .form-field textarea {
        padding: 12px 14px;
        font-size: 1rem;
        border-radius: 12px;
        border: 2px solid var(--border-color);
        -webkit-appearance: none;
        appearance: none;
    }

    .form-field select {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230a3556' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 12px center;
        padding-right: 35px;
        font-size: 0.95rem;
    }

    .form-field textarea {
        min-height: 70px;
    }

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

    /* Einzelne Felder (nicht in form-row) bleiben volle Breite */
    .kfz-form > .form-field:not(.form-row .form-field) {
        width: 100%;
    }
    
    /* Sicherstellen, dass form-row die volle Breite hat */
    .form-row {
        width: 100%;
    }

    .dropzone {
        padding: 1.5rem;
        border-radius: 12px;
    }

    .dropzone-text strong {
        font-size: 0.95rem;
    }

    .map-section {
        padding: 1.75rem 0;
    }

    .map-wrapper {
        border-radius: 14px;
    }

    .map-wrapper iframe {
        height: 300px;
    }

    .map-address {
        font-size: 0.9rem;
        margin-top: 0.75rem;
        font-weight: 500;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .cta-button {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 12px;
        min-height: 48px;
    }

    .submit-btn {
        padding: 0.875rem;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 12px;
        min-height: 48px;
    }

    .footer {
        padding: 1.25rem 0;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    .navbar {
        padding: 0.625rem 0;
        background-color: rgba(255, 255, 255, 0.98);
    }

    .nav-logo {
        height: 60px;
    }

    .nav-menu {
        top: 60px;
    }

    .hero {
        padding: 1.5rem 0;
    }

    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 0.625rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        padding: 0 0.25rem;
    }

    .section-title {
        font-size: 1.35rem;
        margin-bottom: 0.875rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 0.875rem;
    }

    .video-section {
        padding: 0;
        margin: 0;
    }

    .video-section .container {
        padding: 0;
    }

    .video-section .section-title {
        padding: 1.25rem 0.75rem 0.75rem 0.75rem;
        margin-bottom: 0;
    }

    .video-wrapper {
        border-radius: 0;
        margin: 0;
        box-shadow: none;
    }

    .main-video {
        border-radius: 0;
    }

    .vorteile {
        padding: 1.25rem 0 0.625rem 0;
    }

    .vorteil-card,
    .plan-card {
        flex: 0 0 27%;
        width: 27%;
        padding: 1.25rem;
        min-height: auto;
        border-radius: 12px;
        box-shadow: var(--shadow);
        border: 2px solid var(--border-color);
        background: rgba(255, 255, 255, 0.7);
        display: flex;
        flex-direction: column;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .vorteil-card h3,
    .plan-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.625rem;
        color: var(--primary-color);
        font-weight: 700;
        flex-shrink: 0;
    }

    .vorteil-description,
    .plan-description {
        font-size: 0.8rem;
        margin-bottom: 0.875rem;
        color: var(--text-light);
        flex-shrink: 0;
    }

    .vorteil-features,
    .plan-features {
        flex-shrink: 0;
        margin-top: auto;
        list-style: none;
    }

    .vorteil-features li,
    .plan-features li {
        font-size: 0.75rem;
        padding: 0.35rem 0;
        color: var(--text-color);
        font-weight: 500;
    }

    .kontakt-section {
        padding: 1.5rem 0;
    }

    .kontakt-card {
        padding: 1.125rem 0.875rem;
        border-radius: 12px;
    }

    .kontakt-icon {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }

    .kontakt-card h3 {
        font-size: 1rem;
    }

    .kontakt-card p {
        font-size: 0.8rem;
    }

    .kontakt-value {
        font-size: 0.95rem;
    }

    .faq-section {
        padding: 1.5rem 0;
    }

    .faq-question {
        padding: 0.875rem 0.75rem;
        font-size: 0.9rem;
    }

    .faq-answer {
        font-size: 0.8rem;
        padding: 0 0.75rem 0.875rem 0.75rem;
    }

    .formular-section {
        padding: 1.5rem 0 2rem 0;
    }

    .form-container {
        padding: 1.5rem;
        border-radius: 18px;
    }

    .kfz-form {
        gap: 1.125rem;
    }

    .form-field label {
        font-size: 0.9rem;
    }

    .form-field input,
    .form-field select,
    .form-field textarea {
        padding: 11px 12px;
        font-size: 0.95rem;
    }

    .form-field select {
        font-size: 0.9rem;
        padding-right: 32px;
        background-position: right 10px center;
    }

    .form-field textarea {
        min-height: 65px;
    }

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

    .form-row .form-field label {
        font-size: 0.85rem;
    }

    .map-section {
        padding: 1.5rem 0;
    }

    .map-wrapper iframe {
        height: 280px;
    }

    .cta-button,
    .submit-btn {
        padding: 0.95rem;
        font-size: 1rem;
        min-height: 48px;
    }

    .footer {
        padding: 1.5rem 0;
        font-size: 0.85rem;
    }

    .send-modal {
        padding: 1rem;
        align-items: center;
        justify-content: center;
    }

    .send-modal-content {
        padding: 1.75rem 1.5rem;
        border-radius: 18px;
        margin: auto;
        max-height: 90vh;
        overflow-y: auto;
    }

    .send-modal-content h3 {
        font-size: 1.3rem;
        margin-bottom: 1.75rem;
    }

    .send-btn {
        padding: 1.125rem 1.5rem;
        font-size: 1rem;
        border-radius: 12px;
    }

    .send-icon {
        font-size: 1.4rem;
    }
}

