:root {
  --bg-dark: #1a1a1a;
  --bg-mid: #0a2540;
  --panel: #f7f4ee;
  --text-light: #fefefe;
  --text-dark: #16212c;
  --accent: #e67e22;
  --accent-hover: #ffb400;
  --blue-strong: #0a2540;
  --blue-mid: #1f4261;
  --blue-soft: #d8e6f5;
  --line: rgba(255, 255, 255, 0.24);
  --shadow: 0 18px 35px rgba(2, 13, 24, 0.28);
  --font-heading: "Poppins", "Inter", "Segoe UI", sans-serif;
  --font-body: "Inter", "Roboto", "Segoe UI", sans-serif;
  --space-16: 16px;
  --space-24: 24px;
  --space-32: 32px;
  --space-48: 48px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text-light);
  background: linear-gradient(160deg, var(--bg-dark), var(--bg-mid) 52%, #143a5d);
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
}

img,
.card,
section,
input,
textarea {
  border-radius: 14px;
}

.skyline {
  position: fixed;
  inset: 0;
  background-image: radial-gradient(
      circle at 15% 10%,
      rgba(29, 69, 106, 0.16),
      transparent 35%
    ),
    radial-gradient(circle at 90% 5%, rgba(54, 92, 127, 0.14), transparent 28%),
    linear-gradient(
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: auto, auto, 48px 48px, 48px 48px;
  pointer-events: none;
  z-index: -1;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -200px;
  background: #ffffff;
  color: #10202d;
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  z-index: 100;
  text-decoration: none;
  font-weight: 700;
}

.skip-link:focus {
  top: 1rem;
}

.section-pad {
  width: min(1100px, 92vw);
  margin: 0 auto;
  padding: var(--space-48) 0;
}

.trust-strip {
  width: min(1100px, 92vw);
  margin: var(--space-16) auto 0;
  padding: var(--space-16) var(--space-24);
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: linear-gradient(
    100deg,
    rgba(10, 37, 64, 0.45),
    rgba(26, 26, 26, 0.42)
  );
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-16);
}

.trust-strip p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.trust-strip a {
  color: white;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-weight: 700;
}

.site-header {
  width: min(1100px, 92vw);
  margin: 0 auto;
  padding: var(--space-16) var(--space-24);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(20, 34, 48, 0.14);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(3, 15, 28, 0.12);
  transition: background 0.3s ease;
}

.brand {
  text-decoration: none;
  color: #162534;
  letter-spacing: 0.04em;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.7rem, 2.5vw, 2.2rem);
}

.site-nav {
  display: flex;
  gap: var(--space-24);
}

.site-nav a {
  color: #20374a;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.site-nav a:hover {
  color: #0f5068;
  border-color: rgba(15, 80, 104, 0.52);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(20, 34, 48, 0.18);
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #1b3043;
  margin: 3px 0;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-32);
  align-items: stretch;
}

.hero h1,
.section-heading h2,
.about h2 {
  font-family: var(--font-heading);
  letter-spacing: 0.02em;
}

.section-heading h2,
.about h2 {
  line-height: 0.95;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 var(--space-24);
}

.hero-copy {
  max-width: 60ch;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.9);
}

.hero-emotion {
  margin-top: var(--space-16);
  max-width: 60ch;
  line-height: 1.6;
  color: #dbe7f4;
  font-weight: 500;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.19em;
  font-size: 0.82rem;
  margin: 0;
  color: #9fd8d4;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-16);
  margin-top: var(--space-24);
}

button:not(.nav-toggle),
.btn {
  border-radius: 12px;
  border: 1px solid transparent;
  padding: 16px 24px;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  font-size: 1.1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease,
    border-color 0.2s ease, color 0.2s ease;
}

.btn:hover:not(:disabled),
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent);
  color: #1b1b1b;
  box-shadow: 0 10px 26px rgba(230, 126, 34, 0.42);
}

.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 14px 28px rgba(230, 126, 34, 0.45);
}

.btn-ghost {
  color: var(--text-light);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0a2540;
  padding: 14px;
  text-align: center;
  z-index: 9999;
  box-shadow: 0 -8px 20px rgba(2, 12, 22, 0.28);
}

.mobile-call-bar a {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
}

.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 20px;
  background: #e67e22;
  color: #fff;
  padding: 16px 22px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  z-index: 9998;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.floating-cta:hover,
.floating-cta:focus-visible {
  transform: translateY(-2px);
  background: #ffb400;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.hero-points {
  margin: var(--space-24) 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: var(--space-16);
  flex-wrap: wrap;
}

.hero-points li {
  border: 1px solid var(--line);
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  font-size: 0.82rem;
}

.hero-card {
  background: rgba(247, 244, 238, 0.96);
  color: var(--text-dark);
  padding: var(--space-24);
  border-radius: 18px;
  box-shadow: var(--shadow);
  align-self: end;
}

.card-kicker {
  margin-top: 0;
  color: #536677;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.77rem;
}

.urgency-badge {
  display: inline-block;
  margin: 0 0 0.9rem;
  border-radius: 999px;
  padding: 0.34rem 0.72rem;
  font-size: 0.77rem;
  font-weight: 700;
  color: #1f1f1f;
  background: var(--blue-soft);
  animation: badgePulse 2.2s ease-in-out infinite;
}

.urgency-badge:hover {
  animation-play-state: paused;
}

.hero-card h2 {
  margin: 0.4rem 0 0.75rem;
  font-family: var(--font-heading);
  font-size: 2.3rem;
  line-height: 1;
}

.hero-card p {
  line-height: 1.56;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-16);
  margin-top: var(--space-24);
}

.hero-stats div {
  padding: var(--space-16);
  background: #fff;
  border-radius: 10px;
}

.hero-stats strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.65rem;
}

.hero-stats span {
  font-size: 0.75rem;
  color: #4c6071;
}

.section-heading {
  margin-bottom: var(--space-32);
}

.section-heading h2 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin: var(--space-16) 0 0;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

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

.service-card {
  padding: var(--space-24);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
  color: var(--text-dark);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(7, 19, 33, 0.12);
}

.service-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: var(--space-16);
  background: rgba(10, 37, 64, 0.14);
  color: var(--blue-strong);
}

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

.service-card h3 {
  margin-top: 0;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  line-height: 1;
  color: var(--text-dark);
}

.service-card p {
  color: #324353;
  line-height: 1.62;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-24);
}

.results-card {
  border-radius: 16px;
  padding: var(--space-24);
  border: 1px solid rgba(255, 255, 255, 0.23);
}

.results-card h3 {
  margin-top: 0;
  margin-bottom: 0.55rem;
  font-family: var(--font-heading);
  font-size: 2rem;
}

.results-card ul {
  margin: 0;
  padding-left: 1.1rem;
  line-height: 1.9;
}

.risk-card {
  background: linear-gradient(145deg, rgba(72, 30, 25, 0.35), rgba(17, 20, 24, 0.4));
}

.relief-card {
  background: linear-gradient(
    145deg,
    rgba(26, 67, 64, 0.35),
    rgba(14, 35, 31, 0.45)
  );
}

.cost-warning {
  margin-top: var(--space-24);
  border: 1px solid rgba(10, 37, 64, 0.42);
  background: rgba(10, 37, 64, 0.18);
  border-radius: 16px;
  padding: var(--space-24);
}

.cost-warning h3 {
  margin-top: 0;
  margin-bottom: 0.55rem;
}

.cost-warning p {
  max-width: 70ch;
  margin-top: 0;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.92);
}

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

.review-card {
  border: 1px solid rgba(18, 34, 48, 0.12);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.testimonial {
  padding: var(--space-24);
  border-radius: 10px;
  background: #f8f8f8;
}

.review-stars {
  margin: 0 0 0.6rem;
  color: var(--blue-strong);
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  font-weight: 700;
}

.review-quote {
  margin-top: 0;
  margin-bottom: 0.95rem;
  line-height: 1.65;
  color: #2b3e50;
}

.review-name {
  margin: 0;
  color: #203143;
  font-weight: 700;
  font-size: 0.9rem;
}

.review-person {
  display: flex;
  align-items: center;
  gap: var(--space-16);
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #ffffff;
  background: linear-gradient(140deg, #3e5367, #1f3245);
  flex-shrink: 0;
}

.review-meta {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}

.review-suburb {
  margin: 0;
  font-size: 0.8rem;
  color: #647380;
}

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

.process-grid article {
  background: rgba(8, 22, 37, 0.72);
  border-radius: 14px;
  padding: var(--space-24);
  border: 1px solid rgba(189, 211, 234, 0.32);
}

.process-grid p {
  color: rgba(244, 248, 255, 0.94);
}

.process-grid span {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 2.1rem;
  color: #bdd3ea;
}

.process-grid h3 {
  margin-top: 0.3rem;
  margin-bottom: 0.45rem;
}

.about-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-24);
  padding: var(--space-32);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(29, 58, 80, 0.8), rgba(22, 34, 48, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-wrap h2 {
  margin: 0.5rem 0 0.9rem;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
}

.about-wrap p {
  line-height: 1.58;
}

.about-promise {
  border-left: 3px solid rgba(10, 37, 64, 0.78);
  padding-left: 0.8rem;
  margin-bottom: 0;
}

.why-pillars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-16);
  align-content: start;
}

.pillar-card {
  background: rgba(255, 255, 255, 0.96);
  color: var(--text-dark);
  border-radius: 12px;
  padding: var(--space-24);
  border: 1px solid rgba(20, 34, 49, 0.1);
}

.pillar-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-bottom: 0.55rem;
  background: rgba(10, 37, 64, 0.14);
  color: var(--blue-strong);
}

.pillar-icon svg {
  width: 24px;
  height: 24px;
}

.pillar-card h3 {
  margin: 0 0 0.32rem;
  font-family: var(--font-heading);
  letter-spacing: 0.02em;
  line-height: 1;
  font-size: 1.55rem;
}

.pillar-card p {
  margin: 0;
  line-height: 1.55;
  color: #344758;
  font-size: 0.92rem;
}

.career-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-24);
}

.career-card {
  background: rgba(247, 244, 238, 0.96);
  color: var(--text-dark);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: var(--space-24);
}

.career-card h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1;
}

.career-card p {
  margin-top: 0;
  line-height: 1.6;
}

.career-card ul {
  margin: 0;
  padding-left: 1.1rem;
  line-height: 1.8;
}

.job-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-24);
  display: grid;
  gap: var(--space-16);
}

.job-list li {
  border: 1px solid #d7dbe0;
  border-radius: 12px;
  padding: var(--space-16);
  background: #ffffff;
}

.review-card,
.career-card,
.pillar-card,
.process-grid article,
.job-list li {
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

@media (hover: hover) and (pointer: fine) {
  .review-card:hover,
  .career-card:hover,
  .pillar-card:hover,
  .process-grid article:hover,
  .job-list li:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(7, 19, 33, 0.14);
  }
}

.job-list strong {
  display: block;
  margin-bottom: 0.2rem;
}

.job-list span {
  font-size: 0.9rem;
  color: #425468;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.career-form {
  display: grid;
  gap: var(--space-16);
}

.career-form label {
  font-weight: 700;
  font-size: 0.84rem;
}

.career-form input,
.career-form textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid #c9d0d7;
  padding: var(--space-16);
  font: inherit;
}

.career-form textarea {
  resize: vertical;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--space-24);
}

.contact-card,
.quote-form {
  background: rgba(247, 244, 238, 0.96);
  color: var(--text-dark);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: var(--space-24);
}

.contact-card h3 {
  margin-top: 0;
}

.contact-card p {
  margin: 0.55rem 0;
}

.contact-card a {
  color: #0f5068;
}

.small-note {
  font-size: 0.8rem;
  opacity: 0.8;
}

.legal-main {
  padding-top: var(--space-32);
}

.legal-card {
  width: min(860px, 100%);
  margin: 0 auto;
}

.legal-card h1 {
  margin-top: 0;
}

.quote-form {
  display: grid;
  gap: var(--space-16);
}

.quote-form label {
  font-weight: 700;
  font-size: 0.84rem;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid #c9d0d7;
  padding: var(--space-16);
  font: inherit;
}

.quote-form textarea {
  resize: vertical;
}

.form-note {
  margin: 0.3rem 0 0;
  color: #24313d;
  font-weight: 600;
  font-size: 0.84rem;
}

.form-trust {
  margin: 0.15rem 0 0;
  font-size: 0.83rem;
  color: #385162;
  font-weight: 600;
}

.form-feedback,
.career-feedback {
  min-height: 1.2em;
  margin: 0.2rem 0 0;
  font-weight: 700;
  opacity: 0;
  transform: translateY(4px);
}

.form-feedback.is-visible,
.career-feedback.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.form-feedback.form-success,
.career-feedback.form-success {
  background: #e8ffe8;
  padding: 16px;
  border-radius: 8px;
  color: #0a7a0a;
  animation: fadeIn 0.4s ease;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #95b5d5;
  outline-offset: 2px;
}

.site-footer {
  border-top: 1px solid var(--line);
  text-align: center;
  padding: var(--space-32) var(--space-24);
  color: rgba(255, 255, 255, 0.86);
}

.footer-links {
  margin-top: 0.35rem;
  margin-bottom: 0;
  font-size: 0.84rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.92);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  filter: blur(2px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.55s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

@keyframes badgePulse {
  0% {
    transform: translateY(0);
    box-shadow: 0 0 0 rgba(10, 37, 64, 0);
  }
  50% {
    transform: translateY(-1px);
    box-shadow: 0 7px 18px rgba(10, 37, 64, 0.35);
  }
  100% {
    transform: translateY(0);
    box-shadow: 0 0 0 rgba(10, 37, 64, 0);
  }
}

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

@media (max-width: 900px) {
  .hero,
  .service-grid,
  .results-grid,
  .review-grid,
  .process-grid,
  .about-wrap,
  .career-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 540px;
  }

  .why-pillars {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .trust-strip {
    border-radius: 14px;
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-16);
  }

  .site-header {
    padding: var(--space-16);
    border-radius: 12px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.45rem);
    right: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(20, 34, 48, 0.15);
    border-radius: 14px;
    width: min(74vw, 280px);
    padding: var(--space-16);
    display: none;
    flex-direction: column;
    gap: var(--space-16);
    box-shadow: 0 10px 20px rgba(4, 16, 28, 0.14);
  }

  .site-nav.open {
    display: flex;
  }

  .legal-page .site-nav {
    position: static;
    top: auto;
    right: auto;
    width: auto;
    padding: 0;
    display: flex;
    flex-direction: row;
    gap: var(--space-16);
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 0;
    box-shadow: none;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.2;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 88px;
  }

  .mobile-call-bar {
    display: block;
  }

  .floating-cta {
    bottom: 98px;
    right: 16px;
  }

  .section-pad,
  section {
    padding: 40px 20px;
  }

  h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .btn {
    padding: 16px 24px;
    font-size: 1.1rem;
    border-radius: 12px;
  }

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
