/* ============================================================================
   STARTSEITE CSS - höchstmass staff GmbH
   ============================================================================
   
   Seitenspezifische Styles für die Startseite
   - Hero Section (+ btn-secondary override für dunkle Hintergründe)
   - Stats Bar
   - Logo Marquee
   - Services Grid (erweiterte Karten)
   - Self-Service Comparison
   - Benefits Section
   - References Grid
   - Industries Grid
   - Process Steps
   - Testimonials
   - FAQ Accordion
   - WebApp Showcase
   - Final CTA
   
   ============================================================================ */

/* ============================================
   HERO SECTION
============================================ */
.hero {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.88) 0%, rgba(21, 40, 64, 0.94) 100%);
    padding: 180px 0 160px;
    position: relative;
    overflow: hidden;
    min-height: 95vh;
    display: flex;
    align-items: center;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.02)"/></svg>');
    background-size: 200px;
    opacity: 0.5;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 250px;
    background: linear-gradient(to top, rgba(21, 40, 64, 0.6), transparent);
}

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

.hero-content {
    max-width: 780px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 12px 20px;
    border-radius: 50px;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: var(--success);
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 28px;
}

.hero h1 span {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 640px;
}

.hero-ctas {
    display: flex;
    gap: 18px;
    margin-bottom: 48px;
}

/* BUTTON-FIX: btn-secondary auf dunklem Hintergrund */
.hero .btn-secondary,
.final-cta .btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
}

.hero .btn-secondary:hover,
.final-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.hero-trust {
    display: flex;
    gap: 36px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
}

.trust-item i {
    color: var(--success);
}

.trust-item strong {
    color: var(--white);
}

/* ============================================
   STATS BAR
============================================ */
.stats-bar {
    background: var(--white);
    padding: 50px 60px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    margin-top: -80px;
    position: relative;
    z-index: 10;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    min-height: 140px; /* Prevent CLS */
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
    border-right: 1px solid var(--gray-200);
    padding-right: 40px;
}

.stat-item:last-child {
    border-right: none;
    padding-right: 0;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-number span {
    color: var(--accent);
}

.stat-label {
    font-size: 15px;
    color: var(--gray-500);
    font-weight: 500;
}

/* ============================================
   LOGO MARQUEE
============================================ */
.logo-marquee {
    padding: 80px 0;
    background: var(--gray-50);
    overflow: hidden;
}

.marquee-title {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

.logo-track {
    display: flex;
    width: max-content;
    animation: marquee 40s linear infinite;
}

.logo-set {
    display: flex;
    gap: 80px;
    flex-shrink: 0;
    padding-right: 80px;
}

.logo-item {
    height: 40px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s;
}

.logo-item:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.333%); }
}

/* ============================================
   SERVICES / LEISTUNGEN (erweitert)
============================================ */
.services-section {
    padding: 80px 0 120px;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

.services-section .section-header {
    position: relative;
    padding-bottom: 40px;
    margin-bottom: 70px;
}

.services-section .section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.services-section .section-title {
    font-size: clamp(38px, 5vw, 52px);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--success-light);
    color: var(--success);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 22px;
}

.section-label.accent {
    background: #f7ebe0;
    color: #e67e22;
}

.section-label.primary {
    background: #e8ebef;
    color: var(--primary);
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.7;
}

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

/* Erweiterte Service Cards mit Bildern */
.service-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: visible;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(30, 58, 95, 0.15);
}

.service-image {
    position: relative;
    height: 260px;
    overflow: hidden;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

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

.service-icon-badge {
    position: absolute;
    top: 232px;
    left: 28px;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 20;
}

.service-content {
    padding: 48px 36px 36px;
    flex: 1;
    display: flex;
    flex-direction: column;
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    background: var(--white);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.service-content h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.service-content p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-700);
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-100);
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li i {
    flex-shrink: 0;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 15px;
    margin-top: auto;
    transition: gap 0.2s;
}

.service-card:hover .service-cta {
    gap: 12px;
}

/* Service Card Farbvarianten */

/* Aushilfen & Leiharbeiter - Petrol/Teal */
.service-card-teal .service-content::after {
    background: var(--teal);
}

.service-card-teal:hover {
    box-shadow: 0 25px 50px -12px rgba(13, 148, 136, 0.25);
}

.service-card-teal .service-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 148, 136, 0.85) 0%, rgba(13, 148, 136, 0.2) 40%, transparent 70%);
}

.service-card-teal .service-icon-badge {
    background: var(--teal);
    color: white;
}

.service-card-teal .service-list li i {
    color: var(--teal);
}

.service-card-teal .service-cta {
    color: var(--teal-dark);
}

.service-card-teal .service-cta:hover {
    color: var(--teal);
}

/* Messe & Event - Fuchsia/Magenta */
.service-card-fuchsia .service-content::after {
    background: var(--fuchsia);
}

.service-card-fuchsia:hover {
    box-shadow: 0 25px 50px -12px rgba(192, 38, 211, 0.25);
}

.service-card-fuchsia .service-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(192, 38, 211, 0.85) 0%, rgba(192, 38, 211, 0.2) 40%, transparent 70%);
}

.service-card-fuchsia .service-icon-badge {
    background: var(--fuchsia);
    color: white;
}

.service-card-fuchsia .service-list li i {
    color: var(--fuchsia);
}

.service-card-fuchsia .service-cta {
    color: var(--fuchsia-dark);
}

.service-card-fuchsia .service-cta:hover {
    color: var(--fuchsia);
}

/* Professionals - Royalblau */
.service-card-royal .service-content::after {
    background: var(--royal);
}

.service-card-royal:hover {
    box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.25);
}

.service-card-royal .service-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(37, 99, 235, 0.85) 0%, rgba(37, 99, 235, 0.2) 40%, transparent 70%);
}

.service-card-royal .service-icon-badge {
    background: var(--royal);
    color: white;
}

.service-card-royal .service-list li i {
    color: var(--royal);
}

.service-card-royal .service-cta {
    color: var(--royal-dark);
}

.service-card-royal .service-cta:hover {
    color: var(--royal);
}

/* ============================================
   SELF-SERVICE COMPARISON (Dark Background Style)
============================================ */
.self-service-section {
    padding: 56px 0;
    background: linear-gradient(135deg, #1e3a5f 0%, #152840 100%);
    position: relative;
    overflow: hidden;
}

.self-service-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(230, 126, 34, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.self-service-section .section-header {
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
}

.self-service-section .section-label {
    background: rgba(230, 126, 34, 0.2);
    color: var(--accent);
    border: 1px solid rgba(230, 126, 34, 0.4);
    padding: 8px 14px;
    font-size: 11px;
}

.self-service-section .section-title {
    color: var(--white);
    font-size: clamp(26px, 3.5vw, 38px);
    margin-bottom: 12px;
}

.self-service-section .section-subtitle {
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    max-width: 560px;
    margin: 0 auto;
}

.service-comparison {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    gap: 0;
    align-items: stretch;
    max-width: 920px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.comparison-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.comparison-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.comparison-card.highlight {
    background: linear-gradient(135deg, var(--accent) 0%, #d35400 100%);
    color: var(--white);
}

.comparison-card.highlight .comparison-feature {
    color: rgba(255, 255, 255, 0.95);
}

.comparison-card.highlight .comparison-feature i {
    color: var(--white);
}

.comparison-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--success);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.35);
}

.comparison-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.comparison-card:not(.highlight) .comparison-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
}

.comparison-card.highlight .comparison-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.comparison-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}

.comparison-card:not(.highlight) h3 {
    color: var(--gray-900);
}

.comparison-card.highlight h3 {
    color: var(--white);
}

.comparison-tagline {
    font-size: 13px;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--gray-200);
}

.comparison-card:not(.highlight) .comparison-tagline {
    color: var(--gray-600);
}

.comparison-card.highlight .comparison-tagline {
    color: rgba(255, 255, 255, 0.85);
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.comparison-features {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
}

.comparison-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    margin-bottom: 10px;
}

.comparison-card:not(.highlight) .comparison-feature {
    color: var(--gray-700);
}

.comparison-feature i {
    flex-shrink: 0;
    margin-top: 1px;
    width: 16px;
    height: 16px;
}

.comparison-card:not(.highlight) .comparison-feature i {
    color: var(--success);
}

.comparison-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.comparison-card:not(.highlight) .comparison-cta {
    background: var(--primary);
    color: var(--white);
}

.comparison-card:not(.highlight) .comparison-cta:hover {
    background: #152d4a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(30, 58, 95, 0.3);
}

.comparison-card.highlight .comparison-cta {
    background: rgba(255, 255, 255, 0.95);
    color: var(--accent);
}

.comparison-card.highlight .comparison-cta:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.comparison-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 13px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.comparison-card.highlight .comparison-link {
    color: rgba(255, 255, 255, 0.85);
}

.comparison-card.highlight .comparison-link:hover {
    color: var(--white);
}

.comparison-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-or {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   WARUM HÖCHSTMASS (BENEFITS)
============================================ */
.benefits-section {
    padding: 140px 0;
    background: var(--gray-50);
}

.benefits-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.benefits-intro-text .section-label {
    margin-bottom: 20px;
}

.benefits-intro-text h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 20px;
    line-height: 1.2;
}

.benefits-intro-text p {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 32px;
}

.benefits-intro-image {
    position: relative;
}

.benefits-intro-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

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

.benefit-card {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: #254267;
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: #254267;
    color: #ffffff;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 15px;
}

/* ============================================
   REFERENZEN
============================================ */
.references-section {
    padding: 120px 0;
    background: var(--white);
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.reference-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    text-decoration: none;
    transition: all 0.4s;
    border: 1px solid var(--gray-200);
}

.reference-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.reference-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.reference-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

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

.reference-brand {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-900);
}

.reference-content {
    padding: 28px;
}

.reference-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.reference-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 12px;
}

.reference-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gray-500);
    font-size: 13px;
}

.reference-content p {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 14px;
}

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

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    font-size: 16px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

/* ============================================
   BRANCHEN / INDUSTRIES
============================================ */
.industries-section {
    padding: 140px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.industries-section .section-label {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.industries-section .section-title {
    color: var(--white);
}

.industries-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.industry-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s;
}

.industry-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.25);
}

.industry-icon {
    width: 78px;
    height: 78px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--white);
}

.industry-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.industry-card p {
    font-size: 14px;
    opacity: 0.85;
    line-height: 1.55;
    color: var(--white);
}

/* ============================================
   STANDORTE / MESSESTÄDTE
============================================ */
.locations-section {
    padding: 120px 0;
    background: var(--gray-50);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.location-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--gray-800);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
}

.location-card i {
    color: var(--fuchsia);
    flex-shrink: 0;
}

.location-card:hover {
    border-color: var(--fuchsia);
    color: var(--fuchsia-dark);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(192, 38, 211, 0.12);
}

.locations-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.location-highlight {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 28px;
    background: linear-gradient(135deg, var(--fuchsia) 0%, var(--fuchsia-dark) 100%);
    border-radius: var(--radius-xl);
    text-decoration: none;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(192, 38, 211, 0.2);
    transition: all 0.3s;
}

.location-highlight:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(192, 38, 211, 0.3);
}

.location-highlight-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.location-highlight-text {
    flex: 1;
}

.location-highlight-text strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--white);
}

.location-highlight-text span {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.4;
}

.location-highlight-arrow {
    flex-shrink: 0;
    transition: transform 0.3s;
}

.location-highlight:hover .location-highlight-arrow {
    transform: translateX(4px);
}

/* Erweiterter Footer auf der Startseite: Highlight-Links in Orange statt Fuchsia */
.footer-locations .footer-location-links a.footer-highlight-link {
    color: var(--accent);
}

.footer-locations .footer-location-links a.footer-highlight-link:hover {
    color: var(--accent-light);
}

/* ============================================
   PROZESS / PROCESS STEPS
============================================ */
.process-section {
    padding: 140px 0;
    background: var(--white);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin-top: 70px;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 130px;
    right: 130px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    z-index: 0;
    border-radius: 3px;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.step-number {
    width: 120px;
    height: 120px;
    background: var(--white);
    border: 5px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    font-size: 44px;
    font-weight: 800;
    color: var(--primary);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s;
}

.step-number.active {
    background: var(--primary);
    color: var(--white);
}

.process-step:hover .step-number {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    transform: scale(1.08);
}

.process-step h3 {
    font-size: 21px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 14px;
}

.process-step p {
    font-size: 15px;
    color: var(--gray-500);
    max-width: 280px;
    margin: 0 auto;
    line-height: 1.65;
}

.step-time {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--success-light);
    color: var(--success);
    padding: 10px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 20px;
}

/* ============================================
   TESTIMONIALS
============================================ */
.testimonials-section {
    padding: 140px 0;
    background: var(--gray-50);
}

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

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 28px;
    right: 36px;
    font-size: 110px;
    font-family: Georgia, serif;
    color: var(--gray-100);
    line-height: 1;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
}

.testimonial-rating i {
    color: #fbbf24;
}

.testimonial-text {
    font-size: 17px;
    color: var(--gray-700);
    line-height: 1.75;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
    font-style: italic;
}

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

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 20px;
}

.testimonial-info h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--gray-900);
}

.testimonial-info p {
    font-size: 14px;
    color: var(--gray-500);
}

/* ============================================
   FAQ SECTION
============================================ */
.faq-section {
    padding: 120px 0;
    background: var(--gray-50);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.faq-item {
    background: white;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 20px rgba(230, 126, 34, 0.1);
}

.faq-item.active {
    border-color: var(--accent);
    box-shadow: 0 8px 30px rgba(230, 126, 34, 0.15);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0;
    padding-right: 20px;
}

.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    transition: all 0.3s;
}

.faq-item.active .faq-icon {
    background: var(--accent);
    color: white;
    transform: rotate(180deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows 0.35s ease-out;
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer-inner {
    min-height: 0;
    padding: 0 28px;
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
    transition: padding 0.35s ease-out;
}

.faq-item.active .faq-answer-inner {
    padding: 0 28px 24px;
}

.faq-answer-inner p {
    margin-bottom: 16px;
}

.faq-answer-inner ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-answer-inner li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
}

.faq-answer-inner li i {
    color: var(--success);
    flex-shrink: 0;
    margin-top: 3px;
}

.faq-cta {
    text-align: center;
    margin-top: 48px;
}

.faq-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    padding: 12px 24px;
    border: 2px solid var(--accent);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.faq-cta a:hover {
    background: var(--accent);
    color: white;
}

/* ============================================
   WEBAPP SHOWCASE
============================================ */
.webapp-section {
    padding: 120px 0;
    background: var(--white);
}

.webapp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.webapp-content h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 20px;
    line-height: 1.2;
}

.webapp-content > p {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 40px;
}

.webapp-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.webapp-feature {
    display: flex;
    gap: 20px;
}

.webapp-feature-icon {
    width: 52px;
    height: 52px;
    background: var(--primary-light);
    color: var(--white);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.webapp-feature-text h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 6px;
}

.webapp-feature-text p {
    color: var(--gray-600);
    font-size: 15px;
    line-height: 1.6;
}

.webapp-mockup {
    background: var(--gray-900);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.mockup-browser {
    background: var(--gray-800);
    padding: 12px 16px;
    display: flex;
    align-items: center;
}

.mockup-dots {
    display: flex;
    gap: 8px;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-600);
}

.mockup-dots span:first-child {
    background: #ef4444;
}

.mockup-dots span:nth-child(2) {
    background: #fbbf24;
}

.mockup-dots span:last-child {
    background: #22c55e;
}

.mockup-content img {
    width: 100%;
    display: block;
}

/* ============================================
   FINAL CTA
============================================ */
.final-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230, 126, 34, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.final-cta h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}

.final-cta h2 span {
    color: var(--accent);
}

.final-cta > .container > p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 48px;
}

.trust-badges {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
}

.trust-badge i {
    color: var(--success);
}

.cta-contact {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-item a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--accent);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
    .services-grid,
    .benefits-grid,
    .references-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    .process-steps {
        flex-wrap: wrap;
        justify-content: center;
        gap: 48px 32px;
    }
    
    .process-step {
        flex: 0 0 calc(50% - 16px);
    }
    
    .process-steps::before {
        display: none;
    }
    
    .webapp-grid,
    .benefits-intro {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .webapp-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 150px 0 120px;
        min-height: auto;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 17px;
    }
    
    .hero-ctas {
        flex-direction: column;
    }
    
    .hero-ctas .btn-primary,
    .hero-ctas .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-trust {
        flex-direction: column;
        gap: 18px;
    }
    
    .stats-bar {
        margin-top: 0;
        border-radius: 0;
        margin-left: -24px;
        margin-right: -24px;
        max-width: none;
        padding: 40px 24px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
    }
    
    .stat-item {
        border-right: none;
        padding-right: 0;
        padding-bottom: 28px;
        border-bottom: 1px solid var(--gray-200);
    }
    
    .stat-item:nth-child(3),
    .stat-item:nth-child(4) {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .services-section,
    .benefits-section,
    .references-section,
    .industries-section,
    .process-section,
    .testimonials-section,
    .faq-section,
    .webapp-section {
        padding: 80px 0;
    }
    
    .services-grid,
    .benefits-grid,
    .references-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-step {
        flex: 0 0 100%;
    }
    
    .step-number {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }
    
    .service-comparison {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 400px;
    }
    
    .comparison-divider {
        padding: 8px 0;
    }
    
    .comparison-or {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }
    
    .self-service-section {
        padding: 44px 0;
    }
    
    .benefits-intro-text h2,
    .webapp-content h2 {
        font-size: 32px;
    }
    
    .final-cta {
        padding: 80px 0;
    }
    
    .final-cta h2 {
        font-size: 32px;
    }
    
    .final-cta .cta-buttons {
        flex-direction: column;
    }
    
    .final-cta .cta-buttons .btn-primary,
    .final-cta .cta-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    
    .cta-contact {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 30px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
    }

    .final-cta {
        padding: 60px 0;
    }
}

/* ============================================
   STANDORTE / MESSESTÄDTE - RESPONSIVE
============================================ */
@media (max-width: 1024px) {
    .locations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .locations-section {
        padding: 80px 0;
    }

    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .locations-highlights {
        grid-template-columns: 1fr;
    }
}

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