/* Stylogy marketing site — shared stylesheet (index, pricing, legal).
   Visual language: Petal edition — white/blush surfaces, serif display,
   generous spacing, soft shadows, spring-ish motion. Bulgarian only. */

/* ---------------------------------------------------------------
   1. Tokens
   --------------------------------------------------------------- */
:root {
  /* Surfaces */
  --white: #FFFFFF;
  --paper: #F8F1F1;
  --blush: #FFF4F8;
  --ivory: #FBF7F1;

  /* Ink */
  --ink: #24142F;
  --muted: #5E5461;

  /* Brand */
  --primary: #A73D6A;
  --primary-deep: #8B2B62;
  --rose: #EA527F;        /* decoration only, never body text */
  --rose-soft: #FCE3EC;   /* decoration only */

  /* Dark surfaces */
  --plum: #2B123B;
  --plum-deep: #190B28;
  --plum-label: #F7A0B8;  /* small labels on plum only */
  --on-plum: rgba(255, 255, 255, .82);

  /* Support */
  --emerald: #0E7C5A;
  --emerald-soft: #E3F3EC;
  --emerald-ink: #0B5F45;
  --line: #EBE1E6;
  --line-strong: #DFD2DA;

  /* Shape */
  --radius-sm: 14px;
  --radius: 20px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --shadow-soft: 0 4px 16px -8px rgba(36, 20, 47, .16);
  --shadow: 0 8px 30px -12px rgba(36, 20, 47, .20);
  --shadow-lift: 0 18px 44px -16px rgba(36, 20, 47, .28);

  /* Type */
  --font-display: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --font-body: 'IBM Plex Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --fs-base: 17px;
  --fs-big: 20px;

  /* Targets */
  --tap: 44px;
  --btn-h: 48px;

  /* Motion */
  --ease: cubic-bezier(.34, 1.56, .64, 1);
  --ease-out: cubic-bezier(.2, .7, .2, 1);
  --dur: 300ms;
}

/* ---------------------------------------------------------------
   2. Reset and base
   --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  font-size: var(--fs-base);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
html.big { font-size: var(--fs-big); }

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

.skip {
  position: absolute; left: 12px; top: -80px; z-index: 200;
  display: inline-flex; align-items: center;
  min-height: var(--tap); padding: 0 20px;
  border-radius: var(--radius-pill);
  background: var(--primary); color: #fff; font-weight: 600;
  transition: top var(--dur) var(--ease-out);
}
.skip:focus { top: 12px; }

.wrap { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

/* ---------------------------------------------------------------
   3. Typography
   --------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.22rem; }
h4 { font-size: 1.05rem; }

.lead { font-size: 1.14rem; color: var(--muted); max-width: 36em; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .92rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--primary-deep);
}
.eyebrow::before {
  content: ""; flex: none;
  width: 22px; height: 2px; border-radius: 2px;
  background: var(--rose);
}
.sec-head.center .eyebrow::after {
  content: ""; flex: none;
  width: 22px; height: 2px; border-radius: 2px;
  background: var(--rose);
}

.sec-head { display: flex; flex-direction: column; gap: 14px; margin-bottom: clamp(28px, 4vw, 48px); }
.sec-head.center { align-items: center; text-align: center; }
.sec-head.center .lead { margin-inline: auto; }

/* ---------------------------------------------------------------
   4. Sections and surfaces
   --------------------------------------------------------------- */
section { padding: clamp(52px, 7vw, 92px) 0; position: relative; }
.s-blush { background: var(--blush); }
.s-ivory { background: var(--ivory); }
.s-paper { background: var(--paper); }

/* ---------------------------------------------------------------
   5. Buttons and chips
   --------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: var(--btn-h); padding: 0 26px;
  border: 2px solid transparent; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 1rem; text-align: center;
  transition: transform var(--dur) var(--ease),
              background var(--dur) var(--ease-out),
              border-color var(--dur) var(--ease-out),
              color var(--dur) var(--ease-out),
              box-shadow var(--dur) var(--ease-out);
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--primary); color: #fff;
  box-shadow: 0 10px 24px -14px rgba(139, 43, 98, .85);
}
.btn-primary:hover { background: var(--primary-deep); box-shadow: var(--shadow-lift); }

.btn-ghost { background: #fff; color: var(--primary-deep); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--primary); background: var(--blush); }

.btn-quiet { background: var(--rose-soft); color: var(--primary-deep); }
.btn-quiet:hover { background: #F9D4E1; }

.btn-light { background: rgba(255, 255, 255, .14); color: #fff; border-color: rgba(255, 255, 255, .6); }
.btn-light:hover { background: rgba(255, 255, 255, .26); border-color: #fff; }

.btn-solid-light { background: #fff; color: var(--primary-deep); }
.btn-solid-light:hover { background: var(--blush); }

.btn-lg { min-height: 56px; padding: 0 34px; font-size: 1.05rem; }

.chip {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 40px; padding: 0 18px;
  border: 1px solid var(--line); border-radius: var(--radius-pill);
  background: #fff; color: var(--ink);
  font-size: .96rem; font-weight: 500;
  box-shadow: var(--shadow-soft);
}

.pill {
  display: inline-flex; align-items: center; gap: 9px;
  min-height: 38px; padding: 0 18px;
  border-radius: var(--radius-pill);
  background: var(--rose-soft); color: var(--primary-deep);
  font-size: .95rem; font-weight: 600;
}

.ic { flex: none; color: var(--emerald); }
.ic-rose { color: var(--primary); }

/* ---------------------------------------------------------------
   6. Header
   --------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.bar { display: flex; align-items: center; gap: 16px; min-height: 76px; }

.logo { display: inline-flex; align-items: center; gap: 12px; min-height: var(--tap); }
.logo .mark { height: 38px; width: auto; }
.logo .word { height: 23.5px; width: auto; }

.mainnav { margin-left: auto; }
.mainnav ul { display: flex; gap: 4px; }
.mainnav a {
  display: inline-flex; align-items: center;
  min-height: var(--tap); padding: 0 16px;
  border-radius: var(--radius-pill);
  color: var(--ink); font-weight: 500;
  transition: background var(--dur) var(--ease-out), color var(--dur) var(--ease-out);
}
.mainnav a:hover { background: var(--blush); color: var(--primary-deep); }
.mainnav a[aria-current="page"] { color: var(--primary-deep); background: var(--blush); }

.hdr-tools { display: flex; align-items: center; gap: 8px; }

.iconbtn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  min-width: var(--tap); min-height: var(--tap); padding: 0 14px;
  border: 2px solid var(--line-strong); border-radius: var(--radius-pill);
  background: #fff; color: var(--ink); font-weight: 600; font-size: .98rem;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease-out),
              background var(--dur) var(--ease-out), color var(--dur) var(--ease-out);
}
.iconbtn:hover { border-color: var(--primary); color: var(--primary-deep); transform: translateY(-2px); }
.iconbtn[aria-pressed="true"] { background: var(--primary); border-color: var(--primary); color: #fff; }

#aa { font-family: var(--font-display); font-size: 1.1rem; }

.burger { display: none; }
.burger svg { pointer-events: none; }

@media (max-width: 900px) {
  .burger { display: inline-flex; }
  .hdr-tools .btn { display: none; }
  .mainnav {
    position: absolute; left: 0; right: 0; top: 100%;
    background: #fff; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); padding: 10px 20px 18px;
    display: none;
  }
  .mainnav.open { display: block; }
  .mainnav ul { flex-direction: column; gap: 2px; }
  .mainnav a { min-height: 52px; padding: 0 14px; font-size: 1.05rem; }
  .mainnav .nav-cta { margin-top: 10px; }
  .mainnav .nav-cta .btn { width: 100%; }
}
@media (min-width: 901px) {
  .mainnav .nav-cta { display: none; }
}

/* ---------------------------------------------------------------
   7. Hero
   --------------------------------------------------------------- */
.hero {
  padding-top: clamp(34px, 4vw, 60px);
  padding-bottom: clamp(40px, 5vw, 76px);
  background: linear-gradient(180deg, #fff 0%, var(--blush) 68%, var(--blush) 100%);
  overflow: hidden;
}
.hero-in { display: grid; gap: 24px; justify-items: center; text-align: center; }
.hero h1 { max-width: 16em; }
.hero h1 .hl { color: var(--primary-deep); }
.hero .lead { margin-inline: auto; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.hero-note {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 20px; border-radius: var(--radius-pill);
  background: var(--emerald-soft); color: var(--emerald-ink);
  font-weight: 600; font-size: .98rem;
}
.hero-note .ic { color: var(--emerald-ink); }

/* Category chips strip */
.cats { padding-top: clamp(34px, 4vw, 52px); padding-bottom: clamp(34px, 4vw, 52px); }
.cats-head { text-align: center; margin-bottom: 22px; }
.cats-head h2 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); }
.cats-head p { color: var(--muted); margin-top: 8px; }
.cat-list { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }

/* ---------------------------------------------------------------
   8. Steps
   --------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow-soft);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease-out);
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.step .no {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; margin-bottom: 16px;
  border-radius: var(--radius-pill);
  background: var(--rose-soft); color: var(--primary-deep);
  box-shadow: inset 0 0 0 1px #F6CFDE;
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 600;
}
.step p { color: var(--muted); margin-top: 8px; }

/* ---------------------------------------------------------------
   9. For salons (pitch + free plan card)
   --------------------------------------------------------------- */
.pitch { display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: center; }
.pitch .lead { margin-bottom: 26px; }
.pitch-list { display: grid; gap: 18px; }
.pitch-list li { display: flex; gap: 14px; align-items: flex-start; }
.pitch-list .ic { margin-top: 4px; }
.pitch-list b { display: block; font-size: 1.04rem; }
.pitch-list span { color: var(--muted); }

.free-card {
  background: linear-gradient(160deg, var(--plum) 0%, var(--plum-deep) 100%);
  color: #fff; border-radius: var(--radius-lg);
  padding: 38px 34px; box-shadow: var(--shadow-lift);
}
.free-card .kicker {
  font-size: .88rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--plum-label);
}
.free-card .amount {
  font-family: var(--font-display); font-weight: 600;
  font-size: 2.9rem; line-height: 1; margin: 12px 0 6px;
}
.free-card .amount small { font-size: 1.05rem; font-weight: 500; color: var(--on-plum); }
.free-card .sub { color: var(--on-plum); margin-bottom: 24px; }
.free-card ul { display: grid; gap: 12px; margin-bottom: 28px; }
.free-card li { display: flex; gap: 10px; align-items: flex-start; }
.free-card li .ic { color: var(--plum-label); margin-top: 4px; }
.free-card .btn { width: 100%; }

/* ---------------------------------------------------------------
   10. Plans
   --------------------------------------------------------------- */
.plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: stretch; }
.plan {
  display: flex; flex-direction: column; gap: 12px;
  background: #fff; border: 2px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease-out);
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.plan.hot { border-color: var(--primary); box-shadow: var(--shadow); }
.plan .pname { font-weight: 600; letter-spacing: .1em; font-size: .9rem; color: var(--muted); }
.plan .hot-flag {
  align-self: flex-start; padding: 5px 13px; border-radius: var(--radius-pill);
  background: var(--primary); color: #fff; font-size: .82rem; font-weight: 600;
}
.plan .amount { font-family: var(--font-display); font-weight: 600; font-size: 2.5rem; line-height: 1; }
.plan .amount small { font-size: 1rem; font-weight: 500; color: var(--muted); }
.plan .annual { font-size: .92rem; font-weight: 600; color: var(--emerald-ink); min-height: 1.4em; }
.plan ul { display: grid; gap: 10px; margin: 4px 0 12px; }
.plan li { display: flex; gap: 10px; align-items: flex-start; font-size: .99rem; }
.plan li .ic { margin-top: 4px; }
.plan li.off { color: var(--muted); }
.plan li.off .ic { color: var(--muted); }
.plan .btn { margin-top: auto; width: 100%; }

/* ---------------------------------------------------------------
   11. Feature tiles
   --------------------------------------------------------------- */
.feats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feat {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; box-shadow: var(--shadow-soft);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease-out);
}
.feat:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.feat .bubble {
  display: grid; place-items: center;
  width: 58px; height: 58px; margin-bottom: 18px;
  border-radius: var(--radius-pill);
  background: var(--blush); color: var(--primary-deep);
}
.feat p { color: var(--muted); margin-top: 8px; }
.feat h3 { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.feat-tag {
  display: inline-flex; align-items: center;
  padding: 2px 10px; border-radius: var(--radius-pill);
  background: var(--rose-soft); color: var(--primary-deep);
  font-size: .68rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase;
}

/* ---------------------------------------------------------------
   12. CTA band
   --------------------------------------------------------------- */
.cta-band {
  background: linear-gradient(135deg, var(--plum) 0%, var(--plum-deep) 100%);
  color: #fff; text-align: center;
  border-radius: var(--radius-lg);
  padding: clamp(42px, 6vw, 64px) clamp(22px, 4vw, 48px);
  box-shadow: var(--shadow-lift);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: var(--on-plum); font-size: 1.1rem; max-width: 34em; margin: 14px auto 28px; }
.cta-band .hero-cta { justify-content: center; }

/* ---------------------------------------------------------------
   13. Footer
   --------------------------------------------------------------- */
.site-footer {
  background: var(--plum); color: var(--on-plum);
  padding: clamp(46px, 6vw, 76px) 0 44px;
}
.flogo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.flogo .fmark { height: 44px; width: auto; }
.site-footer .word-white { height: 27px; width: auto; }
.fcols { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 34px; }
.fbrand p { color: var(--on-plum); margin-top: 16px; max-width: 30em; }
.fcol h4 { color: #fff; margin-bottom: 12px; }
.fcol a {
  display: flex; align-items: center; min-height: var(--tap);
  color: var(--on-plum);
  transition: color var(--dur) var(--ease-out);
}
.fcol a:hover { color: #fff; text-decoration: underline; }
.fbot {
  margin-top: 34px; padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between;
  color: var(--on-plum); font-size: .95rem;
}
.fbot a { color: #fff; text-decoration: underline; }
.fbot .legal-line { flex: 1 1 100%; }

/* ---------------------------------------------------------------
   14. Pricing page
   --------------------------------------------------------------- */
.page-head { padding: clamp(40px, 5vw, 68px) 0 clamp(28px, 3vw, 40px); background: linear-gradient(180deg, #fff, var(--blush)); }
.page-head .inner { display: grid; gap: 16px; justify-items: center; text-align: center; }
.page-head p { color: var(--muted); font-size: 1.1rem; max-width: 34em; }
.page-head p b { color: var(--ink); }

.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius); }
table.compare {
  width: 100%; min-width: 640px; border-collapse: collapse;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; font-size: .96rem;
}
table.compare th, table.compare td {
  padding: 13px 14px; text-align: center; border-bottom: 1px solid var(--line);
}
table.compare thead th { background: var(--blush); color: var(--primary-deep); font-size: .92rem; }
table.compare th:first-child, table.compare td:first-child { text-align: left; font-weight: 600; }
table.compare tbody tr:last-child td { border-bottom: none; }
table.compare .yes { color: var(--emerald); font-weight: 700; }
table.compare .no { color: var(--muted); }
table.compare .span-note { color: var(--muted); font-weight: 400; text-align: center; }

.addons { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.addon {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 24px; box-shadow: var(--shadow-soft);
}
.addon b { color: var(--primary-deep); }
.addon .price { font-weight: 600; }
.addon p { color: var(--muted); margin-top: 8px; }
.addon code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  background: var(--paper); padding: 2px 7px; border-radius: 6px; font-size: .92em;
}

/* ---------------------------------------------------------------
   15. Legal page
   --------------------------------------------------------------- */
.legal-layout { display: grid; grid-template-columns: 280px 1fr; gap: 40px; align-items: start; }
.legal-nav {
  position: sticky; top: 100px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 14px; box-shadow: var(--shadow-soft);
}
.legal-nav h2 { font-size: 1.05rem; padding: 6px 12px 10px; }
.legal-nav a {
  display: flex; align-items: center; min-height: var(--tap);
  padding: 0 14px; border-radius: var(--radius-sm);
  color: var(--ink); font-weight: 500;
  transition: background var(--dur) var(--ease-out), color var(--dur) var(--ease-out);
}
.legal-nav a:hover { background: var(--blush); color: var(--primary-deep); }
.legal-nav a[aria-current="page"] { background: var(--primary); color: #fff; }

.legal-doc {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(24px, 3.5vw, 44px); box-shadow: var(--shadow-soft);
  min-height: 340px;
}
.legal-doc h1 { font-size: clamp(1.7rem, 3.2vw, 2.3rem); }
.legal-doc .meta {
  margin-top: 12px; display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; border-radius: var(--radius-pill);
  background: var(--blush); color: var(--primary-deep);
  font-size: .93rem; font-weight: 600;
}
.legal-body { margin-top: 28px; max-width: 44em; }
.legal-body p { margin-bottom: 1.15em; color: var(--ink); }
.legal-body p.heading {
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.2rem; line-height: 1.3;
  margin-top: 1.8em; margin-bottom: .6em;
}
.legal-body p.heading:first-child { margin-top: 0; }

.legal-state { color: var(--muted); }
.legal-error {
  border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
  background: var(--paper); padding: 22px 24px;
}
.legal-error h2 { font-size: 1.2rem; margin-bottom: 10px; }
.legal-error p { color: var(--muted); margin-bottom: 14px; }
.legal-error a { color: var(--primary-deep); font-weight: 600; text-decoration: underline; }

/* ---------------------------------------------------------------
   16. Reveal on scroll (only once site.js has run)
   --------------------------------------------------------------- */
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease-out), transform .8s var(--ease-out);
  transition-delay: var(--d, 0s);
}
html.js [data-reveal].in { opacity: 1; transform: none; }
.stagger > * { --d: calc(var(--i, 0) * 70ms); }

/* ---------------------------------------------------------------
   17. Responsive
   --------------------------------------------------------------- */
@media (max-width: 1050px) {
  .plans { grid-template-columns: repeat(2, 1fr); }
  .fcols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .pitch { grid-template-columns: 1fr; gap: 34px; }
  .feats { grid-template-columns: 1fr 1fr; }
  .legal-layout { grid-template-columns: 1fr; gap: 24px; }
  .legal-nav { position: static; }
  .legal-nav ul { display: flex; flex-wrap: wrap; gap: 6px; }
}
@media (max-width: 860px) {
  .steps { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .plans { grid-template-columns: 1fr; }
  .feats { grid-template-columns: 1fr; }
  .addons { grid-template-columns: 1fr; }
  .fcols { grid-template-columns: 1fr; }
  .wrap { width: calc(100% - 32px); }
  .hero-cta .btn, .cta-band .btn { width: 100%; }
  .free-card { padding: 30px 24px; }
}

/* ---------------------------------------------------------------
   18. Reduced motion
   --------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  html.js [data-reveal] { opacity: 1; transform: none; }
  .btn:hover, .step:hover, .feat:hover, .plan:hover, .iconbtn:hover { transform: none; }
}
