/* ═══════════════════════════════════════════════
   Lupy landing — hero (teal világ, csak a kutyák)
   A Play Store feature graphic palettáját tükrözi:
   sötét teal alap (app-ikon) + radiális fény (feature graphic).
   Brand: lime #C5F234 · ink #16211F · teal #1E4240
   Font: DynaPuff (app brand font, self-hosted)
   ═══════════════════════════════════════════════ */

:root {
  --lime: #C5F234;
  --ink: #16211F;
  --teal: #1E4240;
  --teal-glow: #2F6663;
  --cream: #FFF9EC;
  --text-soft: #C6D8D5;
  --text-mut: #A8C4C1;
  --header-h: 68px;
  color-scheme: dark;
  interpolate-size: allow-keywords;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'DynaPuff', system-ui, sans-serif;
  background: var(--teal);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
a:focus-visible { outline: 3px solid var(--lime); outline-offset: 3px; border-radius: 6px; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 44px);
}

.btn {
  display: inline-block;
  background: var(--lime);
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  border-radius: 999px;
  transition: transform 0.14s ease;
}
.btn:hover { transform: translateY(-2px); }

/* ── Ragadós, átlátszó fejléc (görgetésre letisztul) ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.nav.scrolled {
  background: rgba(20, 43, 41, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.nav-in {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}
.logo { display: inline-flex; }
.logo-svg {
  width: clamp(66px, 7vw, 86px);
  height: auto;
  aspect-ratio: 771 / 383;
  color: var(--lime);
}
.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 30px);
}
.nav-link {
  text-decoration: none;
  color: var(--text-soft);
  font-size: 0.96rem;
  transition: color 0.15s ease;
}
.nav-link:hover { color: var(--lime); }
.btn-nav { font-size: 0.92rem; padding: 10px 22px; }

/* nyelvválasztó */
.lang-switch {
  display: inline-flex;
  flex: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  overflow: hidden;
}
.lang-switch button {
  background: transparent;
  border: 0;
  color: var(--text-soft);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1;
  padding: 6px 12px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.lang-switch button.active { background: var(--lime); color: var(--ink); }
.lang-switch button:not(.active):hover { color: var(--cream); }
.lang-switch button:focus-visible { outline: 2px solid var(--lime); outline-offset: 2px; }

/* hamburger (csak mobilon látszik) */
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* szekciók scroll-igazítása pontosan a ragadós fejléc alá (rés/csík nélkül) */
.how, .pricing, .faq, #letoltes { scroll-margin-top: var(--header-h); }

/* ── Mobil menü ── */
@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .lang-switch { margin-left: auto; }
  .nav.open {
    background: rgba(16, 32, 30, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 10px 20px 20px;
    background: rgba(16, 32, 30, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav.open .nav-links { display: flex; }
  .nav-link {
    padding: 13px 4px;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }
  .nav-links .btn-nav {
    margin-top: 12px;
    text-align: center;
    font-size: 1rem;
    padding: 13px;
  }
}

/* ── Hero shell ── */
.hero {
  margin-top: calc(-1 * var(--header-h));
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  background: var(--teal) radial-gradient(140% 130% at 34% 30%,
              var(--teal-glow) 0%, rgba(30, 66, 64, 0) 72%);
}

/* ── Hero main grid ── */
.hero-main {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
  padding-top: calc(var(--header-h) + clamp(20px, 4vh, 44px));
  padding-bottom: clamp(24px, 5vh, 56px);
}

.hero-title {
  margin: 0;
  color: var(--cream);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(2.7rem, 7vw, 5.5rem);
  line-height: 1.16;
  letter-spacing: 0.005em;
}
.hero-title span { display: block; }
.hero-title .out { color: var(--lime); }

.hero-sub {
  margin: clamp(18px, 3vh, 28px) 0 0;
  color: var(--text-soft);
  font-weight: 400;
  font-size: clamp(0.98rem, 1.4vw, 1.08rem);
  line-height: 1.62;
  max-width: 26em;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: clamp(22px, 3.5vh, 32px);
}
.btn-cta { font-size: 1.04rem; padding: 15px 32px; }
.hero-note { font-size: 0.82rem; font-weight: 500; color: var(--text-mut); }

/* ── Hero visual: két telefon V-alakban + Luna & Skippy a csúcsnál ── */
.hero-vis {
  position: relative;
  height: clamp(460px, 64vh, 620px);
  min-width: 0;
}

.spotlight {
  position: absolute;
  left: 50%;
  top: 47%;
  transform: translate(-50%, -50%);
  width: min(106%, 520px);
  aspect-ratio: 1;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle at 50% 50%,
              rgba(105, 196, 193, 0.5) 0%,
              rgba(79, 163, 160, 0.22) 46%,
              rgba(79, 163, 160, 0) 70%);
}

/* két telefon V-alakban, közös alsó csúcson pivotálva */
.phone-stack { position: absolute; inset: 0; z-index: 1; }
.phone {
  position: absolute;
  left: 50%;
  bottom: 16%;
  width: clamp(150px, 14.8vw, 198px);
  margin: 0;
  border-radius: 30px;
  border: 6px solid #0E1C1B;
  background: #0E1C1B;
  box-shadow: 0 30px 56px -24px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  transform-origin: bottom center;
}
.phone img { display: block; width: 100%; border-radius: 24px; }
.phone-front {
  z-index: 2;
  transform: translateX(-50%) rotate(-15deg);
}
.phone-back {
  z-index: 1;
  transform: translateX(-50%) rotate(15deg);
  filter: brightness(0.9);
}

/* kutyák nagyban, elöl — a telefonokat szinte teljesen eltakarják, csak tetejük kandikál ki */
.dogs {
  position: absolute;
  left: 50%;
  bottom: 4%;
  transform: translateX(-50%);
  width: clamp(230px, 25vw, 330px);
  height: auto;
  z-index: 3;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.5));
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .btn:hover { transition: none; transform: none; }
}

/* ═══ Tablet / kis laptop ═══ */
@media (max-width: 1020px) {
  .phone { width: clamp(148px, 16vw, 190px); }
  .dogs { width: clamp(215px, 25vw, 300px); }
}

/* ═══ Egyoszlopos elrendezés ═══ */
@media (max-width: 860px) {
  .hero-main {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: calc(var(--header-h) + 22px);
  }
  .hero-sub { max-width: 34em; }
  .hero-vis { height: min(98vw, 470px); margin-top: 8px; }
  .phone { width: min(40vw, 194px); }
  .phone-front { transform: translateX(-50%) rotate(-13deg); }
  .phone-back { transform: translateX(-50%) rotate(13deg); }
  .dogs { width: min(64vw, 300px); }
}

/* ═══ Mobil ═══ */
@media (max-width: 520px) {
  .hero-title { font-size: clamp(2.5rem, 13.5vw, 3.4rem); }
  .hero-ctas { gap: 14px; }
  .btn-cta { padding: 14px 28px; }
  .hero-vis { height: min(120vw, 440px); }
  .phone { width: min(43vw, 172px); }
  .phone-front { transform: translateX(-50%) rotate(-11deg); }
  .phone-back { transform: translateX(-50%) rotate(11deg); }
  .dogs { width: min(72vw, 280px); }
}

/* ═══════════════════════════════════════════════
   „Hogyan működik" szekció (folytatódó teal világ)
   ═══════════════════════════════════════════════ */
.how {
  background: var(--teal);
  padding: clamp(64px, 9vh, 112px) 0;
}
.eyebrow {
  display: inline-block;
  color: var(--lime);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.how-head {
  max-width: 36ch;
  margin: 0 auto clamp(40px, 6vh, 68px);
  text-align: center;
}
.how-title {
  margin: 14px 0 0;
  color: var(--cream);
  font-weight: 700;
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  line-height: 1.08;
}
.how-lead {
  margin: 14px 0 0;
  color: var(--text-soft);
  font-size: clamp(0.98rem, 1.4vw, 1.1rem);
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 56px);
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 24px;
}
.step-shot {
  width: min(232px, 100%, 64vw);
  margin-bottom: 24px;
  border-radius: 34px;
  border: 7px solid #10201F;
  background: #10201F;
  box-shadow: 0 26px 54px -24px rgba(0, 0, 0, 0.6);
}
.step-shot img {
  width: 100%;
  border-radius: 27px;
  display: block;
}
.step-h {
  margin: 0 0 8px;
  color: var(--cream);
  font-weight: 600;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
}
.step-p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.6;
  max-width: 34ch;
}
.how-note {
  margin: clamp(36px, 5vh, 56px) auto 0;
  text-align: center;
  color: var(--text-mut);
  font-size: 0.8rem;
}

@media (max-width: 760px) {
  .how-grid { grid-template-columns: 1fr; gap: clamp(44px, 8vw, 60px); }
  .step-p { max-width: 42ch; }
}

/* ═══════════════════════════════════════════════
   Árazás szekció (krém sáv — kiemelt döntési pont)
   ═══════════════════════════════════════════════ */
.pricing {
  background: var(--cream);
  color: var(--ink);
  padding: clamp(64px, 9vh, 112px) 0;
}
.eyebrow-dark { color: var(--teal); }
.pricing-head {
  max-width: 44ch;
  margin: 0 auto clamp(40px, 6vh, 60px);
  text-align: center;
}
.pricing-title {
  margin: 14px 0 0;
  color: var(--ink);
  font-weight: 700;
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  line-height: 1.08;
}
.pricing-lead {
  margin: 14px 0 0;
  color: rgba(22, 33, 31, 0.68);
  font-size: clamp(0.98rem, 1.4vw, 1.1rem);
}

.plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 400px));
  gap: 24px;
  justify-content: center;
  align-items: stretch;
}
.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border: 2px solid rgba(22, 33, 31, 0.10);
  border-radius: 26px;
  padding: clamp(28px, 3vw, 40px);
}
.plan-featured {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--cream);
}
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lime);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.plan-name {
  margin: 0;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
}
.plan-featured .plan-name { color: var(--lime); }
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 12px 0 0;
}
.plan-price .amount {
  font-weight: 700;
  font-size: clamp(2.4rem, 4vw, 3rem);
  line-height: 1;
}
.plan-price .per { font-size: 0.95rem; opacity: 0.68; }
.plan-sub {
  margin: 8px 0 0;
  font-size: 0.86rem;
  opacity: 0.72;
}
.plan-feats {
  list-style: none;
  padding: 0;
  margin: 24px 0 28px;
  display: grid;
  gap: 12px;
}
.plan-feats li {
  position: relative;
  padding-left: 26px;
  font-size: 0.94rem;
  line-height: 1.4;
  white-space: nowrap;
}
.plan-feats li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--teal);
  font-weight: 700;
}
.plan-featured .plan-feats li::before { color: var(--lime); }
.btn-plan {
  display: block;
  width: 100%;
  margin-top: auto;
  padding: 15px;
  text-align: center;
  font-size: 1rem;
}
.pricing-note {
  max-width: 62ch;
  margin: clamp(30px, 4vh, 44px) auto 0;
  text-align: center;
  font-size: 0.85rem;
  line-height: 1.65;
  color: rgba(22, 33, 31, 0.6);
}

@media (max-width: 680px) {
  .plans { grid-template-columns: minmax(0, 420px); }
}

/* ═══════════════════════════════════════════════
   GYIK — accordion (visszatérő teal világ)
   ═══════════════════════════════════════════════ */
.faq {
  background: var(--teal);
  padding: clamp(64px, 9vh, 112px) 0;
}
.faq-head {
  max-width: 40ch;
  margin: 0 auto clamp(36px, 5vh, 52px);
  text-align: center;
}
.faq-title {
  margin: 14px 0 0;
  color: var(--cream);
  font-weight: 700;
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  line-height: 1.08;
}
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.faq-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px;
  padding: 0 clamp(18px, 2.4vw, 24px);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  color: var(--cream);
  font-weight: 600;
  font-size: clamp(0.98rem, 1.4vw, 1.08rem);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex: none;
  color: var(--lime);
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
  border-radius: 6px;
}
.faq-item p {
  margin: 0 0 18px;
  color: var(--text-soft);
  font-size: 0.96rem;
  line-height: 1.62;
}

@media (prefers-reduced-motion: reduce) {
  .faq-item summary::after { transition: none; }
}

/* ═══════════════════════════════════════════════
   Footer (sötétebb teal — a brand-világ lezárása)
   ═══════════════════════════════════════════════ */
.footer {
  background: #142B29;
  color: var(--text-soft);
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: clamp(36px, 5vw, 72px);
  padding-block: clamp(48px, 7vh, 82px) clamp(28px, 4vh, 40px);
}
.footer-brand { max-width: 360px; }
.footer .logo-svg { width: 92px; color: var(--lime); }
.footer-tag {
  margin: 16px 0 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-soft);
}
.stores { margin-top: 24px; }
.stores-label {
  display: block;
  margin-bottom: 10px;
  color: var(--lime);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.store-badges { display: flex; flex-wrap: wrap; gap: 12px; }
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 10px 18px;
  border-radius: 13px;
  background: var(--lime);
  color: var(--ink);
  cursor: default;
  /* app-font (DynaPuff) öröklődik a body-ról — brand-kohézió a placeholder badge-eken */
}
.store-badge svg { width: 24px; height: 24px; flex: none; color: var(--ink); }
.store-badge small {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.3;
  color: rgba(22, 33, 31, 0.7);
}
.store-badge strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1.15;
  color: var(--ink);
  font-weight: 600;
}

.footer-nav { display: flex; gap: clamp(40px, 6vw, 88px); }
.footer-col { display: flex; flex-direction: column; gap: 11px; }
.footer-h {
  margin-bottom: 4px;
  color: var(--cream);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer-col a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.94rem;
}
.footer-col a:hover { color: var(--lime); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  padding-block: 20px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  font-size: 0.8rem;
  color: var(--text-mut);
}

@media (max-width: 560px) {
  .footer-nav { gap: 40px; width: 100%; }
}

/* ═══════════════════════════════════════════════
   Animációk (visszafogott, profi) — reduced-motion alatt kikapcsol
   ═══════════════════════════════════════════════ */

/* Nyelvváltás (munch-stílus): gyors kiürülés, majd a belépő animációk futnak újra.
   Csak a szekciók TARTALMA tűnik el — a háttérszínek (krém sáv, teal) végig festve maradnak,
   a fejléc is a helyén. Reduced-motion alatt a JS ki se váltja. */
.hero .container,
.how .container,
.pricing .container,
.faq .container,
.footer .container { transition: opacity 0.18s ease; }
body.lang-out .hero .container,
body.lang-out .how .container,
body.lang-out .pricing .container,
body.lang-out .faq .container,
body.lang-out .footer .container { opacity: 0; }
/* a fejléc linkjei is animálnak: ki felfelé halványulva, vissza kis leúszással
   (a logó és a HU/EN kapcsoló marad — arra kattint a user) */
.nav-links { transition: opacity 0.18s ease, transform 0.22s ease; }
body.lang-out .nav-links { opacity: 0; transform: translateY(-8px); }

/* Hero belépő szekvencia (betöltéskor) */
@keyframes heroRise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes heroPop  { from { opacity: 0; transform: translateY(22px) scale(.97); } to { opacity: 1; transform: none; } }
@keyframes fadeOnly { from { opacity: 0; } to { opacity: 1; } }

.hero-title span { opacity: 0; animation: heroRise .7s cubic-bezier(.2, .65, .3, 1) forwards; }
.hero-title span:nth-child(1) { animation-delay: .08s; }
.hero-title span:nth-child(2) { animation-delay: .20s; }
.hero-title span:nth-child(3) { animation-delay: .32s; }
.hero-sub  { opacity: 0; animation: heroRise .7s ease .48s forwards; }
.hero-ctas { opacity: 0; animation: heroRise .7s ease .60s forwards; }
.hero-vis { opacity: 0; animation: heroPop .85s cubic-bezier(.2, .65, .3, 1) .28s forwards; }
.spotlight { animation: fadeOnly 1.1s ease .3s both; }

/* Scroll-reveal — csak ha a JS aktív (reveal-ready), így JS nélkül semmi nem tűnik el */
.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease, box-shadow .2s ease, border-color .2s ease;
}
.reveal-ready .reveal.in { opacity: 1; transform: none; }
/* nyelvváltás-reset: az elem transition nélkül, azonnal ugrik rejtett állapotba */
.reveal-ready .reveal.reveal-reset { transition: none !important; }

/* Hover finomságok */
.step-shot { transition: transform .22s ease, box-shadow .22s ease; }
.step:hover .step-shot { transform: translateY(-6px); box-shadow: 0 34px 60px -26px rgba(0, 0, 0, .7); }
.plan { transition: box-shadow .2s ease, border-color .2s ease; }
.plan:hover { box-shadow: 0 22px 50px -26px rgba(0, 0, 0, .4); }
.plan-featured:hover { box-shadow: 0 24px 54px -24px rgba(0, 0, 0, .6); }
.faq-item { transition: border-color .2s ease, background .2s ease; }
.faq-item:hover { border-color: rgba(255, 255, 255, .2); }

/* Accordion sima nyílás (modern böngészők; máshol azonnali marad) */
.faq-item::details-content {
  block-size: 0;
  overflow: hidden;
  transition: block-size .28s ease, content-visibility .28s allow-discrete;
}
.faq-item[open]::details-content { block-size: auto; }

@media (prefers-reduced-motion: reduce) {
  .hero-title span, .hero-sub, .hero-ctas, .hero-vis, .spotlight {
    opacity: 1 !important; transform: none !important; animation: none !important;
  }
  .reveal-ready .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .step:hover .step-shot { transform: none; }
  .faq-item::details-content { transition: none; }
}
