/* ==========================================================================
   VAST HR — Stylesheet
   --------------------------------------------------------------------------
   How this file is organized (search for these headings to jump around):
     1. Design tokens (colors, type, spacing) — edit colors/fonts HERE
     2. Reset & base element styles
     3. Layout helpers
     4. Buttons & the signature "stamp" mark
     5. Header / navigation
     6. Hero
     7. The Problem
     8. Section divider (hand-drawn line)
     9. How It Works
     10. Services
     11. About
     12. Testimonials
     13. FAQ
     14. Contact / booking / form
     15. Footer
     16. Placeholder / TODO styling
     17. Responsive breakpoints
     18. Accessibility (focus, reduced motion)
   ========================================================================== */


/* ==========================================================================
   1. DESIGN TOKENS
   --------------------------------------------------------------------------
   Want to change the site's colors or fonts? This is the only section you
   need to touch. Every color and font-size elsewhere in this file refers
   back to one of these variables.
   ========================================================================== */

:root {
  /* This site is intentionally light-themed only (no dark mode variant).
     Without this, some browsers/OS auto-dark-mode features will invert
     the warm paper background into a dark one. */
  color-scheme: light;

  /* --- Color: paper & ink (background / text) --- */
  --paper:        #FAF6EC;  /* warm off-white page background */
  --paper-dim:     #F1ECDD; /* slightly deeper paper, for alternating section backgrounds */
  --ink:          #1C1B17;  /* near-black warm ink — primary text */
  --ink-soft:     #5B584E;  /* muted warm gray — secondary/meta text */

  /* --- Color: green (the load-bearing brand color) --- */
  --green:        #17B631;  /* THE brand green — sampled directly from the lighter upper half of the VAST HR logo mark. This is the dominant, load-bearing color: button fills, icons, active states, dividers, the stamp/underline signature motif. */
  --green-deep:   #0E711E;  /* same hue as --green, darkened just enough to clear AA text contrast on paper (5.7:1). Used ONLY where green appears as small text — links, labels, borders — never as a large fill, since --green itself is too light to pass AA as text-on-paper. */
  --green-tint:   #E8F8EA;  /* faint green wash for card backgrounds / highlighted areas */

  /* --- Color: secondary accent --- */
  --amber:        #E8A33D;  /* warm amber accent — used as a background (hover chips, stamp ink) with ink text on top, never as text directly on paper */

  /* --- Color: borders --- */
  --line:         #DED7C4;  /* soft hairline borders on paper */

  /* --- Type families --- */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* --- Type scale (fluid: min, viewport-relative, max) --- */
  --text-xs:    0.8rem;
  --text-sm:    0.9375rem;
  --text-base:  1rem;
  --text-lg:    1.125rem;
  --text-xl:    clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem);
  --text-2xl:   clamp(1.6rem, 1.35rem + 1.1vw, 2.1rem);
  --text-3xl:   clamp(2rem, 1.6rem + 1.8vw, 2.75rem);
  --text-4xl:   clamp(2.5rem, 1.9rem + 2.8vw, 3.75rem);

  /* --- Spacing scale --- */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.5rem;
  --space-6:  2rem;
  --space-7:  3rem;
  --space-8:  4.5rem;
  --space-9:  6rem;

  /* --- Radii & shadow --- */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-card: 0 1px 2px rgba(28, 27, 23, 0.04), 0 8px 24px rgba(28, 27, 23, 0.06);

  /* --- Motion --- */
  --transition-fast: 150ms ease;
  --transition-med:  250ms ease;

  /* --- Layout --- */
  --max-width: 1120px;
  --header-height: 84px;
}


/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 12px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--green-deep);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 var(--space-4);
  color: var(--ink);
}

h1 { font-size: var(--text-4xl); font-weight: 700; }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-xl); }

p {
  margin: 0 0 var(--space-4);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font-family: inherit;
}

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

.skip-link {
  position: absolute;
  left: var(--space-4);
  top: -50px;
  background: var(--ink);
  color: var(--paper);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-sm);
  z-index: 200;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: var(--space-4);
}


/* ==========================================================================
   3. LAYOUT HELPERS
   ========================================================================== */

.wrap {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-5);
}

section {
  padding-block: var(--space-9);
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-deep);
  margin: 0 0 var(--space-3);
}


/* ==========================================================================
   4. BUTTONS & SIGNATURE STAMP MARK
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-base);
  text-decoration: none;
  border-radius: var(--radius-md);
  padding: 0.85rem 1.5rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
  position: relative;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  /* Ink text on the bright green fill (not white) — white fails AA against
     this lighter green, and dark text on green reads as an ink stamp. */
  background: var(--green);
  color: var(--ink);
}

.btn-primary:hover {
  background: var(--green-deep);
  color: var(--paper);
}

.btn-primary:focus-visible {
  background: var(--green-deep);
  color: var(--paper);
}

.btn-ghost {
  background: transparent;
  color: var(--green-deep);
  border-color: var(--green-deep);
}

.btn-ghost:hover {
  background: var(--green-tint);
}

.btn-lg {
  padding: 1rem 1.75rem;
  font-size: var(--text-lg);
}

/* The signature element: a hand-stamped ink mark (checkmark-in-a-circle),
   drawn slightly imperfect/rotated so it reads as "stamped by a person",
   in contrast to the clean grid everywhere else. Reused near CTAs. */
.stamp-mark {
  display: inline-flex;
  width: 1.5em;
  height: 1.5em;
  flex-shrink: 0;
  transform: rotate(-8deg);
}

.stamp-mark svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 6;
}

.stamp-mark svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 6;
}

.stamp-mark-photo {
  position: absolute;
  width: 76px;
  height: 76px;
  bottom: -18px;
  right: -18px;
  color: var(--green-deep);
  background: var(--paper);
  border-radius: 50%;
  transform: rotate(10deg);
}

/* A hand-drawn wavy underline used to emphasize a phrase within a headline,
   standing in for a highlighter mark rather than a rendered <u> line. */
.underline-mark {
  position: relative;
  display: inline-block;
}

.underline-mark::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: -0.1em;
  height: 0.28em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 16' preserveAspectRatio='none'%3E%3Cpath d='M2 8 C 30 2, 50 14, 80 8 S 130 2, 160 8 S 190 13, 198 7' fill='none' stroke='%2317B631' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}


/* ==========================================================================
   5. HEADER / NAVIGATION
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  /* No backdrop-filter here: it would make this element a new containing
     block for position:fixed descendants (like .primary-nav on mobile),
     confining the full-screen mobile menu to the header's own height. */
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  height: var(--header-height);
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  height: 52px;
  width: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.primary-nav ul {
  display: flex;
  gap: var(--space-5);
}

.primary-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: var(--text-sm);
  padding: var(--space-2) 0;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition-fast), color var(--transition-fast);
}

.primary-nav a:hover {
  color: var(--green-deep);
  border-bottom-color: var(--green);
}

.nav-cta {
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.nav-toggle-bar {
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin-inline: auto;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ==========================================================================
   6. HERO
   ========================================================================== */

.hero {
  padding-block: var(--space-8) var(--space-9);
  background:
    radial-gradient(ellipse 700px 420px at 88% -10%, var(--green-tint), transparent 60%);
}

.hero-inner {
  max-width: 780px;
}

.hero-lead {
  font-size: var(--text-lg);
  color: var(--ink-soft);
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-block: var(--space-5) var(--space-3);
}

.hero-microcopy {
  font-size: var(--text-sm);
  color: var(--ink-soft);
  margin: 0;
}


/* ==========================================================================
   7. THE PROBLEM
   ========================================================================== */

.problem {
  background: var(--paper-dim);
}

.problem h2 {
  max-width: 26ch;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-block: var(--space-6);
}

.problem-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--space-5);
}

.problem-card h3 {
  color: var(--green-deep);
  margin-bottom: var(--space-2);
}

.problem-card p {
  color: var(--ink-soft);
  margin: 0;
}

.problem-close {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-style: italic;
  color: var(--green-deep);
  max-width: 44ch;
  margin: 0;
}


/* ==========================================================================
   8. SECTION DIVIDER
   ========================================================================== */

.section-divider {
  display: flex;
  justify-content: center;
  padding-block: var(--space-6);
  background: var(--paper-dim);
}

.divider-svg {
  width: 200px;
  height: 32px;
  stroke: var(--green);
  color: var(--green);
}


/* ==========================================================================
   9. HOW IT WORKS
   ========================================================================== */

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-6);
}

.how-card {
  padding: var(--space-5);
}

.how-icon {
  width: 52px;
  height: 52px;
  color: var(--green);
  margin-bottom: var(--space-4);
}

.how-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
}

.how-card h3 {
  margin-bottom: var(--space-2);
}

.how-card p {
  color: var(--ink-soft);
  margin: 0;
}


/* ==========================================================================
   9B. FREE TOOL — TRACKER PROMO
   ========================================================================== */

.tracker {
  background: var(--green);
  text-align: center;
}

.tracker-inner {
  max-width: 640px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}

.tracker .eyebrow {
  color: var(--ink);
}

.tracker h2 {
  color: var(--ink);
}

.tracker-lead {
  color: var(--ink);
  max-width: 55ch;
  margin: 0;
}

.tracker-microcopy {
  font-size: var(--text-sm);
  color: var(--ink);
  opacity: 0.75;
  margin: 0;
}

.btn-on-green {
  background: var(--paper);
  color: var(--green-deep);
  border-color: transparent;
}

.btn-on-green:hover,
.btn-on-green:focus-visible {
  background: var(--amber);
  color: var(--ink);
}


/* ==========================================================================
   10. SERVICES
   ========================================================================== */

.services {
  background: var(--paper-dim);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-6);
}

.service-group + .service-group {
  margin-top: var(--space-7);
}

.service-group-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-bottom: var(--space-3);
}

.service-group-note {
  color: var(--ink-soft);
  margin-top: var(--space-5);
}

.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.service-card h4 {
  color: var(--green-deep);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  margin: 0 0 var(--space-2);
}

.service-card p {
  color: var(--ink-soft);
}

.service-list {
  margin: var(--space-2) 0 var(--space-5);
  flex-grow: 1;
}

.service-list li {
  position: relative;
  padding-left: var(--space-5);
  margin-bottom: var(--space-2);
  color: var(--ink);
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.service-price {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  padding-top: var(--space-4);
  border-top: 1px solid var(--line);
}


/* ==========================================================================
   11. ABOUT
   ========================================================================== */

.about-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: var(--space-7);
  align-items: start;
}

.about-photo {
  position: relative;
}

.about-photo img {
  border-radius: var(--radius-lg);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--paper-dim);
  border: 1px solid var(--line);
}

.about-copy p {
  color: var(--ink-soft);
}

.credentials-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.credentials-list li {
  background: var(--green-tint);
  color: var(--green-deep);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: var(--space-2) var(--space-4);
  border-radius: 999px;
}

.credentials-list li.todo-flag {
  background: var(--amber);
  color: var(--ink);
}


/* ==========================================================================
   12. TESTIMONIALS
   ========================================================================== */

.testimonials {
  background: var(--paper-dim);
}

.testimonials-flag {
  margin-bottom: var(--space-6);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.testimonial-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  margin: 0;
}

.testimonial-card p {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--ink);
  margin-bottom: var(--space-3);
}

.testimonial-card footer {
  font-size: var(--text-sm);
  color: var(--ink-soft);
}


/* ==========================================================================
   13. FAQ
   ========================================================================== */

.faq-list {
  margin-top: var(--space-6);
  max-width: 760px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding-block: var(--space-4);
}

.faq-item summary {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-lg);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.5rem;
  color: var(--green-deep);
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  color: var(--ink-soft);
  margin: var(--space-3) 0 0;
  max-width: 65ch;
}


/* ==========================================================================
   14. CONTACT / BOOKING / FORM
   ========================================================================== */

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: start;
}

.contact-intro p {
  color: var(--ink-soft);
}

.contact-details p {
  margin-bottom: var(--space-2);
  color: var(--ink-soft);
}

.contact-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-card);
}

.contact-form-cta {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: var(--space-4);
}

.contact-form-divider {
  text-align: center;
  color: var(--ink-soft);
  font-size: var(--text-sm);
  margin: var(--space-4) 0;
}

.form-row {
  margin-bottom: var(--space-4);
}

.form-row label {
  display: block;
  font-weight: 600;
  font-size: var(--text-sm);
  margin-bottom: var(--space-2);
}

.form-row input,
.form-row textarea {
  width: 100%;
  font-family: inherit;
  font-size: var(--text-base);
  padding: 0.7rem var(--space-4);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  color: var(--ink);
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--green-deep);
  box-shadow: 0 0 0 3px var(--green-tint);
}

.form-status {
  margin: var(--space-3) 0 0;
  font-size: var(--text-sm);
  color: var(--green-deep);
  min-height: 1.2em;
}


/* ==========================================================================
   15. FOOTER
   ========================================================================== */

.site-footer {
  /* Light background so the logo's gray "VAST" and black "HR" text stay
     legible — those colors disappear against a dark footer. */
  background: var(--paper-dim);
  color: var(--ink-soft);
  border-top: 3px solid var(--green);
  padding-block: var(--space-7);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-6);
}

.footer-brand img {
  height: 44px;
  width: auto;
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
  justify-content: center;
}

.footer-nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 500;
}

.footer-nav a:hover {
  color: var(--green-deep);
}

.footer-social a {
  color: var(--green-deep);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 600;
}

.footer-copy {
  grid-column: 1 / -1;
  text-align: center;
  font-size: var(--text-xs);
  color: var(--ink-soft);
  margin: var(--space-5) 0 0;
  padding-top: var(--space-5);
  border-top: 1px solid var(--line);
}


/* ==========================================================================
   16. PLACEHOLDER / TODO STYLING
   --------------------------------------------------------------------------
   Anything the owner still needs to fill in before launch is wrapped in an
   element with class="todo-flag" so it's visually obvious in the browser,
   not just in the HTML comments.
   ========================================================================== */

.todo-flag {
  background: var(--amber);
  color: var(--ink);
  padding: 0.1em 0.4em;
  border-radius: 4px;
  font-size: 0.85em;
  font-weight: 600;
}


/* ==========================================================================
   17. RESPONSIVE BREAKPOINTS
   ========================================================================== */

@media (max-width: 900px) {
  .problem-grid,
  .how-grid,
  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-inner {
    grid-template-columns: 1fr;
  }

  .about-photo {
    max-width: 280px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 68px;
  }

  .primary-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--paper);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: var(--space-6) var(--space-5);
    gap: var(--space-6);
    transform: translateX(100%);
    transition: transform var(--transition-med);
    overflow-y: auto;
  }

  .primary-nav.is-open {
    transform: translateX(0);
  }

  .primary-nav ul {
    flex-direction: column;
    gap: var(--space-4);
  }

  .primary-nav a {
    font-size: var(--text-lg);
    display: block;
  }

  .nav-toggle {
    display: flex;
  }

  .brand-logo {
    height: 40px;
  }

  section {
    padding-block: var(--space-7);
  }

  .problem-grid,
  .how-grid,
  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
}

@media (max-width: 400px) {
  .wrap {
    padding-inline: var(--space-4);
  }

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

  .btn {
    justify-content: center;
  }
}


/* ==========================================================================
   18. ACCESSIBILITY
   ========================================================================== */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  /* Ink rather than green: this ring needs to stay visible against every
     background it lands on, including the bright green button fill itself. */
  outline: 3px solid var(--ink);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
