/**
 * Home Screen CSS
 * 
 * Premium B2B Design mit Farbakzenten, Glassmorphism und hochwertigen Shadows
 */

.home-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

/* Hero Section - Apple-Style Glassmorphism mit Animated Grid */
.home-hero {
    text-align: center;
    padding: var(--space-xxxl) var(--space-lg);
    background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Home Quote Section */
.home-quote {
    padding: var(--space-xxxl) var(--space-xl);
    background: linear-gradient(180deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
    position: relative;
    overflow: hidden;
}

/* Magic UI Quote Wrapper */
.home-quote-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto var(--space-xxxl) auto;
}

/* Magic UI Quote Border Beam Effect */
.home-quote-border {
    position: absolute;
    inset: 0;
    border-radius: 32px;
    padding: 2px;
    background: linear-gradient(135deg, 
        rgba(0, 201, 183, 0.8) 0%,
        rgba(255, 107, 53, 0.8) 25%,
        rgba(0, 201, 183, 0.8) 50%,
        rgba(255, 107, 53, 0.8) 75%,
        rgba(0, 201, 183, 0.8) 100%);
    background-size: 400% 400%;
    animation: border-beam 8s ease-in-out infinite;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
}

@keyframes border-beam {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Quote Styling */
.home-quote-content {
    font-family: var(--font-family-base);
    font-size: var(--font-size-large);
    color: var(--color-text-primary);
    text-align: center;
    line-height: var(--line-height-relaxed);
    padding: var(--space-xxl);
    background: linear-gradient(135deg, 
        rgba(15, 23, 42, 0.95) 0%,
        rgba(30, 41, 59, 0.9) 50%,
        rgba(15, 23, 42, 0.95) 100%);
    backdrop-filter: blur(60px) saturate(200%);
    -webkit-backdrop-filter: blur(60px) saturate(200%);
    border-radius: 30px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    font-weight: var(--font-weight-medium);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.8),
        0 40px 100px rgba(255, 107, 53, 0.3),
        0 0 0 1px rgba(255, 107, 53, 0.2) inset,
        inset 0 -2px 0 rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    overflow: hidden;
    animation: quote-glow 4s ease-in-out infinite alternate;
}

@keyframes quote-glow {
    0% {
        box-shadow: 
            0 20px 60px rgba(0, 0, 0, 0.8),
            0 40px 100px rgba(255, 107, 53, 0.3),
            0 0 0 1px rgba(255, 107, 53, 0.2) inset,
            inset 0 -2px 0 rgba(0, 0, 0, 0.3);
    }
    100% {
        box-shadow: 
            0 25px 80px rgba(0, 0, 0, 0.9),
            0 50px 120px rgba(255, 107, 53, 0.4),
            0 0 0 1px rgba(255, 107, 53, 0.3) inset,
            inset 0 -2px 0 rgba(0, 0, 0, 0.4);
    }
}

/* Quote Text mit Magic UI Sparkle Effect */
.home-quote-text {
    position: relative;
    font-style: italic;
    margin-bottom: var(--space-lg);
}

/* Magic UI Sparkle Animation */
.home-quote-sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, #FF6B35, #00C9B7);
    border-radius: 50%;
    animation: sparkle 3s ease-in-out infinite;
    opacity: 0;
}

.home-quote-sparkle:nth-child(2) {
    top: 20%;
    left: 10%;
    animation-delay: 0.5s;
}

.home-quote-sparkle:nth-child(3) {
    top: 40%;
    right: 15%;
    animation-delay: 1s;
}

.home-quote-sparkle:nth-child(4) {
    bottom: 30%;
    left: 20%;
    animation-delay: 1.5s;
}

.home-quote-sparkle:nth-child(5) {
    top: 60%;
    right: 25%;
    animation-delay: 2s;
}

.home-quote-sparkle:nth-child(6) {
    bottom: 10%;
    right: 10%;
    animation-delay: 2.5s;
}

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

/* Quote Author */
.home-quote-author {
    display: block;
    font-size: var(--font-size-medium);
    color: var(--color-text-secondary);
    font-style: normal;
    margin-top: var(--space-lg);
    font-weight: var(--font-weight-medium);
}

/* Hover Effect für Quote */
.home-quote-content:hover {
    transform: scale(1.02);
    animation-duration: 3s;
}

/* Quote CTA Button */
.home-quote-cta {
    text-align: center;
    margin: var(--space-xxxl) auto;
    max-width: 1000px;
}

.home-quote-button {
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
    font-size: var(--font-size-large);
    padding: var(--space-lg) var(--space-xxxl);
    min-width: 300px;
    font-weight: var(--font-weight-bold);
    letter-spacing: 1.5px;
    text-decoration: none;
    display: inline-block;
}

.home-quote-button:hover {
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.5);
    transform: scale(1.05);
    text-decoration: none;
}

/* Animated Grid Pattern Background - Dark Mode */
.home-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 107, 53, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 53, 0.1) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: grid-move 20s linear infinite;
    opacity: 0.6;
}

/* Glassmorphism Overlay mit Binary Code - Dark Mode */
.home-hero::after {
    content: '01001000 01010100 01001101 01001100 00100000 01000011 01010011 01010011 00100000 01010000 01001000 01010000 00100000 01001010 01010011';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: rgba(255, 107, 53, 0.05);
    letter-spacing: 8px;
    line-height: 2.5;
    word-wrap: break-word;
    text-align: center;
    padding: var(--space-xl);
    background: radial-gradient(circle at 30% 40%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(0, 201, 183, 0.12) 0%, transparent 50%);
    backdrop-filter: blur(1px);
    animation: glow-move 15s ease-in-out infinite;
    overflow: hidden;
    pointer-events: none;
}

@keyframes grid-move {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(60px, 60px);
    }
}

@keyframes glow-move {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
}

.home-hero .headline-h1 {
    margin-bottom: var(--space-xl);
    position: relative;
    z-index: 1;
    
    /* Premium Gradient Text */
    background: linear-gradient(135deg, 
        #FFFFFF 0%,
        #FFE8DC 25%,
        #FFFFFF 50%,
        #DCF5F2 75%,
        #FFFFFF 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    
    /* Multi-Layer Text Shadow für Tiefe */
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3))
            drop-shadow(0 8px 16px rgba(255, 107, 53, 0.4))
            drop-shadow(0 12px 24px rgba(0, 201, 183, 0.3));
    
    /* Animierter Gradient */
    animation: shimmer 8s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

/* Glow-Effekt bei Hover */
.home-hero .headline-h1:hover {
    animation: shimmer 3s ease-in-out infinite, glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% {
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3))
                drop-shadow(0 8px 16px rgba(255, 107, 53, 0.4))
                drop-shadow(0 12px 24px rgba(0, 201, 183, 0.3));
    }
    50% {
        filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4))
                drop-shadow(0 12px 24px rgba(255, 107, 53, 0.6))
                drop-shadow(0 18px 36px rgba(0, 201, 183, 0.5));
    }
}

.home-hero-subtitle {
    font-family: var(--font-family-base);
    font-size: var(--font-size-xlarge);
    color: rgba(255, 255, 255, 0.95);
    margin-top: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: var(--line-height-relaxed);
    font-weight: var(--font-weight-medium);
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

/* Content Sections - Alternierende Backgrounds */
.home-section {
    padding: var(--space-xxxl) var(--space-xl);
}

.home-problem {
    background: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
}

/* Problem Content - Apple Glassmorphism mit Tech-Pattern */
.home-problem-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

/* Subtle Terminal-Style Pattern */
.home-problem-content::before {
    content: '> error_log | grep "SEO"';
    position: absolute;
    top: 0;
    left: -20px;
    font-family: 'Courier New', monospace;
    font-size: 10px;
    color: rgba(220, 53, 69, 0.04);
    letter-spacing: 1px;
    pointer-events: none;
    writing-mode: vertical-lr;
    text-orientation: mixed;
}

.home-problem-paragraph {
    margin-bottom: var(--space-xxxl);
    padding: var(--space-xxl);
    padding-left: calc(var(--space-xxl) + 25px);
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(30px) saturate(150%);
    -webkit-backdrop-filter: blur(30px) saturate(150%);
    border-left: 3px solid var(--color-error);
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(234, 88, 12, 0.2),
        0 0 0 1px rgba(255, 107, 53, 0.1) inset;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Subtle Error-Code Symbol */
.home-problem-paragraph::after {
    content: '!';
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Courier New', monospace;
    font-size: 48px;
    font-weight: bold;
    color: rgba(220, 53, 69, 0.06);
    line-height: 1;
    pointer-events: none;
}

.home-problem-paragraph::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(220, 53, 69, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.home-problem-paragraph:hover::before {
    opacity: 1;
}

.home-problem-paragraph:hover {
    border-left-width: 4px;
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(50px) saturate(180%);
    box-shadow: 
        0 16px 48px rgba(234, 88, 12, 0.3),
        0 0 0 1px rgba(255, 107, 53, 0.2) inset;
    transform: translateX(8px) translateY(-4px);
}

.home-problem-subtitle {
    font-size: var(--font-size-xlarge);
    font-weight: var(--font-weight-bold);
    color: var(--color-error);
    margin-bottom: var(--space-lg);
    line-height: var(--line-height-tight);
}

.home-problem-text {
    font-size: var(--font-size-medium);
    line-height: var(--line-height-relaxed);
    color: var(--color-text-primary);
    margin: 0;
}

.home-solution {
    background: linear-gradient(180deg, #1E293B 0%, #0F172A 100%);
    position: relative;
}

/* Subtle Dot-Pattern für Solution-Background */
.home-solution::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 107, 53, 0.04) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.6;
}

.home-process {
    background: #0F172A;
}

.home-benefits {
    background: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
}

.home-section h2 {
    text-align: center;
    margin-bottom: var(--space-xxl);
    color: var(--color-text-primary);
}

.home-section-intro {
    font-size: var(--font-size-large);
    line-height: var(--line-height-relaxed);
    color: var(--color-text-secondary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-xxl) auto;
}

/* Content Grid - Fixed Professional Layout */
.home-content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xxl);
    margin-top: var(--space-xl);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Solution Section - Professional 5-Card Layout */
.home-grid-5 {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xxxl);
    max-width: 1100px;
    position: relative;
    z-index: 1;
}

.home-grid-5 .home-card:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 60%;
    margin: 0 auto;
}

/* Solution Cards - Enhanced Premium Dark Style */
.home-solution .home-card {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(50px) saturate(200%);
    -webkit-backdrop-filter: blur(50px) saturate(200%);
    border: 1.5px solid rgba(255, 107, 53, 0.2);
    border-radius: 28px;
    padding: var(--space-xxxl);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.6),
        0 30px 70px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 107, 53, 0.1) inset,
        inset 0 -2px 0 rgba(0, 0, 0, 0.3);
}

.home-solution .home-card:hover {
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(70px) saturate(220%);
    box-shadow:
        0 28px 60px rgba(0, 0, 0, 0.8),
        0 50px 100px rgba(255, 107, 53, 0.2),
        0 0 0 1px rgba(255, 107, 53, 0.2) inset,
        0 0 100px rgba(255, 107, 53, 0.3);
    transform: translateY(-20px) scale(1.04);
}

/* Benefits Section - Compact 2-Column Layout */
.home-grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xxl);
    max-width: 1000px;
    margin: 0 auto;
}

/* Billing Section - Compact 2-Column Layout */
.home-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xxl);
    max-width: 1000px;
    margin: 0 auto;
}

/* Benefits Cards - Compact Professional Style */
.home-benefits .home-card {
    padding: var(--space-xxl);
    min-height: 240px;
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(20px) saturate(120%);
    -webkit-backdrop-filter: blur(20px) saturate(120%);
    border: 1px solid rgba(0, 201, 183, 0.15);
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(0, 201, 183, 0.08) inset;
}

.home-benefits .home-card:hover {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(0, 201, 183, 0.25);
    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(0, 201, 183, 0.12) inset;
    transform: translateY(-4px);
}

.home-benefits .home-card-title {
    font-size: var(--font-size-xlarge);
    margin-bottom: var(--space-lg);
    color: var(--color-secondary);
    letter-spacing: -0.2px;
}

.home-benefits .home-card-text {
    font-size: var(--font-size-medium);
    line-height: 1.5;
    color: var(--color-text-secondary);
}

/* Billing Section - Compact Dark Style */
.home-billing {
    padding: var(--space-xxl) var(--space-xl);
    background: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
    position: relative;
    overflow: hidden;
}

.home-billing-subtitle {
    font-size: var(--font-size-xxlarge);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    text-align: center;
    margin: var(--space-md) 0 var(--space-lg) 0;
    letter-spacing: -0.3px;
}

.home-billing-models-title {
    font-size: var(--font-size-xxlarge);
    font-weight: var(--font-weight-bold);
    color: var(--color-secondary);
    text-align: center;
    margin: var(--space-xxl) 0 var(--space-lg) 0;
    letter-spacing: -0.3px;
}

/* Billing Models Grid - Separate from advantages */
.home-billing-models {
    margin-bottom: var(--space-xxl);
}

.home-billing-advantages {
    margin-top: var(--space-xxl);
}

/* Billing Cards - Compact Orange Accent Style */
.home-billing .home-card {
    padding: var(--space-xxl);
    min-height: 220px;
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(20px) saturate(120%);
    -webkit-backdrop-filter: blur(20px) saturate(120%);
    border: 1px solid rgba(255, 107, 53, 0.15);
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 107, 53, 0.08) inset;
}

.home-billing .home-card:hover {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(255, 107, 53, 0.25);
    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 107, 53, 0.12) inset;
    transform: translateY(-4px);
}

.home-billing .home-card-title {
    font-size: var(--font-size-xlarge);
    margin-bottom: var(--space-lg);
    color: var(--color-primary);
    letter-spacing: -0.2px;
}

.home-billing .home-card-text {
    font-size: var(--font-size-medium);
    line-height: 1.5;
    color: var(--color-text-secondary);
}


/* Solution Highlight Text mit Code-Accent */
.home-solution-highlight {
    max-width: 900px;
    margin: var(--space-xxl) auto 0 auto;
    padding: var(--space-xl);
    background: rgba(0, 201, 183, 0.08);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 201, 183, 0.25);
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 201, 183, 0.1);
    position: relative;
    overflow: hidden;
}

/* Subtle Code-Brackets */
.home-solution-highlight::before {
    content: '{ }';
    position: absolute;
    top: 10px;
    right: 15px;
    font-family: 'Courier New', monospace;
    font-size: 32px;
    color: rgba(0, 201, 183, 0.05);
    font-weight: bold;
    letter-spacing: -8px;
    pointer-events: none;
}

.home-solution-highlight::after {
    content: '/* 25 years */';
    position: absolute;
    bottom: 10px;
    left: 15px;
    font-family: 'Courier New', monospace;
    font-size: 10px;
    color: rgba(0, 201, 183, 0.08);
    letter-spacing: 1px;
    pointer-events: none;
}

.home-solution-highlight-text {
    font-size: var(--font-size-large);
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-relaxed);
    color: var(--color-text-primary);
    text-align: center;
    margin: 0;
}

/* Premium Card Design - Dark Mode Apple Glassmorphism */
.home-card {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 24px;
    padding: var(--space-xxxl);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 260px;
    display: flex;
    flex-direction: column;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.6),
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 107, 53, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

/* Subtle Inner Glow - Dark Mode */
.home-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 50% 0%, rgba(255, 107, 53, 0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.home-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.4) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 107, 53, 0.4) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.home-card:hover::before {
    opacity: 1;
}

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

.home-card:hover {
    transform: translateY(-16px) scale(1.03);
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(60px) saturate(200%);
    box-shadow: 
        0 24px 48px rgba(0, 0, 0, 0.8),
        0 40px 80px rgba(255, 107, 53, 0.2),
        0 0 0 1px rgba(255, 107, 53, 0.2) inset,
        0 60px 100px rgba(255, 107, 53, 0.25);
    border-color: rgba(255, 107, 53, 0.4);
}

.home-card-title {
    font-size: var(--font-size-xxlarge);
    font-weight: var(--font-weight-extrabold);
    color: var(--color-primary);
    margin-bottom: calc(var(--space-xl) * 1.2);
    line-height: var(--line-height-tight);
    position: relative;
}

/* Premium Number Badges für Solutions */
.home-solution .home-card:nth-child(1) .home-card-title::before { content: '01'; }
.home-solution .home-card:nth-child(2) .home-card-title::before { content: '02'; }
.home-solution .home-card:nth-child(3) .home-card-title::before { content: '03'; }
.home-solution .home-card:nth-child(4) .home-card-title::before { content: '04'; }
.home-solution .home-card:nth-child(5) .home-card-title::before { content: '05'; }

.home-solution .home-card-title::before {
    position: absolute;
    left: -40px;
    top: 0;
    font-family: 'Courier New', monospace;
    color: var(--color-primary);
    font-size: 0.5em;
    font-weight: bold;
    opacity: 0.15;
    line-height: 1;
}

.home-card-text {
    font-size: var(--font-size-large);
    line-height: calc(var(--line-height-relaxed) * 1.1);
    color: var(--color-text-secondary);
    margin: 0;
    flex: 1;
}

/* Solution Cards - Größere Schrift für bessere Lesbarkeit */
.home-solution .home-card-title {
    font-size: calc(var(--font-size-xxlarge) * 1.1);
    margin-bottom: var(--space-xxl);
    letter-spacing: -0.5px;
}

.home-solution .home-card-text {
    font-size: var(--font-size-xlarge);
    line-height: 1.75;
    color: var(--color-text-secondary);
}


/* Process Timeline - Premium mit Glassmorphism */
.home-process-list {
    max-width: 1000px;
    margin: 0 auto;
}

.home-process-item {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
    padding: var(--space-xl);
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(35px) saturate(170%);
    -webkit-backdrop-filter: blur(35px) saturate(170%);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 107, 53, 0.1) inset;
    position: relative;
    overflow: hidden;
}

.home-process-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.home-process-item:hover::before {
    opacity: 1;
}

.home-process-item:hover {
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(50px) saturate(200%);
    box-shadow: 
        0 16px 40px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(255, 107, 53, 0.2) inset,
        0 0 60px rgba(255, 107, 53, 0.2);
    transform: translateY(-6px) scale(1.01);
    border-color: rgba(255, 107, 53, 0.3);
}

.home-process-number {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xxlarge);
    font-weight: var(--font-weight-extrabold);
    flex-shrink: 0;
    box-shadow: 
        0 4px 12px rgba(255, 107, 53, 0.6),
        0 0 0 4px rgba(0, 201, 183, 0.3);
}

.home-process-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-process-title {
    font-size: var(--font-size-xlarge);
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
    margin-bottom: var(--space-sm);
}

.home-process-text {
    font-size: var(--font-size-medium);
    line-height: var(--line-height-relaxed);
    color: var(--color-text-secondary);
    margin: 0;
}

/* Features Section - FOUNDATION/FUNDAMENT Style */
.home-features {
    background: 
        linear-gradient(180deg, rgba(15, 23, 42, 0.97) 0%, rgba(30, 41, 59, 0.95) 100%);
    position: relative;
    overflow: hidden;
    padding-top: calc(var(--space-xxxl) + 40px);
    padding-bottom: calc(var(--space-xxxl) + 40px);
}

/* Foundation Grid Pattern - wie Architektur-Blueprint */
.home-features::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0, 201, 183, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 201, 183, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
}

/* Blueprint-Style Title Overlay */
.home-features::after {
    content: '// FOUNDATION LAYER';
    position: absolute;
    top: 20px;
    left: 40px;
    font-family: 'Courier New', monospace;
    font-size: 11px;
    color: rgba(0, 201, 183, 0.25);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: bold;
}

/* Override Section-Intro für Dark Background */
.home-features .home-section-intro {
    color: rgba(255, 255, 255, 0.8);
}

.home-features .headline-h2 {
    color: #FFFFFF;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}


.home-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Foundation-Style Connection Lines */
.home-features-list::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(0, 201, 183, 0.2) 10%,
        rgba(0, 201, 183, 0.2) 90%,
        transparent 100%);
    transform: translateX(-50%);
}

/* Features 7 & 8 - Foundation Highlight Layer */
.home-feature-item:nth-child(7),
.home-feature-item:nth-child(8) {
    grid-column: 1 / -1;
    max-width: 80%;
    margin: 0 auto;
}

.home-feature-item {
    padding: var(--space-xxxl);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(120%);
    -webkit-backdrop-filter: blur(20px) saturate(120%);
    border: 2px solid rgba(0, 201, 183, 0.25);
    border-left: 4px solid rgba(0, 201, 183, 0.5);
    border-radius: 8px;
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset -1px 0 0 rgba(0, 201, 183, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Foundation-Style Layer Indicator */
.home-feature-item::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, 
        rgba(0, 201, 183, 0.6) 0%,
        rgba(0, 201, 183, 0.3) 50%,
        rgba(0, 201, 183, 0.6) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.home-feature-item::before {
    content: attr(data-feature);
    position: absolute;
    top: 15px;
    right: 20px;
    font-family: 'Courier New', monospace;
    font-size: 10px;
    color: rgba(0, 201, 183, 0.2);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: bold;
}

.home-feature-item:hover::after {
    opacity: 1;
}

.home-feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px) saturate(150%);
    border-color: rgba(0, 201, 183, 0.6);
    border-left-color: rgba(0, 201, 183, 0.8);
    box-shadow: 
        0 12px 30px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset -1px 0 0 rgba(0, 201, 183, 0.3),
        0 0 40px rgba(0, 201, 183, 0.3);
    transform: translateX(4px);
}

/* Foundation-Style für Features 7 & 8 (Highlight) */
.home-feature-item:nth-child(7),
.home-feature-item:nth-child(8) {
    background: rgba(255, 255, 255, 0.08);
    border: 3px solid rgba(0, 201, 183, 0.4);
    border-left: 6px solid rgba(0, 201, 183, 0.7);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 0 60px rgba(0, 201, 183, 0.2);
}

.home-feature-title {
    font-size: var(--font-size-xxxlarge);
    font-weight: var(--font-weight-extrabold);
    margin-bottom: var(--space-xl);
    line-height: var(--line-height-tight);
    color: rgba(0, 201, 183, 0.95);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: var(--font-size-xlarge);
}

/* Foundation Layer Indicator */
.home-feature-title::before {
    content: '▮';
    position: absolute;
    left: -25px;
    color: rgba(0, 201, 183, 0.4);
    font-size: 1.2em;
}

.home-feature-text {
    font-size: var(--font-size-large);
    line-height: var(--line-height-relaxed);
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-weight: var(--font-weight-medium);
}

/* CTA Section - Dark Glass mit Matrix-Effect */
.home-cta {
    text-align: center;
    padding: var(--space-xxxl) var(--space-xl);
    background: linear-gradient(180deg, #2C3E50 0%, #1a252f 100%);
    position: relative;
    overflow: hidden;
}

/* Subtle Binary Rain */
.home-cta::before {
    content: '01 10 01 11 00 10 01 10 11 01 00 11 10 01 01 10 00 11 01 10 01 11 00 10';
    position: absolute;
    top: 5%;
    left: 0;
    width: 100%;
    font-family: 'Courier New', monospace;
    font-size: 10px;
    color: rgba(255, 107, 53, 0.05);
    letter-spacing: 20px;
    line-height: 3;
    text-align: center;
    animation: binary-scroll 30s linear infinite;
    pointer-events: none;
}

@keyframes binary-scroll {
    0% {
        transform: translateY(0);
        opacity: 0;
    }
    10% {
        opacity: 0.5;
    }
    90% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(400px);
        opacity: 0;
    }
}



.home-cta-title {
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-bold);
    color: #FFFFFF;
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 1;
}

.home-cta-text {
    font-size: var(--font-size-large);
    line-height: var(--line-height-relaxed);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-xxl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.home-cta .widget-button-standard {
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
}

.home-cta .widget-button-standard:hover {
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.5);
}

/* Responsive Design */

@media (max-width: 768px) {
    .home-hero {
        padding: var(--space-xxl) var(--space-md);
    }
    
    .home-hero .headline-h1 {
        font-size: var(--font-size-h2);
    }
    
    .home-hero-subtitle {
        font-size: var(--font-size-medium);
    }
    
    .home-section {
        padding: var(--space-xxl) var(--space-md);
    }
    
    .home-content-grid,
    .home-grid-3,
    .home-grid-5 {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .home-grid-5 .home-card:nth-child(5) {
        max-width: 100%;
    }
    
    .home-features-list {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .home-feature-item:nth-child(7),
    .home-feature-item:nth-child(8) {
        max-width: 100%;
    }
    
    /* Regel 003: Text-Inhalte maximal 20px Abstand zum Innen-Rahmen */
    .home-card {
        padding: 20px;
        min-height: 200px;
    }
    
    .home-card-title {
        font-size: var(--font-size-xxlarge);
    }
    
    .home-card-text {
        font-size: var(--font-size-medium);
    }
    
    /* Regel 003: Text-Inhalte maximal 20px Abstand zum Innen-Rahmen */
    .home-problem-paragraph {
        padding: 20px;
        padding-left: calc(20px + 25px);
    }
    
    /* Regel 003: Quote-Tile maximal 20px Abstand zum Innen-Rahmen */
    .home-quote-content {
        padding: 20px;
    }
    
    /* Regel 003: Alle weiteren Tiles maximal 20px Abstand zum Innen-Rahmen */
    .home-solution .home-card,
    .home-benefits .home-card,
    .home-billing .home-card,
    .home-feature-item {
        padding: 20px;
    }
    
    /* Größere Schriftgrößen für bessere Lesbarkeit auf Mobile */
    .home-benefits .home-card-title,
    .home-billing .home-card-title {
        font-size: var(--font-size-xxlarge);
    }
    
    .home-benefits .home-card-text,
    .home-billing .home-card-text {
        font-size: var(--font-size-medium);
    }
    
    .home-problem-subtitle {
        font-size: var(--font-size-large);
    }
    
    .home-problem-text {
        font-size: var(--font-size-small);
    }
    
    /* Regel 003: Text-Inhalte maximal 10px Abstand zum Innen-Rahmen */
    .home-solution-highlight {
        padding: 10px;
    }
    
    .home-solution-highlight-text {
        font-size: var(--font-size-medium);
    }
    
    /* Regel 003: Text-Inhalte maximal 10px Abstand zum Innen-Rahmen */
    .home-feature-item {
        padding: 10px;
    }
    
    .home-feature-title {
        font-size: var(--font-size-xxlarge);
    }
    
    .home-feature-text {
        font-size: var(--font-size-medium);
    }
    
    /* Regel 003: Text-Inhalte maximal 10px Abstand zum Innen-Rahmen */
    .home-process-item {
        grid-template-columns: 55px 1fr;
        gap: var(--space-md);
        padding: 10px;
    }
    
    .home-process-number {
        width: 50px;
        height: 50px;
        font-size: var(--font-size-xlarge);
    }
    
    .home-process-title {
        font-size: var(--font-size-large);
    }
    
    .home-cta {
        padding: var(--space-xxl) var(--space-md);
    }
    
    .home-cta-title {
        font-size: var(--font-size-h3);
    }
    
    .home-cta-text {
        font-size: var(--font-size-medium);
    }
}

/* Tablet/iPad: 600px–768px */
@media (min-width: 600px) and (max-width: 768px) {
    .home-content-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
    }
    
    .home-grid-3 {
        grid-template-columns: 1fr;
        gap: var(--space-xxl);
    }
    
    .home-grid-5 {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
    }
    
    .home-grid-5 .home-card:nth-child(5) {
        max-width: 85%;
    }
    
    .home-features-list {
        grid-template-columns: 1fr;
        gap: var(--space-xxl);
    }
    
    .home-feature-item:nth-child(7),
    .home-feature-item:nth-child(8) {
        max-width: 90%;
    }
}

/* Kleiner Desktop/13-Zoll: 1024px–1366px */
@media (min-width: 1024px) and (max-width: 1366px) {
    .home-content-grid {
        gap: var(--space-xxxl);
    }
    
    .home-grid-3 {
        gap: var(--space-xxxxl);
        max-width: 1200px;
    }
    
    .home-grid-5 {
        gap: var(--space-xxxl);
    }
    
    .home-features-list {
        gap: var(--space-xxxl) var(--space-xxxxl);
    }
    
    .home-card:hover {
        transform: translateY(-16px) scale(1.03);
    }
    
    .home-feature-item:hover {
        transform: translateY(-12px) scale(1.02);
    }
}

/* Großer Desktop/Widescreen: min-width: 1440px */
@media (min-width: 1440px) {
    .home-content-grid {
        gap: var(--space-xxxxl);
        max-width: 1400px;
        margin: 0 auto;
    }
    
    .home-grid-3 {
        gap: var(--space-xxxxl);
        max-width: 1400px;
    }
    
    .home-grid-5 {
        gap: var(--space-xxxxl);
        max-width: 1400px;
    }
    
    .home-features-list {
        gap: var(--space-xxxxl) var(--space-xxxxl);
        max-width: 1400px;
    }
    
    .home-card:hover {
        transform: translateY(-20px) scale(1.04);
    }
    
    .home-feature-item:hover {
        transform: translateY(-16px) scale(1.03);
    }
}
