/* Basis und Variablen */
:root {
    /* Farbpalette */
    --hellgelber: #F3D072;
    --gelber-balken: #EDB114;
    --hellblau: #AABCE5;
    --mittelblau: #6F82AC;
    --dunkelblau: #14157A;
    --helles-blau: #D1D2E9;
    --rot: #B7002B;
    --helles-blau-faq: #CFE1FC;
    
    /* An das Design angepasste Farben */
    --brand: #14157A;
    --brand-accent: #6F82AC;
    --brand-dark: #0F0F5A;
    --brand-light: #AABCE5;
    --text: #14157A;
    --muted: #6F82AC;
    --bg: #F8FAFC;
    --section-alt: #F1F5F9;
    --card-bg: #ffffff;
    --shadow: 0 10px 30px rgba(20, 21, 122, 0.08);
    --shadow-lg: 0 25px 50px rgba(20, 21, 122, 0.12);
    --shadow-xl: 0 50px 100px rgba(20, 21, 122, 0.15);
    --ring: 0 0 0 6px rgba(20, 21, 122, 0.12);
    --radius: 16px;
    --radius-lg: 24px;
    --gradient-primary: linear-gradient(135deg, #14157A 0%, #6F82AC 50%, #AABCE5 100%);
    --gradient-secondary: linear-gradient(135deg, #F8FAFC 0%, #D1D2E9 100%);
    --gradient-hero: linear-gradient(135deg, #ffffff 0%, #CFE1FC 50%, #AABCE5 100%);
}

/* STARK GmbH spezifische Schriftart-Gestaltung */
.stark-font {
    font-family: 'EuralDB', 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-weight: 500;
}

.stark-font strong {
    font-weight: 900;
}

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

html, body {
    height: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: min(1400px, 95vw);
    margin: 0 auto;
}

/* Verbesserte Kopfzeile */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(27, 77, 140, 0.1);
    box-shadow: 0 4px 32px rgba(2, 8, 23, 0.08);
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 20px;
}

.nav {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.nav-link {
    text-decoration: none;
    color: var(--brand);
    font-weight: 600;
    font-size: clamp(11px, 1.2vw, 16px);
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    position: relative;
    padding: 6px 0;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    border-radius: 1px;
}

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

.nav-link:hover {
    color: var(--brand-dark);
    transform: translateY(-1px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 6px;
    user-select: none;
}

.logo--stack { 
    flex-direction: column; 
    align-items: center; 
    gap: 0px; 
}

.logo-line { 
    display: flex; 
    align-items: baseline; 
    gap: 8px; 
}

.logo-strong { 
    font-family: 'Eural DB', 'Eural', Arial, sans-serif;
    font-weight: 900; 
    font-size: 32px; 
    letter-spacing: 0.02em; 
    color: var(--brand);
    text-shadow: 0 2px 4px rgba(27, 77, 140, 0.1);
}

.logo-light { 
    font-weight: 400; 
    font-size: 18px; 
    color: var(--brand-dark);
}

.logo-tagline { 
    font-size: 13px; 
    color: var(--brand-light);
    opacity: 0.9; 
    letter-spacing: 0.03em;
    font-weight: 500;
    margin-top: -4px;
    max-width: 120px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.logo-image {
    height: 60px;
    width: 120px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

/* Responsive Logo-Anpassungen */
@media (max-width: 768px) {
    .logo-image {
        height: 50px;
        width: 100px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 45px;
        width: 90px;
    }
}

.logo-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.logo-link:hover {
    transform: translateY(-1px);
}

.contact-btn {
    appearance: none;
    border: none;
    background: var(--dunkelblau);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: clamp(11px, 1.2vw, 16px);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.contact-btn:hover::before {
    left: 100%;
}

.contact-btn:hover {
    transform: translateY(-2px);
    background: var(--mittelblau);
}

/* Verbesserter Hero-Bereich */
.hero {
    background: var(--gradient-hero);
    padding: 80px 0 60px;
    min-height: 85vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(27, 77, 140, 0.08) 0%, transparent 70%);
    transform: rotate(15deg);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
    transform: rotate(-10deg);
    pointer-events: none;
}

/* Schwebende Partikel */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(255,255,255,0.2), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: particleFloat 20s linear infinite;
    pointer-events: none;
}

@keyframes particleFloat {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

.hero-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(36px, 6vw, 64px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: #1B4D8C;
    font-weight: 400;
    text-shadow: 
        0 2px 4px rgba(255,255,255,0.9),
        0 4px 8px rgba(255,255,255,0.8),
        0 0 20px rgba(255,255,255,0.7);
    position: relative;
    z-index: 2;
    text-align: left;
}

.hero-title::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -20px;
    right: -20px;
    bottom: -10px;
    background: rgba(255,255,255,0.2);
    border-radius: 20px;
    z-index: -1;
    backdrop-filter: blur(10px);
}

.hero-description {
    color: #0f172a;
    font-size: clamp(16px, 2.2vw, 20px);
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 24px;
    font-weight: 600;
    text-shadow: 
        0 1px 3px rgba(255,255,255,0.9),
        0 2px 6px rgba(255,255,255,0.8),
        0 0 15px rgba(255,255,255,0.6);
    text-align: left;
}

.hero-cta {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

/* Hero-Bild */
.hero-image {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img {
    max-width: clamp(300px, 40vw, 450px);
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    transition: all 0.3s ease;
}

.hero-img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(27, 77, 140, 0.2);
}

.btn-primary {
    appearance: none;
    border: 2px solid var(--dunkelblau);
    background: var(--dunkelblau);
    color: white;
    padding: clamp(16px, 2vw, 24px) clamp(32px, 4vw, 48px);
    border-radius: 16px;
    font-weight: 800;
    letter-spacing: 0.03em;
    cursor: pointer;
    box-shadow: 0 12px 32px rgba(20, 21, 122, 0.3);
    font-size: clamp(16px, 2vw, 20px);
}





/* Sekundärer Button für Service-Karten */
.btn-secondary {
    appearance: none;
    border: 2px solid var(--dunkelblau);
    background: var(--dunkelblau);
    color: white;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    font-size: 14px;
    margin-top: 16px;
}



.hero-note {
    color: #0f172a;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 700;
    text-shadow: 
        0 1px 2px rgba(255,255,255,0.9),
        0 2px 4px rgba(255,255,255,0.8),
        0 0 10px rgba(255,255,255,0.6);
}

.hero-note a {
    color: var(--brand);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-note a:hover { 
    color: var(--brand-dark);
    text-decoration: underline;
}

/* Verbesserte Services */
.services {
    padding: 80px 0 60px;
    background: 
        linear-gradient(135deg, rgba(248,250,252,0.8) 0%, rgba(226,232,240,0.6) 50%, rgba(241,245,249,0.7) 100%),
        radial-gradient(circle at 20% 80%, rgba(27, 77, 140, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(96, 165, 250, 0.04) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

/* Services-Bereich Titel-Gestaltung */
.services .section-title {
    color: var(--dunkelblau);
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.8));
    pointer-events: none;
    animation: servicesGlow 6s ease-in-out infinite;
}

.services::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(27, 77, 140, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(59, 130, 246, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 50% 10%, rgba(96, 165, 250, 0.06) 1px, transparent 1px);
    background-size: 80px 80px, 120px 120px, 160px 160px;
    pointer-events: none;
    animation: servicesParticles 20s linear infinite;
}

/* Services-Karussell */
.services-carousel { 
    position: relative; 
    display: grid; 
    grid-template-columns: auto 1fr auto; 
    align-items: center; 
    gap: 20px; 
}

.services-track { 
    display: flex; 
    gap: 24px; 
    overflow-x: auto; 
    scroll-snap-type: x mandatory; 
    padding: 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.services-track::-webkit-scrollbar {
    display: none;
}

.services-track:focus { 
    outline: none; 
}

.service-card { 
    scroll-snap-align: center; 
    min-width: 340px;
    position: relative;
    transition: all 0.4s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.service-card:hover::before {
    opacity: 0.05;
}

.services-nav { 
    appearance: none; 
    border: none; 
    background: #ffffff; 
    color: var(--brand); 
    width: 48px; 
    height: 48px; 
    border-radius: 50%; 
    box-shadow: 0 8px 24px rgba(2,8,23,0.15); 
    cursor: pointer; 
    font-size: 24px; 
    line-height: 48px; 
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.services-nav:hover { 
    background: var(--brand);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(27, 77, 140, 0.3);
}

.service-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(27, 77, 140, 0.08);
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: rgba(27, 77, 140, 0.15);
}

.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    pointer-events: none;
    background: radial-gradient(400px 150px at 20% 0, rgba(27,77,140,.08), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::after {
    opacity: 1;
}

.service-image {
    position: relative;
    overflow: hidden;
}

.service-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.service-card:hover .service-image::before {
    opacity: 1;
}

.service-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

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

.service-content {
    padding: 20px;
    text-align: center;
    position: relative;
}

.service-title {
    margin-top: 0;
    font-size: 22px;
    font-weight: 700;
    color: var(--brand);
    margin-bottom: 8px;
}

.service-subtitle {
    color: var(--muted);
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 16px;
}

/* Verbesserte Bereich-Titel */
.section-title {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 24px;
    color: var(--brand);
    text-align: center;
    font-weight: 900;
    letter-spacing: -0.02em;
    position: relative;
}



/* Verbesserter Über uns-Bereich */
.about {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, rgba(241,245,249,0.8), transparent);
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

.about-content::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(27, 77, 140, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}

.about-text p + p {
    margin-top: 20px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--muted);
    animation: slideInFromLeft 0.8s ease forwards;
    opacity: 0;
}

.about-text p:nth-child(1) { animation-delay: 0.1s; }
.about-text p:nth-child(2) { animation-delay: 0.3s; }
.about-text p:nth-child(3) { animation-delay: 0.5s; }

.about-image {
    position: relative;
    animation: slideInFromRight 0.8s ease forwards;
    opacity: 0;
    animation-delay: 0.4s;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: var(--gradient-primary);
    border-radius: 24px;
    opacity: 0.1;
    z-index: -1;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(27, 77, 140, 0.1);
    transition: all 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.03);
    box-shadow: var(--shadow-xl);
}

/* Ansprechpartner-Bereich */
.ansprech-partner {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(248,250,252,0.9) 0%, rgba(241,245,249,0.8) 50%, rgba(226,232,240,0.9) 100%);
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
    justify-items: center;
}

.partner-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--dunkelblau);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.partner-card:hover::before {
    transform: scaleX(1);
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(20, 21, 122, 0.15);
    border-color: var(--dunkelblau);
}

.partner-image {
    text-align: center;
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner-initials {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid var(--hellblau);
    box-shadow: 0 8px 24px rgba(20, 21, 122,0.15);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    color: var(--dunkelblau);
    background: linear-gradient(135deg, var(--helles-blau) 0%, var(--hellblau) 100%);
    letter-spacing: 0.05em;
}

.partner-card:hover .partner-initials {
    border-color: var(--dunkelblau);
    transform: scale(1.05);
    background: linear-gradient(135deg, var(--hellblau) 0%, var(--dunkelblau) 100%);
    color: white;
}

.partner-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dunkelblau);
    margin-bottom: 8px;
    text-align: center;
}

.partner-role {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--mittelblau);
    margin-bottom: 16px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.partner-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 20px;
    text-align: center;
}

.partner-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.partner-contact span {
    font-size: 0.9rem;
    color: var(--mittelblau);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Responsive Anpassungen für Ansprechpartner */
@media (max-width: 768px) {
    .partner-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    
    .partner-card {
        padding: 24px;
    }
    
    .partner-info h3 {
        font-size: 1.3rem;
    }
    
    .partner-role {
        font-size: 1rem;
    }
    
    .partner-description {
        font-size: 0.95rem;
    }
}

/* Verbesserter Strapy-Bereich */
.strapy {
    padding: 80px 0;
    background: var(--gradient-secondary);
    position: relative;
}

.strapy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.8));
    pointer-events: none;
}

.strapy-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.strapy-text p + p {
    margin-top: 20px;
}

.strapy-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #0f172a;
    font-weight: 500;
    text-shadow: 
        0 1px 2px rgba(255,255,255,0.8),
        0 2px 4px rgba(255,255,255,0.6);
}

.strapy-image {
    position: relative;
}

.strapy-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: var(--gradient-primary);
    border-radius: 24px;
    opacity: 0.1;
    z-index: -1;
}

.strapy-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.strapy-image:hover img {
    transform: scale(1.03);
    box-shadow: var(--shadow-xl);
}

/* Verbesserter Kuriershop-Bereich */
.kuriershop {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
}

.kuriershop::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, rgba(241,245,249,0.8), transparent);
    pointer-events: none;
}

.kuriershop-content {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.kuriershop-text p + p {
    margin-top: 20px;
}

.kuriershop-text p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--muted);
}

.kuriershop-image {
    position: relative;
}

.kuriershop-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: var(--gradient-primary);
    border-radius: 24px;
    opacity: 0.1;
    z-index: -1;
}

.kuriershop-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(27, 77, 140, 0.1);
    transition: all 0.3s ease;
}

.kuriershop-image:hover img {
    transform: scale(1.03);
    box-shadow: var(--shadow-xl);
}

/* Überschriften-Ausrichtung */
.about .section-title,
.kuriershop .section-title {
    text-align: left;
}

.about .section-title::after,
.kuriershop .section-title::after {
    left: 0;
    transform: none;
}

/* Verbesserter Kontakt-Bereich */
.contact {
    padding: 80px 0 100px;
    background: 
        linear-gradient(135deg, rgba(255,255,255,0.6) 0%, rgba(248,250,252,0.5) 50%, rgba(241,245,249,0.4) 100%),
        url('stark-gmbh-kontakt-hintergrund.png') center/cover no-repeat;
    position: relative;
}

.contact-center { 
    display: flex; 
    justify-content: center;
    position: relative;
    z-index: 1;
}

/* Kontakt-Karte - Weißer Kasten für bessere Lesbarkeit */
.contact-form-card,
.contact-info-card {
    background: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    padding: 40px;
    width: min(600px, 100%);
    position: relative;
    transition: all 0.3s ease;
}

/* Hover-Effekt für Kontakt-Karte */
.contact-form-card:hover,
.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}


/* Kontakt-Info Stile - Titel */
.contact-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-align: center;
    margin-bottom: 20px;
}

/* Kontakt-Info Text */
.contact-info-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
    text-align: center;
    margin-bottom: 30px;
}

/* E-Mail Link Stil */
.contact-email {
    color: var(--brand);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid var(--brand-light);
    transition: all 0.3s ease;
    padding-bottom: 2px;
}

.contact-email:hover {
    color: var(--brand-dark);
    border-bottom-color: var(--brand-dark);
    transform: translateY(-1px);
}

/* Kontakt-Details Grid */
.contact-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
}

/* Kontakt-Detail Blöcke */
.contact-detail-block {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
}

/* Hover-Effekt für Detail-Blöcke */
.contact-detail-block:hover {
    background: #ffffff;
    border-color: var(--brand-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Überschriften in Detail-Blöcken */
.contact-detail-block h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brand);
    margin-bottom: 12px;
}

/* Text in Detail-Blöcken */
.contact-detail-block p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text);
    margin: 0;
}

/* Fettgedruckte Texte */
.contact-detail-block strong {
    color: var(--brand);
    font-weight: 600;
}

/* Links in Detail-Blöcken */
.contact-detail-block a {
    color: var(--brand);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-detail-block a:hover {
    color: var(--brand-dark);
    text-decoration: underline;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    position: relative;
    z-index: 1;
}

.form-field {
    animation: slideInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.form-field:nth-child(1) { animation-delay: 0.1s; }
.form-field:nth-child(2) { animation-delay: 0.2s; }
.form-field:nth-child(3) { animation-delay: 0.3s; }
.form-field:nth-child(4) { animation-delay: 0.4s; }
.form-field:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Erweiterte Scroll-Animationen */
@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(50px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

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

.form-field.full { 
    grid-column: 1 / -1; 
}

.form-field label {
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--brand);
    font-size: 15px;
}

.form-field input,
.form-field textarea {
    border: 2px solid rgba(226, 232, 240, 0.6);
    border-radius: 20px;
    padding: 18px 24px;
    font: inherit;
    outline: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.form-field input:hover,
.form-field textarea:hover {
    border-color: rgba(27, 77, 140, 0.3);
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--brand);
    background: rgba(255, 255, 255, 1);
    transform: translateY(-3px);
    box-shadow: 
        0 0 0 8px rgba(27, 77, 140, 0.08),
        0 12px 30px rgba(27, 77, 140, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.form-field label {
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--brand);
    font-size: 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-field label::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--brand);
    border-radius: 50%;
    opacity: 0.7;
}

.form-field input.invalid,
.form-field textarea.invalid {
    border-color: #ef4444;
    box-shadow: 0 0 0 6px rgba(239, 68, 68, 0.1);
}

.form-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
}

.form-actions.full {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.form-status { 
    color: #047857; 
    font-weight: 600; 
    font-size: 15px;
}

.btn-wide { 
    width: auto; 
    min-width: 220px;
    justify-content: center;
    padding: 20px 40px;
    font-size: 16px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    border: none;
    border-radius: 25px;
    color: white;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(20, 21, 122, 0.3);
}

/* btn-primary Effekte für SENDEN-Button überschreiben */
.btn-primary.btn-wide {
    background: var(--dunkelblau);
    color: white;
    border-color: var(--dunkelblau);
    box-shadow: 0 8px 25px rgba(20, 21, 122, 0.3);
}



/* Testimonials-Bereich */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(248,250,252,0.9) 0%, rgba(241,245,249,0.8) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(27, 77, 140, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInScale 0.8s ease forwards;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.3s; }
.testimonial-card:nth-child(3) { animation-delay: 0.5s; }

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-content {
    margin-bottom: 24px;
}

.testimonial-content p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--muted);
    font-style: italic;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    font-size: 48px;
    color: var(--brand);
    position: absolute;
    top: -20px;
    left: -10px;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-info h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--brand);
}

.author-info span {
    font-size: 14px;
    color: var(--muted);
    font-weight: 500;
}

/* Verbesserte Fußzeile */

/* Verbesserte Fußzeile */
.footer { 
    background: var(--gradient-primary);
    color: #f8fafc; 
    padding: 60px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.02)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.02)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.footer-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 40px; 
    align-items: start;
    position: relative;
    z-index: 1;
}

.footer-brand { 
    font-weight: 900; 
    letter-spacing: 0.02em; 
    color: #ffffff; 
    margin-bottom: 12px;
    font-size: 20px;
}

.footer-bottom { 
    margin-top: 32px; 
    text-align: center; 
    color: rgba(255,255,255,0.8); 
    font-size: 15px;
    position: relative;
    z-index: 1;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom-links a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-bottom-links a:hover {
    opacity: 0.8;
}

/* Mobile-Menü-Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 100%;
    height: 3px;
    background: var(--brand);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Verbesserte Fortschrittsleiste */
#progress-bar {
    position: fixed;
    top: 0; 
    left: 0;
    height: 4px; 
    width: 0%;
    background: var(--gradient-primary);
    z-index: 200;
    transition: width 0.3s ease;
}

/* Ladebildschirm */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1B4D8C 0%, #3B82F6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    color: white;
}

.preloader-logo {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 30px;
    animation: pulse 2s ease-in-out infinite;
}

.preloader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Verbesserter Zurück-nach-oben-Button */
#backToTop {
    position: fixed;
    right: 30px; 
    bottom: 30px;
    width: 56px; 
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
    font-size: 20px;
    font-weight: bold;
}

#backToTop:hover { 
    background: var(--brand-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.backToTop--visible { 
    opacity: 1; 
    transform: translateY(0); 
}

/* Verbessertes Responsive Design */

/* Tablet specific styles - Amélioration pour tablettes */
@media screen and (max-width: 1200px) {
    .nav-link {
        font-size: 13px !important;
    }
    
    .nav-dropdown-btn {
        font-size: 13px !important;
    }
    
    .contact-btn {
        font-size: 13px !important;
        padding: 10px 18px !important;
    }
}

@media screen and (max-width: 1024px) {
    .header .container {
        padding: 12px 0;
        gap: 10px;
    }
    
    .nav {
        gap: 10px;
    }
    
    .nav-link {
        font-size: 12px !important;
        padding: 4px 0;
        font-weight: 600 !important;
    }
    
    .nav-dropdown-btn {
        font-size: 12px !important;
        padding: 4px 0;
        gap: 3px;
    }
    
    .contact-btn {
        padding: 8px 14px !important;
        font-size: 12px !important;
        border-radius: 10px;
        font-weight: 700 !important;
    }
    
    .logo-image {
        height: 50px !important;
        width: 100px !important;
    }
    
    .dropdown-arrow {
        width: 9px;
        height: 9px;
    }
}

/* Pour tablettes moyennes et petites */
@media screen and (max-width: 900px) {
    .header .container {
        padding: 10px 0;
        gap: 8px;
    }
    
    .nav {
        gap: 8px;
    }
    
    .nav-link {
        font-size: 11px !important;
        letter-spacing: 0.01em;
    }
    
    .nav-dropdown-btn {
        font-size: 11px !important;
    }
    
    .contact-btn {
        padding: 7px 12px !important;
        font-size: 11px !important;
    }
    
    .logo-image {
        height: 45px !important;
        width: 90px !important;
    }
}

@media (max-width: 900px) {
    .hero {
        min-height: 85vh;
        padding: 80px 0 60px;
    }
    
    .hero-content,
    .about-content,
    .strapy-content,
    .kuriershop-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Tablet styles for product sections */
    .strapy-content {
        gap: 30px !important;
        margin-bottom: 60px !important;
    }
    
    .product-title {
        font-size: 1.8rem !important;
        margin-bottom: 20px !important;
    }
    
    .strapy-text p {
        font-size: 15px !important;
        line-height: 1.6 !important;
        margin-bottom: 16px !important;
        color: #0f172a !important;
        font-weight: 500 !important;
        text-shadow: 
            0 1px 2px rgba(255,255,255,0.8),
            0 2px 4px rgba(255,255,255,0.6) !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .services-carousel {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .services-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }

    .services-nav.services-prev {
        left: -60px;
    }

    .services-nav.services-next {
        right: -60px;
    }

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

    .contact-center {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .impressum-section,
    .datenschutz-section {
        padding: 24px;
    }

    .page-header {
        padding: 100px 0 60px;
    }

    .page-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .impressum-page .impressum-section,
    .datenschutz-page .datenschutz-section {
        padding: 32px;
    }
}

@media (max-width: 1024px) {
    .hero {
        min-height: 85vh;
        padding: 70px 0 50px;
    }
    
    .hero-title {
        font-size: clamp(32px, 7vw, 56px);
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: clamp(16px, 2.2vw, 20px);
        margin-bottom: 24px;
    }
    
    .hero-img {
        max-width: clamp(280px, 35vw, 400px);
    }
}

@media (max-width: 700px) {
    .hero {
        padding: 50px 0 25px;
        min-height: 90vh;
        display: flex;
        align-items: center;
    }
    
    .hero-title {
        font-size: clamp(32px, 7vw, 48px);
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: clamp(16px, 2.5vw, 20px);
        line-height: 1.4;
        margin-bottom: 24px;
    }
    
    .hero-img {
        max-width: clamp(200px, 40vw, 300px);
    }
    
    .about, .kuriershop, .produkte, .contact {
        padding: 25px 0;
    }
    
    .about-text p, .kuriershop-text p, .strapy-text p {
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 10px;
    }
    
    .about-image img, .kuriershop-image img, .strapy-image img {
        max-height: 160px;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 40px 0 20px;
        min-height: 85vh;
        display: flex;
        align-items: center;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .hero-title {
        font-size: clamp(28px, 6vw, 40px);
        margin-bottom: 16px;
    }
    
    .hero-description {
        font-size: clamp(14px, 2.2vw, 18px);
        line-height: 1.4;
        margin-bottom: 20px;
    }
    
    .hero-img {
        max-width: clamp(180px, 35vw, 250px);
        height: auto;
    }

    .section-title {
        font-size: clamp(20px, 5vw, 24px);
        margin-bottom: 16px;
    }
    
    .about, .kuriershop, .produkte, .contact {
        padding: 20px 0;
    }
    
    .about-content, .kuriershop-content, .strapy-content {
        gap: 15px;
    }
    
    .about-text p, .kuriershop-text p, .strapy-text p {
        font-size: 13px;
        line-height: 1.3;
        margin-bottom: 8px;
    }
    
    .about-image img, .kuriershop-image img, .strapy-image img {
        max-height: 150px;
        object-fit: cover;
    }
    
    .btn-primary {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 20px 0 10px;
        min-height: 80vh;
    }
    
    .hero-title {
        font-size: clamp(24px, 5.5vw, 32px);
        margin-bottom: 12px;
    }
    
    .hero-description {
        font-size: clamp(12px, 2vw, 16px);
        margin-bottom: 14px;
    }
    
    .hero-img {
        max-width: clamp(150px, 30vw, 200px);
    }
    
    /* Mobile styles for product sections */
    .strapy-content {
        gap: 20px !important;
        margin-bottom: 40px !important;
    }
    
    .product-title {
        font-size: 1.5rem !important;
        margin-bottom: 16px !important;
        padding-bottom: 8px !important;
    }
    
    .strapy-text p {
        font-size: 14px !important;
        line-height: 1.5 !important;
        margin-bottom: 12px !important;
        color: #0f172a !important;
        font-weight: 500 !important;
        text-shadow: 
            0 1px 2px rgba(255,255,255,0.8),
            0 2px 4px rgba(255,255,255,0.6) !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .strapy-image img {
        max-width: 100% !important;
        height: auto !important;
    }
    
    .section-title {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .about, .kuriershop, .produkte, .contact {
        padding: 10px 0;
    }
    
    .about-text p, .kuriershop-text p, .strapy-text p {
        font-size: 10px;
        line-height: 1.2;
        margin-bottom: 4px;
    }
    
    .about-image img, .kuriershop-image img, .strapy-image img {
        max-height: 100px;
    }
    
    .btn-primary {
        padding: 6px 12px;
        font-size: 10px;
    }
    
    .container {
        padding: 0 8px;
    }
    
    /* Einigen Inhalt auf sehr kleinen Bildschirmen ausblenden */
    .about-text p:nth-child(2),
    .about-text p:nth-child(3) {
        display: none;
    }
    
    .kuriershop-text p:nth-child(2) {
        display: none;
    }
    
    /* Keep all text visible on mobile */
    .strapy-text p {
        display: block !important;
    }
    
    /* Keep sections visible but very compact */
    .about, .kuriershop, .produkte, .contact {
        padding: 10px 0;
    }
}

@media (max-width: 600px) {
    /* Keep all sections visible but with compact spacing */
    .about, .kuriershop, .produkte, .contact {
        padding: 20px 0;
    }

    .services-nav.services-prev {
        left: 10px;
    }

    .services-nav.services-next {
        right: 10px;
    }

    .service-card {
        min-width: 280px;
    }

    .contact-form-card,
    .contact-info-card {
        padding: 24px;
        margin: 0 16px;
    }
    
    .contact-info-title {
        font-size: 1.5rem;
    }
    
    .contact-info-text {
        font-size: 1rem;
    }
    
    .contact-detail-block {
        padding: 20px;
    }
    
    .contact-detail-block h4 {
        font-size: 1.1rem;
    }
    
    .contact-detail-block p {
        font-size: 0.95rem;
    }

    .impressum-section,
    .datenschutz-section {
        padding: 20px;
        margin: 0 16px 24px 16px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .page-header {
        padding: 80px 0 40px;
    }

    .page-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .breadcrumb {
        flex-direction: column;
        gap: 4px;
    }

    .impressum-page .impressum-section,
    .datenschutz-page .datenschutz-section {
        padding: 24px;
        margin: 0 16px 24px 16px;
    }
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes particleFloat {
    0% {
        background-position: 0px 0px, 0px 0px, 0px 0px, 0px 0px, 0px 0px;
    }
    100% {
        background-position: 100px 100px, -150px -150px, 200px -200px, -120px 120px, 180px -180px;
    }
}

/* Services-Hintergrund-Animationen */
@keyframes servicesGlow {
    0%, 100% {
        opacity: 0.8;
        transform: translateY(0px);
    }
    50% {
        opacity: 1;
        transform: translateY(-5px);
    }
}

@keyframes servicesParticles {
    0% {
        background-position: 0px 0px, 0px 0px, 0px 0px;
    }
    100% {
        background-position: 80px 80px, -120px -120px, 160px -160px;
    }
}

/* Animationen auf Bereiche anwenden */
.hero-content > * {
    animation: fadeInUp 0.8s ease forwards;
}

.about-content > *:nth-child(1) {
    animation: fadeInLeft 0.8s ease forwards;
}

.about-content > *:nth-child(2) {
    animation: fadeInRight 0.8s ease forwards;
}

.strapy-content > *:nth-child(1) {
    animation: fadeInLeft 0.8s ease forwards;
}

.strapy-content > *:nth-child(2) {
    animation: fadeInRight 0.8s ease forwards;
}

.kuriershop-content > *:nth-child(1) {
    animation: fadeInLeft 0.8s ease forwards;
}

.kuriershop-content > *:nth-child(2) {
    animation: fadeInRight 0.8s ease forwards;
}

/* Enhanced hover effects */
.service-card:hover {
    transform: translateY(-12px) scale(1.03);
}

.btn-primary:hover,
.contact-btn:hover {
    transform: translateY(-4px) scale(1.05);
}

/* Smooth transitions for all interactive elements */
* {
    transition: all 0.3s ease;
}

/* Enhanced focus states */
button:focus,
input:focus,
textarea:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(27, 77, 140, 0.2);
}

/* Enhanced scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: var(--brand);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--brand-dark);
}

.strapy-text p,
.kuriershop-text p,
.about-text p {
    color: #0f172a;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 500;
    text-shadow: 
        0 1px 2px rgba(255,255,255,0.8),
        0 2px 4px rgba(255,255,255,0.6);
}

.strapy-text p:last-of-type,
.kuriershop-text p:last-of-type {
    margin-bottom: 30px;
}

.strapy .section-title,
.kuriershop .section-title,
.uniko .section-title,
.hui .section-title {
    color: #1B4D8C;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    text-shadow: 
        0 2px 4px rgba(255,255,255,0.9),
        0 4px 8px rgba(255,255,255,0.7);
    position: relative;
}

.strapy .section-title::after,
.kuriershop .section-title::after,
.uniko .section-title::after,
.hui .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #1B4D8C, #3B82F6);
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(27, 77, 140, 0.3);
}

/* Stats Section */

/* Stats Section */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--helles-blau-faq) 0%, var(--hellblau) 50%, var(--helles-blau) 100%);
    color: var(--dunkelblau);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stats-pattern" x="0" y="0" width="25" height="25" patternUnits="userSpaceOnUse"><polygon points="12.5,0 25,12.5 12.5,25 0,12.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23stats-pattern)"/></svg>');
    animation: statsRotate 30s linear infinite;
}

@keyframes statsRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #ffffff 0%, var(--helles-blau) 100%);
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(20, 21, 122, 0.1);
    border: 2px solid var(--hellblau);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gelber-balken);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(20, 21, 122, 0.2);
    border-color: var(--mittelblau);
}

.stat-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 64px;
    width: 64px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--hellgelber) 0%, var(--gelber-balken) 100%);
    border-radius: 16px;
    color: var(--dunkelblau);
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    background: linear-gradient(135deg, var(--gelber-balken) 0%, var(--hellgelber) 100%);
    transform: scale(1.05);
}

.stat-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dunkelblau);
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--mittelblau);
    line-height: 1.6;
    letter-spacing: 0.01em;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(241,245,249,0.9) 0%, rgba(226,232,240,0.8) 50%, rgba(248,250,252,0.9) 100%);
}

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

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(27, 77, 140, 0.15);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
}

.faq-question h3 {
    margin: 0;
    color: #1B4D8C;
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #1B4D8C;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: white;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 30px 25px;
    margin: 0;
    color: #475569;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 100px 40px 40px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s ease, opacity 0.4s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        visibility: hidden;
        opacity: 0;
    }
    
    .nav.active {
        right: 0;
        visibility: visible;
        opacity: 1;
    }
    
    .nav-link {
        margin: 16px 0;
        font-size: 18px;
        padding: 12px 0;
        border-bottom: 1px solid rgba(27, 77, 140, 0.1);
        width: 100%;
    }
    
    .nav-dropdown {
        width: 100%;
    }
    
    .nav-dropdown-btn {
        width: 100%;
        justify-content: space-between;
        padding: 12px 0;
        margin: 16px 0;
        border-bottom: 1px solid rgba(27, 77, 140, 0.1);
        font-size: 18px;
    }
    
    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(27, 77, 140, 0.05);
        border: none;
        box-shadow: none;
        margin: 0;
        padding: 0;
        min-width: auto;
        border-radius: 0;
        width: 100%;
    }
    
    .nav-dropdown-link {
        padding: 12px 20px;
        margin: 0;
        border-radius: 0;
        font-size: 16px;
        border-bottom: 1px solid rgba(27, 77, 140, 0.05);
        display: block;
        width: 100%;
    }
    
    .nav-dropdown-link:hover {
        transform: none;
        background: rgba(27, 77, 140, 0.1);
    }
    
    .nav-dropdown-btn[aria-expanded="true"] .dropdown-arrow {
        transform: rotate(180deg);
    }
    
    .nav-dropdown-btn[aria-expanded="true"] + .nav-dropdown-menu {
        display: block;
    }
    
    .nav-dropdown-btn[aria-expanded="false"] + .nav-dropdown-menu {
        display: none;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-item {
        padding: 30px 20px;
    }
    
    .stat-icon {
        height: 56px;
        width: 56px;
        margin-bottom: 20px;
    }
    
    .stat-title {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    

    
    /* Hero responsive */
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title,
    .hero-description {
        text-align: center;
    }
    
    .hero-cta {
        align-items: center;
    }
    
    .hero-img {
        max-width: 400px;
    }
}

/* Datenschutz Section */

/* Datenschutz Section */
.datenschutz {
    padding: 80px 0;
    background: var(--bg);
}

.datenschutz-content {
    max-width: 800px;
    margin: 0 auto;
}

.datenschutz-section {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 32px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(27, 77, 140, 0.1);
}

.datenschutz-section h3 {
    color: var(--brand);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    border-bottom: 2px solid var(--brand-light);
    padding-bottom: 12px;
}

.datenschutz-section h4 {
    color: var(--brand-dark);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 20px 0 12px 0;
}

.datenschutz-details p {
    margin-bottom: 16px;
    line-height: 1.7;
    color: var(--text);
}

/* Page Header Styles */
.page-header {
    padding: 120px 0 80px;
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.02)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.02)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.page-header-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.page-subtitle {
    font-size: 1.25rem;
    margin-bottom: 24px;
    opacity: 0.9;
    font-weight: 400;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 1;
}

/* Special Page Styles */
.impressum-page,
.datenschutz-page {
    padding: 80px 0;
    background: var(--bg);
}

.impressum-page .impressum-content,
.datenschutz-page .datenschutz-content {
    max-width: 900px;
    margin: 0 auto;
}

.impressum-page .impressum-section,
.datenschutz-page .datenschutz-section {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(27, 77, 140, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.impressum-page .impressum-section:hover,
.datenschutz-page .datenschutz-section:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.impressum-page .impressum-section h2,
.datenschutz-page .datenschutz-section h2 {
    color: var(--brand);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 32px;
    border-bottom: 3px solid var(--brand-light);
    padding-bottom: 16px;
}

.company-info h3 {
    color: var(--brand);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-box {
    background: rgba(27, 77, 140, 0.05);
    border: 1px solid rgba(27, 77, 140, 0.1);
    border-radius: 16px;
    padding: 24px;
    margin: 20px 0;
}

.contact-box p {
    margin: 0;
}

.datenschutz-details ul {
    margin: 16px 0;
    padding-left: 24px;
}

.datenschutz-details li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Active Navigation State */
.nav-link.active {
    color: var(--brand-accent);
    font-weight: 700;
}

.nav-link.active::after {
    width: 100%;
    background: var(--brand-accent);
}

/* Simple Text Block Styles */
.impressum-text,
.datenschutz-text {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(27, 77, 140, 0.1);
    line-height: 1.7;
}

.impressum-text h2,
.datenschutz-text h2 {
    color: var(--brand);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 32px;
    text-align: center;
}

.impressum-text h3,
.datenschutz-text h3 {
    color: var(--brand-dark);
    font-size: 1.4rem;
    font-weight: 600;
    margin: 32px 0 16px 0;
    padding-top: 24px;
    border-top: 1px solid rgba(27, 77, 140, 0.1);
}

.impressum-text h4,
.datenschutz-text h4 {
    color: var(--brand);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 24px 0 12px 0;
}

.impressum-text p,
.datenschutz-text p {
    margin-bottom: 16px;
    color: var(--text);
}

.impressum-text ul,
.datenschutz-text ul {
    margin: 16px 0;
    padding-left: 24px;
}

.impressum-text li,
.datenschutz-text li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.impressum-text a,
.datenschutz-text a {
    color: var(--brand);
    text-decoration: none;
    border-bottom: 1px solid var(--brand-light);
    transition: all 0.3s ease;
}

.impressum-text a:hover,
.datenschutz-text a:hover {
    color: var(--brand-dark);
    border-bottom-color: var(--brand-dark);
}

/* Remove hero background image and effects for legal pages */
.impressum-page .hero,
.datenschutz-page .hero {
    background: var(--bg) !important;
    background-image: none !important;
}

.impressum-page .hero::before,
.impressum-page .hero::after,
.datenschutz-page .hero::before,
.datenschutz-page .hero::after {
    display: none !important;
}

.impressum-page .hero-title,
.datenschutz-page .hero-title {
    text-shadow: none !important;
}

.impressum-page .hero-title::before,
.datenschutz-page .hero-title::before {
    display: none !important;
}

/* Legal Hero specific styles */
.legal-hero {
    background: var(--bg) !important;
    background-image: none !important;
    padding: 80px 0 60px;
}

.legal-hero::before,
.legal-hero::after {
    display: none !important;
}

.legal-hero .hero-title {
    text-shadow: none !important;
    color: var(--brand);
}

.legal-hero .hero-title::before {
    display: none !important;
}

.legal-hero .hero-description {
    color: var(--text);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Dropdown Menu Styles */
.nav-dropdown {
    position: relative;
    display: inline-block;
    height: auto;
    vertical-align: top;
}

.nav-dropdown-btn {
    background: none;
    border: none;
    color: var(--brand);
    font-weight: 600;
    letter-spacing: 0.02em;
    font-size: clamp(11px, 1.2vw, 16px);
    font-family: inherit;
    cursor: pointer;
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
    height: auto;
    line-height: 1;
}

.nav-dropdown-btn:hover {
    color: var(--brand-dark);
    transform: translateY(-1px);
}

.nav-dropdown-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.nav-dropdown-btn:hover::after {
    width: 100%;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(27, 77, 140, 0.1);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 12px 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-link {
    display: block;
    padding: 10px 20px;
    color: var(--brand);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    border-radius: 8px;
    margin: 0 8px;
}

.nav-dropdown-link:hover {
    background: rgba(27, 77, 140, 0.08);
    color: var(--brand-dark);
    transform: translateX(4px);
}


/* Produkte Section */
.produkte {
    padding: 80px 0;
    background: var(--bg);
}

.produkte .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.product-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand);
    margin-bottom: 24px;
    border-bottom: 2px solid var(--brand-light);
    padding-bottom: 12px;
}

.produkte .strapy-content {
    margin-bottom: 80px;
}

.produkte .strapy-content:last-child {
    margin-bottom: 0;
}