
:root {
    --green: #25D366;
    --green-dark: #1da851;
    --green-light: #e8faf0;
    --green-ultra-light: #f5fdf8;
    --text: #1a1a2e;
    --text-secondary: #4a4a5e;
    --text-muted: #6b6b80;
    --bg: #ffffff;
    --bg-soft: #f9fafb;
    --card-bg: #ffffff;
    --border: #e8ecf1;
    --border-light: #f0f2f5;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow: 0 4px 16px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 48px rgba(0, 0, 0, 0.1), 0 8px 20px rgba(0, 0, 0, 0.05);
    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --font: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --star-color: #f59e0b;
    --badge-available: #25D366;
    --badge-busy: #f59e0b;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    letter-spacing: -0.01em;
}

/* ─── Container ─────────────────────────── */
.container {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

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

@media (min-width: 1024px) {
    .container {
        padding: 0 40px;
    }
}

/* ─── Navbar ───────────────────────────── */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
}

@media (min-width: 768px) {
    .navbar .container {
        height: 64px;
    }
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text);
    letter-spacing: -0.02em;
    transition: var(--transition);
}

.nav-logo:hover {
    color: var(--green-dark);
}

.nav-logo .logo-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
    box-shadow: 0 0 0 4px var(--green-light);
    animation: pulse-dot 2.5s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%,
    100% {
        box-shadow: 0 0 0 4px var(--green-light);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0.08);
    }
}

.nav-cta {
    display: none;
}

@media (min-width: 480px) {
    .nav-cta {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 8px 18px;
        background: var(--green);
        color: #fff;
        font-weight: 600;
        font-size: 0.875rem;
        border-radius: 50px;
        text-decoration: none;
        transition: var(--transition);
        letter-spacing: -0.01em;
        white-space: nowrap;
    }
    .nav-cta:hover {
        background: var(--green-dark);
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    }
}

/* ─── Hero Section ─────────────────────── */
.hero {
    padding: 48px 0 40px;
    text-align: center;
    background: linear-gradient(180deg,
            var(--green-ultra-light) 0%,
            var(--bg) 100%);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero {
        padding: 72px 0 56px;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: 88px 0 64px;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle,
            rgba(37, 211, 102, 0.06) 0%,
            transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-light);
    color: var(--green-dark);
    font-weight: 600;
    font-size: 0.8rem;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 0.01em;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .hero-badge {
        font-size: 0.85rem;
        padding: 8px 18px;
        margin-bottom: 24px;
    }
}

.hero-badge .badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse-dot 2s ease-in-out infinite;
}

.hero h1 {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 8px;
    color: var(--text);
    position: relative;
    z-index: 1;
}

@media (min-width: 480px) {
    .hero h1 {
        font-size: 2.6rem;
    }
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 3.2rem;
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 3.6rem;
    }
}

.hero h1 .highlight {
    color: var(--green);
    position: relative;
    display: inline-block;
}

.hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--green-light);
    border-radius: 4px;
    z-index: -1;
    opacity: 0.7;
}

@media (min-width: 768px) {
    .hero h1 .highlight::after {
        height: 10px;
        bottom: 4px;
    }
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.3rem;
    }
}

.hero-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 480px;
    margin: 0 auto 28px;
    line-height: 1.55;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .hero-desc {
        font-size: 1rem;
        max-width: 520px;
        margin-bottom: 36px;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 480px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 14px;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: -0.01em;
    white-space: nowrap;
    border: none;
    font-family: var(--font);
    min-width: 180px;
    position: relative;
    overflow: hidden;
}

@media (min-width: 480px) {
    .btn {
        min-width: auto;
        padding: 15px 30px;
        font-size: 1rem;
    }
}

.btn-primary {
    background: var(--green);
    color: #fff;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.btn-outline {
    background: var(--bg);
    color: var(--text);
    border: 2px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--green);
    color: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline:active {
    transform: translateY(0);
}

.btn .btn-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* ─── Section Shared ──────────────────── */
.section {
    padding: 48px 0;
}

@media (min-width: 768px) {
    .section {
        padding: 64px 0;
    }
}

@media (min-width: 1024px) {
    .section {
        padding: 80px 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 36px;
}

@media (min-width: 768px) {
    .section-header {
        margin-bottom: 48px;
    }
}

.section-label {
    display: inline-block;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--green-dark);
    background: var(--green-light);
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 440px;
    margin: 0 auto;
}

/* ─── How It Works ────────────────────── */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 600px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

@media (min-width: 768px) {
    .steps-grid {
        gap: 32px;
    }
}

.step-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition-slow);
    position: relative;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--green-light);
    color: var(--green-dark);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 16px;
    transition: var(--transition);
}

.step-card:hover .step-number {
    background: var(--green);
    color: #fff;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.step-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 12px;
    color: var(--green);
    transition: var(--transition);
}

.step-card:hover .step-icon {
    color: var(--green-dark);
    transform: scale(1.08);
}

.step-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text);
    letter-spacing: -0.01em;
}

.step-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Connector line between steps (desktop) */
@media (min-width: 600px) {
    .steps-grid {
        position: relative;
    }
    .steps-grid::before {
        content: '';
        position: absolute;
        top: 50px;
        left: 18%;
        width: 64%;
        height: 2px;
        background: var(--border-light);
        z-index: 0;
        pointer-events: none;
    }
    .step-card {
        z-index: 1;
    }
}

/* ─── Categories Section ──────────────── */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

@media (min-width: 480px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

@media (min-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (min-width: 900px) {
    .categories-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 20px;
    }
}

.category-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 16px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-slow);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.category-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green);
    background: var(--green-ultra-light);
}

.category-card:active {
    transform: translateY(-1px);
}

.category-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-ultra-light);
    transition: var(--transition);
    flex-shrink: 0;
}

.category-card:hover .category-icon-wrap {
    background: var(--green-light);
}

.category-icon-wrap svg {
    width: 28px;
    height: 28px;
    color: var(--green-dark);
    transition: var(--transition);
}

.category-card:hover .category-icon-wrap svg {
    color: var(--green);
    transform: scale(1.1);
}

.category-card span {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text);
    letter-spacing: -0.01em;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .category-card span {
        font-size: 0.9rem;
    }
}

/* ─── Listings Section ────────────────── */
.listings-section {

    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.listings-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 520px) {
    .listings-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}

@media (min-width: 800px) {
    .listings-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

.listing-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.listing-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.listing-card:active {
    transform: translateY(-1px);
}

.listing-availability {
    position: absolute;
    top: 14px;
    right: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 50px;
    letter-spacing: 0.02em;
}

.listing-availability.available {
    background: #e8faf0;
    color: #16a34a;
}

.listing-availability.busy {
    background: #fef9e7;
    color: #b45309;
}

.availability-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.available .availability-dot {
    background: #16a34a;
    animation: pulse-dot 2s ease-in-out infinite;
}

.busy .availability-dot {
    background: #b45309;
}

.listing-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-right: 60px;
}

.listing-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    letter-spacing: 0.02em;
}

.avatar-construction {
    background: #f59e0b;
}
.avatar-electrician {
    background: #6366f1;
}
.avatar-plumber {
    background: #06b6d4;
}
.avatar-gardener {
    background: #10b981;
}
.avatar-driver {
    background: #8b5cf6;
}
.avatar-labor {
    background: #64748b;
}

.listing-name-block {
    min-width: 0;
}

.listing-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text);
    letter-spacing: -0.01em;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.listing-category-tag {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.listing-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.stars {
    display: flex;
    gap: 1px;
    color: var(--star-color);
}

.stars svg {
    width: 14px;
    height: 14px;
}

.listing-location {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
}

.listing-location svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: var(--text-muted);
}

.listing-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.listing-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.listing-rate {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text);
    letter-spacing: -0.01em;
}

.listing-rate span {
    font-weight: 400;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.btn-whatsapp-sm {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    background: var(--green);
    color: #fff;
    font-weight: 600;
    font-size: 0.78rem;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    letter-spacing: -0.01em;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    font-family: var(--font);
}

.btn-whatsapp-sm:hover {
    background: var(--green-dark);
    transform: scale(1.04);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-sm svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.view-all-link {
    text-align: center;
    margin-top: 28px;
}

.view-all-link a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--green-dark);
    text-decoration: none;
    transition: var(--transition);
    letter-spacing: -0.01em;
}

.view-all-link a:hover {
    color: var(--green);
    gap: 10px;
}

.view-all-link svg {
    width: 16px;
    height: 16px;
    transition: var(--transition);
}

/* ─── Trust Section ───────────────────── */
.trust-section {
    background: var(--green-ultra-light);
    border-radius: var(--radius-xl);
    margin: 0 20px;
    padding: 40px 24px;
}

@media (min-width: 768px) {
    .trust-section {
        margin: 0 32px;
        padding: 52px 40px;
        border-radius: var(--radius-xl);
    }
}

@media (min-width: 1024px) {
    .trust-section {
        max-width: 880px;
        margin: 0 auto;
        padding: 60px 56px;
    }
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 600px) {
    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

@media (min-width: 600px) {
    .trust-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }
}

.trust-check {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
}

.trust-check svg {
    width: 18px;
    height: 18px;
    color: #fff;
}

.trust-item h4 {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 2px;
    letter-spacing: -0.01em;
}

.trust-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ─── Footer ──────────────────────────── */
.footer {
    background: var(--bg-soft);
    border-top: 1px solid var(--border-light);
    padding: 32px 0;
    margin-top: auto;
}

@media (min-width: 768px) {
    .footer {
        padding: 40px 0;
    }
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

@media (min-width: 600px) {
    .footer .container {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text);
    letter-spacing: -0.02em;
}

.footer-brand .logo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
}

.footer-info {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

@media (min-width: 600px) {
    .footer-info {
        align-items: flex-end;
        text-align: right;
    }
}

.footer-info a {
    color: var(--green-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.footer-info a:hover {
    color: var(--green);
    text-decoration: underline;
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ─── Floating WhatsApp Button ────────── */
.floating-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 200;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    animation: float-bob 3s ease-in-out infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 32px rgba(37, 211, 102, 0.5);
    animation: none;
}

.floating-whatsapp:active {
    transform: scale(0.96);
}

.floating-whatsapp svg {
    width: 26px;
    height: 26px;
}

@keyframes float-bob {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

@media (min-width: 768px) {
    .floating-whatsapp {
        width: 58px;
        height: 58px;
        bottom: 32px;
        right: 32px;
    }
    .floating-whatsapp svg {
        width: 28px;
        height: 28px;
    }
}

/* ─── Utility Animations ──────────────── */
.fade-in {
    animation: fadeIn 0.6s ease-out both;
}

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

.delay-1 {
    animation-delay: 0.1s;
}
.delay-2 {
    animation-delay: 0.2s;
}
.delay-3 {
    animation-delay: 0.3s;
}
.delay-4 {
    animation-delay: 0.4s;
}

/* ─── Focus / Accessibility ───────────── */
a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--green);
    outline-offset: 3px;
    border-radius: 4px;
}

/* 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;
    }
}

