:root {
  --bg: #f5f7f1;
  --surface: #ffffff;
  --surface-2: #eef3ea;
  --ink: #1d241f;
  --muted: #617066;
  --line: rgba(31, 43, 36, 0.14);
  --green: #1f2b24;
  --green-2: #2f6b57;
  --rust: #e6783c;
  --rust-dark: #bc542f;
  --gold: #f4c86a;
  --shadow: 0 22px 60px rgba(24, 36, 29, 0.12);
  --radius: 8px;
  --header-h: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 14px;
  left: 50%;
  width: min(100% - 32px, 1180px);
  min-height: var(--header-h);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 12px 14px 12px 16px;
  color: #ffffff;
  background: rgba(25, 35, 29, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  background: rgba(25, 35, 29, 0.92);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 760;
  line-height: 1.1;
}

.brand img {
  flex: 0 0 auto;
}

.brand span {
  overflow-wrap: anywhere;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.header-nav a {
  padding: 10px 12px;
  border-radius: var(--radius);
  transition: background 180ms ease, color 180ms ease;
}

.header-nav a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.header-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 14px 20px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 740;
  line-height: 1.1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-button {
  flex: 0 0 auto;
  color: var(--green);
  background: var(--gold);
}

.button-primary {
  color: #ffffff;
  background: var(--rust);
  box-shadow: 0 16px 36px rgba(190, 84, 47, 0.34);
}

.header-button:hover,
.button:hover {
  transform: translateY(-2px);
}

.button-primary:hover {
  background: var(--rust-dark);
  box-shadow: 0 20px 44px rgba(190, 84, 47, 0.42);
}

.button:active,
.header-button:active,
.quiz-option:active {
  transform: translateY(0);
}

.hero {
  position: relative;
  min-height: min(820px, calc(100svh - 36px));
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  padding: 132px 0 72px;
}

.hero-media,
.hero-overlay,
.final-media,
.final-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img,
.final-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
}

.hero-media img {
  object-position: center 54%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(20, 31, 25, 0.9) 0%, rgba(20, 31, 25, 0.72) 43%, rgba(20, 31, 25, 0.28) 100%),
    linear-gradient(0deg, rgba(20, 31, 25, 0.58) 0%, rgba(20, 31, 25, 0) 42%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 740px) minmax(220px, 280px);
  align-items: end;
  gap: 44px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--rust);
  font-size: 14px;
  font-weight: 780;
  text-transform: uppercase;
}

.hero .eyebrow,
.final-cta .eyebrow {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  max-width: 760px;
  font-size: 62px;
  line-height: 0.98;
  font-weight: 820;
}

h2 {
  margin-bottom: 18px;
  font-size: 44px;
  line-height: 1.05;
  font-weight: 800;
}

h3 {
  margin-bottom: 12px;
  font-size: 23px;
  line-height: 1.16;
  font-weight: 780;
}

.hero-lead {
  max-width: 640px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 22px;
  line-height: 1.35;
}

.hero-list,
.clean-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  max-width: 720px;
  margin-bottom: 32px;
}

.hero-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: rgba(255, 255, 255, 0.92);
}

.hero-list img {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.microcopy {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.45;
}

.hero-summary {
  display: grid;
  gap: 10px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
}

.hero-summary div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-summary div:last-child {
  border-bottom: 0;
}

.hero-summary span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.hero-summary strong {
  font-size: 18px;
}

.section {
  padding: 96px 0;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 460px);
  align-items: center;
  gap: 62px;
}

.section-text {
  max-width: 660px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 19px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.stat-card,
.included-card,
.vacancy-card,
.legal-card,
.quiz-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(31, 43, 36, 0.08);
}

.stat-card {
  min-height: 132px;
  padding: 20px;
}

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green-2);
  font-size: 30px;
  line-height: 1;
}

.stat-card span {
  color: var(--muted);
}

.image-panel,
.included-photo,
.direction-note,
.process-photo {
  overflow: hidden;
  border-radius: var(--radius);
}

.image-panel {
  position: relative;
  min-height: 560px;
  box-shadow: var(--shadow);
}

.image-panel img,
.included-photo img,
.direction-note img,
.process-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.image-panel img {
  position: absolute;
  inset: 0;
  object-position: center 28%;
}

.image-panel:hover img,
.included-photo:hover img,
.direction-note:hover img,
.process-photo:hover img {
  transform: scale(1.045);
}

.image-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 16px;
  color: #ffffff;
  background: rgba(31, 43, 36, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.included-section {
  background: #ffffff;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 36px;
}

.included-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) minmax(280px, 0.9fr);
  gap: 18px;
}

.included-card {
  padding: 28px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.included-card:hover,
.vacancy-card:hover,
.legal-card:hover {
  transform: translateY(-5px);
  border-color: rgba(230, 120, 60, 0.38);
  box-shadow: 0 24px 58px rgba(31, 43, 36, 0.13);
}

.included-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
}

.clean-list {
  display: grid;
  gap: 12px;
  color: var(--muted);
}

.clean-list li {
  position: relative;
  padding-left: 24px;
}

.clean-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--rust);
  border-radius: 50%;
}

.included-photo {
  min-height: 100%;
  box-shadow: var(--shadow);
}

.included-photo img {
  min-height: 360px;
  object-position: center 48%;
}

.directions-section {
  background:
    radial-gradient(circle at 14% 10%, rgba(244, 200, 106, 0.2), transparent 34%),
    linear-gradient(180deg, #f5f7f1 0%, #eef3ea 100%);
}

.vacancy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.vacancy-card {
  min-height: 238px;
  padding: 24px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.vacancy-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 22px;
  padding: 6px 10px;
  color: var(--green);
  background: #fff8e4;
  border: 1px solid rgba(244, 200, 106, 0.62);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 720;
}

.vacancy-card h3 {
  min-height: 54px;
}

.vacancy-card p {
  color: var(--muted);
}

.vacancy-card .income {
  margin-bottom: 10px;
  color: var(--rust-dark);
  font-weight: 780;
}

.direction-note {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  align-items: center;
  gap: 0;
  margin-top: 28px;
  color: #ffffff;
  background: var(--green);
  box-shadow: var(--shadow);
}

.direction-note img {
  height: 220px;
  object-position: center 48%;
}

.direction-note p {
  margin: 0;
  padding: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.quiz-section {
  background: #ffffff;
}

.quiz-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: 42px;
  align-items: start;
}

.quiz-intro {
  position: sticky;
  top: 118px;
}

.quiz-intro p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.quiz-aside {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 28px;
  padding: 18px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.quiz-aside img {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
}

.quiz-aside span {
  color: var(--muted);
}

.quiz-card {
  padding: 30px;
}

.quiz-progress {
  margin-bottom: 28px;
}

.quiz-progress-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.quiz-progress-track {
  height: 9px;
  overflow: hidden;
  background: #e4eadf;
  border-radius: 999px;
}

.quiz-progress-track span {
  display: block;
  width: 25%;
  height: 100%;
  background: linear-gradient(90deg, var(--green-2), var(--rust));
  border-radius: inherit;
  transition: width 260ms ease;
}

.quiz-step {
  display: none;
}

.quiz-step.is-active {
  display: block;
  animation: quizIn 260ms ease both;
}

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

.quiz-step h3 {
  margin-bottom: 22px;
  font-size: 28px;
}

.quiz-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.quiz-option {
  min-height: 64px;
  padding: 16px 18px;
  color: var(--ink);
  text-align: left;
  background: var(--surface-2);
  border: 1px solid rgba(47, 107, 87, 0.18);
  border-radius: var(--radius);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.quiz-option:hover,
.quiz-option.is-selected {
  transform: translateY(-2px);
  background: #fff8e4;
  border-color: rgba(230, 120, 60, 0.55);
  box-shadow: 0 14px 32px rgba(31, 43, 36, 0.1);
}

.quiz-controls {
  min-height: 42px;
  margin-top: 20px;
}

.quiz-back {
  min-height: 42px;
  padding: 10px 14px;
  color: var(--green-2);
  background: transparent;
  border: 1px solid rgba(47, 107, 87, 0.24);
  border-radius: var(--radius);
  transition: background 180ms ease, border-color 180ms ease;
}

.quiz-back:hover:not(:disabled) {
  background: var(--surface-2);
  border-color: rgba(47, 107, 87, 0.48);
}

.quiz-back:disabled {
  opacity: 0;
  cursor: default;
}

.lead-form {
  display: grid;
  gap: 14px;
}

.lead-form label:not(.consent) {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 15px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid rgba(31, 43, 36, 0.18);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

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

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: rgba(47, 107, 87, 0.62);
  box-shadow: 0 0 0 4px rgba(47, 107, 87, 0.11);
}

.consent {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 13px;
}

.consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
  accent-color: var(--green-2);
}

.consent a {
  color: var(--green-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.lead-form .microcopy {
  color: var(--muted);
  text-align: center;
}

.process-section {
  background:
    linear-gradient(180deg, #f5f7f1 0%, #ffffff 100%);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: 28px;
  align-items: stretch;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.process-step {
  min-height: 180px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  color: var(--green);
  background: var(--gold);
  border-radius: 50%;
  font-weight: 800;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.process-photo {
  min-height: 300px;
  box-shadow: var(--shadow);
}

.process-photo img {
  object-position: center 45%;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 92px 0;
  color: #ffffff;
}

.final-media img {
  object-position: center 58%;
}

.final-overlay {
  background:
    linear-gradient(90deg, rgba(25, 35, 29, 0.9), rgba(25, 35, 29, 0.58) 48%, rgba(25, 35, 29, 0.28)),
    linear-gradient(0deg, rgba(25, 35, 29, 0.24), rgba(25, 35, 29, 0.24));
}

.final-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.final-inner h2 {
  color: #ffffff;
}

.final-inner p:not(.eyebrow):not(.microcopy) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
}

.final-inner .button {
  margin: 10px 0 16px;
}

.legal-section {
  background: #ffffff;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.legal-card {
  padding: 20px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.legal-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.legal-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  line-height: 1.25;
}

.legal-card p {
  margin: 5px 0 0;
  color: var(--muted);
}

.legal-disclaimer {
  margin: 24px 0 0;
  padding: 22px;
  color: #ffffff;
  background: var(--green);
  border-radius: var(--radius);
}

.site-footer {
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.78);
  background: var(--green);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
}

.footer-links a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.simple-page {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(31, 43, 36, 0.9), rgba(31, 43, 36, 0.62)),
    url("assets/images/hero-truck-road.jpg") center / cover no-repeat;
}

.simple-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
}

.simple-card {
  width: min(100%, 720px);
  padding: 38px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.simple-brand {
  margin-bottom: 34px;
  color: var(--green);
}

.simple-card h1 {
  margin-bottom: 16px;
  font-size: 48px;
  line-height: 1.04;
}

.simple-card p {
  color: var(--muted);
  font-size: 18px;
}

.simple-note {
  padding: 16px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.document-page {
  background: #ffffff;
}

.document-header {
  position: sticky;
  z-index: 10;
  top: 0;
  padding: 14px 0;
  color: #ffffff;
  background: var(--green);
  box-shadow: 0 12px 36px rgba(31, 43, 36, 0.14);
}

.document-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.document-main {
  padding: 70px 0 90px;
}

.document-content {
  max-width: 860px;
}

.document-content h1 {
  color: var(--ink);
  font-size: 52px;
}

.document-content h2 {
  margin: 34px 0 12px;
  color: var(--green);
  font-size: 26px;
}

.document-content p {
  color: var(--muted);
  font-size: 18px;
}

.document-content .button {
  margin-top: 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .header-nav {
    display: none;
  }

  .hero-inner,
  .split-layout,
  .quiz-layout,
  .process-layout {
    grid-template-columns: 1fr;
  }

  .hero-summary {
    max-width: 560px;
  }

  .stats-grid,
  .vacancy-grid,
  .legal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .included-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .included-photo {
    grid-column: 1 / -1;
  }

  .quiz-intro {
    position: static;
  }

  .process-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: 64px;
  }

  .container {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    top: 10px;
    width: min(100% - 20px, 1180px);
    padding: 10px;
    gap: 10px;
  }

  .brand span {
    font-size: 14px;
    white-space: nowrap;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .header-button {
    min-height: 42px;
    padding: 12px 13px;
    font-size: 14px;
  }

  .hero {
    min-height: auto;
    padding: 104px 0 46px;
  }

  .hero-inner {
    gap: 26px;
  }

  h1 {
    font-size: 40px;
    line-height: 1.03;
  }

  h2 {
    font-size: 34px;
  }

  h3 {
    font-size: 22px;
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-list,
  .stats-grid,
  .included-layout,
  .vacancy-grid,
  .legal-grid,
  .quiz-options,
  .process-list {
    grid-template-columns: 1fr;
  }

  .hero-list {
    gap: 10px;
  }

  .hero-summary {
    display: none;
  }

  .section {
    padding: 66px 0;
  }

  .split-layout {
    gap: 34px;
  }

  .image-panel {
    min-height: 420px;
  }

  .direction-note {
    grid-template-columns: 1fr;
  }

  .direction-note img {
    height: 210px;
  }

  .direction-note p {
    padding: 22px;
    font-size: 16px;
  }

  .quiz-card {
    padding: 20px;
  }

  .quiz-step h3 {
    font-size: 24px;
  }

  .process-step {
    min-height: 126px;
  }

  .final-cta {
    padding: 72px 0;
  }

  .footer-inner,
  .footer-links {
    align-items: flex-start;
    flex-direction: column;
  }

  .simple-shell {
    padding: 18px;
  }

  .simple-card {
    padding: 24px;
  }

  .simple-card h1,
  .document-content h1 {
    font-size: 34px;
  }

  .document-header-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .document-main {
    padding: 46px 0 64px;
  }
}

@media (max-width: 430px) {
  .site-header .brand span {
    font-size: 13px;
  }

  h1 {
    font-size: 35px;
  }

  h2 {
    font-size: 30px;
  }

  .hero-actions .button,
  .final-inner .button {
    width: 100%;
  }

  .vacancy-card h3 {
    min-height: auto;
  }
}

@media (max-width: 360px) {
  .site-header {
    gap: 8px;
  }

  .site-header .brand span {
    font-size: 11.5px;
  }

  .header-button {
    padding: 10px 11px;
    font-size: 12px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
