/* Avora Solutions — near-black navy + aqua-to-royal-blue gradient theme
   Minimal, airy, professional. Built around the logo:
   near-black navy #070b24 headings, slate body text, soft mist #F5F8FA
   section backgrounds, and restrained aqua-to-blue gradient accents
   (#00dcc8 → #1e40e0) echoing the logo. System font stack only —
   no webfont dependencies, no frameworks. */

:root {
  --navy: #070b24;          /* headings, brand dark (logo near-black navy) */
  --navy-deep: #04061a;     /* darkest navy (rare accents) */
  --slate: #52606d;         /* body text */
  --slate-light: #6b7a87;   /* muted text */
  --mist: #f5f8fa;          /* soft section background */
  --paper: #ffffff;
  --teal: #00dcc8;          /* gradient start (logo aqua) */
  --blue: #1e40e0;          /* gradient end (logo royal blue) */
  --blue-dark: #1630b0;
  --grad: linear-gradient(135deg, var(--teal) 0%, var(--blue) 100%);
  --border: #e3eaf1;
  --radius: 12px;
  --max-width: 1120px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, "Noto Sans", sans-serif;
  --shadow-sm: 0 1px 2px rgba(7, 11, 36, 0.05);
  --shadow: 0 10px 30px rgba(7, 11, 36, 0.08);
  --shadow-lg: 0 20px 48px rgba(7, 11, 36, 0.13);
  --ring: rgba(0, 220, 200, 0.30);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--slate);
  background: var(--paper);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
}

::selection { background: rgba(0, 220, 200, 0.28); }

h1, h2, h3, h4 {
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin: 0 0 0.6em;
  color: var(--navy);
  font-weight: 700;
}

h1 { font-size: clamp(2.1rem, 4.6vw, 3.1rem); }
h2 { font-size: clamp(1.55rem, 3vw, 2.15rem); }
h3 { font-size: 1.25rem; font-weight: 650; }

p { margin: 0 0 1em; color: var(--slate); }
.lede { font-size: 1.2rem; color: var(--slate); max-width: 44rem; }

a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--blue-dark); }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section { padding: 4.5rem 0; }
.section-alt { background: var(--mist); }
.narrow { max-width: 46rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.84);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--navy);
  margin-right: auto;
}

.brand-logo { height: 42px; width: auto; display: block; }
.brand-name { font-weight: 750; font-size: 1.15rem; letter-spacing: -0.01em; white-space: nowrap; }

.site-nav ul {
  display: flex;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  display: block;
  padding: 0.55rem 0.8rem;
  border-radius: 8px;
  text-decoration: none;
  color: var(--navy);
  font-size: 0.98rem;
  font-weight: 550;
  transition: background 0.15s ease, color 0.15s ease;
}

.site-nav a:hover { background: var(--mist); color: var(--navy); }
.site-nav a[aria-current="page"] { color: var(--blue); }

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

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.5rem 0.65rem;
  cursor: pointer;
  color: var(--navy);
}

.nav-toggle svg { display: block; width: 22px; height: 22px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.85rem 1.7rem;
  border-radius: 10px;
  font-weight: 650;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

/* Primary gradient CTA — teal-to-blue echo of the logo.
   Both .btn-primary and .btn-light are used as primary actions in the markup,
   so both render as the gradient button in this theme. */
.btn-primary,
.btn-light {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.24);
}
.btn-primary:hover,
.btn-light:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.32);
}
.btn-primary:active,
.btn-light:active { transform: translateY(0); }

.btn-secondary {
  background: #fff;
  color: var(--navy);
  border-color: #c9d4de;
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  background: var(--mist);
  color: var(--navy);
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.6rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  padding: 5rem 0 4.5rem;
}

/* Soft animated gradient accents — pure CSS, very restrained */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}
.hero::before {
  width: 34rem;
  height: 34rem;
  top: -13rem;
  right: -9rem;
  background: radial-gradient(circle, rgba(0, 220, 200, 0.20), transparent 65%);
  animation: hero-drift 16s ease-in-out infinite alternate;
}
.hero::after {
  width: 28rem;
  height: 28rem;
  bottom: -15rem;
  left: -11rem;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15), transparent 65%);
  animation: hero-drift 21s ease-in-out infinite alternate-reverse;
}
@keyframes hero-drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-3rem, 2.5rem) scale(1.08); }
}

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

/* Centered single-column hero layout (home page and inner pages) */
.hero-centered {
  max-width: 48rem;
  text-align: center;
}
.hero-centered h1 { max-width: none; }
.hero-centered h1::after { margin-left: auto; margin-right: auto; }
.hero-centered .lede { margin-left: auto; margin-right: auto; }
.hero-centered .btn-row { justify-content: center; }

/* Gentle entrance for hero content */
.hero-copy > *,
.hero-centered > *:not(.hero-copy) { animation: hero-rise 1.15s ease both; }
.hero-copy > *:nth-child(2),
.hero-centered > *:not(.hero-copy):nth-child(2) { animation-delay: 0.14s; }
.hero-copy > *:nth-child(3),
.hero-centered > *:not(.hero-copy):nth-child(3) { animation-delay: 0.26s; }
.hero-copy > *:nth-child(4) { animation-delay: 0.38s; }
.hero-copy > *:nth-child(5) { animation-delay: 0.5s; }
.hero-copy > *:nth-child(6) { animation-delay: 0.62s; }
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Rotating-word line: "Your outsourced IT department for ___." */
.rot-line {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin: 1.3rem 0 0;
}
.rot-word {
  display: inline-block;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.rot-word.is-fading { opacity: 0; transform: translateY(10px); }

/* ---------- Logo splash (home page intro) ----------
   Created by JS only, so visitors without JS never see it.
   The logo pops in fullscreen, holds, then fades out into the page. */
.splash {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  background: #fff;
}
.splash-logo {
  width: clamp(12rem, 38vw, 20rem);
  height: auto;
  animation: splash-pop 0.7s ease both;
}
@keyframes splash-pop {
  from { opacity: 0; transform: scale(0.86); }
  to   { opacity: 1; transform: scale(1); }
}
.splash.is-leaving {
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease;
}
/* Hold the hero entrance while the splash is up; it plays as the splash lifts */
.splash-active .hero-centered > *:not(.hero-copy) { animation-play-state: paused; }

.hero h1 { max-width: 16em; }
.hero h1::after {
  content: "";
  display: block;
  width: 3.5rem;
  height: 4px;
  border-radius: 2px;
  background: var(--grad);
  margin-top: 1.1rem;
}
.hero .supporting { color: var(--slate-light); font-size: 0.98rem; margin-top: 1.4rem; }

/* ---------- Page banner image (service pages) ---------- */
.page-banner {
  margin: 1rem auto 3.5rem;
  max-width: 62rem;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}
.page-banner img {
  display: block;
  width: 100%;
  height: clamp(13rem, 28vw, 21rem);
  object-fit: cover;
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--mist);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 550;
  padding: 0.85rem 0;
}

.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  justify-content: center;
}

.trust-strip span {
  position: relative;
  padding-left: 1.15rem;
  white-space: nowrap;
}
.trust-strip span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.5rem;
  height: 0.5rem;
  margin-top: -0.25rem;
  border-radius: 50%;
  background: var(--grad);
}

/* ---------- "Find your fit" interactive widget ---------- */
.fit-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.6rem 0 0;
}

.fit-btn {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  background: #fff;
  border: 1px solid #c9d4de;
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.fit-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--blue);
}

.fit-btn[aria-expanded="true"] {
  background: var(--grad);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 22px rgba(0, 220, 200, 0.30);
}

/* Panels are fully open without JS (class "js" is added by main.js);
   with JS they collapse until a button opens one. */
.fit-panel {
  display: grid;
  grid-template-rows: 1fr;
  transition: grid-template-rows 0.4s ease;
}
.js .fit-panel {
  grid-template-rows: 0fr;
  visibility: hidden;
  transition: grid-template-rows 0.4s ease, visibility 0s linear 0.4s;
}
.js .fit-panel.open {
  grid-template-rows: 1fr;
  visibility: visible;
  transition: grid-template-rows 0.4s ease, visibility 0s linear 0s;
}
.fit-panel-clip { overflow: hidden; min-height: 0; }
.fit-panel-card {
  margin-top: 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  box-shadow: var(--shadow-sm);
}
.fit-panel-card p { margin: 0 0 0.6rem; }
.fit-panel-card p:last-child { margin-bottom: 0; }
.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;
}

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 2rem;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: #bcd2ea;
}

.card h3 { margin-bottom: 0.5rem; }
.card p { font-size: 1rem; }
.card .btn { margin-top: auto; align-self: flex-start; }

/* Numbered factor list (pricing: "What shapes the quote") —
   an open, clearly readable list instead of boxed cards. */
.factor-list {
  list-style: none;
  margin: 2.2rem 0 0;
  padding: 0;
  counter-reset: factor;
  max-width: 48rem;
}
.factor-list li {
  counter-increment: factor;
  display: flex;
  align-items: baseline;
  gap: 1.4rem;
  padding: 1.4rem 0.25rem;
  border-bottom: 1px solid var(--border);
}
.factor-list li:first-child { border-top: 1px solid var(--border); }
.factor-list li::before {
  content: counter(factor, decimal-leading-zero);
  flex: 0 0 auto;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--teal);
  background: var(--mist);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
}
.factor-list p {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 550;
  color: var(--navy);
}

/* Image cards: image across the top, copy below */
.card-image { padding: 0; overflow: hidden; }
.card-img {
  width: 100%;
  height: 11.5rem;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.card-image:hover .card-img { transform: scale(1.05); }
.card-body {
  padding: 1.6rem 1.8rem 1.8rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  margin-top: 2rem;
  counter-reset: step;
  list-style: none;
  padding: 0;
  position: relative;
}

/* Animated connector line behind the step badges.
   It draws left-to-right when the section scrolls into view. */
.steps::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 1.05rem;
  left: 1.05rem;
  width: calc(75% + 1.05rem);
  height: 2px;
  border-radius: 2px;
  background: var(--grad);
  opacity: 0.5;
}
/* The line only starts collapsed when JS opts in (and motion is allowed),
   so it stays visible if JS is disabled or reduced-motion is set. */
.js .steps.line-anim::before {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.1s ease 0.2s;
}
.js .steps.line-anim.draw::before { transform: scaleX(1); }

.steps li { position: relative; z-index: 1; padding-top: 2.8rem; }

.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 0;
  left: 0;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 220, 200, 0.30);
}

.steps h3 { font-size: 1.1rem; margin-bottom: 0.35rem; }
.steps p { font-size: 0.98rem; }

/* ---------- Check lists ---------- */
.check-list { list-style: none; padding: 0; margin: 1.2rem 0; }
.check-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.9rem;
  color: var(--slate);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05em;
  color: var(--teal);
  font-weight: 800;
  font-size: 1.1em;
}
.check-list strong { color: var(--navy); }

.bullet-list { padding-left: 1.3rem; color: var(--slate); }
.bullet-list li { margin-bottom: 0.7rem; }
.bullet-list li::marker { color: var(--teal); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background: var(--paper);
  text-align: center;
  padding: 4.5rem 0;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad);
}

.cta-band h2 { max-width: 20em; margin-left: auto; margin-right: auto; }
.cta-band p { max-width: 40rem; margin-left: auto; margin-right: auto; }
.cta-band .btn-row { justify-content: center; }

/* ---------- FAQ accordion ---------- */
.faq-list { border-top: 1px solid var(--border); margin-top: 1.5rem; }

.faq-item { border-bottom: 1px solid var(--border); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.15rem 2.5rem 1.15rem 0;
  font-family: inherit;
  font-size: 1.08rem;
  font-weight: 650;
  color: var(--navy);
  cursor: pointer;
  position: relative;
  transition: color 0.15s ease;
}

.faq-question:hover { color: var(--blue-dark); }

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0.4rem;
  top: 1rem;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--teal);
  transition: transform 0.25s ease;
}

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

/* Smooth open/close via animated grid rows.
   Answers stay open when JS is disabled (the "js" class is added by main.js). */
.faq-answer {
  display: grid;
  grid-template-rows: 1fr;
  transition: grid-template-rows 0.35s ease;
}
.faq-answer > * { min-height: 0; }
.js .faq-answer {
  grid-template-rows: 0fr;
  /* visibility guarantees answers stay fully hidden until opened,
     even where a browser leaves a sliver of the collapsed row visible */
  visibility: hidden;
  transition: grid-template-rows 0.35s ease, visibility 0s linear 0.35s;
}
.js .faq-answer > * { overflow: hidden; }
.js .faq-item.open .faq-answer {
  grid-template-rows: 1fr;
  visibility: visible;
  transition: grid-template-rows 0.35s ease, visibility 0s linear 0s;
}
.faq-answer p {
  color: var(--slate);
  max-width: 46rem;
  margin: 0;
  padding-bottom: 2.4rem;
}

/* ---------- Forms ---------- */
.form { max-width: 40rem; }

.form-field { margin-bottom: 1.2rem; }

.form-field label {
  display: block;
  font-weight: 600;
  font-size: 0.98rem;
  margin-bottom: 0.4rem;
  color: var(--navy);
}

.form-field .optional { font-weight: 400; color: var(--slate-light); font-size: 0.9rem; }

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--navy);
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--ring);
}

.checkbox-field { display: flex; gap: 0.7rem; align-items: flex-start; }
.checkbox-field input { margin-top: 0.35rem; accent-color: var(--blue); }
.checkbox-field label { font-weight: 400; font-size: 0.95rem; color: var(--slate); }

.form-note {
  font-size: 0.92rem;
  color: var(--slate);
  background: var(--mist);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.9rem 1.1rem;
  margin-top: 1.4rem;
}

/* ---------- Contact options ---------- */
.contact-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  margin: 2rem 0 3rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--paper);
  border-top: 1px solid var(--border);
  color: var(--slate);
  padding: 3rem 0 2rem;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.site-footer h3 { font-size: 1rem; margin-bottom: 0.8rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.5rem; }
.site-footer a { color: var(--slate); text-decoration: none; }
.site-footer a:hover { color: var(--navy); text-decoration: underline; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--slate-light);
}

/* ---------- Scroll reveal ---------- */
/* .reveal is added by JS only, so content stays visible with JS disabled. */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 1s ease, transform 1s ease;
}
.reveal.in { opacity: 1; transform: none; }

/* ---------- Accessibility ---------- */
:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 0.7rem 1.2rem;
  z-index: 100;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .card-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-options { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav-toggle { display: block; }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
  }

  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; padding: 0.6rem; }
  .site-nav a { padding: 0.8rem 1rem; }

  .header-cta { display: none; }
  .header-inner { gap: 1rem; }
  .brand { margin-right: auto; }
}

@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 3rem 0; }
  .hero { padding: 3.4rem 0 3rem; }
  .btn-row .btn { width: 100%; text-align: center; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero::before, .hero::after { animation: none; }
  .hero-copy > *, .hero-centered > * { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .faq-answer { transition: none; }
  .btn, .card, .site-nav a, .faq-question { transition: none; }
  .rot-word, .fit-btn, .fit-panel, .card-img { transition: none; }
  .rot-word.is-fading { opacity: 1; transform: none; }
  .js .steps.line-anim::before { transition: none; transform: scaleX(1); }
}
