/* ANTI-ZOOM FIX - GANZ OBEN EINFÜGEN */
html {
    -webkit-text-size-adjust: 100% !important;
    -ms-text-size-adjust: 100% !important;
    text-size-adjust: 100% !important;
    touch-action: manipulation !important;
    overflow-x: hidden !important;
}

body {
    -webkit-text-size-adjust: 100% !important;
    -ms-text-size-adjust: 100% !important;
    text-size-adjust: 100% !important;
    touch-action: manipulation !important;
    overflow-x: hidden !important;
    position: relative !important;
    width: 100% !important;
    max-width: 100vw !important;
}

/* VERHINDERE HORIZONTALES SCROLLEN */
* {
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* MOBILE ZOOM PREVENTION */
@media (max-width: 768px) {
    html {
        -webkit-touch-callout: none !important;
        -webkit-user-select: none !important;
        -khtml-user-select: none !important;
        -moz-user-select: none !important;
        -ms-user-select: none !important;
        user-select: none !important;
        touch-action: pan-y !important;
    }
    
    body {
        -webkit-touch-callout: none !important;
        -webkit-user-select: none !important;
        -khtml-user-select: none !important;
        -moz-user-select: none !important;
        -ms-user-select: none !important;
        user-select: none !important;
        touch-action: pan-y !important;
        overflow-x: hidden !important;
        position: relative !important;
        width: 100vw !important;
        max-width: 100vw !important;
    }
    
    /* ALLE CONTAINER BEGRENZEN */
    .container,
    .hero-container,
    .nav-container,
    .section-header,
    .showcase-grid,
    .features-grid,
    .about-container {
        max-width: 100vw !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }
    
    /* NAVBAR FIX */
    .navbar {
        max-width: calc(100vw - 20px) !important;
        overflow-x: hidden !important;
    }
    
    /* PLATFORM CARDS HORIZONTAL SCROLL FIX */
    .platforms-grid {
        max-width: 100vw !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
    }
    
    .platforms-grid::-webkit-scrollbar {
        display: none !important;
    }
    
    /* IMAGES UND MEDIA FIX */
    img,
    video,
    iframe {
        max-width: 100% !important;
        height: auto !important;
        object-fit: cover !important;
    }
    
    /* TEXT SELECTION ERLAUBEN FÜR INPUTS */
    input,
    textarea,
    select {
        -webkit-user-select: text !important;
        -moz-user-select: text !important;
        -ms-user-select: text !important;
        user-select: text !important;
        touch-action: manipulation !important;
    }
    
    /* BUTTONS TOUCH OPTIMIERUNG */
    button,
    .btn-primary,
    .btn-secondary,
    a {
        touch-action: manipulation !important;
        -webkit-tap-highlight-color: transparent !important;
    }
}

/* SEHR KLEINE SCREENS */
@media (max-width: 360px) {
    html,
    body {
        width: 100vw !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }
    
    .container {
        padding: 0 8px !important;
        max-width: 100vw !important;
    }
    
    .navbar {
        width: calc(100vw - 16px) !important;
        max-width: calc(100vw - 16px) !important;
    }
}

/* FORCE MOBILE RESET - GANZ OBEN EINFÜGEN */
@media (max-width: 768px) {
    /* FORCE HAMBURGER ANZEIGEN */
    .hamburger {
        display: flex !important;
        flex-direction: column !important;
        cursor: pointer !important;
        gap: 3px !important;
        padding: 8px !important;
        z-index: 1001 !important;
        background: none !important;
        border: none !important;
        position: relative !important;
    }
    
    .hamburger span {
        width: 25px !important;
        height: 3px !important;
        background: #333 !important;
        border-radius: 2px !important;
        transition: all 0.3s ease !important;
        display: block !important;
    }
    
    /* FORCE DESKTOP MENU VERSTECKEN */
    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        left: -100% !important;
        width: 100% !important;
        height: 100vh !important;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(20px) !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 0 !important;
        transition: left 0.4s ease !important;
        z-index: 1000 !important;
        padding: 0 !important;
        margin: 0 !important;
        list-style: none !important;
    }
    
    .nav-menu.active {
        left: 0 !important;
    }
    
    .nav-menu li {
        width: 100% !important;
        text-align: center !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .nav-menu a {
        display: block !important;
        padding: 25px 20px !important;
        font-size: 1.2rem !important;
        font-weight: 600 !important;
        color: #2c3e50 !important;
        text-decoration: none !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
        transition: all 0.3s ease !important;
        width: 100% !important;
    }
    
    .nav-menu a:hover,
    .nav-menu a.cta-button {
        background: #ff9800 !important;
        color: white !important;
    }
    
    /* FORCE MOBILE LAYOUT */
    .hero {
        padding: 100px 0 60px !important;
        min-height: auto !important;
    }
    
    .hero-container {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        text-align: center !important;
        padding: 0 12px !important;
    }
    
    .hero-title {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
        margin-bottom: 20px !important;
    }
    
    .hero-description {
        font-size: 1rem !important;
        margin-bottom: 30px !important;
        padding: 0 10px !important;
    }
    
    .hero-stats {
        justify-content: center !important;
        gap: 20px !important;
        margin-top: 40px !important;
        flex-wrap: wrap !important;
        display: flex !important;
    }
    
    .stat-item {
        padding: 20px 15px !important;
        min-width: 120px !important;
    }
    
    .stat-number {
        font-size: 1.8rem !important;
        margin-bottom: 8px !important;
    }
    
    .stat-label {
        font-size: 0.85rem !important;
    }
    
    /* FORCE BUTTON STYLES */
    .btn-primary,
    .btn-secondary {
        padding: 14px 28px !important;
        font-size: 1rem !important;
        border-radius: 10px !important;
        min-height: 48px !important;
        font-weight: 600 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .hero-actions {
        flex-direction: column !important;
        gap: 15px !important;
        align-items: center !important;
        margin-top: 30px !important;
    }
    
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100% !important;
        max-width: 300px !important;
    }
    
    /* FORCE SECTION STYLES */
    .showcase,
    .features,
    .about,
    .platforms {
        padding: 60px 0 !important;
    }
    
    .section-header {
        margin-bottom: 40px !important;
        text-align: center !important;
        padding: 0 12px !important;
    }
    
    .section-header h2 {
        font-size: 2rem !important;
        margin-bottom: 15px !important;
    }
    
    .section-header p {
        font-size: 1rem !important;
        padding: 0 10px !important;
    }
    
    /* FORCE GRID LAYOUTS */
    .showcase-grid,
    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
        padding: 0 12px !important;
    }
    
    .showcase-card,
    .feature-card {
        padding: 25px 20px !important;
        border-radius: 15px !important;
        text-align: center !important;
    }
    
    .showcase-card h3,
    .feature-card h3 {
        font-size: 1.3rem !important;
        margin-bottom: 12px !important;
    }
    
    .showcase-card p,
    .feature-card p {
        font-size: 0.95rem !important;
    }
    
    /* FORCE PLATFORM CARDS */
    .platforms-grid {
        display: flex !important;
        overflow-x: auto !important;
        gap: 20px !important;
        padding: 20px 12px !important;
        scroll-snap-type: x mandatory !important;
    }
    
    .platform-card {
        min-width: 280px !important;
        flex-shrink: 0 !important;
        scroll-snap-align: start !important;
    }
    
    /* FORCE ABOUT SECTION */
    .about-container {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        text-align: center !important;
        padding: 0 12px !important;
    }
    
    .about-text h2 {
        font-size: 2rem !important;
    }
    
    .profile-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    
    /* FORCE CONTAINER */
    .container {
        padding: 0 12px !important;
        max-width: 100% !important;
    }
    
    /* FORCE NAVBAR */
    .navbar {
        width: calc(100% - 20px) !important;
        top: 10px !important;
        padding: 0 !important;
    }
    
    .nav-container {
        padding: 12px 20px !important;
    }
    
    .logo h1 {
        font-size: 1.3rem !important;
    }
    
    .logo-img {
        width: 32px !important;
        height: 32px !important;
    }
}

/* FORCE KLEINE MOBILE */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem !important;
    }
    
    .hero-description {
        font-size: 0.9rem !important;
    }
    
    .hero-stats {
        gap: 15px !important;
    }
    
    .stat-item {
        padding: 15px 10px !important;
        min-width: 100px !important;
    }
    
    .stat-number {
        font-size: 1.5rem !important;
    }
    
    .stat-label {
        font-size: 0.75rem !important;
    }
    
    .platform-card {
        min-width: 250px !important;
    }
    
    .container {
        padding: 0 10px !important;
    }
}

/* Reset und Basis-Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fafafa;
    overflow-x: hidden;
}

/* Container Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-full {
    width: 100%;
    padding: 0 20px;
}

/* Navigation - Clean und modern */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 152, 0, 0.1);
    border-radius: 16px;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(255, 152, 0, 0.1);
}

.navbar:hover {
    box-shadow: 0 12px 40px rgba(255, 152, 0, 0.15);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.logo h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #ff9800;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #ff9800;
    background: rgba(255, 152, 0, 0.1);
}

/* Neuer Button-Stil für "Jetzt loslegen" */
.nav-menu a.cta-button {
    background: #ff9800;
    color: #fff;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

.nav-menu a.cta-button:hover {
    background: #e68900;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(255, 152, 0, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

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

/* Hero Section - Clean und modern */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #fafafa 0%, #fff 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(255, 152, 0, 0.1) 0%, transparent 50%);
}

.hero-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 152, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 193, 7, 0.05) 0%, transparent 50%);
    background-size: 400px 400px;
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: slideInLeft 0.8s ease-out;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid rgba(255, 152, 0, 0.2);
    padding: 8px 16px;
    border-radius: 24px;
    color: #ff9800;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
}

.title-line-1 {
    color: #333;
}

.title-line-2 {
    background: linear-gradient(135deg, #ff9800, #ffc107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* Fallback für bessere Kompatibilität */
    color: #ff9800;
    /* Verbesserte Darstellung */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Sicherstellen, dass der Text vollständig sichtbar ist */
    line-height: 1.3;
    display: inline-block;
    /* Zusätzlicher Platz für Unterlängen */
    padding-bottom: 0.1em;
    overflow: visible;
}

/* Alternative Lösung falls das Problem weiterhin besteht */
@supports not (-webkit-background-clip: text) {
    .title-line-2 {
        background: none;
        color: #ff9800;
        -webkit-text-fill-color: initial;
    }
}

.title-line-3 {
    color: #666;
}

.hero-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #ff9800;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 13px;
    color: #666;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(255, 152, 0, 0.2);
}

.hero-actions {
    display: flex;
    gap: 16px;
}

/* Buttons - Clean Design */
.btn {
    padding: 14px 28px;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, #ff9800, #ffc107);
    color: #fff;
    box-shadow: 0 4px 16px rgba(255, 152, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 152, 0, 0.4);
}

.btn-secondary {
    background: #fff;
    color: #333;
    border: 1px solid rgba(255, 152, 0, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 152, 0, 0.05);
    border-color: rgba(255, 152, 0, 0.3);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 36px;
    font-size: 16px;
}

/* Hero Visual */
.hero-visual {
    animation: slideInRight 0.8s ease-out;
}

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

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.showcase-card {
    background: #fff;
    border: 1px solid rgba(255, 152, 0, 0.1);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.showcase-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(255, 152, 0, 0.15);
    border-color: rgba(255, 152, 0, 0.2);
}

.showcase-card:nth-child(3) {
    grid-column: 1 / -1;
}

.card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ff9800, #ffc107);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 20px;
    color: #fff;
}

.showcase-card h3 {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.showcase-card p {
    color: #666;
    font-size: 14px;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #fff;
}

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

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: #fff;
    border: 1px solid rgba(255, 152, 0, 0.1);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(255, 152, 0, 0.15);
    border-color: rgba(255, 152, 0, 0.2);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #ff9800, #ffc107);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 24px;
    color: #fff;
}

.feature-card h3 {
    color: #333;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #fafafa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid rgba(255, 152, 0, 0.2);
    padding: 8px 16px;
    border-radius: 24px;
    color: #ff9800;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.about-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.lead {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #333;
    font-weight: 500;
}

.benefit-item i {
    color: #ff9800;
    font-size: 16px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.stat-card {
    background: #fff;
    border: 1px solid rgba(255, 152, 0, 0.1);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.stat-card .stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ff9800;
    margin-bottom: 8px;
}

.stat-card .stat-label {
    color: #666;
    font-size: 14px;
}

/* Platforms Section */
.platforms {
    padding: 80px 0;
    background: #fff;
}

.platforms-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 20px 0;
}

.platforms-track {
    display: flex;
    gap: 30px;
    width: calc(350px * 14 + 30px * 13);
    animation: slideLeftSmooth 60s linear infinite;
    transition: animation-play-state 0.3s ease;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.platforms-track:active {
    cursor: grabbing;
}

.platforms-track:hover {
    animation-play-state: paused;
}

@keyframes slideLeftSmooth {
    0% {
        transform: translateX(0);
    }
    99.9% {
        transform: translateX(calc(-50% - 16px));
    }
    100% {
        transform: translateX(0);
    }
}

.platform-card {
    background: #fff;
    border: 2px solid rgba(255, 152, 0, 0.1);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    width: 350px;
    height: 420px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    pointer-events: auto;
    touch-action: pan-y;
}

/* Subtiler Hover-Effekt: nur leichte Vergrößerung und farbiger Rand */
.platform-card:hover {
    transform: scale(1.03) translateY(-4px);
    border-color: rgba(255, 152, 0, 0.4);
    box-shadow: 0 12px 32px rgba(255, 152, 0, 0.12);
}

/* Coming Soon Karten mit lila Rand */
.platform-card.coming-soon {
    border-color: rgba(156, 39, 176, 0.1);
    background: linear-gradient(135deg, #fff 0%, rgba(156, 39, 176, 0.02) 100%);
}

.platform-card.coming-soon:hover {
    transform: scale(1.03) translateY(-4px);
    border-color: rgba(156, 39, 176, 0.4);
    box-shadow: 0 12px 32px rgba(156, 39, 176, 0.12);
}

.coming-soon-badge {
    background: rgba(156, 39, 176, 0.12);
    color: #9c27b0;
}

.platform-card.featured {
    border-color: rgba(255, 152, 0, 0.3);
    background: rgba(255, 152, 0, 0.02);
}

.platform-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.platform-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.platform-icon.ebay {
    background: linear-gradient(135deg, #e53238, #0064d2);
}

.platform-icon.kleinanzeigen {
    background: linear-gradient(135deg, #00a8cc, #0066cc);
}

.platform-icon.webshop {
    background: linear-gradient(135deg, #ff9800, #ffc107);
}

.platform-icon.social {
    background: linear-gradient(135deg, #e4405f, #833ab4);
}

.platform-icon.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.platform-icon.zoyss {
    background: linear-gradient(135deg, #9c27b0, #673ab7);
}

.platform-icon.studylens {
    background: linear-gradient(135deg, #2196f3, #21cbf3);
}

.platform-icon.consulting {
    background: linear-gradient(135deg, #4caf50, #8bc34a);
}

.platform-icon.tech {
    background: linear-gradient(135deg, #607d8b, #90a4ae);
}

.platform-icon.marketing {
    background: linear-gradient(135deg, #f44336, #ff5722);
}

.platform-info h3 {
    color: #333;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.2;
}

.platform-badge {
    background: rgba(255, 152, 0, 0.12);
    color: #ff9800;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.platform-card p {
    color: #666;
    margin-bottom: 24px;
    line-height: 1.6;
    font-size: 15px;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.platform-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 28px;
    justify-content: center;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #ff9800;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.platform-btn {
    width: 100%;
    background: linear-gradient(135deg, #ff9800, #ffc107);
    border: none;
    color: #fff;
    padding: 16px 24px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

.platform-btn:hover {
    background: linear-gradient(135deg, #f57c00, #ff9800);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
}

.platform-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.platform-btn:hover i {
    transform: translateX(2px);
}

/* Customer Reviews Section */
.customer-reviews {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    position: relative;
}

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

.customer-reviews .section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.customer-reviews .section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2c3e50, #ff9800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    position: relative;
}

.customer-reviews .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #ff9800, #ffc107);
    border-radius: 2px;
}

.customer-reviews .section-header p {
    font-size: 1.3rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.review-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 152, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
    height: 280px;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #ff9800, #ffc107);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.review-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 152, 0, 0.15);
    border-color: rgba(255, 152, 0, 0.3);
}

.review-card.featured {
    background: linear-gradient(135deg, #fff8e1, #ffffff);
    border: 2px solid #ff9800;
    transform: scale(1.05);
}

.review-card.featured::before {
    transform: scaleX(1);
    height: 6px;
}

.review-content {
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.quote-icon {
    color: #ff9800;
    font-size: 24px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2c3e50;
    margin: 0 0 25px 0;
    font-style: italic;
    font-weight: 500;
    flex-grow: 1;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.customer-info {
    display: flex;
    align-items: center;
}

.customer-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff9800, #f57c00);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.customer-details h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 4px 0;
}

.customer-location {
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 500;
}

.review-rating {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.stars {
    display: flex;
    margin-bottom: 4px;
}

.stars .fas.fa-star {
    color: #ffc107;
    font-size: 14px;
    margin-left: 2px;
    filter: drop-shadow(0 1px 2px rgba(255, 193, 7, 0.3));
}

.rating-text {
    font-weight: 700;
    color: #2c3e50;
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff9800, #ffc107);
    text-align: center;
}

.cta-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn-primary {
    background: #fff;
    color: #ff9800;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Footer */
footer {
    background: #333;
    padding: 60px 0 30px;
    color: #fff;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo-img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
}

.footer-logo h3 {
    font-family: 'Poppins', sans-serif;
    color: #ff9800;
    font-size: 20px;
    font-weight: 700;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-section h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

/* Neue CSS-Regel für Links in h4-Überschriften */
.footer-section h4 a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
}

.footer-section h4 a:hover {
    color: #fff;
    text-decoration: none;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff9800;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ff9800;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* ===== MOBILE OPTIMIERUNG - KOMPLETT NEU ===== */

/* Hamburger Button - standardmäßig versteckt */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 3px;
    padding: 8px;
    z-index: 1001;
    background: none;
    border: none;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

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

/* ===== TABLET - 1024px und kleiner ===== */
@media (max-width: 1024px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
}

/* ===== MOBILE - 768px und kleiner ===== */
@media (max-width: 768px) {
    /* Container */
    .container {
        padding: 0 12px;
    }
    
    /* Navigation - Mobile */
    .navbar {
        width: calc(100% - 20px);
        top: 10px;
        padding: 0;
    }
    
    .nav-container {
        padding: 12px 20px;
    }
    
    .logo h1 {
        font-size: 1.3rem;
    }
    
    .logo-img {
        width: 32px;
        height: 32px;
    }
    
    /* Hamburger anzeigen */
    .hamburger {
        display: flex;
    }
    
    /* Desktop Menu verstecken und Mobile Menu erstellen */
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        transition: left 0.4s ease;
        z-index: 1000;
        padding: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        margin: 0;
    }
    
    .nav-menu a {
        display: block;
        padding: 25px 20px;
        font-size: 1.2rem;
        font-weight: 600;
        color: #2c3e50;
        text-decoration: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        width: 100%;
    }
    
    .nav-menu a:hover,
    .nav-menu a.cta-button {
        background: #ff9800;
        color: white !important;
    }
    
    .nav-menu .cta-button {
        margin: 20px;
        border-radius: 12px;
        width: calc(100% - 40px);
        background: #ff9800;
        color: white;
        font-weight: 700;
    }
    
    /* Hero Section */
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        padding: 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    /* Hero Stats */
    .hero-stats {
        justify-content: center;
        gap: 20px;
        margin-top: 40px;
        flex-wrap: wrap;
    }
    
    .stat-item {
        padding: 20px 15px;
        min-width: 120px;
    }
    
    .stat-number {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    /* Buttons */
    .btn-primary,
    .btn-secondary {
        padding: 14px 28px;
        font-size: 1rem;
        border-radius: 10px;
        min-height: 48px;
        font-weight: 600;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        margin-top: 30px;
    }
    
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    /* Sections */
    .showcase,
    .features,
    .about,
    .platforms {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .section-header p {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    /* Grids - Single Column */
    .showcase-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    /* Cards */
    .showcase-card,
    .feature-card {
        padding: 25px 20px;
        border-radius: 15px;
        text-align: center;
    }
    
    .showcase-card h3,
    .feature-card h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .showcase-card p,
    .feature-card p {
        font-size: 0.95rem;
    }
    
    /* Platform Cards - Horizontal Scroll */
    .platforms-grid {
        display: flex;
        overflow-x: auto;
        gap: 20px;
        padding: 20px 0;
        scroll-snap-type: x mandatory;
    }
    
    .platform-card {
        min-width: 280px;
        flex-shrink: 0;
        scroll-snap-align: start;
    }
    
    /* About Section */
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .profile-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    /* CTA Section */
    .cta {
        padding: 60px 0;
    }
    
    .cta h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .cta p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
}

/* ===== KLEINE MOBILE - 480px und kleiner ===== */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .navbar {
        width: calc(100% - 16px);
        top: 8px;
    }
    
    .nav-container {
        padding: 10px 16px;
    }
    
    .logo h1 {
        font-size: 1.1rem;
    }
    
    .hero {
        padding: 90px 0 50px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-stats {
        gap: 15px;
    }
    
    .stat-item {
        padding: 15px 10px;
        min-width: 100px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .section-header h2 {
        font-size: 1.7rem;
    }
    
    .showcase-card,
    .feature-card {
        padding: 20px 15px;
    }
    
    .platform-card {
        min-width: 250px;
    }
}

/* ===== SEHR KLEINE MOBILE - 360px und kleiner ===== */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .stat-item {
        width: 100%;
        max-width: 200px;
    }
    
    .platform-card {
        min-width: 220px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* Touch Optimierungen */
@media (hover: none) and (pointer: coarse) {
    .showcase-card:hover,
    .feature-card:hover,
    .platform-card:hover {
        transform: none;
    }
    
    .btn-primary:hover,
    .btn-secondary:hover {
        transform: none;
    }
}

/* Smooth Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ff9800, #ffc107);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ffc107, #ff9800);
}

/* Page Styles */
.page-main {
    padding-top: 120px;
    min-height: calc(100vh - 200px);
}

.page-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f8d074, #ff9500);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Enhanced Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.contact-card {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

/* Featured Cards für Email, WhatsApp, Instagram */
.contact-card.featured-card {
    padding: 3rem;
    transform: scale(1.02);
    border: 2px solid rgba(255, 152, 0, 0.2);
    background: linear-gradient(135deg, #fff 0%, #fefefe 100%);
}

.contact-card.featured-card:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 25px 60px rgba(255, 152, 0, 0.25);
}

/* Spezielle Farben für jede Karte */
.email-card .contact-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.whatsapp-card .contact-icon {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.instagram-card .contact-icon {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 8px 25px rgba(240, 148, 51, 0.4);
}

/* Featured Badge */
.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff9800, #f57c00);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

/* Kleine Karten für Standort, Support und Kundenservice */
.contact-card.small-card {
    padding: 1rem;
    min-height: 120px;
}

.contact-card.small-card .contact-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.contact-card.small-card .contact-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.contact-card.small-card .contact-content p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.contact-card.small-card .contact-action {
    font-size: 0.8rem;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #f8d074, #ff9500);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #f8d074, #ff9500);
}

.featured-card .contact-icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
}

.contact-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
}

.featured-card .contact-content h3 {
    font-size: 1.7rem;
}

.contact-content p {
    color: #666;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-action {
    color: #ff9800;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contact-action::after {
    content: '→';
    transition: transform 0.3s ease;
}

.contact-card:hover .contact-action::after {
    transform: translateX(4px);
}

/* Glow-Effekt für featured cards */
.featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.1), rgba(255, 193, 7, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 24px;
}

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

.contact-cta {
    background: linear-gradient(135deg, #1a1a1a, #333);
    padding: 4rem 2rem;
    border-radius: 30px;
    text-align: center;
    color: white;
    margin-top: 6rem;
    margin-bottom: 4rem;
}

.contact-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Legal Pages Styles */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    display: flex;
    gap: 2rem;
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.legal-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.legal-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f8d074, #ff9500);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.legal-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.legal-info p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

/* AGB Styles */
.agb-content {
    max-width: 900px;
    margin: 0 auto;
}

.agb-section {
    display: flex;
    gap: 2rem;
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.agb-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.agb-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f8d074, #ff9500);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.agb-text h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.agb-text p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.agb-text ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.agb-text li {
    color: #666;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

/* Return Page Styles */
.return-hero {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: linear-gradient(135deg, #f8d074, #ff9500);
    padding: 3rem;
    border-radius: 30px;
    color: white;
    margin-bottom: 4rem;
}

.return-hero-content {
    flex: 1;
}

.return-hero h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.return-hero p {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.95;
}

.return-hero-icon {
    font-size: 4rem;
    opacity: 0.3;
}

.return-process {
    margin-bottom: 4rem;
}

.return-process h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 3rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f8d074, #ff9500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

.return-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.info-card {
    display: flex;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f8d074, #ff9500);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.info-content p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.return-contact {
    background: linear-gradient(135deg, #1a1a1a, #333);
    padding: 4rem 2rem;
    border-radius: 30px;
    text-align: center;
    color: white;
}

.return-contact h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.return-contact p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.contact-item i {
    color: #f8d074;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-card.featured-card {
        transform: none;
        padding: 2rem;
    }
    
    .featured-badge {
        top: 15px;
        right: 15px;
    }
    
    .legal-section,
    .agb-section {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .return-hero {
        flex-direction: column;
        text-align: center;
    }
    
    .return-hero-icon {
        font-size: 3rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .contact-details {
        flex-direction: column;
        gap: 1rem;
    }
    
    .info-card {
        flex-direction: column;
        text-align: center;
    }
}