/* Custom Properties */
:root {
    --plum-50: #faf5f7;
    --plum-100: #f5e9ed;
    --plum-200: #ebd0d9;
    --plum-300: #d9aeb8;
    --plum-400: #c48794;
    --plum-500: #a86374;
    --plum-600: #8f4d5e;
    --plum-700: #763d4b;
    --plum-800: #61333e;
    --plum-900: #522c34;
    --plum-950: #2d161c;
    
    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-200: #fde68a;
    --amber-300: #fcd34d;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --amber-700: #b45309;
    --amber-800: #92400e;
    --amber-900: #78350f;
    
    --neutral-50: #fafafa;
    --neutral-100: #f5f5f5;
    --neutral-200: #e5e5e5;
    --neutral-300: #d4d4d4;
    --neutral-700: #525252;
    --neutral-800: #262626;
    --neutral-900: #171717;
    --neutral-950: #0a0a0a;
    
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--neutral-900);
    background-color: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
}

/* Section Header */
.section-header {
    margin-bottom: var(--space-2xl);
}

.section-header__label {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--plum-600);
    margin-bottom: var(--space-sm);
}

.section-header__label--dark {
    color: var(--amber-300);
}

.section-header__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--neutral-900);
    margin-bottom: var(--space-md);
}

.section-header__title--light {
    color: #fff;
}

.section-header__subtitle {
    font-size: 1.125rem;
    color: var(--neutral-700);
    max-width: 600px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn--primary {
    background-color: var(--plum-700);
    color: #fff;
    border: 2px solid var(--plum-700);
}

.btn--primary:hover {
    background-color: var(--plum-800);
    border-color: var(--plum-800);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--secondary {
    background-color: transparent;
    color: var(--plum-700);
    border: 2px solid var(--plum-700);
}

.btn--secondary:hover {
    background-color: var(--plum-700);
    color: #fff;
    transform: translateY(-2px);
}

.btn--outline {
    background-color: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn--outline:hover {
    background-color: #fff;
    color: var(--plum-900);
    border-color: #fff;
}

.btn--full {
    width: 100%;
    justify-content: center;
}

.btn--lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn--sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--neutral-200);
    transition: all 0.3s ease;
}

.nav.scrolled {
    box-shadow: var(--shadow-md);
}

.nav__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--plum-800);
}

.nav__logo-icon {
    color: var(--plum-600);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav__link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--neutral-700);
    transition: color 0.3s ease;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--plum-600);
    transition: width 0.3s ease;
}

.nav__link:hover {
    color: var(--plum-700);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link--cta {
    background-color: var(--plum-700);
    color: #fff;
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

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

.nav__link--cta:hover {
    background-color: var(--plum-800);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav__menu-btn {
    display: none;
    padding: 0.5rem;
    color: var(--neutral-800);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1001;
    background-color: var(--plum-950);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

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

.mobile-menu__close {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    color: #fff;
    padding: 0.5rem;
}

.mobile-menu__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
}

.mobile-menu__link {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: #fff;
    transition: color 0.3s ease;
}

.mobile-menu__link:hover {
    color: var(--amber-400);
}

.mobile-menu__link--cta {
    margin-top: var(--space-md);
    background-color: var(--amber-500);
    color: var(--neutral-900);
    padding: 1rem 2.5rem;
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-size: 1rem;
}

.mobile-menu__link--cta:hover {
    background-color: var(--amber-400);
    color: var(--neutral-900);
}

.mobile-menu__contact {
    margin-top: var(--space-xl);
    text-align: center;
}

.mobile-menu__phone {
    color: var(--amber-300);
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--plum-900) 0%, var(--plum-950) 100%);
    position: relative;
    overflow: hidden;
    padding: 120px var(--space-lg) 80px;
}

.hero__bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(251, 191, 36, 0.08) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(168, 99, 116, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: var(--space-2xl);
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero__content {
    max-width: 600px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(251, 191, 36, 0.15);
    color: var(--amber-300);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: var(--space-lg);
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--amber-400);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero__title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: #fff;
    margin-bottom: var(--space-lg);
    line-height: 1.1;
}

.hero__title-accent {
    color: var(--amber-400);
    font-style: italic;
}

.hero__subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
    max-width: 500px;
}

.hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.hero__buttons .btn--secondary {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.hero__buttons .btn--secondary:hover {
    background-color: #fff;
    color: var(--plum-900);
    border-color: #fff;
}

/* Stat Cards */
.hero__stats {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background-color: rgba(255, 255, 255, 0.12);
    transform: translateX(8px);
}

.stat-card--amber {
    background-color: rgba(251, 191, 36, 0.15);
    border-color: rgba(251, 191, 36, 0.3);
}

.stat-card__icon {
    color: var(--amber-400);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.stat-card__value {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.25rem;
}

.stat-card__label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Hero Image */
.hero__image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.hero__image-accent {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(118, 61, 75, 0.4) 0%, transparent 60%);
    border-radius: var(--radius-lg);
    pointer-events: none;
}

/* Services Section */
.services {
    padding: var(--space-3xl) 0;
    background-color: var(--neutral-50);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-lg);
}

.service-card {
    background-color: #fff;
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    border: 1px solid var(--neutral-200);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--plum-600), var(--amber-500));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

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

.service-card__number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--plum-100);
    line-height: 1;
    margin-bottom: var(--space-md);
}

.service-card__icon {
    color: var(--plum-600);
    margin-bottom: var(--space-md);
}

.service-card__title {
    font-size: 1.375rem;
    color: var(--neutral-900);
    margin-bottom: var(--space-sm);
}

.service-card__description {
    font-size: 0.9375rem;
    color: var(--neutral-700);
    line-height: 1.7;
}

/* About Section */
.about {
    padding: var(--space-3xl) 0;
    background-color: #fff;
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about__image {
    position: relative;
}

.about__image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.about__image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--plum-600), var(--amber-500));
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.3;
}

.about__content {
    max-width: 500px;
}

.about__text {
    font-size: 1.0625rem;
    color: var(--neutral-700);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.about__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.about__feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--neutral-800);
}

.about__feature svg {
    color: var(--amber-500);
    flex-shrink: 0;
}

/* Areas Section */
.areas {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--plum-900) 0%, var(--plum-950) 100%);
    position: relative;
    overflow: hidden;
}

.areas::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 30% 70%, rgba(251, 191, 36, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.areas__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.areas__text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: var(--space-2xl);
}

.areas__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
}

.area-tag {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.area-tag:hover {
    background-color: var(--amber-500);
    color: var(--neutral-900);
    border-color: var(--amber-500);
    transform: translateY(-2px);
}

/* CTA Section */
.cta {
    padding: var(--space-3xl) 0;
    background-color: var(--amber-500);
}

.cta__content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta__title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--neutral-900);
    margin-bottom: var(--space-md);
}

.cta__text {
    font-size: 1.125rem;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: var(--space-xl);
}

.cta__buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.cta__buttons .btn--outline {
    color: var(--neutral-900);
    border-color: var(--neutral-900);
}

.cta__buttons .btn--outline:hover {
    background-color: var(--neutral-900);
    color: #fff;
}

/* Contact Section */
.contact {
    padding: var(--space-3xl) 0;
    background-color: var(--neutral-50);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
}

.contact__info {
    max-width: 450px;
}

.contact__text {
    font-size: 1.0625rem;
    color: var(--neutral-700);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact__item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md);
    background-color: #fff;
    border-radius: var(--radius-md);
    border: 1px solid var(--neutral-200);
    transition: all 0.3s ease;
}

.contact__item:hover {
    border-color: var(--plum-300);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.contact__item-icon {
    color: var(--plum-600);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact__item-content {
    display: flex;
    flex-direction: column;
}

.contact__item-label {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--neutral-700);
    margin-bottom: 0.25rem;
}

.contact__item-value {
    font-size: 1.0625rem;
    color: var(--neutral-900);
    font-weight: 500;
}

/* Contact Form */
.contact__form-wrapper {
    background-color: #fff;
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    border: 1px solid var(--neutral-200);
    box-shadow: var(--shadow-lg);
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--neutral-800);
}

.form-input {
    padding: 0.875rem 1rem;
    border: 1px solid var(--neutral-300);
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--neutral-900);
    background-color: #fff;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--plum-500);
    box-shadow: 0 0 0 3px rgba(168, 99, 116, 0.1);
}

.form-input::placeholder {
    color: var(--neutral-300);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-2xl);
    gap: var(--space-md);
}

.form-success.active {
    display: flex;
}

.form-success__icon {
    color: var(--plum-600);
}

.form-success__title {
    font-size: 1.5rem;
    color: var(--neutral-900);
}

.form-success__text {
    font-size: 1rem;
    color: var(--neutral-700);
}

/* Footer */
.footer {
    background-color: var(--neutral-950);
    color: #fff;
    padding: var(--space-3xl) 0 var(--space-lg);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer__brand {
    max-width: 300px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: var(--space-md);
}

.footer__logo-icon {
    color: var(--amber-400);
}

.footer__tagline {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.footer__heading {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--amber-400);
    margin-bottom: var(--space-md);
}

.footer__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__list a,
.footer__list span {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer__list a:hover {
    color: var(--amber-400);
}

.footer__bottom {
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer__copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero__content {
        max-width: 100%;
    }
    
    .hero__subtitle {
        max-width: 100%;
    }
    
    .hero__buttons {
        justify-content: center;
    }
    
    .hero__stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: var(--space-2xl);
    }
    
    .stat-card {
        flex: 1;
        min-width: 200px;
    }
    
    .hero__image {
        display: none;
    }
    
    .about__grid {
        grid-template-columns: 1fr;
    }
    
    .about__image {
        order: -1;
    }
    
    .about__image img {
        height: 400px;
    }
    
    .contact__grid {
        grid-template-columns: 1fr;
    }
    
    .contact__info {
        max-width: 100%;
    }
    
    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav__links {
        display: none;
    }
    
    .nav__menu-btn {
        display: block;
    }
    
    .hero {
        padding: 100px var(--space-md) 60px;
    }
    
    .hero__title {
        font-size: 2.5rem;
    }
    
    .hero__buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero__buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .services__grid {
        grid-template-columns: 1fr;
    }
    
    .about__features {
        grid-template-columns: 1fr;
    }
    
    .cta__buttons {
        flex-direction: column;
    }
    
    .cta__buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer__brand {
        max-width: 100%;
    }
    
    .footer__logo {
        justify-content: center;
    }
    
    .footer__list a,
    .footer__list span {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    .hero__title {
        font-size: 2rem;
    }
    
    .stat-card {
        min-width: 100%;
    }
    
    .area-tag {
        font-size: 0.875rem;
        padding: 0.625rem 1.25rem;
    }
}

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