/* 
======================
   ALLGEMEINE STYLES
======================
*/

:root {
    --primary: #e91e63;
    --primary-light: #ec407a;
    --primary-dark: #c2185b;
    --secondary: #d32f2f;
    --secondary-light: #e53935;
    --secondary-dark: #b71c1c;
    --accent: #ff9800;
    --dark: #0a0a0a;
    --dark-gray: #121212;
    --medium-dark: #1e1e1e;
    --medium: #333333;
    --light: #212121;
    --light-gray: #2c2c2c;
    --lighter-gray: #383838;
    --white: #ffffff;
    --text-light: #ffffff;
    --text-medium: #e0e0e0;
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-dark: linear-gradient(135deg, var(--dark) 0%, var(--medium-dark) 100%);
    --gradient-red: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    --shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.2), 0 1px 2px rgba(0, 0, 0, 0.25);
    --shadow-strong: 0 10px 40px rgba(0, 0, 0, 0.4);
    --transition: all 0.3s ease-in-out;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--dark);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
}

h1 span {
    color: var(--primary);
}

h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    letter-spacing: -0.02em;
}

h2 span {
    color: var(--primary);
}

h2.section-title {
    font-size: 0.875rem;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

p {
    margin-bottom: 1.25rem;
    color: var(--text-medium);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    object-fit: cover;
}

section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

section:nth-child(odd) {
    background-color: var(--dark);
}

section:nth-child(even) {
    background-color: var(--dark-gray);
}

.section-intro {
    max-width: 600px;
    margin-bottom: 3rem;
}

.section-intro p {
    font-size: 1.125rem;
    opacity: 0.9;
}

.content-wrapper {
    margin-bottom: 2rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background-color: rgba(233, 30, 99, 0.15);
    color: var(--primary-light);
    border-radius: 100px;
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.badge i {
    margin-right: 0.5rem;
    font-size: 0.75rem;
}

.stat-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 4rem 0;
}

.stat-item {
    text-align: center;
    flex: 1 1 auto;
    min-width: 150px;
    padding: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--white);
    font-weight: 500;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* 
======================
   HEADER & NAVIGATION
======================
*/

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    padding: 18px 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header.scrolled {
    padding: 14px 0;
    background-color: rgba(10, 10, 10, 0.98);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    position: relative;
    color: var(--white);
    background: linear-gradient(135deg, var(--white) 0%, var(--white) 55%, var(--primary) 55%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo span {
    color: var(--primary);
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav li {
    position: relative;
}

.nav a {
    font-weight: 500;
    font-size: 0.938rem;
    color: var(--text-light);
    position: relative;
    padding: 0.5rem 0;
    display: inline-block;
}

.nav a.active {
    color: var(--primary);
    font-weight: 600;
}

.nav a:hover {
    color: var(--primary);
}

.nav a.active:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    background-clip: padding-box;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--white);
    cursor: pointer;
}

/* Mobile Navigation Styles */
@media (max-width: 990px) {
    .mobile-nav-toggle {
        display: block;
        z-index: 1001;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: var(--dark) !important;
        z-index: 1000;
        padding: 70px 20px 30px;
        overflow-y: auto;
        transition: right 0.3s ease-in-out;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        border-left: 1px solid rgba(255, 255, 255, 0.05);
        color: var(--text-light) !important;
    }
    
    /* Alle Elemente innerhalb der mobilen Navigation mit dunklem Hintergrund */
    .nav *,
    .nav ul,
    .nav li,
    .nav a,
    .dropdown-menu,
    .nav.active ul,
    .nav.active li,
    .nav.active a {
        background-color: var(--dark) !important;
        color: var(--text-light) !important;
    }
    
    .nav.active {
        right: 0;
        background-color: var(--dark) !important;
    }
    
    .nav ul {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
    }
    
    .nav li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav a {
        display: block;
        padding: 15px 0;
        width: 100%;
    }
    
    .header-cta {
        display: none;
    }
    
    .dropdown {
        width: 100%;
    }
    
    .dropdown-toggle {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }
}

/* Overlay für Mobile-Navigation */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.overlay.active {
    display: block;
    opacity: 1;
}

/* Dropdown Menü Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: inline-block;
    padding: 0.5rem 0;
}

.dropdown-toggle .fas {
    margin-left: 6px;
    font-size: 0.75rem;
    transition: var(--transition);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--medium-dark);
    border-radius: var(--radius-md);
    min-width: 220px;
    box-shadow: var(--shadow-strong);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    border: 1px solid rgba(255,255,255,0.05);
    padding: 8px 0;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 20px;
    width: 12px;
    height: 12px;
    background-color: var(--medium-dark);
    transform: rotate(45deg);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-left: 1px solid rgba(255,255,255,0.05);
}

.dropdown-menu li {
    display: block;
    margin: 0;
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-light);
    font-size: 0.875rem;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background-color: rgba(255,255,255,0.05);
    color: var(--primary);
    border-left: 3px solid var(--primary);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown:hover .dropdown-toggle .fas {
    transform: rotate(180deg);
}

/* Aktiver Zustand für mobile Geräte */
.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown.active .dropdown-toggle .fas {
    transform: rotate(180deg);
}

/* Responsive Anpassungen für das Dropdown-Menü */
@media (max-width: 990px) {
    .dropdown-menu {
        position: static;
        background-color: var(--dark) !important;
        box-shadow: none;
        border: none;
        border-radius: 0;
        margin-top: 0;
        padding-left: 20px;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    
    /* Explizit dunklen Hintergrund für alle Dropdown-Elemente */
    .dropdown-menu li,
    .dropdown-menu a,
    .dropdown-menu * {
        background-color: var(--dark) !important;
    }
    
    .dropdown-menu::before {
        display: none;
    }
    
    .dropdown:hover .dropdown-menu,
    .dropdown.active .dropdown-menu {
        max-height: 500px;
        opacity: 1;
        visibility: visible;
    }
    
    .dropdown-menu a {
        padding: 12px 15px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        color: var(--text-light);
    }
    
    .dropdown-menu a:last-child {
        border-bottom: none;
    }
}

/* 
======================
   BUTTONS & CTA
======================
*/

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.938rem;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.cta-button.primary {
    background: var(--gradient-red);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 65, 108, 0.3);
}

.cta-button.primary:hover {
    box-shadow: 0 8px 20px rgba(255, 65, 108, 0.4);
    transform: translateY(-2px);
    color: var(--white);
}

.cta-button.secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--white);
}

.cta-button i {
    margin-right: 8px;
    font-size: 0.875rem;
}

.header-cta {
    background: var(--primary);
    color: var(--white);
    padding: 10px 20px;
    font-size: 0.875rem;
    border-radius: 6px;
    font-weight: 500;
}

.header-cta:hover {
    background: var(--primary-dark);
    color: var(--white);
}

/* Container für Header CTA mit rechtlichem Hinweis */
.header-cta-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* Container für CTA-Buttons mit rechtlichem Hinweis */
.cta-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Rechtlicher Hinweis für Telefonnummern */
.legal-notice {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
    text-align: center;
}

.cta-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    border-radius: 100px;
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.4);
    animation: pulse 2s infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-floating-button {
    display: inline-flex;
    align-items: center;
    background: var(--gradient-red);
    color: var(--white);
    padding: 16px 30px;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.cta-floating-button i {
    margin-right: 8px;
}

.cta-floating:hover {
    transform: scale(1.05);
}

.cta-floating-button:hover {
    color: var(--white);
    background: linear-gradient(135deg, #ff4b2b 0%, #ff416c 100%);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.5);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(79, 70, 229, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(79, 70, 229, 0);
    }
}

/* 
======================
   HERO SECTION
======================
*/

.hero {
    padding: 180px 0 100px;
    position: relative;
    background-color: var(--dark);
    overflow: hidden;
    background-image: url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.content-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--primary);
    line-height: 1.3;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background-color: rgba(79, 70, 229, 0.1);
    color: var(--primary);
    border-radius: 100px;
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.hero-badge i {
    margin-right: 8px;
    font-size: 0.75rem;
}

.hero h1 {
    font-size: 3.75rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-text {
    font-size: 1.125rem;
    max-width: 500px;
    margin-bottom: 2rem;
    opacity: 1;
    color: var(--white);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.trust-badges {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    color: var(--white);
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid white;
    object-fit: cover;
}

.trust-badge .avatar:not(:first-child) {
    margin-left: -15px;
}

.rating {
    display: flex;
    flex-direction: column;
}

.stars {
    color: #FFB800;
    margin-bottom: 4px;
    font-size: 0.875rem;
}

.rating p {
    font-size: 0.75rem;
    opacity: 1;
    margin-top: 5px;
    color: var(--white);
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-strong);
    width: 100%;
}

.service-badge {
    position: absolute;
    bottom: -25px;
    right: -15px;
    background: var(--white);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-card);
    min-width: 90px;
}

.service-badge i {
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 6px;
}

.service-badge span {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
}

.service-badge p {
    font-size: 0.75rem;
    margin-bottom: 0;
    line-height: 1.2;
}

/* 
======================
   HIGHLIGHT CARDS
======================
*/

.highlights {
    text-align: center;
    padding: 100px 0;
}

.highlights h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.highlights h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

/* 
======================
   SERVICE CARDS
======================
*/

.service-card {
    background-color: var(--medium-dark);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255,255,255,0.05);
}

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

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 1.5rem;
    color: var(--white);
}

.service-icon.blue {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
}

.service-icon.purple {
    background: linear-gradient(135deg, #9061F9 0%, #6B46C1 100%);
}

.service-icon.green {
    background: linear-gradient(135deg, #34D399 0%, #059669 100%);
}

.service-card h3 {
    margin-bottom: 20px;
    font-size: 1.25rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    color: var(--text-light);
    font-size: 0.938rem;
}

.feature-list li:last-child {
    margin-bottom: 0;
}

.feature-list li i {
    color: var(--primary);
    margin-right: 12px;
    font-size: 0.875rem;
}

/* Stats Section */
.stats {
    padding: 40px 0;
}

.stat-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0;
}

.stat-item {
    text-align: center;
    flex: 1 1 auto;
    min-width: 150px;
    padding: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--white);
    font-weight: 500;
}

/* 
======================
   CATEGORY SECTION
======================
*/

.categories {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.categories-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.second-row {
    margin-top: 30px;
}

.category-box {
    background-color: var(--medium-dark);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(255,255,255,0.05);
}

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

.category-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.category-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
    border: 3px solid var(--primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.category-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
}

.category-box:hover .category-icon img {
    transform: scale(1.1);
}

.category-icon.blue {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
}

.category-icon.purple {
    background: linear-gradient(135deg, #9061F9 0%, #6B46C1 100%);
}

.category-icon.green {
    background: linear-gradient(135deg, #34D399 0%, #059669 100%);
}

.category-icon.orange {
    background: linear-gradient(135deg, #FB923C 0%, #EA580C 100%);
}

.category-icon.red {
    background: linear-gradient(135deg, #F87171 0%, #DC2626 100%);
}

.category-icon.teal {
    background: linear-gradient(135deg, #2DD4BF 0%, #0D9488 100%);
}

.category-icon.pink {
    background: linear-gradient(135deg, #F472B6 0%, #DB2777 100%);
}

.category-icon.indigo {
    background: linear-gradient(135deg, #818CF8 0%, #4F46E5 100%);
}

.category-box h3 {
    font-size: 1.125rem;
    color: var(--white);
    margin-bottom: 12px;
    font-weight: 600;
}

.category-box p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.938rem;
    flex-grow: 1;
}

.mini-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.mini-features li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: var(--text-light);
    font-size: 0.813rem;
}

.mini-features .dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 50%;
    margin-right: 8px;
    display: inline-block;
}

.category-link {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    margin-top: auto;
}

.category-link i {
    margin-left: 6px;
    font-size: 0.75rem;
    transition: var(--transition);
}

.category-link:hover i {
    transform: translateX(4px);
}

/* 
======================
   ABOUT SECTION
======================
*/

.about {
    padding: 100px 0;
}

.content-col {
    padding-right: 20px;
}

.content-text p {
    margin-bottom: 1rem;
}

.image-col {
    position: relative;
}

.rounded-image {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-strong);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    box-shadow: var(--shadow-card);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    min-width: 100px;
}

.image-badge span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    line-height: 1;
}

.image-badge p {
    font-size: 0.75rem;
    margin: 5px 0 0 0;
    line-height: 1.2;
}

/* 
======================
   FAQ SECTION
======================
*/

.faq {
    padding: 100px 0;
    background-color: var(--dark);
    position: relative;
}

.white-badge {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.faq h2.white-title {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.faq h2.white-title span {
    color: var(--primary-light);
}

.white-intro p {
    color: rgba(255, 255, 255, 0.9);
}

.faq-cta {
    text-align: center;
    margin-top: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    background-color: var(--medium-dark);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.05);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-left: 5px solid var(--primary);
}

.faq-item h3 {
    color: var(--primary);
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.faq-item h3::before {
    content: '?';
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background-color: var(--primary-light);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.faq-item p {
    margin-bottom: 0;
    color: var(--text-light);
}

/* 
======================
   FOOTER
======================
*/

.footer {
    background-color: var(--dark);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-light);
}

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

.footer-logo {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-contact a {
    color: var(--primary);
    font-weight: 500;
}

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

.footer-nav li {
    margin-bottom: 10px;
}

.footer-nav a {
    color: var(--text-light);
    transition: var(--transition);
}

.footer-nav a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: 0.813rem;
    color: var(--text-light);
}

.footer-bottom p {
    margin-bottom: 10px;
}

.footer-bottom a {
    color: var(--light);
    margin-left: 20px;
}

.footer-bottom a:hover {
    color: var(--primary-light);
}

/* 
======================
   RESPONSIVE DESIGN
======================
*/

@media (max-width: 1100px) {
    .highlights-grid {
        gap: 20px;
    }
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-content {
        max-width: 100%;
        order: 1;
    }
    
    .hero-image {
        order: 0;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .categories-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 150px 0 80px;
    }
    
    .header .container {
        flex-wrap: wrap;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        background-color: var(--white);
        padding: 80px 20px 30px;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-close {
        display: none !important; /* Hide the X button completely */
    }
    
    button.nav-close {
        display: none !important;
    }
    
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(3px);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    .overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .stat-item {
        min-width: 120px;
    }
}

@media (max-width: 576px) {
    .categories-container {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom a {
        margin: 0 10px;
    }
    
    .stat-wrapper {
        grid-template-columns: repeat(2, 1fr);
        display: grid;
    }
    
    .stat-item {
        margin-bottom: 1rem;
    }
    
    .service-badge {
        right: 50%;
        transform: translateX(50%);
        bottom: -45px;
    }
}

/* 
======================
   ANIMATIONS
======================
*/

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

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

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* Tabellen Styling */
.data-table {
    margin: 30px 0;
    overflow-x: auto;
}

.data-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--medium-dark);
    box-shadow: var(--shadow-card);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.data-table th {
    background-color: var(--primary);
    color: var(--white);
    text-align: left;
    padding: 15px 20px;
    font-weight: 600;
}

.data-table td {
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: var(--text-light);
}

.data-table tr:last-child td {
    border-bottom: none;
}

.data-table tr:hover td {
    background-color: rgba(255,255,255,0.03);
}

/* Zusätzliche Stile für die BDSM-Unterseite */
.sub-heading {
    font-size: 1.25rem;
    color: var(--primary);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-list {
    margin: 20px 0;
    list-style: none;
}

.feature-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: baseline;
}

.feature-list i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 0.875rem;
}

.call-to-action-box.dark {
    background-color: var(--dark-gray);
    border: 1px solid rgba(255,255,255,0.05);
}

/* Styling für FAQ-Sektion */
.faq-section {
    background-color: var(--dark);
    padding: 80px 0;
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(135deg, rgba(233, 30, 99, 0.1) 0%, rgba(211, 47, 47, 0.1) 100%);
    z-index: 0;
}

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

/* Gesetzlicher Hinweis unter Call-to-Action Buttons */
.legal-notice {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
    text-align: left;
    line-height: 1.2;
    display: block;
    margin-bottom: 10px;
}

/* Speziell für den FAQ-Bereich - zentrierter Hinweistext */
.faq-cta .legal-notice {
    text-align: center;
}
