:root {
  --green-950: #08261c;
  --green-900: #0d3a2a;
  --green-800: #11523a;
  --green-700: #156943;
  --green-100: #e9f7ee;
  --green-50: #f4fbf6;
  --gold: #f4b41a;
  --gold-soft: #fff3c8;
  --charcoal: #18201d;
  --muted: #68736f;
  --line: #dbe7df;
  --white: #ffffff;
  --surface: #f7faf7;
  --shadow: 0 22px 60px rgba(8, 38, 28, 0.14);
  --radius: 8px;
  --max: 1180px;
  --header: 78px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(219, 231, 223, 0.85);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  font-weight: 900;
  letter-spacing: 0;
  color: var(--green-950);
  line-height: 1.1;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  color: var(--gold);
  box-shadow: 0 14px 28px rgba(13, 58, 42, 0.2);
}

.brand-mark svg {
  width: 30px;
  height: 30px;
}

.brand span:last-child {
  display: block;
  max-width: 170px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  gap: 4px;
}

.main-nav a {
  padding: 10px 11px;
  border-radius: var(--radius);
  color: #34433d;
  font-size: 0.94rem;
  font-weight: 700;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.active {
  color: var(--green-900);
  background: var(--green-100);
}

.header-actions {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
}

.site-header .button {
  white-space: nowrap;
}

.icon-button,
.menu-toggle {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--green-900);
  cursor: pointer;
}

.menu-toggle {
  display: none;
}

.icon-button svg,
.menu-toggle svg,
.button svg,
.link-arrow svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--green-800);
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.site-header .button span {
  white-space: nowrap;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  background: var(--green-900);
  box-shadow: 0 12px 28px rgba(13, 58, 42, 0.18);
}

.button.secondary {
  background: var(--white);
  color: var(--green-900);
  border-color: var(--line);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: var(--green-50);
}

.button.gold {
  background: var(--gold);
  color: #2b2108;
}

.button.ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.button.ghost:hover,
.button.ghost:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header));
  color: var(--white);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 38, 28, 0.94), rgba(8, 38, 28, 0.62) 52%, rgba(8, 38, 28, 0.24)),
    var(--hero-image, none) center / cover no-repeat;
  transform: scale(1.01);
}

.hero .container {
  position: relative;
  padding: 84px 0 112px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(280px, 380px);
  gap: 48px;
  align-items: end;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--green-900);
  background: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffe396;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

h1,
h2,
h3 {
  line-height: 1.1;
  letter-spacing: 0;
  color: var(--green-950);
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(2.6rem, 6vw, 5.7rem);
  color: var(--white);
}

.hero h2 {
  max-width: 700px;
  margin-bottom: 18px;
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  color: #d8f1e3;
}

.hero p {
  max-width: 690px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.hero-actions,
.section-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-contact {
  align-self: stretch;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.hero-contact strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.hero-contact p {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.96rem;
}

.hero-contact .button {
  width: 100%;
  margin-top: 10px;
}

.trust-strip {
  margin-top: -52px;
  position: relative;
  z-index: 5;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.trust-item {
  min-height: 118px;
  padding: 24px;
  border-right: 1px solid var(--line);
  display: grid;
  align-content: center;
  gap: 8px;
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item span,
.mini-label {
  color: var(--green-700);
  font-weight: 900;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.trust-item strong {
  color: var(--green-950);
  font-size: 1.02rem;
}

.section {
  padding: 96px 0;
}

.section.compact {
  padding: 68px 0;
}

.section.tint {
  background: var(--surface);
}

.section.dark {
  background: var(--green-950);
  color: var(--white);
}

.section.dark h1,
.section.dark h2,
.section.dark h3 {
  color: var(--white);
}

.section.dark p,
.section.dark .muted {
  color: rgba(255, 255, 255, 0.74);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.65fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 42px;
}

.section-head.center {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
  display: block;
}

.section-head h1,
.section-head h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.45rem);
}

.section-head p {
  margin-bottom: 0;
  color: var(--muted);
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: 54px;
  align-items: center;
}

.media-frame {
  position: relative;
  min-height: 460px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--green-100);
}

.media-frame img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.media-note {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(219, 231, 223, 0.75);
}

.media-note strong {
  color: var(--green-950);
}

.media-note p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.lead {
  font-size: 1.1rem;
  color: #4c5a55;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 26px 0 32px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #33423d;
}

.check-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-top: 4px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, var(--gold) 0 35%, var(--green-800) 38% 100%);
}

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

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  position: relative;
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(8, 38, 28, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(21, 105, 67, 0.26);
  box-shadow: var(--shadow);
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

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

.card .button {
  margin-top: 8px;
}

.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: var(--radius);
  background: var(--green-100);
  color: var(--green-800);
}

.service-icon svg {
  width: 26px;
  height: 26px;
}

.solution-card {
  overflow: hidden;
  padding: 0;
}

.solution-card img {
  width: 100%;
  height: 235px;
  object-fit: cover;
}

.solution-card .card-body {
  padding: 24px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 16px 0 20px;
  list-style: none;
}

.tag-list li,
.pill {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-800);
  font-weight: 800;
  font-size: 0.82rem;
}

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

.product-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  font-weight: 800;
}

.product-item span {
  width: 10px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(180deg, var(--gold), var(--green-700));
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 34px;
  height: 2px;
  background: var(--line);
}

.step {
  position: relative;
  padding-top: 78px;
}

.step-number {
  position: absolute;
  top: 0;
  left: 0;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--green-800);
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 0 0 7px var(--green-100);
}

.step h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.step p {
  color: var(--muted);
  font-size: 0.93rem;
}

.calculator-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 24px;
  align-items: stretch;
}

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

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: #33423d;
  font-size: 0.88rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--charcoal);
  padding: 11px 12px;
  outline: none;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green-700);
  box-shadow: 0 0 0 4px rgba(21, 105, 67, 0.1);
}

.result-panel {
  display: grid;
  gap: 14px;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--green-950);
  color: var(--white);
}

.result-panel h3 {
  color: var(--white);
}

.result-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.result-item span {
  color: rgba(255, 255, 255, 0.72);
}

.result-item strong {
  font-size: 1.08rem;
  color: var(--gold);
}

.estimate-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

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

.project-card {
  overflow: hidden;
  padding: 0;
}

.project-card img {
  height: 255px;
  width: 100%;
  object-fit: cover;
}

.project-card .card-body {
  padding: 24px;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.credential-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.credential-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.credential-list li {
  padding: 16px;
  border: 1px dashed rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.82);
}

.testimonial-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
}

.testimonial {
  padding: 32px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.testimonial blockquote {
  margin: 0 0 18px;
  color: #30413b;
  font-size: 1.2rem;
  line-height: 1.6;
}

.testimonial cite {
  display: block;
  color: var(--green-800);
  font-style: normal;
  font-weight: 900;
}

.slider-controls {
  display: flex;
  gap: 8px;
}

.accordion {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  color: var(--green-950);
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-question span:last-child {
  font-size: 1.35rem;
  line-height: 1;
}

.faq-answer {
  display: none;
  padding: 0 20px 20px;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.cta-band {
  padding: 54px;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(8, 38, 28, 0.96), rgba(13, 58, 42, 0.82)),
    url("https://images.unsplash.com/photo-1509391366360-2e959784a276?auto=format&fit=crop&w=1600&q=80") center / cover no-repeat;
  color: var(--white);
}

.cta-band h2 {
  max-width: 760px;
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.15rem);
}

.cta-band p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: 30px;
}

.contact-panel {
  padding: 30px;
  border-radius: var(--radius);
  background: var(--green-950);
  color: var(--white);
}

.contact-panel h3 {
  color: var(--white);
}

.contact-line {
  display: grid;
  gap: 4px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-line span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.success-message {
  display: none;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: var(--green-100);
  color: var(--green-900);
  font-weight: 800;
}

.success-message.show {
  display: block;
}

.page-hero {
  padding: 78px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 38, 28, 0.94), rgba(8, 38, 28, 0.6)),
    var(--page-image, url("https://images.unsplash.com/photo-1508514177221-188b1cf16e9d?auto=format&fit=crop&w=1600&q=80")) center / cover no-repeat;
}

.page-hero h1 {
  max-width: 850px;
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(2.35rem, 5vw, 4.65rem);
}

.page-hero p {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

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

.insight-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.site-footer {
  background: #071e16;
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 34px;
  padding: 70px 0 44px;
}

.footer-main h3,
.footer-main h4 {
  color: var(--white);
}

.footer-main p,
.footer-main a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-main a:hover,
.footer-main a:focus-visible {
  color: var(--gold);
}

.footer-list {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  display: grid;
  gap: 10px;
}

.floating-actions a {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-800);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(8, 38, 28, 0.24);
}

.floating-actions a:first-child {
  background: #1f9d55;
}

.floating-actions svg {
  width: 23px;
  height: 23px;
}

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

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

@media (max-width: 1080px) {
  .main-nav {
    position: fixed;
    inset: var(--header) 0 auto 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 12px 20px 24px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: grid;
  }

  .main-nav a {
    padding: 14px 10px;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .header-actions .quote-button {
    display: none;
  }

  .hero-grid,
  .section-head,
  .two-col,
  .calculator-wrap,
  .credential-panel,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-contact {
    max-width: 520px;
  }

  .trust-grid,
  .card-grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-grid,
  .project-grid,
  .insight-grid,
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .timeline::before {
    display: none;
  }

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

@media (max-width: 1280px) {
  .site-header .email-short {
    display: none;
  }
}

@media (max-width: 680px) {
  :root {
    --header: 70px;
  }

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

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand span:last-child {
    max-width: 130px;
    font-size: 0.84rem;
  }

  .icon-button.email-short {
    display: none;
  }

  .hero .container {
    padding: 70px 0 96px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(8, 38, 28, 0.92), rgba(8, 38, 28, 0.7)),
      var(--hero-image, none) center / cover no-repeat;
  }

  .hero p,
  .page-hero p {
    font-size: 1rem;
  }

  .trust-strip {
    margin-top: 0;
  }

  .trust-grid,
  .card-grid,
  .card-grid.four,
  .project-grid,
  .insight-grid,
  .products-grid,
  .form-grid,
  .timeline,
  .credential-list,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 70px 0;
  }

  .media-frame {
    min-height: 320px;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .cta-band {
    padding: 34px 24px;
  }

  .testimonial-shell {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }

  .floating-actions {
    right: 12px;
    bottom: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

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