/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #000;
    background: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    z-index: 1000;
    border-bottom: 1px solid #e5e5e5;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #000;
}

.logo-img {
    width: 70%;
    height: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #666;
}

.nav-link.contact-btn {
    background: #000;
    color: #fff;
    padding: 12px 24px;
    border-radius: 0;
    transition: all 0.3s ease;
}

.nav-link.contact-btn:hover {
    background: #333;
    color: #fff;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 2px;
    background: #000;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #fff;
    padding: 100px 0;
    position: relative;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    text-align: center;
}

.hero-title {
    font-size: 80px;
    font-weight: 900;
    line-height: 1.05;
    color: #000;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.45;
    color: #333;
    max-width: 820px;
    margin: 0 auto 48px;
}

.hero-cards {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: -30px;
    flex-wrap: nowrap;
    position: relative;
    height: 520px;
    margin-top: 40px;
    margin-bottom: 5px;
}

.hero-card {
    width: 300px;
    height: 494px;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4), 0 16px 50px rgba(0,0,0,0.6);
}

.hero-card:nth-child(1) {
    transform: rotate(-20deg);
    z-index: 1;
}

.hero-card:nth-child(2) {
    transform: rotate(0deg);
    z-index: 2;
}

.hero-card:nth-child(3) {
    transform: rotate(20deg);
    z-index: 3;
}

.hero-card:hover {
    transform: rotate(0deg) scale(1.05);
    z-index: 10;
}

.card-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 20%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 25px;
    z-index: 2;
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.2;
}

.card-subtitle {
    font-size: 12px;
    color: #ccc;
    line-height: 1.3;
    margin: 0;
    text-align: center;
    width: 100%;
    align-self: center;
}

.card-image {
    position: absolute;
    top: 35%;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Language Switcher */
.language-switcher {
    position: relative;
}

.language-dropdown {
    position: relative;
    display: inline-block;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #fff;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
    text-decoration: none;
}

.language-btn:hover {
    border-color: #007bff;
    box-shadow: 0 2px 8px rgba(0,123,255,0.15);
}

.language-btn .flag {
    font-size: 16px;
}

.language-btn .lang-text {
    font-weight: 600;
    min-width: 25px;
}

.language-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.language-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    min-width: 160px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.language-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: #f8f9fa;
    color: #007bff;
}

.language-option .flag {
    font-size: 16px;
}

/* Social Share Section */
.social-share {
    padding: 30px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.share-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.share-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    position: relative;
}

.share-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #28a745);
    border-radius: 2px;
}

.share-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.share-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 10px;
    background: #fff;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    min-height: 80px;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: transparent;
}

.share-btn i {
    font-size: 24px;
    margin-bottom: 8px;
    transition: transform 0.3s ease;
}

.share-btn:hover i {
    transform: scale(1.1);
}

.share-btn span {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Platform-specific colors */
.share-btn.whatsapp:hover {
    background: #25d366;
    color: #fff;
}

.share-btn.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
}

.share-btn.facebook:hover {
    background: #1877f2;
    color: #fff;
}

.share-btn.twitter:hover {
    background: #1da1f2;
    color: #fff;
}

.share-btn.linkedin:hover {
    background: #0077b5;
    color: #fff;
}

.share-btn.reddit:hover {
    background: #ff4500;
    color: #fff;
}

.share-btn.tiktok:hover {
    background: #000;
    color: #fff;
}


.share-btn.email:hover {
    background: #6c757d;
    color: #fff;
}

/* About Section */
.about {
    padding: 20px 0 20px 0;
    background: #f8f8f8;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    text-align: left;
    margin-bottom: 40px;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.about-description {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin: 0;
    font-weight: bold;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.stat-item {
    text-align: center;
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 20px 0 40px 0;
    background: #fff;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    text-align: left;
    margin-bottom: 60px;
}

.services-table {
    max-width: 1000px;
    margin: 0 auto;
}

.service-row {
    display: flex;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid #e5e5e5;
}

.service-row:last-child {
    border-bottom: none;
}

.service-number {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    min-width: 60px;
    line-height: 1;
}

.service-name {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    min-width: 150px;
    line-height: 1;
}

.service-tags {
    font-size: 14px;
    color: #666;
    font-weight: 400;
    flex: 1;
}

/* Why Choose Us Section */
.why-choose {
    padding: 20px 0 40px 0;
    background: #f8f8f8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature-number {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.2;
}

.feature-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* Experience Section */
.experience {
    padding: 20px 0 40px 0;
    background: #fff;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #e5e5e5;
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-number {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    min-width: 60px;
}

.timeline-content {
    flex: 1;
}

.timeline-title {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 5px;
}

.timeline-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 3px;
}

.timeline-period {
    font-size: 14px;
    color: #999;
}

/* Numbers Section */
.numbers {
    padding: 40px 0;
    background: #000;
    color: #fff;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.number-item {
    padding: 40px 20px;
}

.number-value {
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 15px;
    color: #fff;
    line-height: 1;
}

.number-label {
    font-size: 16px;
    color: #ccc;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Process Section */
.process {
    padding: 40px 0;
    background: #f8f8f8;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    text-align: center;
    padding: 20px 10px;
}

.step-number {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}

.step-description {
    font-size: 14px;
    line-height: 1.65;
    color: #666;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    hyphens: auto;
}

/* Reviews Section */
.reviews {
    padding: 40px 0;
    background: #fff;
}

.reviews-slider {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.review-card {
    background: #f8f8f8;
    padding: 40px 30px;
    text-align: center;
    display: none;
    border-radius: 20px;
}

.review-card.active {
    display: block;
}

.stars {
    color: #ffd700;
    font-size: 28px;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 20px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 50px;
    font-style: italic;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.reviewer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.reviewer-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-name {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
}

.reviewer-title {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
}

.slider-btn {
    width: 60px;
    height: 60px;
    border: 2px solid #000;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
}

.slider-btn:hover {
    background: #000;
    color: #fff;
}

/* FAQ Section */
.faq {
    padding: 40px 0;
    background: #f8f8f8;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    margin-bottom: 10px;
    border-radius: 0;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e5e5;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.faq-question i {
    color: #000;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #000;
    color: #fff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.contact-info h2 {
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 60px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.contact-intro {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--text-secondary, #4b5563);
    margin: -40px 0 48px;
    max-width: 42rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-block {
    display: flex;
    flex-direction: column;
    gap: 14px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.45;
}

.contact-block p {
    margin: 0;
}

.contact-line-link {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-line-link i {
    width: 24px;
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 20px;
    color: #fff;
}

.contact-block a,
.footer-contact-block a {
    color: #fff;
    text-decoration: none;
}

.contact-block a:hover,
.footer-contact-block a:hover {
    color: #ccc;
    text-decoration: underline;
}

.contact-vat {
    opacity: 0.92;
    font-size: 17px;
}

.footer-contact-block {
    font-size: 15px;
    line-height: 1.55;
}

.footer-contact-block p {
    margin: 0 0 8px;
}

.footer-contact-block .contact-vat {
    margin-top: 4px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 25px;
    font-size: 18px;
    font-weight: 500;
}

.contact-item i {
    width: 24px;
    color: #fff;
    font-size: 20px;
}

.contact-item a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #ccc;
    text-decoration: underline;
}

.visitor-counter {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    margin-top: 10px;
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.2);
    font-weight: 500;
    text-align: center;
    font-size: 16px;
    width: 50%;
    animation: heartbeat 2s infinite;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    14% { transform: scale(1.1); }
    28% { transform: scale(1); }
    42% { transform: scale(1.1); }
    70% { transform: scale(1); }
}

.visitor-counter i {
    color: white;
    margin-right: 8px;
    font-size: 16px;
}

.contact-form {
    background: #fff;
    padding: 80px 60px;
    color: #000;
    border-radius: 20px;
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 6px;
    color: #000;
    font-size: 18px;
}

.form-group select,
.form-group textarea,
.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"] {
    width: 100%;
    padding: 20px;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    font-size: 16px;
    background: #fff;
    color: #000;
    font-weight: 500;
    /* Opera-spezifische Fixes */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-shadow: none;
    outline: none;
    /* Entfernt alle Browser-spezifischen Styles */
    border-style: solid;
    border-width: 2px;
    /* Verhindert doppelte Rahmen */
    background-clip: padding-box;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
    font-family: inherit;
}

.form-group textarea::placeholder {
    color: #999;
}

.form-group select:focus,
.form-group input[type="text"]:focus,
.form-group input[type="tel"]:focus,
.form-group input[type="email"]:focus {
    outline: none;
    border-color: #000;
    /* Opera Focus-Fix */
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}

/* Opera-spezifische Fixes für Input-Felder */
@supports (-webkit-appearance: none) {
    .form-group input[type="text"],
    .form-group input[type="tel"],
    .form-group input[type="email"] {
        -webkit-appearance: none;
        border: 2px solid #e5e5e5;
        background: #fff;
    }
}

/* Zusätzliche Opera-Kompatibilität */
.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"] {
    /* Entfernt alle möglichen Browser-Defaults */
    margin: 0;
    vertical-align: baseline;
    /* Verhindert doppelte Rahmen in Opera */
    border-collapse: separate;
    border-spacing: 0;
}

/* Security Code Container */
.security-code-container {
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 2px solid #e5e5e5;
}

.code-generator {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.generate-code-btn {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.generate-code-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.generated-code {
    background: #fff;
    border: 2px solid #28a745;
    border-radius: 8px;
    padding: 12px 16px;
    font-family: 'Courier New', monospace;
    font-size: 18px;
    font-weight: bold;
    color: #28a745;
    letter-spacing: 2px;
    min-width: 120px;
    text-align: center;
    user-select: all;
}

.code-input-group {
    margin-bottom: 0;
}

.code-input-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    color: #000;
    font-size: 16px;
}

.code-input-group input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
    text-align: center;
    transition: border-color 0.3s ease;
}

.code-input-group input:focus {
    outline: none;
    border-color: #28a745;
}

.code-input-group input:valid {
    border-color: #4CAF50;
}

.btn-submit {
    background: #000;
    color: #fff;
    border: none;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 10px;
    width: 100%;
    justify-content: center;
}

.btn-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-submit:hover {
    background: #333;
    transform: translateY(-2px);
}

.form-messages {
    margin-top: 20px;
}

.success-message,
.error-message {
    padding: 15px;
    border-radius: 0;
    display: none;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.success-message {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Footer */
.footer {
    background: #f8f8f8;
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-text {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px 24px;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.footer-legal-trigger {
    cursor: pointer;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #000;
}

.footer-text a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-text a:hover {
    color: #000;
    text-decoration: underline;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-text h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 600;
}

.cookie-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    opacity: 0.9;
}

.privacy-link {
    color: #667eea;
    text-decoration: underline;
    font-weight: 500;
    transition: all 0.2s ease;
}

.privacy-link:hover {
    color: #5a6fd8;
    text-decoration: none;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-btn.accept {
    background: #667eea;
    color: white;
}

.cookie-btn.accept:hover {
    background: #5a6fd8;
    transform: translateY(-1px);
}

.cookie-btn.decline {
    background: transparent;
    color: #ccc;
    border: 1px solid #555;
}

.cookie-btn.decline:hover {
    background: #333;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 15px;
    }
    
    .cookie-text h3 {
        font-size: 16px;
    }
    
    .cookie-text p {
        font-size: 13px;
    }
    
    .cookie-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* Consent Link */
.consent-link {
    color: #667eea;
    text-decoration: underline;
    cursor: pointer;
    font-weight: 500;
}

.consent-link:hover {
    color: #5a6fd8;
}

/* Consent Modal */
.consent-modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.consent-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.consent-modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    margin: 20px;
    padding: 0;
    border-radius: 12px;
    max-width: 800px;
    max-height: 80vh;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.consent-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid #333;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

.consent-modal-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    color: #667eea;
}

.close-consent-modal {
    background: none;
    border: none;
    color: #ccc;
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.close-consent-modal:hover {
    background: #333;
    color: white;
}

.consent-modal-body {
    padding: 30px;
    max-height: 50vh;
    overflow-y: auto;
    line-height: 1.6;
}

.consent-modal-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
    padding: 16px 24px 24px;
    border-top: 1px solid #333;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.consent-modal-footer .cookie-btn {
    min-width: 140px;
}

.consent-modal-body .consent-lead {
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
}

.consent-modal-body h3 {
    color: #667eea;
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 18px;
}

.consent-modal-body h4 {
    color: #ccc;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 16px;
}

.consent-modal-body p {
    margin-bottom: 15px;
    color: #e0e0e0;
}

.consent-modal-body ul {
    margin: 10px 0;
    padding-left: 20px;
}

.consent-modal-body li {
    margin-bottom: 8px;
    color: #e0e0e0;
}

.consent-modal-body strong {
    color: #667eea;
}

.consent-modal-body a {
    color: #667eea;
    text-decoration: underline;
}

.consent-modal-body a:hover {
    color: #5a6fd8;
}

.consent-table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
    background: #333;
    border-radius: 8px;
    overflow: hidden;
}

.consent-table th,
.consent-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #444;
}

.consent-table th {
    background: #444;
    color: #667eea;
    font-weight: 600;
}

.consent-table td {
    color: #e0e0e0;
    font-size: 14px;
}

.consent-table tr:hover {
    background: #3a3a3a;
}

@media (max-width: 768px) {
    .consent-modal-content {
        margin: 10px;
        max-height: 90vh;
    }
    
    .consent-modal-header {
        padding: 15px 20px;
    }
    
    .consent-modal-header h2 {
        font-size: 20px;
    }
    
    .consent-modal-body {
        padding: 20px;
    }
    
    .consent-table {
        font-size: 12px;
    }
    
    .consent-table th,
    .consent-table td {
        padding: 8px;
    }
}

/* Privacy Policy Page */
.privacy-section {
    padding: 120px 0 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: white;
    min-height: 100vh;
}

.privacy-section .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.privacy-section h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.privacy-section h2 {
    font-size: 28px;
    font-weight: 600;
    margin: 40px 0 20px 0;
    color: #667eea;
}

.privacy-section h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 30px 0 15px 0;
    color: #ccc;
}

.privacy-section p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.privacy-section ul {
    margin: 20px 0;
    padding-left: 30px;
}

.privacy-section li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #e0e0e0;
}

.privacy-section strong {
    color: #667eea;
    font-weight: 600;
}

.privacy-lead {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 2rem;
}

.privacy-meta {
    margin-bottom: 1.5rem;
}

.privacy-address {
    font-style: normal;
    line-height: 1.7;
    color: #444;
    margin: 1rem 0 1.5rem;
    padding: 1rem 1.25rem;
    background: #fff;
    border-left: 3px solid #667eea;
}

.privacy-section a {
    color: #667eea;
    text-decoration: underline;
}

.privacy-section a:hover {
    color: #5a6fd8;
}

@media (max-width: 768px) {
    .privacy-section {
        padding: 100px 0 60px 0;
    }
    
    .privacy-section h1 {
        font-size: 36px;
    }
    
    .privacy-section h2 {
        font-size: 24px;
    }
    
    .privacy-section h3 {
        font-size: 20px;
    }
    
    .privacy-section p,
    .privacy-section li {
        font-size: 15px;
    }
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .visitor-counter {
        width: 55%; /* Etwas größer für Tablets und größere Smartphones */
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
        border-top: 1px solid #e5e5e5;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 60px;
    }

    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 36px;
        padding: 0 12px;
    }
    
    .hero-cards {
        height: auto;
        flex-direction: column;
        gap: 30px;
        margin-top: 40px;
        justify-content: center;
        align-items: center;
    }
    
    .hero-card {
        width: 300px;
        height: 400px;
    }
    
    .hero-card:nth-child(1) {
        transform: rotate(0deg);
    }
    
    .hero-card:nth-child(2) {
        transform: rotate(0deg);
    }
    
    .hero-card:nth-child(3) {
        transform: rotate(0deg);
    }
    
    .card-content {
        bottom: 40%;
        padding: 22px;
    }
    
    .card-title {
        font-size: 19px;
        margin-bottom: 7px;
    }
    
    .card-subtitle {
        font-size: 12px;
        line-height: 1.3;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-row {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .service-name {
        min-width: auto;
    }
    
    .numbers-grid {
        display: flex;
        overflow-x: auto;
        gap: 20px;
        padding: 0 20px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    
    .number-item {
        flex: 0 0 auto;
        min-width: 120px;
        scroll-snap-align: center;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .faq-item.active .faq-answer {
        max-height: 350px;
    }
    
    .share-buttons {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
        max-width: 500px;
    }
    
    .share-btn {
        padding: 14px 10px;
        min-height: 75px;
    }
    
    .share-btn i {
        font-size: 22px;
    }
    
    .share-btn span {
        font-size: 11px;
    }
    
    .share-title {
        font-size: 22px;
        margin-bottom: 22px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group label {
        margin-bottom: 5px;
        font-size: 16px;
    }
    
    .form-group select,
    .form-group textarea,
    .form-group input[type="text"],
    .form-group input[type="tel"],
    .form-group input[type="email"] {
        padding: 15px;
        font-size: 15px;
    }
    
    .security-code-container {
        margin: 20px 0;
        padding: 15px;
    }
    
    .code-generator {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }
    
    .generated-code {
        font-size: 16px;
        padding: 10px 12px;
        min-width: auto;
    }
    
    .code-input-group input {
        padding: 12px;
        font-size: 15px;
    }
    
    .contact-info h2 {
        font-size: 48px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .visitor-counter {
        width: 60%; /* 20% größer als 50% */
        padding: 10px 20px; /* Etwas mehr Padding für bessere Abdeckung */
    }
    
    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 28px;
    }
    
    .hero-cards {
        height: auto;
        flex-direction: column;
        gap: 20px;
        margin-top: 30px;
        justify-content: center;
        align-items: center;
    }
    
    .hero-card {
        width: 280px;
        height: 350px;
    }
    
    .hero-card:nth-child(1) {
        transform: rotate(0deg);
    }
    
    .hero-card:nth-child(2) {
        transform: rotate(0deg);
    }
    
    .hero-card:nth-child(3) {
        transform: rotate(0deg);
    }
    
    .card-content {
        bottom: 45%;
        padding: 20px;
    }
    
    .card-title {
        font-size: 18px;
        margin-bottom: 6px;
    }
    
    .card-subtitle {
        font-size: 11px;
        line-height: 1.2;
    }
    
    .card-image img {
        object-fit: contain;
        object-position: center;
    }
    
    .numbers-grid {
        display: flex;
        overflow-x: auto;
        gap: 15px;
        padding: 0 15px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    
    .number-item {
        flex: 0 0 auto;
        min-width: 100px;
        scroll-snap-align: center;
    }
    
    .section-header {
        margin-bottom: 15px;
    }
    
    .faq-item.active .faq-answer {
        max-height: 400px;
    }
    
    .share-buttons {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        max-width: 400px;
    }
    
    .share-btn {
        padding: 12px 8px;
        min-height: 70px;
    }
    
    .share-btn i {
        font-size: 20px;
    }
    
    .share-btn span {
        font-size: 10px;
    }
    
    .share-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .language-btn {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .language-btn .lang-text {
        display: none;
    }
    
    .language-menu {
        min-width: 140px;
        right: -10px;
    }
    
    .language-option {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .contact-info h2 {
        font-size: 36px;
    }
    
    .review-card {
        padding: 40px 20px;
    }
    
    .contact-form {
        padding: 25px 15px;
    }
    
    .form-group {
        margin-bottom: 18px;
    }
    
    .form-group label {
        margin-bottom: 4px;
        font-size: 15px;
    }
    
    .form-group select,
    .form-group textarea,
    .form-group input[type="text"],
    .form-group input[type="tel"],
    .form-group input[type="email"] {
        padding: 12px;
        font-size: 14px;
    }
    
    .security-code-container {
        margin: 15px 0;
        padding: 12px;
    }
    
    .code-generator {
        flex-direction: column;
        gap: 8px;
        align-items: stretch;
    }
    
    .generate-code-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .generated-code {
        font-size: 14px;
        padding: 8px 10px;
        letter-spacing: 1px;
    }
    
    .code-input-group label {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .code-input-group input {
        padding: 10px;
        font-size: 14px;
        letter-spacing: 0.5px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    animation: fadeIn 0.6s ease-out;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

/* Service-Unterseiten & Leistungs-Grid */
.nav-item--dropdown {
    position: relative;
}

.nav-item--dropdown .nav-chevron {
    font-size: 0.65rem;
    margin-left: 4px;
    transition: transform 0.2s ease;
}

.nav-item--dropdown:hover .nav-chevron,
.nav-item--dropdown.open .nav-chevron {
    transform: rotate(180deg);
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    max-height: 70vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 1001;
    list-style: none;
}

.nav-item--dropdown:hover .nav-dropdown,
.nav-item--dropdown.open .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    color: #1a1a1a;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.15s;
}

.nav-dropdown li a:hover {
    background: #f5f5f7;
}

.nav-dropdown li a i {
    width: 18px;
    color: #6366f1;
}

.service-pages {
    padding: 100px 0;
    background: #fafafa;
    scroll-margin-top: 88px;
}

.service-pages-grid__error {
    grid-column: 1 / -1;
    text-align: center;
    color: #666;
    padding: 24px;
}

.service-pages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.service-page-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 28px 24px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.service-page-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    border-color: #6366f1;
}

.service-page-card__num {
    font-size: 0.75rem;
    color: #888;
    font-weight: 600;
}

.service-page-card__icon {
    font-size: 1.5rem;
    color: #6366f1;
}

.service-page-card__title {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.service-page-card__arrow {
    color: #6366f1;
    align-self: flex-end;
}

.page-service .service-main {
    padding-top: 80px;
}

.page-service #faq,
.page-service #contact {
    scroll-margin-top: 88px;
}

/* Service-Unterseiten: Header (mehr Luft, responsive) */
.navbar--service {
    background: #fff;
}

.navbar--service .nav-container {
    max-width: 1400px;
    padding: 0 clamp(20px, 4vw, 40px);
    height: 72px;
    gap: 20px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    box-sizing: border-box;
}

.navbar--service .nav-logo {
    flex-shrink: 0;
}

.navbar--service .nav-logo .logo-img {
    width: auto;
    height: auto;
    max-height: 48px;
    max-width: min(200px, 40vw);
    display: block;
}

.navbar--service .nav-end {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.navbar--service .nav-menu--service {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: clamp(20px, 2.5vw, 36px);
    flex-wrap: nowrap;
}

.navbar--service .nav-item {
    flex-shrink: 0;
}

.navbar--service .nav-link {
    font-size: 15px;
    font-weight: 500;
    padding: 10px 2px;
    white-space: nowrap;
}

.navbar--service .nav-item--cta .nav-link.contact-btn {
    padding: 11px 24px;
    margin-left: clamp(4px, 1vw, 16px);
    font-size: 14px;
    font-weight: 600;
}

.navbar--service .nav-item--lang {
    margin-left: clamp(4px, 0.8vw, 12px);
}

.navbar--service .language-btn {
    padding: 9px 14px;
    border-width: 1px;
    white-space: nowrap;
}

.navbar--service .hamburger {
    display: none;
    flex-shrink: 0;
    margin-left: 4px;
    padding: 8px;
    background: transparent;
    border: none;
    z-index: 1001;
}

.navbar--service .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.navbar--service .hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.navbar--service .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 1100px) {
    .navbar--service .nav-menu--service {
        gap: 18px;
    }

    .navbar--service .nav-link {
        font-size: 14px;
    }

    .navbar--service .nav-item--cta .nav-link.contact-btn {
        padding: 10px 18px;
    }
}

@media (max-width: 992px) {
    .navbar--service .hamburger {
        display: flex;
    }

    .navbar--service .nav-menu--service {
        position: fixed;
        left: -100%;
        top: 72px;
        right: 0;
        width: 100%;
        max-width: 100%;
        height: calc(100dvh - 72px);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px 0 32px;
        background: #fff;
        overflow-y: auto;
        border-top: 1px solid #e5e5e5;
        transition: left 0.3s ease;
        z-index: 999;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    }

    .navbar--service .nav-menu--service.active {
        left: 0;
    }

    .navbar--service .nav-item {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .navbar--service .nav-item--lang {
        margin-left: 0;
        border-bottom: none;
    }

    .navbar--service .nav-link {
        display: block;
        padding: 16px 24px;
        font-size: 16px;
        text-align: center;
        white-space: normal;
    }

    .navbar--service .nav-item--cta .nav-link.contact-btn {
        margin: 20px auto 12px;
        width: fit-content;
        min-width: 200px;
        max-width: calc(100% - 48px);
        text-align: center;
    }

    .navbar--service .language-switcher {
        display: flex;
        justify-content: center;
        padding: 20px 24px 8px;
    }

    .navbar--service .language-menu {
        left: 50%;
        right: auto;
        transform: translateX(-50%) translateY(-10px);
    }

    .navbar--service .language-menu.active {
        transform: translateX(-50%) translateY(0);
    }

    .page-service .service-main {
        padding-top: 72px;
    }

    .page-service #faq,
    .page-service #contact {
        scroll-margin-top: 80px;
    }
}

@media (max-width: 480px) {
    .navbar--service .nav-container {
        height: 64px;
        padding: 0 16px;
    }

    .navbar--service .nav-logo .logo-img {
        max-height: 40px;
        max-width: 130px;
    }

    .navbar--service .nav-menu--service {
        top: 64px;
        height: calc(100dvh - 64px);
    }

    .page-service .service-main {
        padding-top: 64px;
    }
}

.section-subtitle {
    max-width: 720px;
    margin: 12px auto 0;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.6;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.15s;
}

.btn-primary {
    background: #6366f1;
    color: #fff;
}

.btn-primary:hover {
    background: #4f46e5;
    color: #fff;
    transform: translateY(-1px);
}

.service-hero {
    padding: 60px 0 80px;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff 50%);
}

/* Service-Hero: Desktop = Text fließt L-förmig um nach rechts floatendes Bild; Mobile = Kopf → Bild → Text */
.service-hero__inner--l-flow {
    display: block;
}

.service-hero__inner--l-flow::after {
    content: "";
    display: table;
    clear: both;
}

.service-hero__head {
    margin-bottom: 0;
}

.service-hero__body {
    margin-top: 0;
}

.service-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.service-hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 12px;
}

.service-hero__subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 16px;
}

.service-hero__intro {
    color: #444;
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.service-hero__media img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

@media (min-width: 969px) {
    .service-hero__inner--l-flow .service-hero__media {
        float: right;
        width: min(56%, 640px);
        max-width: 640px;
        margin: 0 0 1.25rem 2.5rem;
        shape-outside: inset(0 round 20px);
    }
}

.service-section {
    padding: 64px 0;
}

.service-checklist__list {
    list-style: none;
    display: grid;
    gap: 14px;
    max-width: 800px;
    margin: 32px auto 0;
}

.service-checklist__list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px 20px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eee;
}

.service-checklist__list li i {
    color: #22c55e;
    margin-top: 3px;
}

.service-blocks__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.service-block-card {
    padding: 28px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #eee;
}

.service-block-card h3 {
    margin-bottom: 12px;
    font-size: 1.15rem;
}

.service-block-card ul {
    margin-top: 12px;
    padding-left: 1.2rem;
}

.service-gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 32px;
}

.service-gallery__grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
}

.service-cta-band {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: #fff;
    text-align: center;
}

.service-cta-band__inner h2 {
    color: #fff;
    margin-bottom: 12px;
}

.service-cta-band .btn-primary {
    margin-top: 20px;
    background: #fff;
    color: #4f46e5;
}

.service-related__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 32px;
}

.service-related-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s;
}

.service-related-card:hover {
    border-color: #6366f1;
}

.service-related-card i {
    color: #6366f1;
    font-size: 1.25rem;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border: 2px solid #6366f1;
    color: #6366f1;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
}

.btn-outline:hover {
    background: #6366f1;
    color: #fff;
}

@media (max-width: 968px) {
    .service-hero__inner--l-flow {
        display: flex;
        flex-direction: column;
    }

    .service-hero__inner--l-flow::after {
        display: none;
    }

    .service-hero__head {
        order: 1;
    }

    .service-hero__inner--l-flow .service-hero__media {
        float: none;
        width: 100%;
        max-width: 520px;
        margin: 0 auto 1.5rem;
        order: 2;
        shape-outside: none;
    }

    .service-hero__body {
        order: 3;
        width: 100%;
    }

    .nav-dropdown {
        position: static;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0;
        transition: max-height 0.3s;
    }

    .nav-item--dropdown.open .nav-dropdown {
        max-height: 400px;
    }
}