/**
 * Bewertungsexpress24 Partnership Screen CSS
 * 
 * Professionelles, modernes Dark Mode Design im Premium-Stil.
 * Hochwertige Landingpage mit Animationen, Glows und Gradients.
 */

/* Magic UI Animations */
@keyframes shine {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(59, 130, 246, 0.3); }
    50% { box-shadow: 0 0 40px rgba(59, 130, 246, 0.6); }
}

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

@keyframes shimmer-line {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

@keyframes fade-in-up {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dark Mode Hintergrund */
body {
    background-color: var(--color-dark-bg);
    color: #e5e7eb;
}

.layout-main {
    background-color: var(--color-dark-bg);
}

/* Override Base Widget Headlines for Dark Mode */
.widget-headline-h1,
.widget-headline-h1 h1,
.widget-headline-h2,
.widget-headline-h2 h2,
.widget-headline-h3,
.widget-headline-h3 h3,
.widget-headline-h4,
.widget-headline-h4 h4,
h1, h2, h3, h4, h5, h6 {
    color: #ffffff !important;
}

p, span, div, label {
    color: #e5e7eb;
}

/* Page Container */
.bewertungsexpress-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 60px 60px;
    background-color: var(--color-dark-bg);
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 100px 60px;
    background: linear-gradient(135deg, var(--color-dark-surface) 0%, var(--color-dark-bg) 100%);
    border-radius: 25px;
    margin-bottom: 80px;
    border: 2px solid transparent;
    background-image: 
        linear-gradient(135deg, var(--color-dark-surface) 0%, var(--color-dark-bg) 100%),
        linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #3b82f6 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 
        0 35px 90px rgba(0, 0, 0, 0.4),
        0 15px 40px rgba(0, 0, 0, 0.3),
        0 0 80px rgba(59, 130, 246, 0.4);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(59, 130, 246, 0.2) 0%,
        transparent 70%
    );
    animation: rotate-gradient 12s linear infinite;
}

.hero-title {
    font-family: var(--font-family-primary);
    font-size: 3.8rem;
    font-weight: 800;
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #93c5fd 40%,
        #c4b5fd 60%,
        #ffffff 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 30px 0;
    letter-spacing: -0.03em;
    line-height: 1.1;
    text-shadow: 
        0 3px 40px rgba(59, 130, 246, 0.6),
        0 5px 20px rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
    animation: shine 8s linear infinite;
}

.hero-subtitle {
    font-family: var(--font-family-primary);
    font-size: 1.6rem;
    color: #d1d5db;
    line-height: 1.7;
    margin: 0;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* Partnership Info Section */
.partnership-info-section {
    margin-bottom: 80px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.info-tile {
    background: rgba(255, 255, 255, 0.06);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.3),
        0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.info-tile::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(59, 130, 246, 0.1),
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.info-tile:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 8px 20px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(59, 130, 246, 0.4);
    border-color: rgba(59, 130, 246, 0.5);
}

.info-tile:hover::after {
    left: 50%;
}

.info-title {
    font-family: var(--font-family-primary);
    font-size: 1.3rem;
    font-weight: 700;
    color: #60a5fa;
    margin: 0 0 10px 0;
    text-shadow: 0 0 20px rgba(96, 165, 250, 0.4);
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.info-description {
    font-family: var(--font-family-primary);
    font-size: 1rem;
    color: #d1d5db;
    line-height: 1.6;
    margin: 0;
    word-break: break-word;
    overflow-wrap: break-word;
}

.info-tile-highlight {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
    border: 2px solid rgba(59, 130, 246, 0.4);
}

.info-tile-highlight .info-title {
    color: #93c5fd;
    text-shadow: 0 0 25px rgba(147, 197, 253, 0.6);
}

/* Partnership Details Section */
.partnership-details-section {
    margin: 80px 0;
    padding: 60px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 25px;
    border: 2px solid transparent;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.03)),
        linear-gradient(90deg, rgba(59, 130, 246, 0.4), rgba(139, 92, 246, 0.4), rgba(59, 130, 246, 0.4));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.4),
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(59, 130, 246, 0.2);
    position: relative;
    overflow: hidden;
}

.partnership-details-section::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.3), rgba(139, 92, 246, 0.3), rgba(59, 130, 246, 0.3));
    border-radius: 25px;
    z-index: -1;
    opacity: 0.3;
    filter: blur(25px);
}

.section-title {
    font-family: var(--font-family-primary);
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(
        to right,
        #ffffff 30%,
        #93c5fd 50%,
        #ffffff 70%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 50px 0;
    text-align: center;
    letter-spacing: -0.02em;
    animation: shine 7s linear infinite;
}

.details-content {
    max-width: 900px;
    margin: 0 auto;
}

.details-text {
    font-family: var(--font-family-primary);
    font-size: 1.15rem;
    line-height: 1.9;
    color: #e5e7eb;
    margin: 0 0 25px 0;
    text-align: left;
}

.partner-link-box {
    text-align: center;
    margin-top: 40px;
}

.partner-link-button {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    padding: 18px 40px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: 2px solid transparent;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font-family-primary);
    font-size: 1.1rem;
    box-shadow: 
        0 10px 30px rgba(16, 185, 129, 0.4),
        0 4px 12px rgba(16, 185, 129, 0.3),
        inset 0 -2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

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

.partner-link-button:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 20px 50px rgba(16, 185, 129, 0.6),
        0 8px 20px rgba(16, 185, 129, 0.5),
        inset 0 -2px 8px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.partner-link-button:hover::before {
    left: 100%;
}

/* Contact Person Section - Premium Style */
.contact-person-section {
    margin: 80px 0;
    padding: 70px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.9) 100%);
    border-radius: 30px;
    border: 3px solid transparent;
    background-image: 
        linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.9) 100%),
        linear-gradient(135deg, #3b82f6 0%, #8b5cf6 25%, #ec4899 50%, #8b5cf6 75%, #3b82f6 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    background-size: 100% 100%, 300% 300%;
    box-shadow: 
        0 30px 90px rgba(0, 0, 0, 0.6),
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(139, 92, 246, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    animation: gradient-shift 15s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%, 0% 50%; }
    50% { background-position: 0% 50%, 100% 50%; }
}

.contact-person-section::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.4), rgba(139, 92, 246, 0.4), rgba(236, 72, 153, 0.4), rgba(139, 92, 246, 0.4), rgba(59, 130, 246, 0.4));
    border-radius: 30px;
    z-index: -1;
    opacity: 0.5;
    filter: blur(40px);
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.5; transform: scale(0.98); }
    50% { opacity: 0.8; transform: scale(1.02); }
}

.contact-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-radius: 25px;
    padding: 50px 40px;
    text-align: center;
    border: 2px solid transparent;
    background-image: 
        linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%),
        linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(139, 92, 246, 0.3), rgba(59, 130, 246, 0.3));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 8px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    max-width: 700px;
    margin: 0 auto;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

.contact-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 
        0 35px 80px rgba(0, 0, 0, 0.5),
        0 15px 35px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(139, 92, 246, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.contact-card:hover::after {
    left: 100%;
}

.contact-image {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid transparent;
    background-image: 
        linear-gradient(white, white),
        linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    margin: 0 auto 30px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 8px 25px rgba(0, 0, 0, 0.4),
        0 0 50px rgba(139, 92, 246, 0.5),
        inset 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.contact-image::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
    filter: blur(20px);
}

.contact-card:hover .contact-image {
    transform: scale(1.12) translateY(-5px);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 12px 35px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(139, 92, 246, 0.8),
        inset 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: image-glow-pulse 2s ease-in-out infinite;
}

.contact-card:hover .contact-image::before {
    opacity: 0.8;
}

@keyframes image-glow-pulse {
    0%, 100% { 
        filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.6));
    }
    50% { 
        filter: drop-shadow(0 0 40px rgba(139, 92, 246, 0.9));
    }
}

.contact-card h3,
.contact-card .widget-headline-h3 {
    font-family: var(--font-family-primary);
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 20px 0 15px 0;
    text-shadow: 
        0 2px 25px rgba(255, 255, 255, 0.3),
        0 4px 15px rgba(59, 130, 246, 0.5),
        0 0 30px rgba(139, 92, 246, 0.4);
    letter-spacing: -0.02em;
}

.contact-role {
    font-family: var(--font-family-primary);
    background: linear-gradient(135deg, #60a5fa, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 15px 0 25px 0;
    letter-spacing: 0.5px;
}

.contact-description {
    font-family: var(--font-family-primary);
    line-height: 1.9;
    color: #e5e7eb;
    margin: 25px 0;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.contact-link-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    padding: 15px 30px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #3b82f6 100%);
    background-size: 200% auto;
    border: 2px solid transparent;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font-family-primary);
    font-size: 1rem;
    box-shadow: 
        0 10px 30px rgba(59, 130, 246, 0.4),
        0 4px 12px rgba(59, 130, 246, 0.3),
        inset 0 -2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-icon {
    width: 20px;
    height: 20px;
}

.linkedin-button {
    background: linear-gradient(135deg, #0077b5 0%, #005582 100%);
}

.email-button {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
}

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

.contact-link-button:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 20px 50px rgba(59, 130, 246, 0.6),
        0 8px 20px rgba(59, 130, 246, 0.5),
        inset 0 -2px 8px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

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

/* Benefits Section */
.benefits-section {
    margin: 80px 0;
    padding: 60px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 25px;
    border: 2px solid transparent;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.03)),
        linear-gradient(90deg, rgba(59, 130, 246, 0.4), rgba(139, 92, 246, 0.4), rgba(59, 130, 246, 0.4));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.4),
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(59, 130, 246, 0.2);
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.3), rgba(139, 92, 246, 0.3), rgba(59, 130, 246, 0.3));
    border-radius: 25px;
    z-index: -1;
    opacity: 0.3;
    filter: blur(25px);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.benefit-tile {
    background: rgba(255, 255, 255, 0.05);
    padding: 35px;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding-left: 80px;
}

.benefit-number {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-family-primary);
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
}

.benefit-title {
    font-family: var(--font-family-primary);
    font-size: 1.2rem;
    font-weight: 700;
    color: #60a5fa;
    margin: 0 0 12px 0;
}

.benefit-description {
    font-family: var(--font-family-primary);
    font-size: 1.05rem;
    color: #d1d5db;
    line-height: 1.7;
    margin: 0;
}

.benefit-tile:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 6px 15px rgba(0, 0, 0, 0.3),
        0 0 25px rgba(59, 130, 246, 0.3);
    border-color: rgba(59, 130, 246, 0.4);
}

.benefit-tile:hover .benefit-number {
    opacity: 0.6;
}

/* Contact Form Section */
.contact-form-section {
    margin: 80px 0;
    padding: 70px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 25px;
    border: 2px solid transparent;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.03)),
        linear-gradient(90deg, rgba(59, 130, 246, 0.4), rgba(139, 92, 246, 0.4), rgba(59, 130, 246, 0.4));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 12px 35px rgba(0, 0, 0, 0.4),
        0 0 35px rgba(59, 130, 246, 0.25);
    position: relative;
    overflow: hidden;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.3), rgba(139, 92, 246, 0.3), rgba(59, 130, 246, 0.3));
    border-radius: 25px;
    z-index: -1;
    opacity: 0.3;
    filter: blur(25px);
}

.form-description {
    font-family: var(--font-family-primary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 25px;
    background: rgba(59, 130, 246, 0.15);
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
    line-height: 1.8;
    font-size: 1.05rem;
    color: #93c5fd;
    font-weight: 500;
}

.success-message-box {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 
        0 15px 40px rgba(16, 185, 129, 0.4),
        0 5px 15px rgba(16, 185, 129, 0.3);
    text-align: center;
}

.success-text {
    font-family: var(--font-family-primary);
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.6;
}

.error-messages-box {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #ffffff;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 35px;
    box-shadow: 
        0 12px 35px rgba(220, 38, 38, 0.4),
        0 5px 15px rgba(220, 38, 38, 0.3);
}

.error-text {
    font-family: var(--font-family-primary);
    font-size: 0.98rem;
    margin: 0 0 12px 0;
    line-height: 1.6;
}

.error-text:last-child {
    margin-bottom: 0;
}

.contact-form {
    margin-top: 45px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-field {
    margin-bottom: 25px;
}

.form-field label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #ffffff;
    font-family: var(--font-family-primary);
    font-size: 1.05rem;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 1.05rem;
    font-family: var(--font-family-primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 0 0 4px rgba(59, 130, 246, 0.1),
        0 10px 30px rgba(59, 130, 246, 0.3),
        inset 0 1px 3px rgba(59, 130, 246, 0.2);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-submit {
    text-align: center;
    margin-top: 45px;
}

.submit-button {
    font-family: var(--font-family-primary);
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    padding: 20px 60px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(
        135deg,
        #3b82f6 0%,
        #2563eb 50%,
        #3b82f6 100%
    );
    background-size: 200% auto;
    box-shadow: 
        0 18px 45px rgba(59, 130, 246, 0.5),
        0 6px 18px rgba(59, 130, 246, 0.4),
        inset 0 -10px 25px rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 25px 60px rgba(59, 130, 246, 0.7),
        0 10px 25px rgba(59, 130, 246, 0.6),
        inset 0 -8px 25px rgba(255, 255, 255, 0.2);
    animation: glow-pulse 2s ease-in-out infinite;
}

.submit-button:hover::before {
    left: 100%;
}

.submit-button:active {
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .bewertungsexpress-container {
        padding: 40px 20px;
    }

    .hero-section {
        padding: 50px 25px;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .info-tile {
        padding: 25px 20px;
    }

    .info-title {
        font-size: 1rem;
        word-break: break-word;
        line-height: 1.3;
    }

    .info-description {
        font-size: 0.9rem;
        word-break: break-word;
        line-height: 1.5;
    }

    .partnership-details-section,
    .contact-person-section,
    .benefits-section,
    .contact-form-section {
        padding: 35px 25px;
        margin: 50px 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 25px;
    }

    .partnership-description {
        font-size: 1.05rem;
        line-height: 1.7;
    }

    .contact-card {
        padding: 35px 20px;
    }

    .contact-image {
        width: 150px;
        height: 150px;
    }

    .contact-card h3,
    .contact-card .widget-headline-h3 {
        font-size: 1.8rem;
    }

    .contact-role {
        font-size: 1rem;
    }

    .contact-links {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .contact-link-button {
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 14px 20px;
        font-size: 0.95rem;
    }

    .benefits-grid {
        gap: 20px;
    }

    .benefit-tile {
        padding: 25px 20px;
    }

    .benefit-number {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        display: block;
        margin-bottom: 15px;
        font-size: 2rem;
    }

    .benefit-title {
        font-size: 1.1rem;
    }

    .benefit-description {
        font-size: 0.95rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

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

    .submit-button {
        width: 100%;
        padding: 16px;
        font-size: 1.1rem;
    }

    .binding-notice {
        font-size: 0.95rem;
        padding: 20px;
    }

    .success-message-box {
        padding: 20px;
        margin-bottom: 40px;
    }

    .success-text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .bewertungsexpress-container {
        padding: 30px 15px;
    }

    .hero-section {
        padding: 40px 20px;
    }

    .hero-title {
        font-size: 1.9rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }

    .info-grid {
        gap: 12px;
    }

    .info-tile {
        padding: 20px;
    }

    .info-title {
        font-size: 0.9rem;
        margin-bottom: 8px;
        word-break: break-word;
        line-height: 1.3;
    }

    .info-description {
        font-size: 0.8rem;
        word-break: break-word;
        line-height: 1.5;
    }

    .partnership-details-section,
    .contact-person-section,
    .benefits-section,
    .contact-form-section {
        padding: 25px 20px;
        margin: 40px 0;
    }

    .section-title {
        font-size: 1.7rem;
        margin-bottom: 20px;
    }

    .partnership-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .contact-card {
        padding: 30px 20px;
    }

    .contact-image {
        width: 130px;
        height: 130px;
    }

    .contact-card h3,
    .contact-card .widget-headline-h3 {
        font-size: 1.5rem;
    }

    .contact-role {
        font-size: 0.9rem;
    }

    .contact-link-button {
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .benefit-tile {
        padding: 20px;
    }

    .benefit-number {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .benefit-title {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .benefit-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }

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

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

    .submit-button {
        width: 100%;
        padding: 14px;
        font-size: 1rem;
    }

    .binding-notice {
        font-size: 0.85rem;
        padding: 18px;
        line-height: 1.6;
    }

    .success-message-box {
        padding: 18px;
        margin-bottom: 30px;
    }

    .success-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

