/* ==========================================
   CSS VARIABLEN & GRUNDEINSTELLUNGEN
========================================== */
:root {
    --color-primary-darkest: #031227;
    --color-primary: #071A36;
    --color-primary-light: #1246A3;
    --color-accent-blue: #2563C7;
    --color-white: #FFFFFF;
    --color-gray-light: #F5F7FA;
    --color-gray-border: #E2E8F0;
    --color-text-dark: #1E293B;
    --color-text-muted: #64748B;
    --color-whatsapp: #25D366;
    
    --shadow-card: 0 10px 25px -5px rgba(3, 18, 39, 0.08), 0 8px 10px -6px rgba(3, 18, 39, 0.08);
    --shadow-card-hover: 0 20px 30px -10px rgba(18, 70, 163, 0.2);
    --border-radius: 8px;
    --transition-standard: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--color-text-dark);
    background-color: var(--color-white);
    line-height: 1.6;
    font-size: 15px;
    overflow-x: hidden;
}

.container {
    width: min(100% - 32px, 1240px);
    margin-inline: auto;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-primary-light);
    color: var(--color-white);
    padding: 8px;
    z-index: 2000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* Allgemeine Button Stile */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition-standard);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--color-primary-light);
    color: var(--color-white);
    box-shadow: 0 4px 14px rgba(18, 70, 163, 0.3);
}

.btn-primary:hover {
    background-color: var(--color-accent-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(18, 70, 163, 0.4);
}

.btn-secondary {
    background-color: rgba(3, 18, 39, 0.8);
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background-color: var(--color-primary-darkest);
    border-color: var(--color-white);
    transform: translateY(-2px);
}

.btn-call {
    background-color: var(--color-primary-light);
    color: var(--color-white);
    padding: 10px 16px;
    font-size: 12px;
}

.btn-call:hover {
    background-color: var(--color-accent-blue);
}

.btn-whatsapp-header {
    background-color: #000000;
    color: var(--color-white);
    padding: 10px 16px;
    font-size: 12px;
}

.btn-whatsapp-header i {
    color: var(--color-whatsapp);
    font-size: 15px;
}

.btn-whatsapp-header:hover {
    background-color: #111;
}

/* ==========================================
   1. HEADER UND NAVIGATION
========================================== */
.site-header {
    background-color: var(--color-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition-standard);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 65px;
    width: auto;
    object-fit: contain;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 28px;
}

.nav-link {
    text-decoration: none;
    color: var(--color-text-dark);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    transition: color 0.2s;
    position: relative;
    padding-bottom: 4px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary-light);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-primary-light);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Hamburger Menü Button */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--color-primary-darkest);
    transition: var(--transition-standard);
}

/* ==========================================
   2. HERO-BEREICH
========================================== */
.hero,
.hero-section {
    position: relative;
    min-height: calc(100vh - 90px);
    width: 100%;
    overflow: hidden;
    background-image: url('assets/hero-transporter.webp');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    filter: none !important;
    background-color: transparent;
    color: var(--color-white);
    padding-top: 90px;
}

.hero::before,
.hero::after,
.hero-overlay {
    display: none !important;
    content: none !important;
    background: none !important;
    opacity: 0 !important;
}

.hero-container {
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    max-width: 100%;
    padding: 0 20px 40px 20px;
}

.hero-content,
.hero-text {
    position: relative;
    z-index: 3;
    width: min(62vw, 1020px);
    max-width: 1020px;
    margin-left: clamp(40px, 6vw, 110px);
    margin-right: auto;
    text-align: left;
}

.hero-tag {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    letter-spacing: 2.5px;
    color: #93c5fd;
    margin-bottom: 18px;
    text-transform: uppercase;
    font-weight: 600;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.65);
}

.hero-title,
.hero h1 {
    font-family: 'Oswald', sans-serif;
    width: 100%;
    max-width: 1020px;
    font-size: clamp(48px, 5.5vw, 92px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    text-align: left;
    margin: 0 0 24px 0;
    text-transform: uppercase;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.65);
}

.hero-title span {
    color: #3b82f6;
}

.hero-subtitle,
.hero-description,
.hero p {
    max-width: 860px;
    font-size: clamp(22px, 1.8vw, 29px);
    line-height: 1.5;
    margin-bottom: 34px;
    color: #f8fafc;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.65);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: flex-start;
}

/* ==========================================
   3. VORTEILSLEISTE / INFO-BAR
========================================== */
.info-bar,
.features-bar,
.trust-bar,
.benefits-bar {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    margin-top: 0 !important;
    width: 100%;
    z-index: 2;
    background-color: var(--color-primary-darkest);
    border-top: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    text-align: left;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #93c5fd;
    font-size: 18px;
    flex-shrink: 0;
}

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

.feature-text strong {
    font-size: 12px;
    letter-spacing: 0.5px;
    color: var(--color-white);
    font-weight: 700;
}

.feature-text span {
    font-size: 11px;
    color: #94a3b8;
    text-transform: uppercase;
}

/* ==========================================
   4. LEISTUNGSBEREICH (6 KARTEN GRID)
========================================== */
.services-section {
    padding: 120px 0 100px 0;
    background-color: var(--color-gray-light);
}

.section-header {
    margin-bottom: 60px;
}

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

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    color: var(--color-primary-darkest);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.section-line {
    width: 60px;
    height: 3px;
    background-color: var(--color-primary-light);
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 65px 30px;
}

.service-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    border: 1px solid var(--color-gray-border);
    overflow: visible !important;
    box-shadow: var(--shadow-card);
    transition: var(--transition-standard);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
    z-index: 10;
}

.service-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: visible !important;
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
    transition: transform 0.5s ease;
}

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

.service-icon-badge {
    position: absolute;
    bottom: -24px;
    left: 24px;
    width: 50px;
    height: 50px;
    background-color: var(--color-primary-light);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 4px 14px rgba(18, 70, 163, 0.4);
    border: 3px solid var(--color-white);
    z-index: 30;
}

.service-body {
    padding: 42px 24px 24px 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-body h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    color: var(--color-primary-darkest);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-body p {
    color: var(--color-text-muted);
    font-size: 13.5px;
    line-height: 1.5;
}

/* ==========================================
   5. ÜBER-UNS-BEREICH
========================================== */
.about-section {
    background-color: var(--color-primary-darkest);
    color: var(--color-white);
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
}

.about-image-col {
    position: relative;
    min-height: 380px;
}

.about-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-content-col {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content-col h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(32px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-content-col h2 span {
    color: #3b82f6;
}

.about-content-col p {
    color: #cbd5e1;
    font-size: 14.5px;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* ==========================================
   6. KONTAKT & ANGEBOT BEREICH
========================================== */
.contact-section {
    padding: 100px 0;
    background-color: var(--color-white);
}

.section-subtitle-dark {
    color: var(--color-text-muted);
    font-size: 16px;
    margin-top: 15px;
    text-align: center;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    margin-top: 60px;
    align-items: flex-start;
}

.contact-info-card {
    background-color: var(--color-primary-darkest);
    color: var(--color-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 30px -10px rgba(3, 18, 39, 0.15);
}

.contact-info-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.contact-info-card p {
    color: #cbd5e1;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-details-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-details-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 15px;
    color: #cbd5e1;
}

.contact-details-list li i {
    color: #3b82f6;
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.contact-details-list a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-details-list a:hover {
    color: var(--color-white);
    text-decoration: underline;
}

/* Interaktive Buttons in Kontaktdaten */
.contact-dropdown-item {
    position: relative;
    align-items: flex-start !important;
}

.contact-interactive-btn {
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 18px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.contact-interactive-btn:hover {
    background: var(--color-primary-light);
    border-color: var(--color-primary-light);
    transform: translateY(-2px);
}

.whatsapp-btn-style {
    background: rgba(37, 211, 102, 0.15);
    border-color: rgba(37, 211, 102, 0.3);
}

.whatsapp-btn-style:hover {
    background: var(--color-whatsapp) !important;
    border-color: var(--color-whatsapp) !important;
}

/* Modernes Formular Layout */
.contact-form-container {
    background-color: var(--color-gray-light);
    padding: 45px;
    border-radius: 16px;
    border: 1px solid var(--color-gray-border);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-primary-darkest);
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    border: 1px solid var(--color-gray-border);
    border-radius: 10px;
    background-color: var(--color-white);
    color: var(--color-text-dark);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #93c5fd;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary-light);
    box-shadow: 0 0 0 4px rgba(18, 70, 163, 0.12);
    transform: translateY(-1px);
}

.recaptcha-container {
    display: flex;
    justify-content: flex-start;
}

.full-width-btn {
    grid-column: span 2;
    width: 100%;
    padding: 16px;
    font-size: 15px;
    border-radius: 10px;
}

/* Erfolgs- und Fehlermeldungen */
.form-success-alert {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
    padding: 16px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    font-weight: 600;
    font-size: 14px;
}

.form-error-alert {
    background-color: #fee2e2;
    color: #b91c1c;
    border: 1px solid #fecaca;
    padding: 16px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    font-weight: 600;
    font-size: 14px;
}

/* Dropdown Popup Menü Design */
.dropdown-wrapper {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--color-white);
    min-width: 210px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--color-gray-border);
    display: none;
    flex-direction: column;
    z-index: 1000;
    overflow: hidden;
    animation: fadeInDropdown 0.2s ease;
}

.dropdown-wrapper.active .dropdown-menu {
    display: flex !important;
}

.dropdown-item {
    padding: 12px 16px;
    color: var(--color-text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 13.5px;
    transition: background 0.2s, color 0.2s;
    border-bottom: 1px solid var(--color-gray-light);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background-color: var(--color-primary-light);
    color: var(--color-white);
}

@keyframes fadeInDropdown {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================
   7. FOOTER
========================================== */
.site-footer {
    background-color: #020b18;
    color: #94a3b8;
    padding: 25px 0;
    font-size: 13px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--color-white);
}

.separator {
    color: #475569;
}

/* ==========================================
   ZURÜCK-NACH-OBEN BUTTON
========================================== */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background-color: var(--color-primary-light);
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-standard);
    z-index: 999;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background-color: var(--color-accent-blue);
    transform: translateY(-3px);
}

/* ==========================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
========================================== */
@media (max-width: 900px) {
    .hero-content,
    .hero-text {
        width: auto;
        max-width: calc(100% - 40px);
        margin-left: 20px;
        margin-right: 20px;
    }

    .hero-title,
    .hero h1 {
        font-size: clamp(38px, 10vw, 64px);
        max-width: 100%;
    }

    .hero-subtitle,
    .hero-description,
    .hero p {
        max-width: 100%;
    }

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

@media (max-width: 1199px) {
    .features-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .feature-item {
        justify-content: flex-start;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .nav-list {
        position: fixed;
        top: 90px;
        left: 0;
        width: 100%;
        background-color: var(--color-white);
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        transform: translateY(-150%);
        transition: transform 0.3s ease-in-out;
        z-index: 999;
    }

    .nav-list.active {
        transform: translateY(0);
    }

    .nav-link.active::after {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .header-actions {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image-col {
        min-height: 300px;
    }

    .about-content-col {
        padding: 50px 24px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

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

    .form-group.full-width,
    .full-width-btn {
        grid-column: span 1;
    }

    .footer-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero-container {
        min-height: 480px;
        padding: 40px 20px;
    }
    
    .hero-content,
    .hero-text {
        margin-left: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *, *::before, *::after {
        transition: none !important;
        animation: none !important;
    }
}

/* ==========================================================
   KONTAKTBEREICH – PREMIUM ÜBERARBEITUNG
   Ergänzung am Dateiende, damit nur dieser Bereich geändert wird
========================================================== */

.contact-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0 130px !important;
    background:
        radial-gradient(circle at 12% 18%, rgba(37, 99, 199, 0.12), transparent 28%),
        radial-gradient(circle at 88% 78%, rgba(18, 70, 163, 0.10), transparent 30%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 55%, #f4f8fd 100%) !important;
}

.contact-section::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -180px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(37, 99, 199, 0.06);
    pointer-events: none;
}

.contact-section::after {
    content: "";
    position: absolute;
    bottom: -220px;
    left: -180px;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: rgba(3, 18, 39, 0.045);
    pointer-events: none;
}

.contact-section > .container {
    position: relative;
    z-index: 2;
    max-width: 1240px;
}

.contact-section .section-header {
    margin-bottom: 64px !important;
}

.contact-section .section-title {
    font-size: clamp(36px, 4vw, 50px) !important;
    letter-spacing: 0.6px;
}

.contact-section .section-subtitle-dark {
    max-width: 760px;
    margin: 18px auto 0;
    font-size: 17px;
    line-height: 1.75;
    color: #526174;
}

.contact-wrapper {
    max-width: 1180px;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: minmax(340px, 0.88fr) minmax(600px, 1.45fr) !important;
    gap: 34px !important;
    align-items: stretch !important;
}

/* Linke Kontaktkarte */
.contact-info-card {
    position: relative;
    min-height: 100%;
    padding: 48px 40px !important;
    border-radius: 24px !important;
    overflow: visible;
    background:
        radial-gradient(circle at 100% 0%, rgba(59, 130, 246, 0.30), transparent 34%),
        linear-gradient(145deg, #020b18 0%, #071a36 56%, #0b2b59 100%) !important;
    border: 1px solid rgba(147, 197, 253, 0.16);
    box-shadow:
        0 28px 65px rgba(3, 18, 39, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

.contact-info-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 34px;
    right: 34px;
    height: 4px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, #2563c7, #60a5fa);
}

.contact-info-card h3 {
    margin-bottom: 18px !important;
    font-size: 30px !important;
    line-height: 1.15;
    letter-spacing: 0.5px;
}

.contact-info-card p {
    margin-bottom: 34px !important;
    font-size: 15.5px !important;
    line-height: 1.75 !important;
    color: #d2dbea !important;
}

.contact-details-list {
    gap: 23px !important;
}

.contact-details-list li {
    min-height: 42px;
    gap: 14px !important;
    font-size: 15px !important;
    color: #d4deec !important;
}

.contact-details-list li > i {
    width: 38px !important;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(59, 130, 246, 0.13);
    color: #7db3ff !important;
    font-size: 16px !important;
    flex: 0 0 38px;
}

.contact-details-list a {
    color: #e4ebf5 !important;
}

.contact-interactive-btn {
    min-width: 190px;
    min-height: 46px;
    justify-content: center;
    padding: 11px 19px !important;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.contact-interactive-btn:hover {
    background: #1246a3 !important;
    border-color: #3b82f6 !important;
    box-shadow: 0 10px 22px rgba(18, 70, 163, 0.34);
}

.whatsapp-btn-style {
    background: rgba(37, 211, 102, 0.13) !important;
    border-color: rgba(37, 211, 102, 0.30) !important;
}

/* Formular-Karte */
.contact-form-container {
    position: relative;
    min-height: 100%;
    padding: 52px 50px 48px !important;
    border-radius: 24px !important;
    background: rgba(255, 255, 255, 0.97) !important;
    border: 1px solid rgba(18, 70, 163, 0.12) !important;
    box-shadow:
        0 28px 65px rgba(3, 18, 39, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
}

.contact-form-container::before {
    content: "UNVERBINDLICHE ANFRAGE";
    display: block;
    margin-bottom: 26px;
    color: #1246a3;
    font-family: 'Oswald', sans-serif;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.contact-form {
    gap: 23px 22px !important;
}

.form-group {
    gap: 9px !important;
}

.form-group label {
    font-size: 12px !important;
    font-weight: 800 !important;
    letter-spacing: 0.8px !important;
    color: #14233a !important;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    min-height: 54px;
    padding: 15px 16px !important;
    border: 1px solid #d9e3ef !important;
    border-radius: 12px !important;
    background: #fbfdff !important;
    color: #1e293b !important;
    font-size: 15px !important;
    box-shadow: inset 0 1px 2px rgba(3, 18, 39, 0.025);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
    opacity: 1;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #a9c4ed !important;
    background: #ffffff !important;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #2563c7 !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 4px rgba(37, 99, 199, 0.11) !important;
    transform: none !important;
}

.recaptcha-container {
    padding: 4px 0 0;
    align-items: center;
}

.full-width-btn {
    min-height: 56px;
    margin-top: 2px;
    border-radius: 12px !important;
    background: linear-gradient(135deg, #1246a3, #2563c7) !important;
    box-shadow: 0 14px 30px rgba(18, 70, 163, 0.28) !important;
    letter-spacing: 0.55px;
}

.full-width-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(18, 70, 163, 0.36) !important;
}

/* Meldungen */
.form-success-alert,
.form-error-alert {
    border-radius: 12px !important;
    padding: 17px 19px !important;
    box-shadow: 0 8px 20px rgba(3, 18, 39, 0.06);
}

/* Dropdowns im Kontaktbereich */
.contact-info-card .dropdown-menu {
    min-width: 225px;
    border-radius: 12px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
}

/* Tablet */
@media (max-width: 1050px) {
    .contact-wrapper {
        grid-template-columns: 1fr !important;
        max-width: 820px;
    }

    .contact-info-card,
    .contact-form-container {
        min-height: auto;
    }

    .contact-details-list {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Smartphone */
@media (max-width: 700px) {
    .contact-section {
        padding: 82px 0 92px !important;
    }

    .contact-section .section-header {
        margin-bottom: 42px !important;
    }

    .contact-wrapper {
        gap: 22px !important;
    }

    .contact-info-card,
    .contact-form-container {
        padding: 30px 23px !important;
        border-radius: 18px !important;
    }

    .contact-info-card h3 {
        font-size: 25px !important;
    }

    .contact-details-list {
        display: flex !important;
    }

    .contact-interactive-btn {
        min-width: 0;
        width: 100%;
    }

    .contact-form-container::before {
        font-size: 17px;
        margin-bottom: 22px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px !important;
    }

    .recaptcha-container {
        overflow-x: auto;
        padding-bottom: 4px;
    }
}

/* ==========================================================
   KONTAKTFORMULAR – BLAU WIE DIE KONTAKTKARTE
   Nur das Formular wird farblich angepasst.
========================================================== */

.contact-form-container {
    background:
        radial-gradient(circle at 100% 0%, rgba(59, 130, 246, 0.30), transparent 34%),
        linear-gradient(145deg, #020b18 0%, #071a36 56%, #0b2b59 100%) !important;
    border: 1px solid rgba(147, 197, 253, 0.16) !important;
    box-shadow:
        0 28px 65px rgba(3, 18, 39, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
    color: #ffffff !important;
}

.contact-form-container::before {
    color: #ffffff !important;
}

.contact-form-container .form-group label {
    color: #ffffff !important;
}

.contact-form-container .form-group input,
.contact-form-container .form-group select,
.contact-form-container .form-group textarea {
    background: rgba(255, 255, 255, 0.96) !important;
    color: #1e293b !important;
    border: 1px solid rgba(255, 255, 255, 0.30) !important;
}

.contact-form-container .form-group input::placeholder,
.contact-form-container .form-group textarea::placeholder {
    color: #64748b !important;
}

.contact-form-container .form-group input:hover,
.contact-form-container .form-group select:hover,
.contact-form-container .form-group textarea:hover {
    background: #ffffff !important;
    border-color: #93c5fd !important;
}

.contact-form-container .form-group input:focus,
.contact-form-container .form-group select:focus,
.contact-form-container .form-group textarea:focus {
    background: #ffffff !important;
    border-color: #60a5fa !important;
    box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.22) !important;
}

.contact-form-container .recaptcha-container {
    padding: 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
}

.contact-form-container .full-width-btn {
    background: linear-gradient(135deg, #2563c7, #3b82f6) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
}

.contact-form-container .full-width-btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #2563eb) !important;
}

.contact-form-container .form-success-alert {
    background: rgba(16, 185, 129, 0.16) !important;
    color: #d1fae5 !important;
    border-color: rgba(52, 211, 153, 0.35) !important;
}

.contact-form-container .form-error-alert {
    background: rgba(239, 68, 68, 0.16) !important;
    color: #fee2e2 !important;
    border-color: rgba(248, 113, 113, 0.35) !important;
}

/* ==========================================================
   ÜBER-UNS-BEREICH – PREMIUM ÜBERARBEITUNG
   Nur dieser Bereich wird verändert.
========================================================== */

.about-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 92% 12%, rgba(37, 99, 199, 0.22), transparent 32%),
        linear-gradient(135deg, #020b18 0%, #071a36 58%, #0b2b59 100%) !important;
}

.about-section::after {
    content: "";
    position: absolute;
    right: -140px;
    bottom: -180px;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.08);
    pointer-events: none;
}

.about-grid {
    position: relative;
    z-index: 2;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr) !important;
    min-height: 650px !important;
}

.about-image-col {
    min-height: 650px !important;
    overflow: hidden;
    position: relative;
}

.about-image-col::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent 68%, rgba(2, 11, 24, 0.28) 100%),
        linear-gradient(0deg, rgba(2, 11, 24, 0.12), transparent 35%);
    pointer-events: none;
}

.about-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.8s ease, filter 0.8s ease;
}

.about-section:hover .about-image-col img {
    transform: scale(1.025);
    filter: saturate(1.04) contrast(1.02);
}

.about-content-col {
    position: relative;
    justify-content: center !important;
    padding: 84px clamp(46px, 6vw, 92px) !important;
}

.about-content-col::before {
    content: "S&O TRANSPORTE GBR";
    display: inline-flex;
    width: fit-content;
    margin-bottom: 18px;
    padding: 8px 14px;
    border: 1px solid rgba(147, 197, 253, 0.24);
    border-radius: 999px;
    color: #93c5fd;
    background: rgba(59, 130, 246, 0.10);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.7px;
}

.about-content-col h2 {
    max-width: 720px;
    margin-bottom: 26px !important;
    font-size: clamp(38px, 4vw, 54px) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.4px !important;
}

.about-content-col h2 span {
    color: #60a5fa !important;
}

.about-content-col p {
    max-width: 710px;
    margin-bottom: 18px !important;
    color: #d8e2ef !important;
    font-size: 17px !important;
    line-height: 1.8 !important;
}

.about-content-col p:first-of-type {
    padding-left: 22px;
    border-left: 4px solid #3b82f6;
    color: #eef4fb !important;
    font-size: 18px !important;
    font-weight: 500;
}

.about-content-col p:last-of-type {
    margin-bottom: 0 !important;
}

/* Tablet */
@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr !important;
        min-height: auto !important;
    }

    .about-image-col {
        min-height: 440px !important;
    }

    .about-image-col::after {
        background: linear-gradient(0deg, rgba(2, 11, 24, 0.30), transparent 45%);
    }

    .about-content-col {
        padding: 64px 34px 72px !important;
    }
}

/* Smartphone */
@media (max-width: 600px) {
    .about-image-col {
        min-height: 300px !important;
    }

    .about-content-col {
        padding: 52px 23px 58px !important;
    }

    .about-content-col::before {
        margin-bottom: 15px;
        font-size: 10.5px;
    }

    .about-content-col h2 {
        font-size: clamp(32px, 10vw, 42px) !important;
        margin-bottom: 22px !important;
    }

    .about-content-col p,
    .about-content-col p:first-of-type {
        font-size: 15.5px !important;
        line-height: 1.75 !important;
    }

    .about-content-col p:first-of-type {
        padding-left: 16px;
    }
}

/* ==========================================================
   LEISTUNGSBEREICH – PREMIUM ÜBERARBEITUNG
   Nur dieser Bereich wird verändert.
========================================================== */

.services-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0 130px !important;
    background:
        radial-gradient(circle at 8% 8%, rgba(37, 99, 199, 0.10), transparent 28%),
        radial-gradient(circle at 92% 92%, rgba(18, 70, 163, 0.08), transparent 30%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 48%, #f4f8fd 100%) !important;
}

.services-section::before {
    content: "";
    position: absolute;
    top: -170px;
    right: -170px;
    width: 390px;
    height: 390px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.05);
    pointer-events: none;
}

.services-section > .container {
    position: relative;
    z-index: 2;
    max-width: 1260px;
}

.services-section .section-header {
    margin-bottom: 72px !important;
}

.services-section .section-title {
    font-size: clamp(38px, 4vw, 52px) !important;
    letter-spacing: 0.6px;
}

.services-section .section-line {
    width: 78px !important;
    height: 4px !important;
    border-radius: 999px;
    background: linear-gradient(90deg, #1246a3, #3b82f6) !important;
}

.services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 40px 30px !important;
    align-items: stretch;
}

.service-card {
    position: relative;
    overflow: hidden !important;
    border-radius: 20px !important;
    border: 1px solid rgba(18, 70, 163, 0.10) !important;
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow:
        0 16px 38px rgba(3, 18, 39, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
    transform: translateY(0);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease !important;
}

.service-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    background: linear-gradient(90deg, #1246a3, #3b82f6);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.service-card:hover {
    transform: translateY(-10px) !important;
    border-color: rgba(37, 99, 199, 0.28) !important;
    box-shadow:
        0 28px 58px rgba(18, 70, 163, 0.17),
        0 8px 18px rgba(3, 18, 39, 0.08) !important;
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-image-wrapper {
    overflow: hidden !important;
    aspect-ratio: 16 / 10 !important;
    border-radius: 20px 20px 0 0 !important;
}

.service-image-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(2, 11, 24, 0.12) 100%);
    pointer-events: none;
}

.service-image-wrapper img {
    border-radius: 20px 20px 0 0 !important;
    transition: transform 0.65s ease, filter 0.65s ease !important;
}

.service-card:hover .service-image-wrapper img {
    transform: scale(1.07) !important;
    filter: saturate(1.06) contrast(1.03);
}

.service-icon-badge {
    bottom: 18px !important;
    left: 22px !important;
    width: 54px !important;
    height: 54px !important;
    border: 2px solid rgba(255, 255, 255, 0.92) !important;
    background: linear-gradient(135deg, #1246a3, #2563c7) !important;
    box-shadow:
        0 12px 24px rgba(18, 70, 163, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.22) !important;
    font-size: 18px !important;
}

.service-body {
    padding: 28px 28px 30px !important;
    min-height: 182px;
    justify-content: flex-start !important;
}

.service-body h3 {
    margin-bottom: 12px !important;
    font-size: 22px !important;
    line-height: 1.2;
    color: #06162f !important;
    letter-spacing: 0.35px !important;
}

.service-body p {
    color: #64748b !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
}

/* Tablet */
@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 34px 26px !important;
    }
}

/* Smartphone */
@media (max-width: 700px) {
    .services-section {
        padding: 84px 0 92px !important;
    }

    .services-section .section-header {
        margin-bottom: 48px !important;
    }

    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 26px !important;
    }

    .service-card {
        border-radius: 18px !important;
    }

    .service-image-wrapper,
    .service-image-wrapper img {
        border-radius: 18px 18px 0 0 !important;
    }

    .service-body {
        min-height: auto;
        padding: 26px 23px 28px !important;
    }

    .service-body h3 {
        font-size: 21px !important;
    }
}

/* ==========================================================
   SMARTPHONE-OPTIMIERUNG – S&O TRANSPORTE
   Ergänzung am Dateiende. Desktop bleibt unverändert.
========================================================== */

html {
    scroll-padding-top: 84px;
}

button,
a,
input,
select,
textarea {
    -webkit-tap-highlight-color: transparent;
}

button,
.btn,
.nav-link,
.dropdown-item,
.contact-interactive-btn {
    touch-action: manipulation;
}

body.mobile-menu-open {
    overflow: hidden;
}

.full-width-btn:disabled {
    cursor: wait;
    opacity: 0.72;
    transform: none !important;
}

/* Tablet und Smartphone */
@media (max-width: 991px) {
    .site-header {
        position: sticky;
        top: 0;
    }

    .header-container {
        height: 78px !important;
    }

    .logo-img {
        height: 52px !important;
        max-width: 150px;
    }

    .hamburger {
        display: block !important;
        width: 48px;
        height: 48px;
        padding: 10px !important;
        border-radius: 12px;
        background: #f1f5f9;
    }

    .hamburger .bar {
        width: 25px;
        height: 3px;
        border-radius: 999px;
    }

    #main-nav .nav-list {
        top: 78px !important;
        max-height: calc(100dvh - 78px);
        overflow-y: auto;
        gap: 0 !important;
        padding: 16px !important;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-top: 1px solid #e2e8f0;
        box-shadow: 0 18px 36px rgba(3, 18, 39, 0.14) !important;
    }

    #main-nav .nav-list li {
        width: 100%;
    }

    #main-nav .nav-link {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 52px;
        width: 100%;
        padding: 14px 18px;
        border-radius: 10px;
        font-size: 15px;
    }

    #main-nav .nav-link:hover,
    #main-nav .nav-link.active {
        background: #eff6ff;
        color: #1246a3;
    }

    .header-actions {
        display: none !important;
    }

    .dropdown-menu {
        position: static !important;
        width: 100%;
        min-width: 0 !important;
        margin-top: 10px;
        box-shadow: none !important;
    }

    .dropdown-item {
        min-height: 48px;
        display: flex;
        align-items: center;
        padding: 13px 15px !important;
    }
}

/* Smartphones */
@media (max-width: 700px) {
    body {
        font-size: 15px;
    }

    .container {
        width: min(100% - 24px, 1240px) !important;
    }

    .hero,
    .hero-section {
        min-height: auto !important;
        padding-top: 0 !important;
        background-position: 68% center !important;
    }

    .hero-container {
        min-height: 620px !important;
        align-items: flex-end !important;
        padding: 80px 12px 46px !important;
    }

    .hero-content,
    .hero-text {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 24px 20px !important;
        transform: none !important;
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 18px;
        background: rgba(2, 11, 24, 0.68);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
    }

    .hero-tag {
        font-size: 12px !important;
        letter-spacing: 1.8px !important;
    }

    .hero-title,
    .hero h1 {
        max-width: 100% !important;
        font-size: clamp(40px, 12vw, 58px) !important;
        line-height: 0.98 !important;
        margin-bottom: 18px !important;
    }

    .hero-subtitle,
    .hero-description,
    .hero p {
        max-width: 100% !important;
        font-size: 16px !important;
        line-height: 1.6 !important;
        margin-bottom: 24px !important;
    }

    .hero-buttons {
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        min-height: 52px;
        padding: 14px 18px !important;
    }

    .features-bar,
    .info-bar,
    .trust-bar,
    .benefits-bar {
        padding: 18px 0 !important;
    }

    .features-container {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    .feature-item {
        justify-content: flex-start !important;
        min-height: 68px;
        padding: 8px 12px;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.04);
    }

    .feature-icon {
        width: 46px !important;
        height: 46px !important;
    }

    .services-section,
    .contact-section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .section-title {
        font-size: clamp(30px, 9vw, 40px) !important;
    }

    .services-grid {
        grid-template-columns: 1fr !important;
    }

    .service-card {
        width: 100%;
    }

    .service-image-wrapper {
        aspect-ratio: 16 / 10 !important;
    }

    .about-grid {
        grid-template-columns: 1fr !important;
    }

    .about-image-col {
        min-height: 300px !important;
    }

    .about-content-col {
        padding: 48px 22px 56px !important;
    }

    .contact-wrapper {
        grid-template-columns: 1fr !important;
        width: 100%;
    }

    .contact-info-card,
    .contact-form-container {
        width: 100%;
        padding: 28px 20px !important;
    }

    .contact-details-list {
        display: flex !important;
        flex-direction: column !important;
    }

    .contact-dropdown-item {
        width: 100%;
    }

    .contact-dropdown-item .dropdown-wrapper {
        width: 100%;
    }

    .contact-interactive-btn {
        width: 100% !important;
        min-height: 50px;
    }

    .contact-form {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .form-group,
    .form-group.full-width,
    .full-width-btn {
        grid-column: 1 !important;
        width: 100%;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        min-height: 52px;
        font-size: 16px !important;
    }

    .form-group textarea {
        min-height: 150px;
    }

    .recaptcha-container {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    #recaptchaMount {
        max-width: 100%;
    }

    .recaptcha-consent-placeholder {
        width: 100%;
        padding: 16px !important;
    }

    .recaptcha-consent-placeholder button {
        width: 100%;
        min-height: 46px;
    }

    .full-width-btn {
        min-height: 54px;
    }

    .footer-container {
        flex-direction: column !important;
        gap: 16px !important;
        padding: 6px 0;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px 12px !important;
    }

    .footer-links a,
    .cookie-settings-link {
        min-height: 42px;
        display: inline-flex;
        align-items: center;
        padding: 6px 4px;
    }

    .separator {
        display: none;
    }

    .scroll-top-btn {
        right: 16px !important;
        bottom: 16px !important;
        width: 48px !important;
        height: 48px !important;
    }

    .consent-banner {
        max-height: calc(100dvh - 24px);
        overflow-y: auto !important;
    }

    .consent-banner__inner {
        gap: 14px !important;
        padding: 20px !important;
    }

    .consent-banner h2 {
        font-size: 22px !important;
    }

    .consent-banner p {
        font-size: 13px !important;
    }

    .consent-btn {
        min-height: 50px !important;
    }
}

/* Sehr kleine Geräte */
@media (max-width: 380px) {
    .hero-container {
        padding-left: 6px !important;
        padding-right: 6px !important;
    }

    .hero-content,
    .hero-text {
        padding: 21px 17px !important;
    }

    .hero-title,
    .hero h1 {
        font-size: 38px !important;
    }

    .contact-info-card,
    .contact-form-container {
        padding: 25px 16px !important;
    }
}

/* ==========================================================
   HERO PREMIUM UPGRADE – SCHRITT 1
   Nur der Hero-Bereich wird überschrieben.
========================================================== */

.hero-section {
    position: relative !important;
    isolation: isolate;
    overflow: hidden !important;
}

.hero-section::before {
    content: "" !important;
    display: block !important;
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 1 !important;
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            rgba(2, 11, 24, 0.72) 0%,
            rgba(2, 11, 24, 0.56) 30%,
            rgba(2, 11, 24, 0.25) 55%,
            rgba(2, 11, 24, 0.06) 100%
        ) !important;
}

.hero-section .hero-container {
    position: relative;
    z-index: 2;
}

.hero-section .hero-content {
    width: min(48vw, 720px) !important;
    max-width: 720px !important;
    margin-left: clamp(75px, 7vw, 145px) !important;
    margin-right: auto !important;
    transform: none !important;
    text-align: left !important;
}

.hero-section .hero-tag {
    margin-bottom: 16px !important;
    color: #bfdbfe !important;
    font-size: clamp(13px, 1vw, 16px) !important;
    letter-spacing: 2.4px !important;
    animation: heroPremiumIn 0.75s ease both;
}

.hero-section .hero-title {
    max-width: 720px !important;
    margin-bottom: 22px !important;
    color: #ffffff !important;
    font-size: clamp(58px, 5.4vw, 92px) !important;
    line-height: 0.98 !important;
    letter-spacing: -0.025em !important;
    text-shadow: 0 5px 28px rgba(0, 0, 0, 0.50) !important;
    animation: heroPremiumIn 0.85s 0.08s ease both;
}

.hero-section .hero-title span {
    color: #4f8fff !important;
}

.hero-section .hero-subtitle {
    max-width: 650px !important;
    margin-bottom: 30px !important;
    color: #f1f5f9 !important;
    font-size: clamp(17px, 1.35vw, 21px) !important;
    line-height: 1.65 !important;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.52) !important;
    animation: heroPremiumIn 0.85s 0.18s ease both;
}

.hero-section .hero-buttons {
    margin-bottom: 23px !important;
    animation: heroPremiumIn 0.85s 0.28s ease both;
}

.hero-section .hero-buttons .btn {
    min-height: 54px;
    padding: 15px 30px !important;
    border-radius: 11px !important;
    font-size: 14px !important;
    letter-spacing: 0.35px;
}

.hero-section .hero-buttons .btn-primary {
    background: linear-gradient(135deg, #1d4ed8, #3b82f6) !important;
    box-shadow: 0 14px 32px rgba(37, 99, 235, 0.42) !important;
}

.hero-section .hero-buttons .btn-primary:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 20px 42px rgba(37, 99, 235, 0.52) !important;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    max-width: 700px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    animation: heroPremiumIn 0.85s 0.38s ease both;
}

.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 11px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    background: rgba(2, 11, 24, 0.34);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.hero-trust i {
    color: #4ade80;
    font-size: 14px;
}

@keyframes heroPremiumIn {
    from {
        opacity: 0;
        transform: translate3d(-28px, 12px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Große Monitore */
@media (min-width: 1600px) {
    .hero-section .hero-content {
        margin-left: clamp(100px, 8vw, 180px) !important;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .hero-section .hero-content {
        width: min(76vw, 680px) !important;
        max-width: 680px !important;
        margin-left: 28px !important;
    }

    .hero-section .hero-title {
        font-size: clamp(48px, 8vw, 68px) !important;
    }

    .hero-section .hero-subtitle {
        font-size: 17px !important;
    }
}

/* Smartphone */
@media (max-width: 700px) {
    .hero-section::before {
        background:
            linear-gradient(
                180deg,
                rgba(2, 11, 24, 0.18) 0%,
                rgba(2, 11, 24, 0.42) 45%,
                rgba(2, 11, 24, 0.82) 100%
            ) !important;
    }

    .hero-section .hero-content {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 24px 20px !important;
        text-align: left !important;
    }

    .hero-section .hero-title {
        font-size: clamp(40px, 12vw, 56px) !important;
    }

    .hero-section .hero-subtitle {
        font-size: 16px !important;
        line-height: 1.58 !important;
    }

    .hero-section .hero-buttons .btn {
        width: 100%;
    }

    .hero-trust {
        gap: 9px;
        font-size: 12px;
    }

    .hero-trust span {
        width: 100%;
        justify-content: flex-start;
        border-radius: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-section .hero-tag,
    .hero-section .hero-title,
    .hero-section .hero-subtitle,
    .hero-section .hero-buttons,
    .hero-trust {
        animation: none !important;
    }
}

/* ==========================================================
   LEISTUNGSBEREICH PREMIUM – SCHRITT 2
   Nur der Bereich „Unsere Leistungen“ wird überschrieben.
========================================================== */

.services-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0 132px !important;
    background:
        radial-gradient(circle at 6% 7%, rgba(37, 99, 199, 0.10), transparent 28%),
        radial-gradient(circle at 94% 92%, rgba(18, 70, 163, 0.08), transparent 30%),
        linear-gradient(180deg, #f7faff 0%, #ffffff 48%, #f3f7fc 100%) !important;
}

.services-section::before {
    content: "";
    position: absolute;
    top: -160px;
    right: -150px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.055);
    pointer-events: none;
}

.services-section > .container {
    position: relative;
    z-index: 2;
    max-width: 1280px;
}

.services-section .section-header {
    margin-bottom: 72px !important;
}

.services-section .section-title {
    font-size: clamp(38px, 4vw, 52px) !important;
    letter-spacing: 0.5px !important;
}

.services-section .section-line {
    width: 82px !important;
    height: 4px !important;
    border-radius: 999px;
    background: linear-gradient(90deg, #1246a3, #3b82f6) !important;
}

.services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 34px 30px !important;
    align-items: stretch;
}

.service-card {
    position: relative;
    overflow: hidden !important;
    min-height: 100%;
    border: 1px solid rgba(18, 70, 163, 0.10) !important;
    border-radius: 22px !important;
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow:
        0 16px 38px rgba(3, 18, 39, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.92) !important;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease !important;
}

.service-card::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #1246a3, #3b82f6);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.service-card:hover {
    z-index: 3;
    transform: translateY(-10px) !important;
    border-color: rgba(37, 99, 199, 0.28) !important;
    box-shadow:
        0 30px 60px rgba(18, 70, 163, 0.17),
        0 8px 18px rgba(3, 18, 39, 0.07) !important;
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-image-wrapper {
    aspect-ratio: 16 / 10 !important;
    overflow: hidden !important;
    border-radius: 22px 22px 0 0 !important;
}

.service-image-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, transparent 58%, rgba(2, 11, 24, 0.18) 100%);
    pointer-events: none;
}

.service-image-wrapper img {
    border-radius: 22px 22px 0 0 !important;
    transition: transform 0.65s ease, filter 0.65s ease !important;
}

.service-card:hover .service-image-wrapper img {
    transform: scale(1.07) !important;
    filter: saturate(1.06) contrast(1.03);
}

.service-icon-badge {
    bottom: 18px !important;
    left: 22px !important;
    z-index: 3 !important;
    width: 56px !important;
    height: 56px !important;
    border: 2px solid rgba(255, 255, 255, 0.95) !important;
    background: linear-gradient(135deg, #1246a3, #2563c7) !important;
    box-shadow:
        0 12px 25px rgba(18, 70, 163, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.22) !important;
    font-size: 18px !important;
}

.service-body {
    min-height: 215px;
    padding: 30px 28px 28px !important;
    justify-content: flex-start !important;
}

.service-body h3 {
    margin-bottom: 12px !important;
    color: #06162f !important;
    font-size: 23px !important;
    line-height: 1.2;
    letter-spacing: 0.3px !important;
}

.service-body p {
    margin-bottom: 22px;
    color: #64748b !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: fit-content;
    margin-top: auto;
    color: #1246a3;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.35px;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.25s ease, gap 0.25s ease;
}

.service-card-link i {
    font-size: 12px;
    transition: transform 0.25s ease;
}

.service-card-link:hover {
    gap: 13px;
    color: #2563c7;
}

.service-card-link:hover i {
    transform: translateX(3px);
}

/* Tablet */
@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 30px 26px !important;
    }
}

/* Smartphone */
@media (max-width: 700px) {
    .services-section {
        padding: 84px 0 94px !important;
    }

    .services-section .section-header {
        margin-bottom: 48px !important;
    }

    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 26px !important;
    }

    .service-card {
        border-radius: 18px !important;
    }

    .service-image-wrapper,
    .service-image-wrapper img {
        border-radius: 18px 18px 0 0 !important;
    }

    .service-body {
        min-height: auto;
        padding: 26px 23px 27px !important;
    }

    .service-body h3 {
        font-size: 21px !important;
    }

    .service-card-link {
        min-height: 44px;
        align-items: center;
    }
}

@media (hover: none) {
    .service-card:hover {
        transform: none !important;
    }

    .service-card:hover .service-image-wrapper img {
        transform: none !important;
    }
}

/* ==========================================================
   ÜBER-UNS-BEREICH PREMIUM – SCHRITT 3
   Nur der Bereich „Über uns“ wird überschrieben.
========================================================== */

.about-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 92% 10%, rgba(37, 99, 199, 0.24), transparent 32%),
        linear-gradient(135deg, #020b18 0%, #071a36 58%, #0b2b59 100%) !important;
}

.about-section::after {
    content: "";
    position: absolute;
    right: -150px;
    bottom: -190px;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.08);
    pointer-events: none;
}

.about-grid {
    position: relative;
    z-index: 2;
    grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr) !important;
    min-height: 680px !important;
}

.about-image-col {
    position: relative;
    min-height: 680px !important;
    overflow: hidden;
}

.about-image-col::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent 66%, rgba(2, 11, 24, 0.32) 100%),
        linear-gradient(0deg, rgba(2, 11, 24, 0.18), transparent 38%);
    pointer-events: none;
}

.about-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.8s ease, filter 0.8s ease;
}

.about-section:hover .about-image-col img {
    transform: scale(1.025);
    filter: saturate(1.04) contrast(1.03);
}

.about-content-col {
    position: relative;
    justify-content: center !important;
    padding: 78px clamp(44px, 5.5vw, 88px) !important;
}

.about-kicker {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 18px;
    padding: 8px 14px;
    border: 1px solid rgba(147, 197, 253, 0.24);
    border-radius: 999px;
    color: #bfdbfe;
    background: rgba(59, 130, 246, 0.11);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.about-content-col h2 {
    max-width: 760px;
    margin-bottom: 26px !important;
    font-size: clamp(38px, 4vw, 54px) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.4px !important;
}

.about-content-col h2 span {
    color: #60a5fa !important;
}

.about-content-col p {
    max-width: 720px;
    margin-bottom: 18px !important;
    color: #d7e1ee !important;
    font-size: 16.5px !important;
    line-height: 1.78 !important;
}

.about-content-col p:first-of-type {
    padding-left: 20px;
    border-left: 4px solid #3b82f6;
    color: #eef4fb !important;
    font-size: 17.5px !important;
    font-weight: 500;
}

.about-points {
    display: grid;
    gap: 12px;
    margin: 26px 0 30px;
}

.about-point {
    display: flex;
    align-items: center;
    gap: 13px;
    color: #e8eef7;
    font-size: 14px;
    font-weight: 600;
}

.about-point i {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    flex: 0 0 36px;
    border-radius: 11px;
    color: #93c5fd;
    background: rgba(59, 130, 246, 0.13);
    border: 1px solid rgba(147, 197, 253, 0.14);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 28px;
}

.about-stat {
    padding: 18px 15px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.055);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.about-stat strong {
    display: block;
    margin-bottom: 5px;
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
    font-size: 19px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.about-stat span {
    color: #b9c6d8;
    font-size: 12px;
    line-height: 1.45;
}

.about-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 50px;
    padding: 14px 22px;
    border-radius: 11px;
    color: #ffffff;
    background: linear-gradient(135deg, #1246a3, #2563c7);
    box-shadow: 0 12px 28px rgba(18, 70, 163, 0.30);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.35px;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(18, 70, 163, 0.40);
}

.about-cta i {
    transition: transform 0.25s ease;
}

.about-cta:hover i {
    transform: translateX(3px);
}

/* Tablet */
@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr !important;
        min-height: auto !important;
    }

    .about-image-col {
        min-height: 440px !important;
    }

    .about-image-col::after {
        background: linear-gradient(0deg, rgba(2, 11, 24, 0.32), transparent 46%);
    }

    .about-content-col {
        padding: 64px 34px 74px !important;
    }
}

/* Smartphone */
@media (max-width: 700px) {
    .about-image-col {
        min-height: 300px !important;
    }

    .about-content-col {
        padding: 52px 22px 60px !important;
    }

    .about-kicker {
        margin-bottom: 15px;
        font-size: 10.5px;
    }

    .about-content-col h2 {
        font-size: clamp(32px, 10vw, 42px) !important;
        margin-bottom: 22px !important;
    }

    .about-content-col p,
    .about-content-col p:first-of-type {
        font-size: 15.5px !important;
        line-height: 1.72 !important;
    }

    .about-content-col p:first-of-type {
        padding-left: 16px;
    }

    .about-stats {
        grid-template-columns: 1fr !important;
    }

    .about-stat {
        padding: 16px;
    }

    .about-cta {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================
   KONTAKTBEREICH PREMIUM – SCHRITT 4
   Nur der Kontaktbereich wird überschrieben.
========================================================== */

.contact-section {
    position: relative;
    overflow: hidden;
    padding: 122px 0 136px !important;
    background:
        radial-gradient(circle at 10% 16%, rgba(37, 99, 199, 0.12), transparent 28%),
        radial-gradient(circle at 90% 82%, rgba(18, 70, 163, 0.10), transparent 30%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 54%, #f3f7fc 100%) !important;
}

.contact-section::before {
    content: "";
    position: absolute;
    top: -170px;
    right: -160px;
    width: 410px;
    height: 410px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.055);
    pointer-events: none;
}

.contact-section::after {
    content: "";
    position: absolute;
    bottom: -210px;
    left: -170px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: rgba(3, 18, 39, 0.04);
    pointer-events: none;
}

.contact-section > .container {
    position: relative;
    z-index: 2;
    max-width: 1240px;
}

.contact-section .section-header {
    margin-bottom: 34px !important;
}

.contact-section .section-title {
    font-size: clamp(38px, 4vw, 52px) !important;
}

.contact-section .section-subtitle-dark {
    max-width: 760px;
    margin: 18px auto 0;
    font-size: 17px;
    line-height: 1.7;
    color: #526174;
}

.contact-trust-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 22px;
    margin: 0 auto 42px;
    color: #334155;
    font-size: 13px;
    font-weight: 700;
}

.contact-trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    border: 1px solid #dbe7f5;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 8px 20px rgba(3, 18, 39, 0.05);
}

.contact-trust-row i {
    color: #2563c7;
}

.contact-wrapper {
    max-width: 1180px;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: minmax(340px, 0.86fr) minmax(610px, 1.48fr) !important;
    gap: 34px !important;
    align-items: stretch !important;
}

/* Linke Kontaktkarte */
.contact-info-card {
    position: relative;
    min-height: 100%;
    padding: 50px 42px !important;
    border-radius: 24px !important;
    overflow: visible;
    background:
        radial-gradient(circle at 100% 0%, rgba(59, 130, 246, 0.32), transparent 34%),
        linear-gradient(145deg, #020b18 0%, #071a36 56%, #0b2b59 100%) !important;
    border: 1px solid rgba(147, 197, 253, 0.16) !important;
    box-shadow:
        0 28px 65px rgba(3, 18, 39, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

.contact-info-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 34px;
    right: 34px;
    height: 4px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, #2563c7, #60a5fa);
}

.contact-info-card h3 {
    margin-bottom: 18px !important;
    font-size: 31px !important;
    line-height: 1.15;
}

.contact-info-card p {
    margin-bottom: 34px !important;
    color: #d2dbea !important;
    font-size: 15.5px !important;
    line-height: 1.75 !important;
}

.contact-details-list {
    gap: 24px !important;
}

.contact-details-list li {
    min-height: 44px;
    gap: 14px !important;
    color: #d4deec !important;
}

.contact-details-list li > i {
    width: 40px !important;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 40px;
    border-radius: 12px;
    background: rgba(59, 130, 246, 0.13);
    color: #7db3ff !important;
    font-size: 16px !important;
}

.contact-details-list a {
    color: #e4ebf5 !important;
}

.contact-interactive-btn {
    min-width: 200px;
    min-height: 48px;
    justify-content: center;
    padding: 12px 20px !important;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
}

.contact-interactive-btn:hover {
    background: #1246a3 !important;
    border-color: #3b82f6 !important;
    box-shadow: 0 10px 22px rgba(18, 70, 163, 0.34);
}

.whatsapp-btn-style {
    background: rgba(37, 211, 102, 0.13) !important;
    border-color: rgba(37, 211, 102, 0.30) !important;
}

/* Formular-Karte */
.contact-form-container {
    position: relative;
    min-height: 100%;
    padding: 48px 48px 46px !important;
    border-radius: 24px !important;
    background:
        radial-gradient(circle at 100% 0%, rgba(59, 130, 246, 0.25), transparent 34%),
        linear-gradient(145deg, #020b18 0%, #071a36 56%, #0b2b59 100%) !important;
    border: 1px solid rgba(147, 197, 253, 0.16) !important;
    box-shadow:
        0 28px 65px rgba(3, 18, 39, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
    color: #ffffff;
}

.contact-form-container::before {
    display: none !important;
    content: none !important;
}

.contact-form-title {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 26px;
}

.contact-form-title span {
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
    font-size: 27px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.contact-form-title small {
    color: #cbd5e1;
    font-size: 13px;
}

.contact-form {
    gap: 22px !important;
}

.contact-form-container .form-group label {
    color: #ffffff !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    letter-spacing: 0.8px !important;
}

.contact-form-container .form-group input,
.contact-form-container .form-group select,
.contact-form-container .form-group textarea {
    width: 100%;
    min-height: 54px;
    padding: 15px 16px !important;
    border: 1px solid rgba(255, 255, 255, 0.30) !important;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, 0.97) !important;
    color: #1e293b !important;
    font-size: 15px !important;
}

.contact-form-container .form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form-container .form-group input::placeholder,
.contact-form-container .form-group textarea::placeholder {
    color: #64748b !important;
}

.contact-form-container .form-group input:focus,
.contact-form-container .form-group select:focus,
.contact-form-container .form-group textarea:focus {
    border-color: #60a5fa !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.22) !important;
    transform: none !important;
}

.contact-form-container .recaptcha-container {
    padding: 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
}

.contact-form-container .full-width-btn {
    min-height: 56px;
    border-radius: 12px !important;
    background: linear-gradient(135deg, #2563c7, #3b82f6) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    box-shadow: 0 14px 30px rgba(18, 70, 163, 0.30) !important;
}

.contact-form-container .full-width-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #1d4ed8, #2563eb) !important;
    box-shadow: 0 18px 36px rgba(18, 70, 163, 0.40) !important;
}

.contact-form-container .form-success-alert {
    background: rgba(16, 185, 129, 0.16) !important;
    color: #d1fae5 !important;
    border-color: rgba(52, 211, 153, 0.35) !important;
}

.contact-form-container .form-error-alert {
    background: rgba(239, 68, 68, 0.16) !important;
    color: #fee2e2 !important;
    border-color: rgba(248, 113, 113, 0.35) !important;
}

/* Tablet */
@media (max-width: 1050px) {
    .contact-wrapper {
        grid-template-columns: 1fr !important;
        max-width: 820px;
    }

    .contact-info-card,
    .contact-form-container {
        min-height: auto;
    }
}

/* Smartphone */
@media (max-width: 700px) {
    .contact-section {
        padding: 84px 0 94px !important;
    }

    .contact-trust-row {
        justify-content: stretch;
        gap: 9px;
        margin-bottom: 30px;
    }

    .contact-trust-row span {
        width: 100%;
        justify-content: flex-start;
        border-radius: 10px;
    }

    .contact-wrapper {
        gap: 22px !important;
    }

    .contact-info-card,
    .contact-form-container {
        padding: 30px 22px !important;
        border-radius: 18px !important;
    }

    .contact-info-card h3 {
        font-size: 26px !important;
    }

    .contact-interactive-btn {
        min-width: 0;
        width: 100% !important;
    }

    .contact-form-title span {
        font-size: 23px;
    }

    .contact-form {
        grid-template-columns: 1fr !important;
    }

    .form-group,
    .form-group.full-width,
    .full-width-btn {
        grid-column: 1 !important;
    }

    .contact-form-container .form-group input,
    .contact-form-container .form-group select,
    .contact-form-container .form-group textarea {
        font-size: 16px !important;
    }

    .contact-form-container .recaptcha-container {
        overflow-x: auto;
    }
}

/* ==========================================================
   VERTRAUENS- & BEWERTUNGSBEREICH – SCHRITT 5
   Ohne erfundene Bewertungen oder Sternebewertung.
========================================================== */

.reviews-section {
    position: relative;
    overflow: hidden;
    padding: 118px 0 126px;
    background:
        radial-gradient(circle at 8% 12%, rgba(37, 99, 199, 0.10), transparent 28%),
        radial-gradient(circle at 92% 86%, rgba(18, 70, 163, 0.08), transparent 30%),
        linear-gradient(180deg, #f7faff 0%, #ffffff 55%, #f4f8fd 100%);
}

.reviews-section::before {
    content: "";
    position: absolute;
    top: -170px;
    right: -160px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.055);
    pointer-events: none;
}

.reviews-section > .container {
    position: relative;
    z-index: 2;
    max-width: 1180px;
}

.reviews-section .section-header {
    max-width: 820px;
    margin: 0 auto 64px;
}

.reviews-kicker {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 8px 14px;
    border: 1px solid rgba(37, 99, 199, 0.16);
    border-radius: 999px;
    color: #1246a3;
    background: rgba(37, 99, 199, 0.07);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.reviews-intro {
    max-width: 760px;
    margin: 20px auto 0;
    color: #64748b;
    font-size: 16px;
    line-height: 1.75;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.review-promise-card {
    position: relative;
    min-height: 250px;
    padding: 32px 28px;
    overflow: hidden;
    border: 1px solid rgba(18, 70, 163, 0.10);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 16px 38px rgba(3, 18, 39, 0.09);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.review-promise-card::after {
    content: "";
    position: absolute;
    right: -42px;
    bottom: -52px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(37, 99, 199, 0.06);
}

.review-promise-card:hover {
    transform: translateY(-7px);
    border-color: rgba(37, 99, 199, 0.26);
    box-shadow: 0 26px 52px rgba(18, 70, 163, 0.15);
}

.review-promise-icon {
    position: relative;
    z-index: 2;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 16px;
    color: #ffffff;
    background: linear-gradient(135deg, #1246a3, #2563c7);
    box-shadow: 0 12px 24px rgba(18, 70, 163, 0.26);
    font-size: 20px;
}

.review-promise-card h3 {
    position: relative;
    z-index: 2;
    margin-bottom: 12px;
    color: #06162f;
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    text-transform: uppercase;
}

.review-promise-card p {
    position: relative;
    z-index: 2;
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
}

.reviews-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-top: 34px;
    padding: 34px 38px;
    border: 1px solid rgba(147, 197, 253, 0.16);
    border-radius: 22px;
    color: #ffffff;
    background:
        radial-gradient(circle at 100% 0%, rgba(59, 130, 246, 0.28), transparent 34%),
        linear-gradient(145deg, #020b18 0%, #071a36 58%, #0b2b59 100%);
    box-shadow: 0 24px 54px rgba(3, 18, 39, 0.20);
}

.reviews-status {
    display: inline-flex;
    margin-bottom: 10px;
    color: #93c5fd;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.reviews-cta-box h3 {
    margin-bottom: 8px;
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    line-height: 1.2;
    text-transform: uppercase;
}

.reviews-cta-box p {
    max-width: 690px;
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.65;
}

.reviews-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 220px;
    min-height: 52px;
    padding: 14px 22px;
    border-radius: 11px;
    color: #ffffff;
    background: linear-gradient(135deg, #1246a3, #3b82f6);
    box-shadow: 0 12px 28px rgba(18, 70, 163, 0.34);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.35px;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.reviews-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(18, 70, 163, 0.42);
}

@media (max-width: 900px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .review-promise-card {
        min-height: auto;
    }

    .reviews-cta-box {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 700px) {
    .reviews-section {
        padding: 84px 0 94px;
    }

    .reviews-section .section-header {
        margin-bottom: 46px;
    }

    .reviews-grid {
        gap: 20px;
    }

    .review-promise-card {
        padding: 26px 22px;
        border-radius: 18px;
    }

    .reviews-cta-box {
        margin-top: 24px;
        padding: 28px 22px;
        border-radius: 18px;
    }

    .reviews-cta-box h3 {
        font-size: 24px;
    }

    .reviews-cta {
        width: 100%;
        min-width: 0;
    }
}

@media (hover: none) {
    .review-promise-card:hover {
        transform: none;
    }
}

/* ==========================================================
   PREMIUM-BEWERTUNGSBEREICH – KLAR ALS BEISPIEL MARKIERT
========================================================== */

.reviews-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0 130px;
    background:
        radial-gradient(circle at 8% 12%, rgba(37, 99, 199, 0.10), transparent 28%),
        radial-gradient(circle at 92% 86%, rgba(18, 70, 163, 0.09), transparent 30%),
        linear-gradient(180deg, #f7faff 0%, #ffffff 52%, #f3f7fc 100%);
}

.reviews-section > .container {
    position: relative;
    z-index: 2;
    max-width: 1180px;
}

.reviews-section .section-header {
    max-width: 840px;
    margin: 0 auto 66px;
}

.reviews-kicker {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 8px 14px;
    border: 1px solid rgba(37, 99, 199, 0.16);
    border-radius: 999px;
    color: #1246a3;
    background: rgba(37, 99, 199, 0.07);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.reviews-intro {
    max-width: 760px;
    margin: 20px auto 0;
    color: #64748b;
    font-size: 16px;
    line-height: 1.75;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.review-example-card {
    position: relative;
    min-height: 330px;
    padding: 34px 30px 30px;
    overflow: hidden;
    border: 1px solid rgba(18, 70, 163, 0.11);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 42px rgba(3, 18, 39, 0.10);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.review-example-card::after {
    content: "";
    position: absolute;
    right: -55px;
    bottom: -65px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: rgba(37, 99, 199, 0.055);
}

.review-example-card.featured {
    transform: translateY(-10px);
    border-color: rgba(37, 99, 199, 0.26);
    box-shadow: 0 28px 60px rgba(18, 70, 163, 0.16);
}

.review-example-card:hover {
    transform: translateY(-8px);
    border-color: rgba(37, 99, 199, 0.28);
    box-shadow: 0 28px 56px rgba(18, 70, 163, 0.16);
}

.review-example-card.featured:hover {
    transform: translateY(-14px);
}

.review-example-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    padding: 6px 10px;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, #1246a3, #2563c7);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.review-stars {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 5px;
    margin-bottom: 24px;
    color: #f6b800;
    font-size: 18px;
}

.review-example-card blockquote {
    position: relative;
    z-index: 2;
    margin: 0 0 28px;
    color: #243247;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.75;
}

.review-author {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 13px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    flex: 0 0 44px;
    border-radius: 50%;
    color: #ffffff;
    background: linear-gradient(135deg, #1246a3, #2563c7);
    box-shadow: 0 10px 22px rgba(18, 70, 163, 0.22);
}

.review-author strong {
    display: block;
    color: #071a36;
    font-size: 13px;
}

.review-author span {
    display: block;
    margin-top: 2px;
    color: #64748b;
    font-size: 12px;
}

.reviews-standards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin: 34px 0;
}

.reviews-standard {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px;
    border: 1px solid #dce7f4;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 10px 24px rgba(3, 18, 39, 0.06);
}

.reviews-standard i {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    flex: 0 0 44px;
    border-radius: 13px;
    color: #ffffff;
    background: linear-gradient(135deg, #1246a3, #2563c7);
}

.reviews-standard strong {
    display: block;
    margin-bottom: 3px;
    color: #071a36;
    font-size: 14px;
}

.reviews-standard span {
    color: #64748b;
    font-size: 12px;
    line-height: 1.45;
}

.reviews-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 36px 40px;
    border: 1px solid rgba(147, 197, 253, 0.16);
    border-radius: 22px;
    color: #ffffff;
    background:
        radial-gradient(circle at 100% 0%, rgba(59, 130, 246, 0.28), transparent 34%),
        linear-gradient(145deg, #020b18 0%, #071a36 58%, #0b2b59 100%);
    box-shadow: 0 24px 54px rgba(3, 18, 39, 0.20);
}

.reviews-status {
    display: inline-flex;
    margin-bottom: 10px;
    color: #93c5fd;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.reviews-cta-box h3 {
    margin-bottom: 8px;
    font-family: 'Oswald', sans-serif;
    font-size: 29px;
    line-height: 1.2;
    text-transform: uppercase;
}

.reviews-cta-box p {
    max-width: 690px;
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.65;
}

.reviews-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 220px;
    min-height: 52px;
    padding: 14px 22px;
    border-radius: 11px;
    color: #ffffff;
    background: linear-gradient(135deg, #1246a3, #3b82f6);
    box-shadow: 0 12px 28px rgba(18, 70, 163, 0.34);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.reviews-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(18, 70, 163, 0.42);
}

@media (max-width: 900px) {
    .reviews-grid,
    .reviews-standards {
        grid-template-columns: 1fr;
    }

    .review-example-card,
    .review-example-card.featured {
        min-height: auto;
        transform: none;
    }

    .reviews-cta-box {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 700px) {
    .reviews-section {
        padding: 84px 0 94px;
    }

    .reviews-section .section-header {
        margin-bottom: 46px;
    }

    .review-example-card {
        padding: 30px 22px 26px;
        border-radius: 18px;
    }

    .review-example-card blockquote {
        font-size: 16px;
    }

    .reviews-standard {
        padding: 17px;
    }

    .reviews-cta-box {
        padding: 28px 22px;
        border-radius: 18px;
    }

    .reviews-cta-box h3 {
        font-size: 24px;
    }

    .reviews-cta {
        width: 100%;
        min-width: 0;
    }
}

@media (hover: none) {
    .review-example-card:hover,
    .review-example-card.featured:hover {
        transform: none;
    }
}

/* ==========================================================
   PREMIUM-FOOTER – SCHRITT 6
========================================================== */

.premium-footer {
    padding: 0 !important;
    background: #020b18 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-main {
    position: relative;
    overflow: hidden;
    padding: 78px 0 66px;
    background:
        radial-gradient(circle at 10% 8%, rgba(37, 99, 199, 0.18), transparent 28%),
        radial-gradient(circle at 92% 88%, rgba(18, 70, 163, 0.12), transparent 30%),
        linear-gradient(135deg, #020b18 0%, #071a36 58%, #0a2852 100%);
}

.footer-main::after {
    content: "";
    position: absolute;
    right: -170px;
    bottom: -190px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.055);
    pointer-events: none;
}

.footer-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.35fr 0.85fr 0.9fr 1.2fr;
    gap: 46px;
    align-items: start;
}

.footer-brand-col {
    max-width: 360px;
}

.footer-logo-link {
    display: inline-flex;
    margin-bottom: 20px;
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.footer-logo {
    width: 180px;
    height: auto;
    display: block;
}

.footer-brand-text {
    margin-bottom: 24px;
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.75;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.footer-badges span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 11px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 999px;
    color: #dbeafe;
    background: rgba(255, 255, 255, 0.055);
    font-size: 11px;
    font-weight: 700;
}

.footer-badges i {
    color: #60a5fa;
}

.footer-col h3 {
    margin-bottom: 20px;
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-nav {
    display: grid;
    gap: 12px;
}

.footer-nav a {
    position: relative;
    width: fit-content;
    color: #b8c4d4;
    font-size: 13.5px;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-nav a::before {
    content: "";
    position: absolute;
    left: -14px;
    top: 50%;
    width: 6px;
    height: 2px;
    border-radius: 999px;
    background: #3b82f6;
    opacity: 0;
    transform: translateY(-50%);
    transition: opacity 0.2s ease;
}

.footer-nav a:hover {
    color: #ffffff;
    transform: translateX(7px);
}

.footer-nav a:hover::before {
    opacity: 1;
}

.footer-contact-col {
    display: flex;
    flex-direction: column;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 13px;
    color: #cbd5e1;
    font-size: 13.5px;
    text-decoration: none;
}

.footer-contact-item i {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    flex: 0 0 34px;
    border-radius: 10px;
    color: #93c5fd;
    background: rgba(59, 130, 246, 0.12);
}

a.footer-contact-item:hover {
    color: #ffffff;
}

.footer-social-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.footer-whatsapp,
.footer-offer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 11px 15px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-whatsapp {
    color: #ffffff;
    background: #128c4a;
    box-shadow: 0 10px 22px rgba(18, 140, 74, 0.24);
}

.footer-offer {
    color: #ffffff;
    background: linear-gradient(135deg, #1246a3, #2563c7);
    box-shadow: 0 10px 22px rgba(18, 70, 163, 0.28);
}

.footer-whatsapp:hover,
.footer-offer:hover {
    transform: translateY(-2px);
}

.footer-bottom {
    background: #020914;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: #7f8da1;
    font-size: 12.5px;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-legal-links a,
.footer-legal-links .cookie-settings-link {
    color: #9aa8ba;
    text-decoration: none;
}

.footer-legal-links a:hover,
.footer-legal-links .cookie-settings-link:hover {
    color: #ffffff;
}

/* Tablet */
@media (max-width: 1050px) {
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 42px 34px;
    }

    .footer-brand-col {
        max-width: none;
    }
}

/* Smartphone */
@media (max-width: 700px) {
    .footer-main {
        padding: 62px 0 52px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .footer-brand-col {
        text-align: left;
    }

    .footer-logo {
        width: 160px;
    }

    .footer-col h3 {
        margin-bottom: 16px;
    }

    .footer-social-buttons {
        flex-direction: column;
    }

    .footer-whatsapp,
    .footer-offer {
        width: 100%;
        min-height: 48px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        justify-content: center;
        padding: 22px 0;
        text-align: center;
    }

    .footer-legal-links {
        justify-content: center;
        gap: 12px 16px;
    }
}

/* ==========================================================
   SCHRITT 7 – FINALE SMARTPHONE-OPTIMIERUNG
   Desktop bleibt unverändert.
========================================================== */

html {
    scroll-padding-top: 82px;
}

body {
    overflow-x: hidden;
}

button,
a,
input,
select,
textarea {
    -webkit-tap-highlight-color: transparent;
}

body.mobile-menu-open {
    overflow: hidden;
}

/* Tablet */
@media (max-width: 991px) {
    .site-header {
        position: sticky;
        top: 0;
        z-index: 2000;
    }

    .header-container {
        height: 78px !important;
    }

    .logo-img {
        height: 52px !important;
        max-width: 154px;
    }

    .hamburger {
        display: grid !important;
        place-items: center;
        width: 48px;
        height: 48px;
        padding: 10px !important;
        border-radius: 12px;
        background: #f1f5f9;
    }

    .hamburger .bar {
        width: 25px;
        height: 3px;
        border-radius: 999px;
    }

    #main-nav .nav-list {
        top: 78px !important;
        max-height: calc(100dvh - 78px);
        overflow-y: auto;
        gap: 0 !important;
        padding: 16px !important;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-top: 1px solid #e2e8f0;
        box-shadow: 0 18px 36px rgba(3, 18, 39, 0.14) !important;
    }

    #main-nav .nav-list li {
        width: 100%;
    }

    #main-nav .nav-link {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 52px;
        width: 100%;
        padding: 14px 18px;
        border-radius: 10px;
        font-size: 15px;
    }

    #main-nav .nav-link:hover,
    #main-nav .nav-link.active {
        background: #eff6ff;
        color: #1246a3;
    }

    .header-actions {
        display: none !important;
    }
}

/* Smartphone */
@media (max-width: 700px) {
    .container {
        width: min(100% - 24px, 1240px) !important;
    }

    .hero-section {
        min-height: auto !important;
        padding-top: 0 !important;
        background-position: 68% center !important;
    }

    .hero-container {
        min-height: 620px !important;
        align-items: flex-end !important;
        padding: 80px 10px 44px !important;
    }

    .hero-content {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 24px 20px !important;
        transform: none !important;
        border: 1px solid rgba(255,255,255,0.14);
        border-radius: 18px;
        background: rgba(2, 11, 24, 0.68);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        box-shadow: 0 18px 38px rgba(0,0,0,0.24);
    }

    .hero-title {
        font-size: clamp(40px, 12vw, 56px) !important;
        line-height: 0.98 !important;
    }

    .hero-subtitle {
        font-size: 16px !important;
        line-height: 1.58 !important;
    }

    .hero-buttons .btn,
    .about-cta,
    .reviews-cta,
    .footer-whatsapp,
    .footer-offer {
        width: 100% !important;
        min-height: 50px;
        justify-content: center;
    }

    .hero-trust span,
    .contact-trust-row span {
        width: 100%;
        justify-content: flex-start;
    }

    .features-container,
    .services-grid,
    .about-grid,
    .reviews-grid,
    .reviews-standards,
    .contact-wrapper,
    .footer-grid {
        grid-template-columns: 1fr !important;
    }

    .feature-item {
        justify-content: flex-start !important;
    }

    .service-card,
    .review-example-card,
    .contact-info-card,
    .contact-form-container,
    .reviews-cta-box {
        width: 100%;
    }

    .about-image-col {
        min-height: 300px !important;
    }

    .about-content-col {
        padding: 50px 22px 58px !important;
    }

    .about-stats {
        grid-template-columns: 1fr !important;
    }

    .contact-info-card,
    .contact-form-container {
        padding: 28px 20px !important;
    }

    .contact-details-list {
        display: flex !important;
        flex-direction: column !important;
    }

    .contact-dropdown-item,
    .contact-dropdown-item .dropdown-wrapper,
    .contact-interactive-btn {
        width: 100% !important;
    }

    .dropdown-menu {
        position: static !important;
        width: 100%;
        min-width: 0 !important;
        margin-top: 10px;
        box-shadow: none !important;
    }

    .dropdown-item {
        min-height: 48px;
        display: flex;
        align-items: center;
    }

    .contact-form {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .form-group,
    .form-group.full-width,
    .full-width-btn {
        grid-column: 1 !important;
        width: 100%;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        min-height: 52px;
        font-size: 16px !important;
    }

    .form-group textarea {
        min-height: 150px;
    }

    .recaptcha-container,
    #recaptchaMount {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .recaptcha-consent-placeholder button {
        width: 100%;
        min-height: 46px;
    }

    .reviews-cta-box,
    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-social-buttons {
        flex-direction: column;
    }

    .footer-bottom-inner {
        align-items: center;
        text-align: center;
        padding: 22px 0;
    }

    .footer-legal-links {
        justify-content: center;
    }

    .scroll-top-btn {
        right: 16px !important;
        bottom: 16px !important;
        width: 48px !important;
        height: 48px !important;
    }

    .consent-banner {
        width: calc(100% - 24px) !important;
        max-height: calc(100dvh - 24px);
        overflow-y: auto !important;
    }

    .consent-banner__inner {
        padding: 20px !important;
        gap: 14px !important;
    }

    .consent-banner__actions {
        grid-template-columns: 1fr !important;
    }

    .consent-btn {
        min-height: 50px !important;
    }
}

/* Sehr kleine Smartphones */
@media (max-width: 380px) {
    .hero-container {
        padding-left: 6px !important;
        padding-right: 6px !important;
    }

    .hero-content {
        padding: 21px 17px !important;
    }

    .hero-title {
        font-size: 38px !important;
    }

    .contact-info-card,
    .contact-form-container,
    .review-example-card {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
}





/* ==========================================================
   FIX SMARTPHONE – LADUNGSSICHERUNG / ÜBER-UNS
   ========================================================== */

@media (max-width: 768px){

.about-grid{
    display:flex !important;
    flex-direction:column !important;
}

.about-image-col{
    min-height:auto !important;
    height:auto !important;
}

.about-image-col img{
    width:100% !important;
    height:auto !important;
    object-fit:contain !important;
    object-position:center center !important;
    display:block;
}

/* Doppelte Firmenplakette ausblenden */
.about-content-col::before{
    display:none !important;
}

.about-content-col{
    padding:40px 22px 50px !important;
}

.about-content-col h2{
    font-size:38px !important;
    line-height:1.1 !important;
}

.about-content-col p{
    font-size:16px !important;
    line-height:1.7 !important;
}

}



/* ==========================================================
   FIX DOPPELTE S&O-PLAKETTE – DESKTOP + SMARTPHONE
   ========================================================== */

/* Die echte HTML-Plakette (.about-kicker) bleibt sichtbar.
   Die zusätzlich per CSS erzeugte zweite Plakette wird entfernt. */
.about-content-col::before {
    display: none !important;
    content: none !important;
}

/* ==========================================================
   SCHRITT 8 – PREMIUM-EFFEKTE
   Dezente Animationen und hochwertigere Interaktionen
========================================================== */

:root {
    --premium-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Scroll-Reveal */
.reveal-section,
.reveal-card {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.75s var(--premium-ease),
        transform 0.75s var(--premium-ease);
    will-change: opacity, transform;
}

.reveal-section.is-visible,
.reveal-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Karten leicht zeitversetzt */
.services-grid .reveal-card:nth-child(2),
.reviews-grid .reveal-card:nth-child(2) {
    transition-delay: 0.08s;
}

.services-grid .reveal-card:nth-child(3),
.reviews-grid .reveal-card:nth-child(3) {
    transition-delay: 0.16s;
}

.services-grid .reveal-card:nth-child(4) {
    transition-delay: 0.24s;
}

.services-grid .reveal-card:nth-child(5) {
    transition-delay: 0.32s;
}

.services-grid .reveal-card:nth-child(6) {
    transition-delay: 0.40s;
}

/* Premium-Button-Glanz */
.btn-primary,
.about-cta,
.reviews-cta,
.footer-offer {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.btn-primary::after,
.about-cta::after,
.reviews-cta::after,
.footer-offer::after {
    content: "";
    position: absolute;
    top: -120%;
    left: -35%;
    width: 32%;
    height: 340%;
    z-index: -1;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.30),
        transparent
    );
    transform: rotate(18deg);
    transition: left 0.7s var(--premium-ease);
}

.btn-primary:hover::after,
.about-cta:hover::after,
.reviews-cta:hover::after,
.footer-offer:hover::after {
    left: 125%;
}

/* Header etwas hochwertiger beim Scrollen */
.site-header {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.site-header.header-scrolled {
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 30px rgba(3, 18, 39, 0.10);
}

/* Bild-Mikrointeraktionen */
.service-image-wrapper img,
.about-image-col img {
    transform-origin: center center;
}

/* dezenter Link-Unterstrich */
.nav-link,
.footer-nav a,
.footer-legal-links a {
    text-underline-offset: 4px;
}

/* Scroll-Button verfeinern */
.scroll-top-btn {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.scroll-top-btn.visible {
    animation: premiumPulse 2.8s ease-in-out infinite;
}

@keyframes premiumPulse {
    0%, 100% {
        box-shadow: 0 8px 22px rgba(18, 70, 163, 0.28);
    }
    50% {
        box-shadow: 0 12px 30px rgba(37, 99, 199, 0.42);
    }
}

/* Nur auf Geräten mit Maus */
@media (hover: hover) and (pointer: fine) {
    .service-card,
    .review-example-card,
    .contact-info-card,
    .contact-form-container,
    .about-stat,
    .reviews-standard {
        transition:
            transform 0.35s var(--premium-ease),
            box-shadow 0.35s var(--premium-ease),
            border-color 0.35s var(--premium-ease);
    }

    .about-stat:hover,
    .reviews-standard:hover {
        transform: translateY(-5px);
        border-color: rgba(96, 165, 250, 0.28);
        box-shadow: 0 16px 34px rgba(3, 18, 39, 0.12);
    }
}

/* Auf Smartphones keine unnötigen Effekte */
@media (max-width: 700px) {
    .reveal-section,
    .reveal-card {
        transform: translateY(18px);
        transition-duration: 0.55s;
    }

    .scroll-top-btn.visible {
        animation: none;
    }
}

/* Barrierefreiheit */
@media (prefers-reduced-motion: reduce) {
    .reveal-section,
    .reveal-card {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .scroll-top-btn.visible {
        animation: none !important;
    }

    .btn-primary::after,
    .about-cta::after,
    .reviews-cta::after,
    .footer-offer::after {
        display: none !important;
    }
}


/* FINALER FIX: Nur die echte HTML-Firmenplakette anzeigen */
.about-content-col::before {
    display: none !important;
    content: none !important;
}

/* ==========================================================
   S&O DATEI-UPLOAD – DESKTOP + MOBILE FINAL FIX
   bewusst am Dateiende, damit ältere Regeln überschrieben werden
========================================================== */

.contact-form .upload-form-group {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    min-width: 0 !important;
}

.contact-form .upload-panel {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    padding: 12px !important;
    border: 1px dashed rgba(147, 197, 253, .72) !important;
    border-radius: 14px !important;
    background: rgba(255,255,255,.055) !important;
    overflow: hidden !important;
}

.contact-form .upload-dropzone {
    display: grid !important;
    grid-template-columns: 48px minmax(0, 1fr) auto !important;
    align-items: center !important;
    gap: 14px !important;
    width: 100% !important;
    min-width: 0 !important;
    min-height: 74px !important;
    margin: 0 !important;
    padding: 13px 14px !important;
    border: 1px solid rgba(147,197,253,.18) !important;
    border-radius: 11px !important;
    background: rgba(255,255,255,.035) !important;
    cursor: pointer !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    box-sizing: border-box !important;
}

.contact-form .upload-dropzone:hover,
.contact-form .upload-dropzone.is-dragover {
    border-color: rgba(96,165,250,.82) !important;
    background: rgba(59,130,246,.11) !important;
}

.contact-form .upload-cloud-icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    border-radius: 12px !important;
    background: rgba(37,99,199,.20) !important;
    color: #60a5fa !important;
    font-size: 23px !important;
}

.contact-form .upload-copy {
    display: flex !important;
    flex-direction: column !important;
    min-width: 0 !important;
    gap: 3px !important;
}

.contact-form .upload-copy strong {
    display: block !important;
    color: #fff !important;
    font-size: 14px !important;
    line-height: 1.25 !important;
    font-weight: 800 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

.contact-form .upload-copy small {
    display: block !important;
    color: #cbd5e1 !important;
    font-size: 11.5px !important;
    line-height: 1.35 !important;
    font-weight: 500 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

.contact-form .upload-select-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 40px !important;
    padding: 9px 14px !important;
    border-radius: 8px !important;
    background: linear-gradient(135deg,#2563c7,#3b82f6) !important;
    color: #fff !important;
    box-shadow: 0 8px 18px rgba(37,99,199,.28) !important;
    font-size: 12px !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;
    white-space: nowrap !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

.contact-form .upload-hint {
    display: block !important;
    width: 100% !important;
    margin: 9px 2px 0 !important;
    color: #cbd5e1 !important;
    font-size: 10.5px !important;
    line-height: 1.45 !important;
    font-weight: 500 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

.contact-form .selected-files-list {
    display: grid !important;
    width: 100% !important;
    gap: 7px !important;
    margin-top: 10px !important;
}

.contact-form .selected-file-item {
    display: grid !important;
    grid-template-columns: 30px minmax(0,1fr) auto 30px !important;
    align-items: center !important;
    gap: 9px !important;
    width: 100% !important;
    min-width: 0 !important;
    padding: 8px 9px !important;
    border: 1px solid rgba(147,197,253,.16) !important;
    border-radius: 9px !important;
    background: rgba(2,11,24,.24) !important;
}

.contact-form .selected-file-icon,
.contact-form .selected-file-remove {
    width: 30px !important;
    height: 30px !important;
}

.contact-form .selected-file-icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 8px !important;
    background: rgba(59,130,246,.14) !important;
    color: #93c5fd !important;
}

.contact-form .selected-file-name {
    min-width: 0 !important;
    overflow: hidden !important;
    color: #f8fafc !important;
    font-size: 11.5px !important;
    font-weight: 700 !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

.contact-form .selected-file-size {
    color: #cbd5e1 !important;
    font-size: 10.5px !important;
    white-space: nowrap !important;
}

.contact-form .selected-file-remove {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 8px !important;
    background: transparent !important;
    color: #e2e8f0 !important;
    cursor: pointer !important;
}

.contact-form .selected-file-remove:hover {
    background: rgba(239,68,68,.22) !important;
    color: #fff !important;
}

.contact-form .upload-error {
    margin-top: 9px !important;
    padding: 9px 10px !important;
    border: 1px solid rgba(248,113,113,.32) !important;
    border-radius: 8px !important;
    background: rgba(239,68,68,.12) !important;
    color: #fee2e2 !important;
    font-size: 10.5px !important;
}

/* Tablet / Smartphone */
@media screen and (max-width: 768px) {
    .contact-form .upload-form-group {
        grid-column: 1 / -1 !important;
    }

    .contact-form .upload-panel {
        padding: 10px !important;
        border-radius: 12px !important;
    }

    .contact-form .upload-dropzone {
        display: grid !important;
        grid-template-columns: 42px minmax(0,1fr) !important;
        gap: 10px !important;
        min-height: 0 !important;
        padding: 12px !important;
        border-radius: 10px !important;
    }

    .contact-form .upload-cloud-icon {
        width: 42px !important;
        height: 42px !important;
        min-width: 42px !important;
        font-size: 20px !important;
    }

    .contact-form .upload-copy strong {
        font-size: 13px !important;
    }

    .contact-form .upload-copy small {
        font-size: 10.5px !important;
    }

    .contact-form .upload-select-button {
        grid-column: 1 / -1 !important;
        width: 100% !important;
        min-height: 44px !important;
        margin-top: 2px !important;
        padding: 11px 12px !important;
        font-size: 12px !important;
        white-space: normal !important;
        text-align: center !important;
    }

    .contact-form .upload-hint {
        margin-top: 8px !important;
        font-size: 10px !important;
        line-height: 1.45 !important;
    }

    .contact-form .selected-file-item {
        grid-template-columns: 28px minmax(0,1fr) 28px !important;
        gap: 7px !important;
        padding: 7px !important;
    }

    .contact-form .selected-file-size {
        display: none !important;
    }

    .contact-form .selected-file-icon,
    .contact-form .selected-file-remove {
        width: 28px !important;
        height: 28px !important;
    }

    .contact-form .selected-file-name {
        font-size: 10.5px !important;
    }
}

/* Kleine Smartphones */
@media screen and (max-width: 430px) {
    .contact-form .upload-panel {
        padding: 9px !important;
    }

    .contact-form .upload-dropzone {
        grid-template-columns: 1fr !important;
        justify-items: center !important;
        text-align: center !important;
    }

    .contact-form .upload-cloud-icon {
        margin: 0 auto !important;
    }

    .contact-form .upload-copy {
        width: 100% !important;
        align-items: center !important;
        text-align: center !important;
    }

    .contact-form .upload-select-button {
        grid-column: 1 !important;
        width: 100% !important;
    }

    .contact-form .upload-hint {
        text-align: center !important;
    }
}

