/* --------------------------------------------------
   Isocell Morocco — Layout styles
   Page layout, sections, and responsive design
   -------------------------------------------------- */

/* ── Navbar ─────────────────────────────────────────────────── */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    transition: box-shadow 0.45s var(--ease-out-cubic), background 0.45s var(--ease-out-cubic);
    will-change: background, box-shadow;
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    background: rgba(255, 255, 255, 0.97);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--nav-height);
}

/* ── Logo ──────────────────────────────────────────────────── */

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-image {
    height: 94px;
    width: auto;
    transition: transform 0.35s var(--spring);
}

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

/* .logo-icon unused - removed */

.footer-logo {
    height: 124px;
    width: auto;
    margin-bottom: 1rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
}

.logo-sub {
    font-size: 0.65rem;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-top: 3px;
}

/* ── Nav links ─────────────────────────────────────────────── */

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

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    position: relative;
    padding-bottom: 2px;
    transition: color 0.35s var(--ease-out-cubic);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transition: width 0.4s var(--ease-out-expo);
    border-radius: 2px;
}

.nav-links a:hover           { color: var(--primary); }
.nav-links a:hover::after    { width: 100%; }
.nav-links a.active-link     { color: var(--primary) !important; }
.nav-links a.active-link::after { width: 100% !important; }

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--dark);
    cursor: pointer;
    padding: 0.25rem;
    transition: color 0.3s, transform 0.3s;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-btn:hover { color: var(--primary); }

/* ── Hero section ──────────────────────────────────────────── */

.hero {
    min-height: 100svh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 45%, #1a5f3f 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/Insulation.jpg') center / cover;
    opacity: 0.1;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    top: -250px;
    right: -200px;
    background: radial-gradient(circle, rgba(26, 95, 63, 0.2) 0%, transparent 65%);
    pointer-events: none;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.04) 1px, transparent 0);
    background-size: 44px 44px;
    will-change: transform;
    pointer-events: none;
}

.hero-pattern::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    bottom: -150px;
    left: 5%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 65%);
    pointer-events: none;
}

.hero-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 8rem 2.5rem 5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content > * {
    animation: slide-up 0.8s var(--ease-out-expo) both;
}

.hero-content > *:nth-child(1) { animation-delay: 0.10s; }
.hero-content > *:nth-child(2) { animation-delay: 0.18s; }
.hero-content > *:nth-child(3) { animation-delay: 0.30s; }
.hero-content > *:nth-child(4) { animation-delay: 0.45s; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.35);
    color: var(--accent-light);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    letter-spacing: 0.5px;
}

.hero-badge i {
    animation: counter-spin 10s linear infinite;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.1;
}

.hero h1 span {
    color: var(--accent);
    display: block;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.68);
    margin-bottom: 2.5rem;
    max-width: 480px;
    line-height: 1.85;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ── Hero visual ───────────────────────────────────────────── */

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fade-in-blur 1s var(--ease-out-expo) 0.3s both;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 550px;
}

.hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.45);
    position: relative;
    z-index: 2;
    transition: transform 0.5s var(--ease-out-expo);
}

.hero-video {
    display: block;
    border: 0;
    background: var(--dark);
    object-fit: cover;
    object-position: center center;
    pointer-events: none;
    user-select: none;
    animation: hero-video-reveal 0.9s var(--ease-out-expo) both;
    -webkit-user-drag: none;
}

.hero-video::-webkit-media-controls,
.hero-video::-webkit-media-controls-panel,
.hero-video::-webkit-media-controls-play-button,
.hero-video::-webkit-media-controls-start-playback-button {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

@keyframes hero-video-reveal {
    from {
        opacity: 0;
        transform: scale(0.985);
        filter: saturate(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
        filter: saturate(1);
    }
}

.hero-image-wrapper:hover .hero-image {
    transform: scale(1.008) rotate(0.3deg);
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    inset: -16px;
    border: 1px solid rgba(201, 168, 76, 0.18);
    border-radius: var(--radius-xl);
    z-index: 1;
    animation: pulse-ring 4.5s ease-out infinite;
}

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 3;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.3), rgba(15, 23, 42, 0.08) 50%, rgba(26, 95, 63, 0.15));
    pointer-events: none;
}

/* Floating info overlay */
.hero-overlay {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem 1.25rem;
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: transform 0.35s var(--spring);
}

.hero-overlay:hover {
    transform: scale(1.03);
}

.hero-float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 1.1rem 1.25rem;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.75);
    transition: transform 0.35s var(--spring);
}

.hero-float-card:hover {
    transform: scale(1.04);
}

.float-card-2 {
    bottom: 18%;
    right: -8%;
    animation: float 7s ease-in-out infinite 2.5s;
}

.float-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 6px 16px rgba(26, 95, 63, 0.35);
    flex-shrink: 0;
}

.float-text h4 {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 0.2rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.float-text p {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ── Stats bar ─────────────────────────────────────────────── */

.hero-stats {
    position: absolute;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
    z-index: 4;
    overflow: hidden;
    white-space: nowrap;
    border: 1px solid rgba(255,255,255,0.5);
}

.stat-item {
    text-align: center;
    padding: 1.5rem 2.5rem;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: var(--border);
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    font-family: 'Inter', sans-serif;
    line-height: 1;
    margin-bottom: 0.35rem;
    /* Reserve space to prevent layout shift during counter animation */
    min-width: 4ch;
}

.stat-label {
    font-size: 0.72rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 500;
}

/* ── Section defaults ──────────────────────────────────────── */

section {
    padding: 6.5rem 2.5rem;
}

#main-content {
    display: flex;
    flex-direction: column;
}

#home { order: 1; }
.stats-strip { order: 2; }
#why-choose { order: 3; }
#about { order: 4; }
#services { order: 5; }
#projects { order: 6; }
#testimonials { order: 7; }
#catalogue { order: 8; }
#contact { order: 9; }
#contactModal { order: 10; }

.why-choose {
    background: var(--white);
}

.features-grid,
.services-grid,
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

/* ── About section ─────────────────────────────────────────── */

.about {
    background: linear-gradient(to right, var(--dark) 50%, var(--bg) 50%);
    padding: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 620px;
}

.about-image {
    position: relative;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    transition: transform 0.8s var(--ease-in-out-quart);
    will-change: transform;
}

.about-image:hover img { transform: scale(1.03); }

.about-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(26, 95, 63, 0.2), transparent);
    pointer-events: none;
}

.about-content {
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content h2 {
    font-size: clamp(2rem, 3vw, 2.75rem);
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--text);
    margin-bottom: 1.5rem;
    line-height: 1.85;
}

.about-stats-row {
    display: flex;
    gap: 2.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.about-stat h3 {
    font-size: 2.25rem;
    color: var(--primary);
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.about-stat p {
    font-size: 0.88rem;
    color: var(--text-light);
    margin: 0;
    font-weight: 500;
}

/* ── Projects section ──────────────────────────────────────── */

.projects {
    background: var(--dark);
    color: var(--white);
}

.projects .section-header h2 { color: var(--white); }
.projects .section-header p  { color: rgba(255, 255, 255, 0.6); }

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

.project-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    background: var(--dark-light);
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-in-out-quart);
    will-change: transform;
}

.project-card:hover img { transform: scale(1.12); }

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.15) 55%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transform: translateY(8px);
    transition:
        opacity 0.45s var(--ease-out-expo),
        transform 0.45s var(--ease-out-expo);
    pointer-events: none;
}

.project-card:hover .project-overlay {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.project-overlay h3 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 0.4rem;
}

.project-overlay p {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ── Contact section ───────────────────────────────────────── */

.contact {
    background: linear-gradient(135deg, var(--bg) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    top: -200px;
    left: -150px;
    background: radial-gradient(circle, rgba(26, 95, 63, 0.06) 0%, transparent 65%);
    pointer-events: none;
}

.contact::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    bottom: -100px;
    right: -100px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.04) 0%, transparent 65%);
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
    position: relative;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
    line-height: 1.75;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* ── Footer ────────────────────────────────────────────────── */

.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 5rem 2.5rem 2.5rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.35), transparent);
}

.footer::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    bottom: -200px;
    left: -150px;
    background: radial-gradient(circle, rgba(26, 95, 63, 0.08) 0%, transparent 65%);
    pointer-events: none;
}

.footer-grid {
    max-width: var(--max-width);
    margin: 0 auto 3.5rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand p {
    line-height: 1.75;
    margin-bottom: 1.5rem;
    max-width: 300px;
    font-size: 0.9rem;
}

.footer-column h4 {
    font-family: 'Inter', sans-serif;
    color: var(--white);
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 0.75rem; }

.footer-links a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.88rem;
    display: inline-block;
    transition: color 0.3s var(--ease-out-cubic), padding-left 0.3s var(--ease-out-cubic);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p { font-size: 0.85rem; }

.footer-bottom a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s;
}

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

/* ── Modal ─────────────────────────────────────────────────── */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s var(--ease-out-cubic), visibility 0.3s var(--ease-out-cubic);
    z-index: 1500;
    padding: 1.5rem;
    cursor: pointer;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

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

.modal-window {
    width: min(720px, 100%);
    max-height: calc(100dvh - 3rem);
    overflow-y: auto;
    background: var(--white);
    border-radius: 28px;
    padding: 2rem;
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.25);
    position: relative;
    cursor: default;
    -webkit-overflow-scrolling: touch;
    transform: translateY(10px) scale(0.98);
    transition: transform 0.35s var(--ease-out-expo);
}

.modal-overlay.active .modal-window {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: none;
    background: rgba(15, 23, 42, 0.07);
    color: var(--dark);
    font-size: 1.25rem;
    cursor: pointer;
    transition: transform 0.3s var(--spring), background 0.3s var(--ease-out-cubic);
    -webkit-tap-highlight-color: transparent;
}

.modal-close:hover {
    transform: scale(1.08);
    background: rgba(15, 23, 42, 0.12);
}

.modal-header { margin-bottom: 1.5rem; }

.modal-header h2 { margin-bottom: 0.75rem; }

.modal-header p {
    color: var(--text-light);
    max-width: 36rem;
}

.contact-popup-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.contact-popup-form .form-group { margin-bottom: 1.2rem; }

.contact-popup-form textarea { min-height: 150px; }

/* ── Responsive ─────────────────────────────────────────────── */

@media (max-width: 1200px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-subtitle,
    .hero-buttons {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual { order: -1; }

    .hero-image {
        height: 380px;
        border-radius: 20px;
    }

    .hero-image-wrapper::after {
        border-radius: 20px;
    }

    .hero-float-card,
    .hero-image-wrapper::before {
        display: none;
    }

    .about-grid        { grid-template-columns: 1fr; }
    .about             { background: var(--bg); }
    .about-content     { padding: 4rem 2.5rem; }
    .contact-grid      { grid-template-columns: 1fr; gap: 3rem; }
    .footer-grid       { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    section { padding: 4.5rem 1.5rem; }

    .nav-container { padding: 0 1.5rem; }

    .nav-links {
        display: none;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem 1.5rem;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        gap: 1.5rem;
        border-bottom: 1px solid var(--border);
        animation: slide-up 0.3s var(--ease-out-expo);
    }

    .nav-links.active { display: flex; }

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

    .hero-stats   { display: none; }
    .hero-container { padding: 7rem 1.5rem 3.5rem; }
    .hero .scroll-indicator { display: none; }

    .features-grid,
    .services-grid,
    .testimonials-grid,
    .projects-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    .project-overlay {
        opacity: 1;
        transform: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .about-stats-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .about-content { padding: 3rem 1.5rem; }

    .modal-window { padding: 1.5rem; }

    .contact-popup-form .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    .hero-subtitle { font-size: 0.95rem; }
    .hero-badge { font-size: 0.75rem; }

    .contact-form-wrapper { padding: 1.75rem; }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn { justify-content: center; padding: 0.9rem 1.5rem; }

    .section-header { margin-bottom: 2.5rem; }

    .feature-card { padding: 2rem; }
    .testimonial-card { padding: 2rem; }
}

/* ── Reduced motion ─────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html { scroll-behavior: auto; }
}
