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

:root {
    --primary-color: #0a0a0a;
    --secondary-color: #FFD700;
    --accent-color: #FFA500;
    --text-light: #ffffff;
    --text-dark: #0a0a0a;
    --text-gray: rgba(255, 255, 255, 0.7);
    --card-bg: #1a1a1a;
    --border-color: rgba(255, 255, 255, 0.1);
    --gradient-1: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --gradient-2: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --gradient-3: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--primary-color);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Navigation */
nav {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: blur(0px);
    padding: 1.5rem 5%;
    transition: all 0.3s ease;
}

nav.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Bebas Neue', 'Arial Black', 'Arial Bold', Arial, sans-serif;
    font-size: 2rem;
    letter-spacing: 2px;
}

.logo-img {
    height: 65px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    color: var(--secondary-color);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--secondary-color);
    color: var(--primary-color) !important;
    padding: 0.8rem 1.5rem !important;
    border-radius: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    background: var(--accent-color);
}

.nav-cta::after {
    display: none;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    padding: 5rem 2rem 2rem;
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu .nav-cta {
    background: var(--secondary-color);
    color: var(--primary-color) !important;
    padding: 1rem 1.5rem !important;
    border-radius: 25px;
    text-align: center;
    border: none;
    margin-top: 1rem;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1d29 0%, #2d1b3d 100%);
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 2;
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 70, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.hero-content {
    text-align: center;
    z-index: 3;
    max-width: 1000px;
    padding: 0 2rem;
    position: relative;
}

.hero-title {
    font-family: 'Bebas Neue', 'Arial Black', 'Arial Bold', Arial, sans-serif;
    font-size: 4.8rem;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero-title .highlight {
    color: var(--secondary-color);
    white-space: nowrap;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s backwards;
    letter-spacing: 2px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.8);
    color: rgba(255, 255, 255, 1);
}

.hero-social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-social-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    flex-direction: column;
    min-width: 220px;
    width: 220px;
    max-width: 220px;
    box-sizing: border-box;
    flex: 0 0 220px;
}

.hero-social-item i {
    font-size: 1.2rem;
}

.hero-cta-button {
    font-size: 1.4rem;
    padding: 1.5rem 4rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.hero-risk-reversal {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.5;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.4s backwards;
    line-height: 1.8;
}

.hero-vip {
    font-size: 1rem;
    margin-bottom: 3rem;
    color: var(--accent-color);
    font-weight: 600;
    animation: fadeInUp 1s ease 0.5s backwards;
}

.hero-vip i {
    margin-right: 0.5rem;
    color: #ffd700;
}

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

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.6s backwards;
    position: relative;
    overflow: hidden;
    margin-right: 1rem;
}

.cta-button-outline {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: transparent;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    border: 2px solid var(--text-light);
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.7s backwards;
    position: relative;
    overflow: hidden;
}

.cta-button-outline:hover {
    background: var(--text-light);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
    background: var(--accent-color);
}

/* Content Blocks Section */
.content-blocks {
    padding: 4rem 5%;
    background: var(--primary-color);
}

.content-blocks-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.large-block {
    position: relative;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
}

.large-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.block-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95), rgba(0,0,0,0.7), transparent);
    padding: 3rem 2rem 2rem;
    color: var(--text-light);
    z-index: 2;
}

.block-overlay h3 {
    font-family: 'Bebas Neue', 'Arial Black', 'Arial Bold', Arial, sans-serif;
    font-size: 2.5rem;
    letter-spacing: 2px;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 5%;
    background: var(--card-bg);
}

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

.testimonials-slider {
    position: relative;
    overflow: hidden;
    margin-top: 3rem;
    padding: 2rem 0;
    width: 100%;
}

.testimonials-track {
    display: flex;
    align-items: stretch;
    gap: 1.5rem;
    transition: transform 1.5s ease-in-out;
    will-change: transform;
}

.testimonial-card {
    flex: 0 0 calc((100% - 3rem) / 3);
    width: calc((100% - 3rem) / 3);
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-shrink: 0;
    transition: all 0.3s ease;
    min-height: 200px;
    box-sizing: border-box;
}

@media (max-width: 968px) {
    .testimonial-card {
        flex: 0 0 100%;
        width: 100%;
        min-width: 100%;
        max-width: 100%;
    }
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

/* Customer Testimonials Carousel */
.customer-testimonials-carousel {
    position: relative;
    padding: 0 60px;
}

#customerTestimonialsTrack {
    display: flex;
    gap: 2rem;
    overflow: hidden;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.customer-testimonial-card {
    flex: 0 0 calc(50% - 1rem);
    min-width: calc(50% - 1rem);
    max-width: calc(50% - 1rem);
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-sizing: border-box;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.customer-testimonial-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.customer-testimonial-name {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.customer-testimonial-text {
    color: var(--text-gray);
    line-height: 1.6;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-nav {
    z-index: 10;
}

.testimonial-nav:hover {
    background: rgba(255, 215, 0, 0.2) !important;
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 968px) {
    .customer-testimonials-carousel {
        padding: 0 50px;
    }
    
    .customer-testimonial-card {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .testimonial-nav {
        width: 35px !important;
        height: 35px !important;
        font-size: 1.2rem !important;
    }
    
    .testimonial-prev {
        left: 10px !important;
    }
    
    .testimonial-next {
        right: 10px !important;
    }
}

.testimonial-stars {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-light);
    margin-bottom: 1rem;
    flex-grow: 1;
    font-style: italic;
}

.testimonial-name {
    font-size: 0.85rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-top: auto;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem 0;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 200px;
}

.trust-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.trust-badge-icon {
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.trust-badge-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.trust-badge-title {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: white;
    line-height: 1.2;
}

.trust-badge-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-badge-stars {
    display: flex;
    gap: 0.15rem;
    color: #FFD700;
    font-size: 0.9rem;
}

.trust-badge-stars i {
    line-height: 1;
}

.trust-badge-rating-text {
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.trust-badge-subtitle {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.2;
    opacity: 0.95;
}

/* Trusted Shops Badge */
.trusted-shops-badge {
    background: #ffffff;
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.trusted-shops-badge .trust-badge-icon {
    color: #000000;
    background: rgba(0, 0, 0, 0.05);
}

.trusted-shops-badge .trust-badge-title,
.trusted-shops-badge .trust-badge-rating-text,
.trusted-shops-badge .trust-badge-subtitle {
    color: #000000;
}

.trusted-shops-badge .trust-badge-stars {
    color: #FFD700;
}

.trusted-shops-badge:hover {
    background: #f8f8f8;
    border-color: rgba(0, 0, 0, 0.2);
}

/* Google Business Badge */
.google-badge {
    background: #ffffff;
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.google-badge .trust-badge-icon {
    color: #000000;
    background: rgba(0, 0, 0, 0.05);
}

.google-badge .trust-badge-title,
.google-badge .trust-badge-rating-text,
.google-badge .trust-badge-subtitle {
    color: #000000;
}

.google-badge .trust-badge-stars {
    color: #FFD700;
}

.google-badge:hover {
    background: #f8f8f8;
    border-color: rgba(0, 0, 0, 0.2);
}

.small-blocks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.small-block {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 240px;
}

.small-block:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.small-block i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.small-block h4 {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
}

/* Product Blocks Section */
.product-blocks {
    padding: 4rem 5%;
    background: var(--card-bg);
}

.product-blocks-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.product-block {
    position: relative;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
}

.product-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 3rem 2rem 2rem;
    color: var(--text-light);
}

.product-overlay h3 {
    font-family: 'Bebas Neue', 'Arial Black', 'Arial Bold', Arial, sans-serif;
    font-size: 2.5rem;
    letter-spacing: 2px;
    color: var(--secondary-color);
}

/* Vision Section */
.vision-section {
    padding: 8rem 5%;
    background: var(--primary-color);
}

.vision-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.vision-text h2 {
    font-family: 'Bebas Neue', 'Arial Black', 'Arial Bold', Arial, sans-serif;
    font-size: 4rem;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.vision-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.vision-image {
    border-radius: 15px;
    overflow: hidden;
}

.vision-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Employees Section */
.employees-section {
    padding: 6rem 5%;
    background: var(--card-bg);
}

.employees-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.employees-slider {
    position: relative;
    overflow: hidden;
    margin-top: 3rem;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.employees-track {
    display: flex;
    align-items: center;
    gap: 2rem;
    will-change: transform;
    width: fit-content;
    animation: scrollEmployees 30s linear infinite;
}

@keyframes scrollEmployees {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.employee-card {
    flex: 0 0 calc(100vw / 6);
    width: calc(100vw / 6);
    min-width: calc(100vw / 6);
    max-width: calc(100vw / 6);
    text-align: center;
    box-sizing: border-box;
    flex-shrink: 0;
}

@media (min-width: 1400px) {
    .employee-card {
        flex: 0 0 calc(1400px / 6);
        width: calc(1400px / 6);
        min-width: calc(1400px / 6);
        max-width: calc(1400px / 6);
    }
}

.employee-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 3px solid var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.employee-avatar:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.employee-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.employee-avatar i {
    font-size: 4rem;
    color: var(--secondary-color);
}

.employee-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Events Section */
.events-section {
    padding: 6rem 5%;
    background: var(--primary-color);
}

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

.events-slider {
    position: relative;
    margin-top: 3rem;
}

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

.events-loading,
.events-error,
.events-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-gray);
}

.events-loading i,
.events-error i,
.events-empty i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.events-loading p,
.events-error p,
.events-empty p {
    font-size: 1.2rem;
    margin-top: 1rem;
}

.event-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.event-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.event-content {
    padding: 2rem;
}

.event-date {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.event-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary-color);
    background: rgba(255, 215, 0, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    margin-bottom: 0.5rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.event-content h3 {
    font-family: 'Bebas Neue', 'Arial Black', 'Arial Bold', Arial, sans-serif;
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.event-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.event-button:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.events-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--card-bg);
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.events-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.events-nav:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.events-nav.prev {
    left: -25px;
}

.events-nav.next {
    right: -25px;
}

/* Pillars Section */
.pillars {
    padding: 8rem 5%;
    background: var(--card-bg);
    position: relative;
}

.section-title {
    font-family: 'Bebas Neue', 'Arial Black', 'Arial Bold', Arial, sans-serif;
    font-size: 4rem;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.pillar-card {
    background: linear-gradient(145deg, #252836, #1a1d29);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pillar-card:nth-child(2)::before {
    background: var(--gradient-2);
}

.pillar-card:nth-child(3)::before {
    background: var(--gradient-3);
}

.pillar-card:hover::before {
    opacity: 0.1;
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.pillar-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pillar-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.pillar-card:nth-child(2) .pillar-icon {
    background: linear-gradient(45deg, #f093fb, #f5576c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pillar-card:nth-child(3) .pillar-icon {
    background: linear-gradient(45deg, #4facfe, #00f2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pillar-title {
    font-family: 'Bebas Neue', 'Arial Black', 'Arial Bold', Arial, sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.pillar-description {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.pillar-features {
    list-style: none;
    margin-top: auto;
}

.pillar-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pillar-features li:last-child {
    border-bottom: none;
}

.pillar-features i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    align-items: center;
}

.hero-buttons .cta-button,
.hero-buttons .cta-button-outline {
    min-width: 200px;
    text-align: center;
}

/* Services Section */
.services {
    padding: 8rem 5%;
    background: linear-gradient(180deg, #1a1d29 0%, #0f111a 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 15px 40px rgba(33, 150, 243, 0.2);
}

.service-image-container {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.service-image-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-image {
    opacity: 0;
}

.service-card:hover .service-image-hover {
    opacity: 1;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.service-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

/* Vorteile Section */
.vorteile {
    padding: 8rem 5%;
    background: var(--primary-color);
    position: relative;
}

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

.vorteile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

.vorteile-card {
    background: linear-gradient(145deg, #252836, #1a1d29);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.vorteile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(33, 150, 243, 0.3);
    border-color: var(--secondary-color);
}

.vorteile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.vorteile-card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.vorteile-icon {
    font-size: 3rem;
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vorteile-card-title {
    font-family: 'Bebas Neue', 'Arial Black', 'Arial Bold', Arial, sans-serif;
    font-size: 2rem;
    letter-spacing: 2px;
    margin: 0;
}

.vorteile-value {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

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

.vorteile-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1rem;
    line-height: 1.6;
}

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

.vorteile-list i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.vorteile-list.inklusive-list i {
    font-size: 2.5rem;
    margin-top: 0;
    width: 60px;
    text-align: center;
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vorteile-list.inklusive-list li {
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 0;
}

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

.vorteile-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.vorteile-badge {
    display: inline-block;
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

/* Psychology Models Section */
.psychology {
    padding: 8rem 5%;
    background: var(--primary-color);
}

.psychology-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.psychology-text h2 {
    font-family: 'Bebas Neue', 'Arial Black', 'Arial Bold', Arial, sans-serif;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.psychology-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.zone-diagram {
    background: linear-gradient(145deg, #252836, #1a1d29);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
}

.zone {
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.zone:hover {
    transform: translateX(10px);
}

.comfort-zone {
    background: rgba(33, 150, 243, 0.1);
    border-color: #2196f3;
}

.growth-zone {
    background: rgba(0, 188, 212, 0.1);
    border-color: #00bcd4;
}

.flow-zone {
    background: rgba(0, 201, 167, 0.1);
    border-color: #00c9a7;
}

.zone:nth-child(4) {
    background: rgba(0, 255, 127, 0.1);
    border-color: #00ff7f;
}

.zone h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.zone p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* Instagram News Section */
.instagram-section {
    padding: 8rem 5%;
    background: linear-gradient(180deg, #1a1d29 0%, #0f111a 100%);
}

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

/* Trust Elements */
.trust-elements {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 3px solid var(--secondary-color);
}

.trust-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    width: 20px;
}

/* Laden Impressionen */
.laden-impressionen {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.impression-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.impression-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(0, 166, 81, 0.2);
}

.impression-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.impression-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

/* Image Gallery Slider */
.image-gallery {
    margin: 2rem 0;
    max-width: 100%;
    position: relative;
}

.gallery-slider {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.gallery-slide.active {
    opacity: 1;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.gallery-dot.active {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: scale(1.2);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.gallery-nav:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav.prev {
    left: 20px;
}

.gallery-nav.next {
    right: 20px;
}

/* CTA Section */
.cta-section {
    padding: 8rem 5%;
    background: linear-gradient(135deg, var(--secondary-color), #c7004c);
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.cta-parallax {
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    height: 200%;
    min-height: 200vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
    opacity: 0.3;
    will-change: transform;
    pointer-events: none;
}

.cta-parallax::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.8), rgba(199, 0, 76, 0.8));
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cta-section h2 {
    font-family: 'Bebas Neue', 'Arial Black', 'Arial Bold', Arial, sans-serif;
    font-size: 4rem;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
}

.cta-section p {
    font-size: 1.3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-secondary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Contact Alternatives */
.contact-alternatives {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-alternatives p {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-alternatives strong {
    color: var(--accent-color);
    font-weight: 700;
}

/* Footer */
footer {
    background: var(--primary-color);
    padding: 4rem 5% 2rem;
    color: var(--text-gray);
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column p,
.footer-column a {
    color: var(--text-gray);
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--secondary-color);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-gray);
}

/* Responsive */
@media (max-width: 968px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-content {
        padding-top: 4rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .content-blocks-container {
        grid-template-columns: 1fr;
    }
    
    .product-blocks-container {
        grid-template-columns: 1fr;
    }
    
    .vision-container {
        grid-template-columns: 1fr;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
    }
    
    .psychology-content {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        flex: 0 0 100%;
        width: 100%;
        min-width: 100%;
        max-width: 100%;
    }
    
    .employee-card {
        flex: 0 0 calc(100vw / 2);
        width: calc(100vw / 2);
        min-width: calc(100vw / 2);
        max-width: calc(100vw / 2);
    }
    
    .employees-track {
        animation-duration: 20s;
    }
    
    .vorteile-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .events-nav {
        display: none;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2rem;
        letter-spacing: 2px;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        display: none;
    }
    
    .hero-subtitle-mobile {
        display: block !important;
        animation: fadeInUp 1s ease 0.2s backwards;
    }
    
    .hero-content {
        padding-top: 6rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero-social-proof {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-social-item {
        padding: 0.8rem 1.5rem;
        min-width: 220px;
        width: 220px;
        max-width: 220px;
        flex: 0 0 220px;
        box-sizing: border-box;
    }
    
    .hero-social-item span {
        font-size: 0.9rem !important;
    }
    
    .hero-social-item span:last-child {
        font-size: 0.75rem !important;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        margin-top: 1.5rem;
    }
    
    .hero-cta-button {
        font-size: 1rem !important;
        padding: 1.2rem 2rem !important;
        letter-spacing: 1px !important;
        width: 100%;
        text-align: center;
    }
    
    .hero-risk-reversal {
        font-size: 0.85rem !important;
        padding: 0 1rem;
        text-align: center;
        line-height: 1.4;
    }
    
    .cta-button,
    .cta-button-outline {
        width: 100%;
        text-align: center;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .logo-img {
        height: 55px;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .small-blocks-grid {
        grid-template-columns: 1fr;
    }
}

/* Problem List Styling */
.problem-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(199, 0, 76, 0.08);
    border-left: 4px solid rgba(199, 0, 76, 0.5);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.problem-item:hover {
    background: rgba(199, 0, 76, 0.12);
    border-left-color: rgba(199, 0, 76, 0.8);
    transform: translateX(5px);
}

.problem-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(199, 0, 76, 0.2);
    border-radius: 50%;
    color: #c7004c;
    font-size: 1.5rem;
}

.problem-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0;
    flex: 1;
}

@media (max-width: 768px) {
    .problem-item {
        padding: 1.2rem;
        gap: 1rem;
    }
    
    .problem-icon {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .problem-text {
        font-size: 1.1rem;
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Screen Reader Only - für Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

