/* Hero Section Styles - Kompaktes 1x1 Grid Layout */

/* Font wird über unified-inter-font.css definiert */

/* Main Landing Container */
.landing {
    position: relative;
    background: linear-gradient(180deg, #FFFFFF 0%, #F0F0FF 10%, #66228A 100%); /* Kürzerer Verlauf mit neuem Farbcode */
    overflow: hidden;
    padding-top: 120px; /* Platz für die fixe Navbar */    
}

.landing-main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between; /* Änderung: space-between statt center */
    max-width: 1200px;
    margin: 0px auto;
    min-height: 720px;
    padding: 20px 20px 40px 20px; /* Weniger Margin oben */
    position: relative;
    z-index: 2;
}

/* Hero Heading Section - Über den gesamten Bereich */
.hero-heading-section {
    text-align: center;
    margin-bottom: 30px; /* Weniger Margin */
    margin-top: 20px; /* Weniger Margin oben */
    width: 100%;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.1;
    color: #66228A !important; /* Geändert auf neuen Farbcode */
}

.hero-title .highlight {
    color: #66228A !important; /* "Heizungswartung" jetzt auch neuer Farbcode */
    background: linear-gradient(120deg, rgba(252, 211, 77, 0.4) 25%, rgba(245, 158, 11, 0.0) 100%); /* Transparenter Textmarker-Hintergrund */
    padding: 4px 8px; /* Padding für den Textmarker-Effekt */
    border-radius: 6px; /* Abgerundete Ecken */
    text-shadow: none; /* Entferne Text-Shadow für besseren Textmarker-Effekt */
    position: relative;
    display: inline-block; /* Wichtig für Padding */
}

/* Entferne den alten Unterstrich-Effekt */
.hero-title .highlight::after {
    display: none;
}

.hero-subtitle {
    color: #ffffff !important;
    font-size: 1.3rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    margin: 0;
    opacity: 0.95;
}

/* Spacer um Grid nach unten zu verschieben */
.hero-spacer {
    flex: 1;
    min-height: 100px; /* Minimaler Abstand */
}

/* 3-Spalten Grid für Input, Logo und Vorteile - Am unteren Bereich */
.hero-content-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr; /* Search | Logo | Benefits */
    gap: 40px;
    width: 100%;
    max-width: 1400px; /* Erweitert für 3 Spalten */
    margin: 0 auto 20px auto; /* Mittig zentriert */
}

/* Search Section - Left */
.search-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.search-area {
    width: 100%;
    max-width: 450px;
    height: 100%;
}

.custom-search-wrapper {
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 18px;
    padding: 18px 22px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
}

/* Custom Select Box */
.custom-select-box {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 14px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 52px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    gap: 12px;
}

.custom-select-box:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.1);
}

.custom-select-box i {
    font-size: 18px;
    color: #6366F1;
    flex-shrink: 0;
}

.custom-select-box span {
    flex: 1;
    color: #374151;
    font-weight: 500;
    text-transform: none;
}

.dropdown-arrow {
    color: #9CA3AF;
    transition: transform 0.3s ease;
}

.custom-select-box[data-dropdown="custom-systemDropdown"].open .dropdown-arrow,
.custom-select-box[data-dropdown="custom-buildingDropdown"].open .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown Panel */
.custom-dropdown-panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    margin-top: 4px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.custom-dropdown-panel.open {
    max-height: 200px;
}

.custom-dropdown-item {
    padding: 12px 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.custom-dropdown-item:hover {
    background-color: rgba(99, 102, 241, 0.05);
}

.custom-dropdown-item i {
    font-size: 16px;
    flex-shrink: 0;
}

.custom-dropdown-item span {
    color: #374151;
    font-weight: 500;
}

/* Location Input */
.custom-location-input {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 14px 16px;
    height: 52px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.custom-location-input:focus-within {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.1);
}

.custom-location-input i {
    font-size: 18px;
    color: #6366F1;
    flex-shrink: 0;
}

.custom-location-input input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    color: #374151;
    font-weight: 500;
    font-size: 16px;
}

.custom-location-input input::placeholder {
    color: #9CA3AF;
}

/* Location Suggestions */
.custom-location-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    margin-top: 4px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-height: 200px;
    overflow-y: auto;
    display: none;
}

.custom-location-suggestions.show {
    display: block;
}

.custom-location-suggestions div {
    padding: 12px 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.custom-location-suggestions div:last-child {
    border-bottom: none;
}

.custom-location-suggestions div:hover {
    background-color: rgba(99, 102, 241, 0.05);
}

/* Search Button */
.custom-search-btn {
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 16px 24px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 52px;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.custom-search-btn:hover {
    background: linear-gradient(135deg, #5B21B6 0%, #7C3AED 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

.custom-search-btn i {
    font-size: 18px;
}

/* Hero Scroll CTA (weiß mit lila Schrift) */
.hero-cta-bottom {
	text-align: center;
}

.hero-scroll-btn {
	color: #ffffff !important;
	border-radius: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 16px;
	text-decoration: underline;
	transition: all 0.2s ease;
}

.hero-scroll-btn:hover {
	background: #ffffff !important;
	color: #4F46E5 !important; /* etwas dunkleres Lila beim Hover */
	border-color: rgba(99, 102, 241, 0.35);
	box-shadow: 0 10px 24px rgba(99, 102, 241, 0.25);
	transform: translateY(-2px);
}

.hero-scroll-btn i {
	color: inherit;
	font-size: 16px;
}

/* Logo Section - Middle */
.logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.logo-container-center img {
    width: 300px;
    height: auto;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
}

/* Benefits Section - Right */
.benefits-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefits-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    height: 100%;
}

/* Alte benefit-item Styles entfernt - werden durch benefit-card ersetzt */

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content-grid {
        gap: 30px;
        max-width: 1200px;
    }
    
    .custom-search-wrapper {
        padding: 20px;
    }
    
    .benefits-box {
        padding: 25px;
    }
}

@media (max-width: 1024px) {
    .hero-content-grid {
        grid-template-columns: 1fr auto 1fr;
        gap: 25px;
        max-width: 1000px;
    }
    
    .logo-container-center img {
        width: 250px;
    }
    
    .custom-search-wrapper {
        padding: 18px;
        height: 380px;
    }
    
    .benefits-box {
        padding: 22px;
    }
}

@media (max-width: 768px) {
    .landing-main-content {
        padding: 10px 15px 20px 15px; /* Noch weniger Padding unten */
        min-height: 100vh; /* Volle Bildschirmhöhe auf Mobile */
        justify-content: space-between; /* Content verteilen */
    }
    
    .hero-content-grid {
        grid-template-columns: 1fr; /* Einspaltiges Layout auf Mobile */
        gap: 15px; /* Noch reduzierter Gap für kompakteres Layout */
        max-width: 100%;
        margin-top: auto; /* Search Component nach unten schieben */
    }
    
    /* Logo über dem Suchfeld platzieren */
    .logo-section {
        order: -1; /* Logo kommt vor dem Suchfeld */
        margin-bottom: -15px; /* Negative Margin für Überlagerung */
        z-index: 10; /* Logo über dem Suchfeld */
        text-align: center;
    }
    
    .logo-container-center img {
        width: 180px; /* Kompakteres Logo */
        height: auto;
        margin-bottom: -17.5% !important;
        display: block;
        margin: 0 auto;
    }
    
    .hero-heading-section {
        margin-bottom: 15px; /* Noch weniger Margin */
        margin-top: 5px; /* Noch weniger Margin oben */
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    /* Suchfeld-Breite erhöhen und Padding optimieren */
    .search-section {
        width: 100%;
        max-width: 100%; /* Volle Breite auf Mobile */
    }
    
    .search-area {
        width: 100%;
        max-width: 100%; /* Volle Breite auf Mobile */
        height: auto; /* Feste Höhe auf Mobile entfernen */
    }
    
    .custom-search-wrapper {
        padding: 20px 16px; /* Reduziertes horizontales Padding */
        width: 100%;
        box-sizing: border-box;
        height: auto; /* Feste Höhe auf Mobile entfernen */
    }
    
    .custom-select-box,
    .custom-location-input {
        padding: 12px 14px;
        min-height: 48px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .custom-search-btn {
        padding: 12px 18px;
        font-size: 14px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .logo-container img {
        width: 140px;
    }
    
    /* Benefits Box auf Mobile anzeigen, aber unter dem Button */
    .benefits-section {
        order: 2; /* Nach dem Button anzeigen */
        margin-top: 15px; /* Reduzierter Abstand */
    }
    
    /* CTA Button - Schlichter, schicker Button */
    .hero-cta-bottom {
        order: 1; /* Button kommt zuerst */
        margin-top: 15px; /* Reduzierter Abstand zum Suchfeld */
        margin-bottom: 15px; /* Reduzierter Abstand zur Benefits Card */
    }
    
                                                                               .hero-scroll-btn {
            padding: 16px 24px !important; /* Exakt gleiches Padding wie Desktop-Such-Button */
            font-size: 16px !important; /* Exakt gleiche Schriftgröße wie Desktop-Such-Button */
            font-weight: 600 !important; /* Exakt gleicher Font-Weight */
            background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%) !important; /* Exakt gleicher Gradient */
            border: none !important; /* Exakt gleicher Border (keiner) */
            border-radius: 12px !important; /* Exakt gleicher Border-Radius */
            transition: all 0.3s ease; /* Exakt gleiche Transition */
            text-decoration: none !important;
            color: #ffffff !important; /* Exakt gleiche Textfarbe */
            box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3) !important; /* Exakt gleicher Shadow */
            display: flex !important; /* Exakt gleicher Display wie Such-Button */
            align-items: center !important; /* Exakt gleiche Ausrichtung */
            justify-content: center !important; /* Exakt gleiche Zentrierung */
            gap: 8px !important; /* Exakt gleicher Gap */
            min-height: 52px !important; /* Exakt gleiche Höhe wie Desktop-Such-Button */
            cursor: pointer !important;
            width: auto !important;
            text-align: center !important;
        }
    
         .hero-scroll-btn:hover {
         background: linear-gradient(135deg, #5B21B6 0%, #7C3AED 100%) !important; /* Exakt gleicher Hover-Gradient */
         color: #ffffff !important; /* Exakt gleiche Textfarbe */
         transform: translateY(-2px) !important; /* Exakt gleicher Hover-Effekt */
         box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4) !important; /* Exakt gleicher Hover-Shadow */
     }
    
    /* Icon komplett ausblenden */
    .hero-scroll-btn i {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .landing-main-content {
        padding: 8px 10px 15px 10px; /* Noch weniger Padding unten für sehr kleine Bildschirme */
        min-height: 100vh; /* Volle Bildschirmhöhe auf Mobile */
        justify-content: space-between; /* Content verteilen */
    }
    
    .hero-heading-section {
        margin-bottom: 10px; /* Noch weniger Margin */
        margin-top: 5px; /* Noch weniger Margin oben */
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    /* Logo noch kompakter auf sehr kleinen Bildschirmen */
    .logo-container-center img {
        width: 150px;
    }
    
    .custom-search-wrapper {
        padding: 16px 12px; /* Reduziertes horizontales Padding */
        width: 100%;
        box-sizing: border-box;
        height: auto; /* Feste Höhe auf sehr kleinen Bildschirmen entfernen */
    }
    
    .custom-select-box,
    .custom-location-input {
        padding: 10px 12px;
        min-height: 44px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .custom-search-btn {
        padding: 10px 16px;
        font-size: 13px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .logo-container img {
        width: 120px;
    }
    
    /* Benefits Box auf sehr kleinen Bildschirmen auch anzeigen */
    .benefits-section {
        order: 2; /* Nach dem Button anzeigen */
        margin-top: 10px; /* Reduzierter Abstand */
    }
    
    /* CTA Button auf sehr kleinen Bildschirmen anpassen */
    .hero-cta-bottom {
        order: 1; /* Button kommt zuerst */
        margin-top: 10px; /* Reduzierter Abstand zum Suchfeld */
        margin-bottom: 10px; /* Reduzierter Abstand zur Benefits Card */
    }
    
                                       .hero-scroll-btn {
          padding: 16px 24px !important; /* Exakt gleiches Padding wie Desktop-Such-Button */
          font-size: 16px !important; /* Exakt gleiche Schriftgröße wie Desktop-Such-Button */
          font-weight: 600 !important; /* Exakt gleicher Font-Weight */
          background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%) !important; /* Exakt gleicher Gradient */
          border: none !important; /* Exakt gleicher Border (keiner) */
          border-radius: 12px !important; /* Exakt gleicher Border-Radius */
          transition: all 0.3s ease; /* Exakt gleiche Transition */
          text-decoration: none !important;
          color: #ffffff !important; /* Exakt gleiche Textfarbe */
          box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3) !important; /* Exakt gleicher Shadow */
          display: flex !important; /* Exakt gleicher Display wie Such-Button */
          align-items: center !important; /* Exakt gleiche Ausrichtung */
          justify-content: center !important; /* Exakt gleiche Zentrierung */
          gap: 8px !important; /* Exakt gleicher Gap */
          min-height: 52px !important; /* Exakt gleiche Höhe wie Desktop-Such-Button */
          cursor: pointer !important;
          width: auto !important;
          text-align: center !important;
      }
    
    .hero-scroll-btn:hover {
        background: linear-gradient(135deg, #5B21B6 0%, #7C3AED 100%) !important; /* Gleicher Hover-Gradient */
        color: #ffffff !important; /* Weißer Text bleibt */
        transform: translateY(-2px); /* Gleicher Hover-Effekt */
        box-shadow: 0 6px 16px rgba(99, 102, 241, 0.4) !important; /* Gleicher Hover-Shadow */
    }
    
    /* Icon komplett ausblenden */
    .hero-scroll-btn i {
        display: none !important;
    }
}

/* Hero Overlay Section CSS - Direkt in hero-section.css eingebunden */

/* Hero Overlay Section - Neue Section mit Überlagerung */
.hero-overlay-section {
    position: relative;
    background: #ffffff;
    border-radius: 40px 40px 40px 40px; /* unten abgerundet */
    padding: 60px 20px 80px 20px;
    margin-left: 30px;
    margin-right: 30px;
    z-index: 10;
    box-shadow: 0 -20px 40px rgba(99, 102, 241, 0.1);
}

/* Prominente Cards Container */
.prominent-cards-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 80px auto;
}

/* Prominente Card Styling */
.prominent-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.prominent-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

/* Card Content Layout */
.card-content {
    display: flex;
    align-items: center;
    padding: 40px;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.card-text {
    flex: 1;
    z-index: 3;
}

.card-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
    line-height: 1.3;
}

.card-text p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Card Buttons - Dezenter */
.card-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    opacity: 0.9;
}

.primary-btn {
    background: rgba(99, 102, 241, 0.1);
    color: #6366F1;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.primary-btn:hover {
    background: rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-1px);
    opacity: 1;
}

.secondary-btn {
    background: rgba(59, 130, 246, 0.1);
    color: #3B82F6;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.secondary-btn:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-1px);
    opacity: 1;
}

/* Card Images - Über ganze Card mit Halbkreis */
.card-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* Halbkreis nach innen */
.card-image::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: 0 20px 20px 0;
    z-index: 2;
}

/* Badges - Größer */
.sponsored-badge, .new-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    z-index: 4;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.sponsored-badge {
    background: linear-gradient(135deg, #EC4899 0%, #F59E0B 100%);
}

.new-badge {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

/* Features Section */
.features-section {
    max-width: 1200px;
    margin: 0 auto 80px auto;
    text-align: center;
}

.features-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 60px;
    line-height: 1.2;
}

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

/* Feature Items */
.feature-item {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(99, 102, 241, 0.12);
    box-shadow: 0 10px 24px rgba(99, 102, 241, 0.10);
}

.feature-item:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 20px 48px rgba(99, 102, 241, 0.18);
    border-color: rgba(99, 102, 241, 0.25);
}

.feature-icon {
    margin-bottom: 24px;
}

.feature-icon i {
    font-size: 3rem;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    padding: 20px;
    border-radius: 16px;
    display: inline-block;
}

.feature-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    line-height: 1.4;
}

.feature-item p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
}

/* Statistics Section */
.statistics-section {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 20px;
    background: transparent;
}

.statistics-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #66228A; /* Geändert auf neuen Farbcode */
    margin-bottom: 60px;
    line-height: 1.2;
}

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

/* Stat Items */
.stat-item {
    text-align: center;
    padding: 40px 20px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

/* Responsive Design für die Hero-Overlay-Section */
@media (max-width: 1024px) {
    .hero-overlay-section {
        margin-top: -60px;
        padding: 50px 20px 60px 20px;
    }
    .statistics-section { padding: 38px 18px; }
    
    .prominent-cards-container {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .card-content {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    /* Mobile: Halbkreis-Effekt anpassen */
    .card-image::after {
        width: 100%;
        height: 50%;
        top: auto;
        bottom: 0;
        background: linear-gradient(0deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0) 100%);
        border-radius: 0 0 20px 20px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero-overlay-section {
        margin-top: 0; /* Negativen Margin entfernen */
        padding: 30px 15px 40px 15px; /* Reduziertes Padding */
        border-radius: 30px 30px 24px 24px; /* unten gerundet */
        margin-left: 15px; /* Reduzierte Margins für Mobile */
        margin-right: 15px;
    }
    .statistics-section { padding: 34px 14px; }
    
    .features-title, .statistics-title {
        font-size: 2rem;
        margin-bottom: 30px; /* Weniger Margin */
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px; /* Kompakterer Gap */
    }
    
    .statistics-grid {
        grid-template-columns: 1fr;
        gap: 20px; /* Kompakterer Gap */
    }
    
    .card-content {
        padding: 20px; /* Weniger Padding */
    }
    
    .card-text h3 {
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    /* Prominente Cards für Mobile optimieren */
    .prominent-cards-container {
        margin-bottom: 40px; /* Weniger Margin */
        gap: 20px; /* Kompakterer Gap */
    }
}

@media (max-width: 480px) {
    .hero-overlay-section {
        margin-top: 0; /* Negativen Margin entfernen */
        padding: 20px 10px 30px 10px; /* Noch weniger Padding */
        border-radius: 25px 25px 20px 20px; /* unten gerundet */
        margin-left: 10px; /* Noch weniger Margins */
        margin-right: 10px;
    }
    .statistics-section { padding: 28px 10px; }
    
    .features-title, .statistics-title {
        font-size: 1.8rem;
        margin-bottom: 25px; /* Weniger Margin */
    }
    
    .card-content {
        padding: 15px; /* Weniger Padding */
    }
    
    .card-text h3 {
        font-size: 1rem;
    }
    
    .card-text p {
        font-size: 0.85rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    /* Prominente Cards für sehr kleine Bildschirme optimieren */
    .prominent-cards-container {
        margin-bottom: 30px; /* Weniger Margin */
        gap: 15px; /* Kompakterer Gap */
    }
    
    .features-grid, .statistics-grid {
        gap: 15px; /* Kompakterer Gap */
    }
}

/* === Prominent Cards – Screenshot Style Overrides === */
/* Hintergründe je Kartentyp */
.prominent-card.sponsored-card { background: #fce4ff; }
.prominent-card.feature-card { background: #ffffff; }

/* Layout: Platz für die runde Bildblase rechts schaffen */
.prominent-card .card-content { padding-right: 260px; }

/* Runde Bildblase halb außerhalb der Karte rechts */
.prominent-card .card-image {
	position: absolute;
	right: -120px;
	top: 50%;
	transform: translateY(-50%);
	width: 350px;
	height: 350px;
	border-radius: 50%;
	overflow: hidden;
	background: #ffffff;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
	z-index: 1;
}
.prominent-card .card-image img { width: 100%; height: 100%; object-fit: cover; }
/* Vorherigen Halbkreis-Overlay-Effekt deaktivieren */
.prominent-card .card-image::after { display: none !important; }

/* Buttons als dezente Links gestalten */
.prominent-card .card-btn {
	padding: 0;
	background: transparent !important;
	border: none !important;
	box-shadow: none !important;
	font-weight: 700;
	font-size: 0.95rem;
	color: #2563EB;
	opacity: 1;
}
.prominent-card .card-btn:hover { text-decoration: underline; transform: none; }
.prominent-card .primary-btn, .prominent-card .secondary-btn { color: #2563EB; }

/* Badges größer, helle Pills auf Bildblase unten rechts */
.prominent-card .sponsored-badge, .prominent-card .new-badge {
	top: auto;
	bottom: 10px;
	right: 10px;
	padding: 8px 14px;
	border-radius: 999px;
	font-size: 0.85rem;
	background: rgba(255,255,255,0.9);
	color: #1f2937;
	border: 1px solid rgba(0,0,0,0.06);
	box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}
.prominent-card .new-badge { background: #E0F2FE; color: #0369A1; border-color: rgba(3,105,161,0.15); }

/* Responsive Anpassungen */
@media (max-width: 1024px) {
	.prominent-card .card-content { padding-right: 30px; }
	.prominent-card .card-image {
		position: relative;
		right: auto; top: auto; transform: none;
		margin: 10px auto 0;
		width: 180px; height: 180px;
	}
}
