/* ============================================================
   ZUSTA MODERN — 2026 Creative Agency Styles
   ============================================================ */

/* --- CSS Variables Extension --- */
:root {
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.05);
    --glass-blur: 24px;
    --glass-bg-light: rgba(255, 255, 255, 0.05);
    --glass-border-light: rgba(255, 255, 255, 0.1);
    --cursor-size: 48px;
    --cursor-dot-size: 8px;
    --preloader-bg: #050507;
    --preloader-accent: #FF721B;
    --reveal-duration: 1.4s;
    --spring-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --spring-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================================
   1. SCROLL PROGRESS BAR
   ============================================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #ff9d45, var(--primary));
    background-size: 200% 100%;
    z-index: 99999;
    transition: none;
    pointer-events: none;
}

/* ============================================================
   2. CUSTOM CURSOR
   ============================================================ */
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--cursor-dot-size);
    height: var(--cursor-dot-size);
    background: var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 999999;
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--spring-bounce),
        height 0.3s var(--spring-bounce),
        background 0.3s ease;
    mix-blend-mode: difference;
}

.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--cursor-size);
    height: var(--cursor-size);
    border: 1.5px solid rgba(255, 114, 27, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 999998;
    transform: translate(-50%, -50%);
    transition: width 0.35s var(--spring-bounce),
        height 0.35s var(--spring-bounce),
        border-color 0.3s ease,
        background 0.3s ease;
}

/* Cursor states */
.cursor-hover .cursor-dot {
    width: 60px;
    height: 60px;
    background: rgba(255, 114, 27, 0.15);
    mix-blend-mode: normal;
}

.cursor-hover .cursor-outline {
    width: 60px;
    height: 60px;
    border-color: var(--primary);
    opacity: 0;
}

.cursor-text .cursor-dot {
    width: 80px;
    height: 80px;
    background: var(--primary);
    mix-blend-mode: normal;
}

.cursor-text .cursor-dot::after {
    content: attr(data-cursor-text);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.cursor-text .cursor-outline {
    opacity: 0;
}

.cursor-hidden .cursor-dot,
.cursor-hidden .cursor-outline {
    opacity: 0;
    width: 0;
    height: 0;
}

/* ============================================================
   3. COUNTER PRELOADER
   ============================================================ */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--preloader-bg);
    z-index: 999999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.preloader-counter {
    display: flex;
    align-items: baseline;
    gap: 0.1em;
    overflow: hidden;
}

.preloader-number {
    font-size: clamp(5rem, 15vw, 12rem);
    font-weight: 800;
    color: #fff;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.03em;
}

.preloader-percent {
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--preloader-accent);
    line-height: 1;
}

.preloader-bar {
    width: min(300px, 60vw);
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.preloader-bar-inner {
    width: 0%;
    height: 100%;
    background: var(--preloader-accent);
    border-radius: 2px;
    transition: width 0.1s linear;
}

.preloader-text {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.3em;
}

/* Preloader curtain reveal */
.preloader-curtain {
    position: fixed;
    inset: 0;
    background: var(--preloader-bg);
    z-index: 999998;
    transform-origin: top;
    pointer-events: none;
}

/* ============================================================
   4. GLASSMORPHISM UTILITIES
   ============================================================ */
.glass-card {
    background: var(--glass-bg-light);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border-light);
    border-radius: var(--radius-xl);
}

.glass-dark {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
}

.glass-card-hover {
    transition: transform 0.4s var(--spring-smooth),
        box-shadow 0.4s ease,
        background 0.4s ease;
}

.glass-card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.85);
}

/* Tilt effect container */
.tilt-card {
    transform-style: preserve-3d;
    transition: transform 0.15s ease-out;
}

.tilt-card-inner {
    transform: translateZ(40px);
}

/* ============================================================
   5. HORIZONTAL SCROLL SECTION
   ============================================================ */
.horizontal-scroll-wrapper {
    overflow: hidden;
    position: relative;
    height: 100vh;
}

.horizontal-scroll-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 2rem;
    will-change: transform;
    height: 100%;
    align-items: center;
    padding: 0 4rem;
}

.horizontal-scroll-panel {
    flex: 0 0 380px;
    height: auto;
}

.horizontal-scroll-heading {
    flex: 0 0 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 2rem;
}

/* ============================================================
   6. BENTO GRID
   ============================================================ */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: 1.5rem;
}

.bento-item {
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    transition: transform 0.5s var(--spring-smooth);
}

.bento-item:hover {
    transform: scale(1.02);
}

.bento-item.span-2 {
    grid-column: span 2;
}

.bento-item.span-row-2 {
    grid-row: span 2;
}

.bento-item.span-3 {
    grid-column: span 3;
}

/* ============================================================
   7. TEXT ANIMATION HELPERS
   ============================================================ */

/* Fix: text-gradient must pass through to child word spans */
.text-gradient .word-wrap,
.text-gradient .word {
    background: inherit;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-reveal {
    overflow: hidden;
    display: inline-block;
}

.js .text-reveal .word,
.js .text-reveal .char {
    display: inline-block;
    transform: translateY(0);
    opacity: 1;
}

.js .heading-animate {
    opacity: 0;
}

.heading-animate.is-visible {
    opacity: 1;
}

.js .line-reveal {
    clip-path: inset(0 0 0 0);
}

.line-reveal.is-visible {
    clip-path: inset(0 0% 0 0);
    transition: clip-path 1s var(--spring-smooth);
}

/* Kinetic text — subtle hover wobble */
.kinetic-text .char {
    display: inline-block;
    transition: transform 0.3s var(--spring-bounce);
}

.kinetic-text .char:hover {
    transform: translateY(-8px) rotate(-5deg);
    color: var(--primary);
}

/* ============================================================
   8. SCROLL VELOCITY SKEW
   ============================================================ */
.skew-on-scroll {
    will-change: transform;
    transition: transform 0.1s linear;
}

/* ============================================================
   9. MAGNETIC BUTTON
   ============================================================ */
.magnetic-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s var(--spring-smooth);
    will-change: transform;
}

.magnetic-btn .btn-text {
    position: relative;
    z-index: 1;
    transition: transform 0.3s var(--spring-smooth);
}

/* ============================================================
   10. SECTION REVEAL
   ============================================================ */
.js .section-reveal {
    clip-path: inset(100% 0 0 0);
    transition: clip-path var(--reveal-duration) var(--spring-smooth);
}

.section-reveal.is-revealed {
    clip-path: inset(0 0 0 0);
}

.js .fade-in-up {
    opacity: 0;
    transform: translateY(60px);
}

.fade-in-up.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s var(--spring-smooth);
}

/* Stagger children */
.js .stagger-children>* {
    opacity: 0;
    transform: translateY(40px);
}

.stagger-children.is-visible>* {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s var(--spring-smooth);
}

/* ============================================================
   11. IMAGE REVEAL
   ============================================================ */
.img-reveal {
    position: relative;
    overflow: hidden;
}

.img-reveal::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary);
    transform-origin: left;
    transform: scaleX(1);
    z-index: 2;
}

.img-reveal.is-revealed::after {
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 1s var(--spring-smooth);
}

.img-reveal img {
    transform: scale(1.3);
    transition: transform 1.2s var(--spring-smooth) 0.2s;
}

.img-reveal.is-revealed img {
    transform: scale(1);
}

/* ============================================================
   12. 3D HERO CANVAS & PREMIUM LAYOUT
   ============================================================ */

.hero-premium {
    position: relative;
    overflow: hidden;
    background: var(--gradient-hero);
}

.hero-premium .container {
    padding-top: 80px;
    /* Offset fixed header */
}

/* Tech Grid Overlay */
.tech-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
    pointer-events: none;
    mask-image: radial-gradient(circle at center, black 20%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 20%, transparent 80%);
}

.z-index-2 {
    z-index: 2;
}

/* Premium Typography */
.hero-headline {
    font-size: clamp(3.5rem, 8vw, 7.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    position: relative;
    z-index: 10;
}

.hero-subtitle {
    position: relative;
    z-index: 10;
}

/* Glass Badge */
.glass-badge {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Glass Button */
.glass-btn {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.03) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
}

.glass-btn:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.05) !important;
}

/* Floating Elements Parallax */
.hero-floating-elements {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    padding: 1.25rem 1.5rem;
    pointer-events: auto;
    animation: float 6s ease-in-out infinite;
}

.card-1 {
    top: 25%;
    left: 8%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 30%;
    right: 10%;
    animation-delay: 3s;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 3;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--white);
    font-weight: 600;
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: var(--primary);
    animation: scrollLineDrop 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

@keyframes scrollLineDrop {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(330%);
    }
}

/* ============================================================
   13. STATS & CTA SECTION
   ============================================================ */
.stats-cta-section {
    position: relative;
}

.stat-card {
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s var(--spring-smooth);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 114, 27, 0.25);
    transform: translateY(-4px);
}

.stat-number {
    display: block;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* ============================================================
   14. DARK GLASSMORPHISM TESTIMONIALS
   ============================================================ */
/* Override white testimonial cards to dark glassmorphism */
.review-area .single-review,
.review-area .testimonial-card {
    background: rgba(255, 255, 255, 0.04) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s var(--spring-smooth);
}

.review-area .single-review:hover,
.review-area .testimonial-card:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 114, 27, 0.2);
    transform: translateY(-4px);
}

/* Testimonial text colors on dark bg */
.review-area .testimonial-content p,
.review-area .review-content p {
    color: rgba(255, 255, 255, 0.75) !important;
}

.review-area .testimonial-name,
.review-area .reviewer-name {
    color: var(--white) !important;
}

.review-area .testimonial-role,
.review-area .reviewer-meta h6 {
    color: rgba(255, 255, 255, 0.5) !important;
}

.review-area .testimonial-rating .fa-star {
    color: #f5a623;
}

/* ============================================================
   15. FOOTER
   ============================================================ */

/* ============================================================
   16. SERVICE CARDS — MODERN
   ============================================================ */
.service-card-modern {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.5s var(--spring-smooth);
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 114, 27, 0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.service-card-modern:hover::before {
    opacity: 1;
}

.service-card-modern:hover {
    border-color: rgba(255, 114, 27, 0.25);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 114, 27, 0.1);
}

.service-card-modern .service-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.service-card-modern h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #fff;
}

.service-card-modern p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-card-modern .service-btn {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s var(--spring-bounce);
}

.service-card-modern .service-btn:hover {
    gap: 0.85rem;
}

/* ============================================================
   17. CONTACT GLASSMORPHISM
   ============================================================ */
.contact-card-modern {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    transition: all 0.4s var(--spring-smooth);
    text-decoration: none;
}

.contact-card-modern:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 114, 27, 0.2);
    transform: translateX(8px);
}

/* ============================================================
   18. PARALLAX IMAGE
   ============================================================ */
.parallax-img {
    overflow: hidden;
    border-radius: var(--radius-xl);
}

.parallax-img img {
    will-change: transform;
    transform: scale(1.15);
}

/* ============================================================
   19. MARQUEE / INFINITE SCROLL TEXT
   ============================================================ */
.marquee-wrapper {
    overflow: hidden;
    white-space: nowrap;
    padding: 2rem 0;
}

.marquee-track {
    display: flex;
    gap: 4rem;
    animation: marquee 30s linear infinite;
    will-change: transform;
}

.marquee-track span {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.marquee-track span.filled {
    color: var(--primary);
    -webkit-text-stroke: none;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ============================================================
   20. PAGE TRANSITION OVERLAY
   ============================================================ */
.page-transition {
    position: fixed;
    inset: 0;
    z-index: 999990;
    pointer-events: none;
    display: flex;
}

.page-transition-panel {
    flex: 1;
    background: var(--preloader-bg);
    transform: scaleY(0);
    transform-origin: bottom;
}

/* ============================================================
   21. SPLIT HERO NUMBER / STAT
   ============================================================ */
.hero-stat {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
}

.hero-stat-number {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.hero-stat-label {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    max-width: 120px;
    line-height: 1.3;
}

/* ============================================================
   22. GRADIENT DIVIDER
   ============================================================ */
.gradient-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    border: none;
    margin: 0;
    opacity: 0.3;
}

/* ============================================================
   23. SMOOTH BODY STYLES FOR LENIS
   ============================================================ */
html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

/* ============================================================
   24. PREFERS REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .cursor-dot,
    .cursor-outline {
        display: none !important;
    }

    .scroll-progress {
        display: none !important;
    }

    .marquee-track {
        animation: none !important;
    }

    .text-reveal .word,
    .text-reveal .char,
    .fade-in-up,
    .heading-animate,
    .stagger-children>* {
        opacity: 1 !important;
        transform: none !important;
    }

    .img-reveal::after {
        display: none !important;
    }

    .img-reveal img {
        transform: none !important;
    }
}

/* ============================================================
   25. HIDE CURSOR ON TOUCH
   ============================================================ */
@media (pointer: coarse) {

    .cursor-dot,
    .cursor-outline {
        display: none !important;
    }
}

/* ============================================================
   26. HORIZONTAL SCROLL RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
    .horizontal-scroll-wrapper {
        height: auto !important;
        overflow: visible;
    }

    .horizontal-scroll-track {
        flex-wrap: wrap;
        gap: 1.5rem;
        height: auto;
        padding: 3rem 1rem;
    }

    .horizontal-scroll-panel {
        flex: 0 0 100%;
    }

    .horizontal-scroll-heading {
        flex: 0 0 100%;
        padding-right: 0;
        margin-bottom: 1rem;
    }
}

/* ============================================================
   27. BENTO GRID RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-item.span-3 {
        grid-column: span 2;
    }
}

@media (max-width: 575px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-item.span-2,
    .bento-item.span-3 {
        grid-column: span 1;
    }
}

/* ============================================================
   28. NUMBER TICKER (for stats)
   ============================================================ */
.number-ticker {
    display: inline-flex;
    overflow: hidden;
    line-height: 1;
}

.number-ticker-digit {
    display: inline-block;
    animation: tickerSlide 0.5s var(--spring-smooth) forwards;
}

@keyframes tickerSlide {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ============================================================
   29. NO-JS / AI CRAWLER FALLBACK
   When JavaScript doesn't execute (AI crawlers, bots, noscript),
   all content must be visible and readable.
   ============================================================ */
.no-js #preloader {
    display: none !important;
}

.no-js .cursor-dot,
.no-js .cursor-outline {
    display: none !important;
}

.no-js .scroll-progress {
    display: none !important;
}

.no-js .text-reveal .word,
.no-js .text-reveal .char {
    opacity: 1 !important;
    transform: none !important;
}

.no-js .heading-animate,
.no-js .fade-in-up,
.no-js .stagger-children>* {
    opacity: 1 !important;
    transform: none !important;
}

.no-js .section-reveal {
    clip-path: none !important;
}

.no-js .line-reveal {
    clip-path: none !important;
}

.no-js .img-reveal::after {
    display: none !important;
}

.no-js .preloader-curtain {
    display: none !important;
}