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

:root {
    --black: #0a0a0a;
    --dark-gray: #1a1a1a;
    --medium-gray: #666666;
    --light-gray: #f5f5f5;
    --gold: #c9a959;
    --gold-hover: #b8954a;
    --white: #ffffff;
    --text-light: #e0e0e0;
    --text-color: #333333;
    --purple: #6b2d91;
    --olive: #8b9a46;
    --gray-card: #888888;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--white);
    background-color: var(--black);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

video,
iframe {
    max-width: 100%;
}

main {
    display: block;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid var(--gold);
}

.btn-primary {
    background-color: var(--gold);
    color: var(--black);
}

    .btn-primary:hover {
        background-color: var(--gold-hover);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(201, 169, 89, 0.3);
    }

.btn-outline {
    background-color: transparent;
    color: var(--gold);
}

    .btn-outline:hover {
        background-color: var(--gold);
        color: var(--black);
    }

.btn-white {
    background-color: var(--white);
    color: var(--black);
    border-color: var(--white);
}

    .btn-white:hover {
        background-color: transparent;
        color: var(--white);
    }

/* ==================== HEADER / NAVIGATION ==================== */
.header {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

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

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

.logo-image {
    height: 50px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

    .logo-image:hover {
        transform: scale(1.05);
    }

.logo-text {
    font-size: 24px;
    color: var(--white);
    font-weight: 400;
    font-family: 'Open Sans', sans-serif;
}

/* Hauptnavigation */
.main-nav ul {
    display: flex;
    gap: 0;
    align-items: center;
    margin: 0;
    padding: 0;
}

.main-nav > ul > li {
    position: relative;
}

    .main-nav > ul > li > a {
        display: block;
        padding: 12px 20px;
        font-weight: 400;
        color: var(--text-light);
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
    }

        .main-nav > ul > li > a:hover,
        .main-nav > ul > li > a.active {
            color: var(--gold);
        }

/* Dropdown Pfeil */
.dropdown-arrow {
    font-size: 8px;
    margin-left: 5px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menü - VERTIKAL + TRANSPARENT + SCHWARZE SCHRIFT + ZENTRIERT */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(201, 169, 89, 0.8); /* 80% sichtbar - transparentes Gold */
    backdrop-filter: blur(5px); /* Weichzeichner für modernen Look */
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-top: 3px solid rgba(201, 169, 89, 0.5); /* Transparenter goldener Rand */
    z-index: 1000;
    padding: 10px 0;
    display: flex;
    flex-direction: column; /* WICHTIG: Vertikal anordnen! */
    gap: 5px;
}

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

.dropdown-menu li {
    list-style: none;
    margin: 0;
}

    .dropdown-menu li a {
        display: block;
        padding: 15px 25px;
        color: var(--black); /* SCHWARZE SCHRIFT für bessere Lesbarkeit auf Gold */
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2); /* Sichtbarere Trennlinie */
        transition: all 0.3s ease;
        text-align: center; /* ZENTRIERT! */
    }

        .dropdown-menu li a:hover {
            background-color: rgba(255, 255, 255, 0.2); /* Hellerer Hover-Effekt */
            color: var(--black);
        }

    .dropdown-menu li:last-child a {
        border-bottom: none;
    }

/* Header Button */
.header .main-nav .btn-outline {
    background-color: transparent !important;
    color: var(--gold) !important;
    border: 2px solid var(--gold) !important;
    padding: 12px 28px !important;
    margin-left: 10px;
}

    .header .main-nav .btn-outline:hover {
        background-color: var(--gold) !important;
        color: var(--black) !important;
        transform: translateY(-2px);
    }

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

    .mobile-menu-btn span {
        width: 25px;
        height: 2px;
        background-color: var(--white);
        transition: all 0.3s ease;
    }

/* Mobile Ansicht */
@media (max-width: 992px) {
    .mobile-menu-btn {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--black);
        display: none;
        padding: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        max-height: 80vh;
        overflow-y: auto;
    }

        .main-nav.active {
            display: block;
        }

        .main-nav ul {
            flex-direction: column;
            gap: 0;
        }

        .main-nav > ul > li {
            width: 100%;
        }

            .main-nav > ul > li > a {
                padding: 15px 20px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                color: var(--white);
            }

    /* Mobile Dropdown - Standardmäßig ausgeblendet */
    .has-dropdown .dropdown-menu {
        position: static;
        display: none; /* Einfach ausblenden */
        background-color: rgba(0, 0, 0, 0.6);
        border-top: none;
        box-shadow: none;
        min-width: 100%;
        padding: 0;
        margin-top: 0;
    }

    /* Anzeigen wenn Parent aktiv ist */
    .has-dropdown.active .dropdown-menu {
        display: block; /* Einfach anzeigen */
    }

    .dropdown-menu li a {
        padding: 12px 20px 12px 45px;
        font-size: 13px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        color: var(--white);
        text-align: left;
    }

        .dropdown-menu li a:hover {
            background-color: rgba(201, 169, 89, 0.2);
            padding-left: 50px;
        }

    .dropdown-arrow {
        float: right;
        margin-top: 3px;
        transition: transform 0.3s ease;
    }

    .has-dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }

    .header .main-nav .btn-outline {
        margin: 15px 20px;
        text-align: center;
    }
}

/* ==================== HERO BEREICH ==================== */
.hero {
    background: linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.7)), url('../images/optical-device.jpg') center/cover no-repeat;
    color: var(--white);
    padding: 120px 0;
    text-align: center;
}

.hero-content h2 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-slogan {
    font-size: 22px;
    margin-bottom: 40px;
    color: var(--text-light);
    font-weight: 300;
}

/* ==================== INTRO / ÜBER UNS ==================== */
.intro {
    padding: 100px 0;
    background-color: var(--black);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.intro-left {
    text-align: center;
}

    .intro-left h3 {
        font-size: 18px;
        color: var(--text-light);
        margin-bottom: 10px;
        font-weight: 400;
    }

    .intro-left .name {
        font-size: 42px;
        color: var(--white);
        margin-bottom: 40px;
        font-weight: 400;
    }

.intro-image {
    margin-top: 30px;
}

    .intro-image img {
        border-radius: 8px;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        display: block;
    }

.intro-right {
    text-align: center;
    padding-top: 40px;
}

    .intro-right h4 {
        font-size: 24px;
        color: var(--text-light);
        margin-bottom: 10px;
        font-weight: 400;
    }

    .intro-right .year {
        font-size: 18px;
        color: var(--gold);
        margin-bottom: 40px;
    }

.handshake-icon {
    width: 80px;
    height: 80px;
    background-color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 40px;
}

.intro-right p {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
    font-size: 15px;
}

/* ==================== STATS BEREICH ==================== */
.stats {
    padding: 80px 0;
    background: linear-gradient(rgba(102, 102, 102, 0.9), rgba(102, 102, 102, 0.9)), url('../images/sunset-sunglasses.jpg') center/cover no-repeat;
}

    .stats .section-label {
        font-size: 14px;
        color: var(--gold);
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }

    .stats > .container > h3 {
        font-size: 36px;
        margin-bottom: 50px;
        color: var(--white);
    }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 0 20px;
    border-right: 1px solid var(--gold);
}

    .stat-item:last-child {
        border-right: none;
    }

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    display: block;
}

/* ==================== SERVICES ==================== */
.services {
    padding: 100px 0;
    background-color: var(--dark-gray);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.section-label {
    font-size: 14px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 36px;
    color: var(--white);
    font-weight: 400;
}

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

.service-card {
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    .service-card.purple {
        background-color: var(--purple);
    }

    .service-card.olive {
        background-color: var(--olive);
    }

    .service-card.gray {
        background-color: var(--gray-card);
    }

.service-card-content {
    padding: 30px;
    min-height: 350px;
    display: flex;
    flex-direction: column;
}

.service-number {
    font-size: 14px;
    color: var(--gold);
    margin-bottom: 10px;
}

.service-card h4 {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 400;
}

.service-card p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
}

/* ==================== MIYOSMART SECTION ==================== */
.miyosmart {
    padding: 100px 0;
    background-color: var(--light-gray);
    color: var(--black);
}

.miyosmart-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.miyosmart-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.miyosmart-header {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.miyosmart h3 {
    font-size: 36px;
    color: var(--black);
    margin: 0;
    font-weight: 400;
    line-height: 1.3;
}

.miyosmart-subtitle {
    font-size: 16px;
    color: var(--medium-gray);
    margin: 0;
}

.miyosmart-header .btn-primary {
    margin-top: 10px;
    align-self: flex-start;
}

.miyosmart-texts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.miyosmart-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

    .miyosmart-item .checkmark {
        width: 32px;
        height: 32px;
        background-color: var(--gold);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--black);
        font-weight: bold;
        font-size: 18px;
        flex-shrink: 0;
    }

    .miyosmart-item h4 {
        font-size: 20px;
        color: var(--black);
        margin: 0;
        font-weight: 600;
    }

    .miyosmart-item p {
        color: var(--medium-gray);
        font-size: 14px;
        line-height: 1.8;
        margin: 0;
    }

.miyosmart-image {
    position: sticky;
    top: 100px;
}

    .miyosmart-image img {
        border-radius: 8px;
        width: 100%;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    }

/* Mobile Ansicht */
@media (max-width: 768px) {
    .miyosmart-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .miyosmart h3 {
        font-size: 28px;
    }

    .miyosmart-texts {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .miyosmart-image {
        position: static;
    }
}

/* ==================== WERKSTATT ==================== */
.workshop {
    padding: 100px 0 100px;
    background-color: #666666;
    position: relative;
}

.workshop-header {
    margin-bottom: 60px;
}

    .workshop-header h3 {
        font-size: 48px;
        margin-bottom: 15px;
        font-weight: 400;
        color: var(--white);
    }

    .workshop-header > p {
        font-size: 18px;
        color: #e0e0e0;
        margin-bottom: 30px;
    }

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

.workshop-image-wrapper {
    position: relative;
    margin-bottom: -120px;
    z-index: 10;
}

.workshop-image {
    border-radius: 8px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.workshop-texts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding-top: 40px;
}

.workshop-item h4 {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 600;
}

.workshop-item p {
    color: #e0e0e0;
    font-size: 15px;
    line-height: 1.8;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials {
    padding: 120px 0 100px;
    background-color: var(--black);
    text-align: center;
    margin-top: -80px;
    position: relative;
    z-index: 5;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
}

.quote-icon {
    font-size: 60px;
    color: var(--gold);
    margin-bottom: 30px;
    line-height: 1;
}

.testimonial-text {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    color: var(--black);
}

.author-name {
    font-weight: 600;
    color: var(--white);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--medium-gray);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .dot.active {
        background-color: var(--gold);
    }

/* ==================== VIRTUELLE TOUR ==================== */
.virtual-tour {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.virtual-tour-header {
    margin-bottom: 40px;
}

    .virtual-tour-header h3 {
        font-size: 36px;
        margin-bottom: 20px;
        font-weight: 400;
        color: var(--black);
    }

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

.virtual-tour-image {
    border-radius: 8px;
    overflow: hidden;
}

    .virtual-tour-image img {
        width: 100%;
        border-radius: 8px;
    }

.virtual-tour-info {
    text-align: left;
}

    .virtual-tour-info p {
        color: var(--text-color);
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 20px;
    }

.virtual-tour .btn-primary {
    background-color: var(--gold) !important;
    color: var(--black) !important;
    border: 2px solid var(--gold) !important;
    margin-bottom: 20px;
    display: inline-block;
}

    .virtual-tour .btn-primary:hover {
        background-color: var(--gold-hover) !important;
        color: var(--black) !important;
        border-color: var(--gold-hover) !important;
        transform: translateY(-2px);
    }

.virtual-tour-info a {
    color: var(--gold);
    font-size: 14px;
    text-decoration: underline;
}

    .virtual-tour-info a:hover {
        color: var(--gold-hover);
    }

/* ==================== FOOTER CTA ==================== */
.footer-cta {
    background: linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.7)), url('../images/optical-lenses.jpg') center/cover no-repeat;
    padding: 100px 0;
    text-align: center;
}

    .footer-cta h3 {
        font-size: 36px;
        margin-bottom: 15px;
        font-weight: 400;
        color: var(--white);
    }

    .footer-cta p {
        color: var(--text-light);
        margin-bottom: 30px;
        font-size: 16px;
    }

/* ==================== FOOTER ==================== */
.footer {
    background-color: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 0;
    text-align: center;
}

    .footer p {
        color: var(--medium-gray);
        font-size: 14px;
    }

    .footer a {
        color: var(--gold);
        font-size: 14px;
    }

        .footer a:hover {
            text-decoration: underline;
        }

/* ==================== DSGVO GOOGLE MAPS ==================== */
.map-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    background: var(--dark-gray);
    border-radius: 4px;
    overflow: hidden;
}

.map-placeholder {
    padding: 40px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

    .map-placeholder h3 {
        color: var(--white);
        margin-bottom: 15px;
        font-size: 20px;
    }

    .map-placeholder p {
        color: var(--text-light);
        font-size: 14px;
        margin-bottom: 20px;
        line-height: 1.6;
        max-width: 400px;
    }

    .map-placeholder a {
        color: var(--gold);
        text-decoration: underline;
    }

    .map-placeholder .btn {
        background-color: var(--gold);
        color: var(--black);
        border: 2px solid var(--gold);
    }

.map-wrapper iframe {
    display: none;
    width: 100%;
    height: 100%;
    border: 0;
}

.map-wrapper.active .map-placeholder {
    display: none;
}

.map-wrapper.active iframe {
    display: block;
}

/* Mobile Anpassung für Map */
@media (max-width: 768px) {
    .map-wrapper {
        height: 300px;
    }

    .map-placeholder h3 {
        font-size: 18px;
    }

    .map-placeholder p {
        font-size: 13px;
    }
}




/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 992px) {
    .intro-grid,
    .miyosmart-grid,
    .workshop-content,
    .virtual-tour-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid var(--gold);
        padding-bottom: 30px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--black);
        display: none;
        padding: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

        .main-nav.active {
            display: block;
        }

        .main-nav ul {
            flex-direction: column;
            gap: 15px;
        }

    .stats-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .hero-content h2 {
        font-size: clamp(28px, 8vw, 36px);
    }

    .hero-slogan {
        font-size: 18px;
    }

    .btn {
        text-align: center;
        white-space: normal;
        line-height: 1.3;
    }

    .miyosmart-content {
        grid-template-columns: 1fr;
    }

    .workshop {
        padding: 60px 20px 150px;
    }

    .workshop-header {
        margin-bottom: 40px;
    }

        .workshop-header h3 {
            font-size: 32px;
        }

    .workshop-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .workshop-image-wrapper {
        margin-bottom: 0;
    }

    .workshop-texts {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-top: 0;
    }

    .virtual-tour-header h3 {
        font-size: 28px;
    }

    .section-title,
    .stats > .container > h3,
    .footer-cta h3 {
        font-size: clamp(26px, 7vw, 34px);
    }

    [class$="-hero"] h1 {
        font-size: clamp(30px, 8vw, 42px) !important;
        line-height: 1.2;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 12px 24px;
        font-size: 12px;
    }

    .stat-number {
        font-size: 36px;
    }

    .service-card-content {
        min-height: 300px;
        padding: 20px;
    }
}

/* ==================== TESTIMONIAL SLIDER ==================== */
.testimonial-item {
    display: none;
    animation: fadeIn 0.5s ease;
}

    .testimonial-item.active {
        display: block;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}
