:root {
  --accent: #8626ff;
  --accent-border: #ad6bff;
  --bg: #000000;
  --panel: #141415;
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.16);
  --hairline: rgba(255, 255, 255, 0.08);
  --text: #ffffff;
  --text-dim: rgba(255, 255, 255, 0.5);
  --text-faint: rgba(255, 255, 255, 0.4);
  --radius-card: 20px;
  --radius-btn: 14px;
  --speed: 1;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { background: var(--bg); }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

@media (min-width: 2200px) { body { zoom: 1.45; } }
@media (min-width: 3400px) { body { zoom: 2.1; } }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.page { position: relative; min-height: 100vh; overflow: clip; }

.container {
  width: 100%;
  max-width: 1108px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 24px);
}

.bg-lines {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  width: min(1190px, 92%);
  margin-inline: auto;
  pointer-events: none;
  z-index: 0;
}
.bg-lines span {
  width: 1px;
  background: rgba(255, 255, 255, 0.055);
}
.bg-lines span:nth-child(even) { background: rgba(255, 255, 255, 0.035); }

.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: clamp(380px, 36vw, 514px);
  background: url("hero-bg.png") 50% 18% / cover no-repeat;
  opacity: 0.46;
  pointer-events: none;
  z-index: 0;
  animation: heroBgIn calc(1.4s * var(--speed)) ease-out backwards;
}
.hero-bg::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 41px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
}

@keyframes heroBgIn { from { opacity: 0; } to { opacity: 0.46; } }

.icon { display: block; flex: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 42px;
  padding: 0 20px;
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  color: var(--text);
  background: none;
  transition: filter 0.22s ease, background-color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  white-space: nowrap;
}

.btn-purple {
  background: var(--accent);
  border-color: var(--accent-border);
}
.btn-purple:hover {
  filter: brightness(1.12);
  box-shadow: 0 0 24px color-mix(in srgb, var(--accent) 35%, transparent);
}
.btn-purple:active { filter: brightness(0.94); }

.btn-white {
  background: #ffffff;
  color: #000000;
}
.btn-white:hover { background: #e9e2f5; }
.btn-white:active { background: #ddd2ef; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 14px;
  border-radius: 12px;
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 700;
  background: transparent;
  border: none;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.btn-ghost:hover { color: var(--text); background: rgba(255, 255, 255, 0.06); }

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: 12px;
  border: 1px solid transparent;
  background: #1e1e1f;
  color: var(--text);
  transition: background-color 0.22s ease, filter 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.btn-icon:hover { background: #2b2b2d; }

.btn-icon.purple {
  background: var(--accent);
  border-color: rgba(255, 255, 255, 0.1);
}
.btn-icon.purple:hover {
  filter: brightness(1.12);
  box-shadow: 0 0 20px color-mix(in srgb, var(--accent) 35%, transparent);
}

.header-wrap {
  position: sticky;
  top: 14px;
  z-index: 40;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  height: 60px;
  padding: 10px 12px 10px 20px;
  border-radius: 20px;
  background: rgba(20, 20, 21, 0.5);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  animation: fadeDown calc(0.7s * var(--speed)) ease-out 0.1s backwards;
}

.header-logo { display: inline-flex; align-items: center; color: var(--text); }
.header-logo .icon { transition: color 0.2s ease; }
.header-logo:hover .icon { color: var(--accent-border); }

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: none;
  background: transparent;
  border-radius: 10px;
  color: #676767;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.lang-btn:hover { color: var(--text); background: rgba(255, 255, 255, 0.06); }

.burger-btn { display: none; }

.lang-wrap { position: relative; display: inline-flex; }

.lang-tip {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  translate: -50% 4px;
  padding: 6px 10px;
  border-radius: 8px;
  background: #1e1e1f;
  color: var(--text);
  font-size: 12.5px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 8px 24px rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, translate 0.2s ease;
  z-index: 60;
}
.lang-wrap:hover .lang-tip { opacity: 1; translate: -50% 0; transition-delay: 0.15s; }
.lang-wrap.dd-open .lang-tip { opacity: 0 !important; }

.lang-dd {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 176px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 6px;
  border-radius: 14px;
  background: rgba(20, 20, 21, 0.97);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 20px 50px rgba(0, 0, 0, 0.6);
  opacity: 0;
  translate: 0 -6px;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, translate 0.22s ease, visibility 0s linear 0.22s;
  z-index: 60;
}
.lang-wrap.dd-open .lang-dd {
  opacity: 1;
  translate: 0 0;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.lang-opt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  transition: color 0.15s ease, background-color 0.15s ease;
}
.lang-opt:hover { color: var(--text); background: rgba(255, 255, 255, 0.06); }
.lang-opt .check { opacity: 0; color: var(--accent-border); font-weight: 700; transition: opacity 0.15s ease; }
.lang-opt.active { color: var(--text); }
.lang-opt.active .check { opacity: 1; }

.mobile-lang {
  display: flex;
  gap: 2px;
  margin-top: 4px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.mobile-lang .lang-opt { flex: 1; justify-content: center; }

.mobile-menu {
  position: absolute;
  left: clamp(16px, 4vw, 24px);
  right: clamp(16px, 4vw, 24px);
  top: calc(100% + 8px);
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(20, 20, 21, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 24px 60px rgba(0, 0, 0, 0.6);
  opacity: 0;
  translate: 0 -8px;
  transition: opacity 0.25s ease, translate 0.25s ease;
}
.mobile-menu a {
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dim);
  transition: color 0.2s ease, background-color 0.2s ease;
}
.mobile-menu a:hover { color: var(--text); background: rgba(255, 255, 255, 0.06); }
.menu-open .mobile-menu { display: flex; }
.menu-open .mobile-menu.shown { opacity: 1; translate: 0 0; }

.hero {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: calc(clamp(380px, 36vw, 514px) - 26px);
  padding-top: clamp(40px, 6vw, 72px);
  padding-bottom: clamp(64px, 8vw, 96px);
}

.hero-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 14px;
  animation: fadeUp calc(0.7s * var(--speed)) ease-out 0.15s backwards;
}

.hero-title {
  margin: 0;
  font-size: clamp(32px, 5vw, 46px);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.05;
}

.hero-wtv {
  color: var(--text);
  display: flex;
  align-items: flex-end;
  gap: 3px;
  padding-bottom: 2px;
}

.hero-sub {
  margin: 14px 0 0;
  max-width: 560px;
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.35;
  color: var(--text-dim);
  text-wrap: pretty;
  animation: fadeUp calc(0.7s * var(--speed)) ease-out 0.28s backwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  animation: fadeUp calc(0.7s * var(--speed)) ease-out 0.4s backwards;
}
.hero-actions .btn { min-width: 142px; }

@keyframes fadeUp {
  from { opacity: 0; translate: 0 18px; }
  to { opacity: 1; translate: 0 0; }
}
@keyframes fadeDown {
  from { opacity: 0; translate: 0 -12px; }
  to { opacity: 1; translate: 0 0; }
}

main { position: relative; z-index: 1; }

.section { padding-bottom: clamp(80px, 10vw, 130px); }

.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  margin-bottom: clamp(28px, 4vw, 40px);
}
.section-head h2 {
  margin: 0;
  font-size: clamp(26px, 3.2vw, 31px);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.12;
}
.section-head p {
  margin: 0;
  max-width: 640px;
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.35;
  color: var(--text-dim);
  text-wrap: pretty;
}

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

.card-product {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-card);
  min-height: 236px;
  padding: 20px;
  background:
    linear-gradient(-45deg, rgba(0, 0, 0, 0) 66%, color-mix(in srgb, var(--accent) 30%, transparent) 100%),
    linear-gradient(135deg, rgba(0, 0, 0, 0) 33%, color-mix(in srgb, var(--accent) 60%, transparent) 100%),
    linear-gradient(90deg, rgb(0, 0, 0) 25%, rgba(0, 0, 0, 0.44) 86%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease;
}
.card-product::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(-45deg, rgba(0, 0, 0, 0) 60%, color-mix(in srgb, var(--accent) 22%, transparent) 100%),
    linear-gradient(135deg, rgba(0, 0, 0, 0) 40%, color-mix(in srgb, var(--accent) 34%, transparent) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.card-product:hover { box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18); }
.card-product:hover::after { opacity: 1; }

.card-product h3 {
  margin: 0;
  font-size: clamp(22px, 2.6vw, 27px);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.12;
  position: relative;
  z-index: 1;
}
.card-product .desc {
  margin: 10px 0 0;
  max-width: 280px;
  font-size: 14px;
  line-height: 1.25;
  color: var(--text);
  opacity: 0.4;
  position: relative;
  z-index: 1;
}
.card-product .btn {
  position: relative;
  z-index: 1;
  margin-top: auto;
  align-self: flex-start;
}

.card-product .img {
  position: absolute;
  right: 14px;
  top: 50%;
  margin-top: -85px;
  width: 170px;
  height: 170px;
  object-fit: contain;
  pointer-events: none;
  animation: imgFloat calc(7s * var(--speed)) ease-in-out infinite alternate;
}
.card-product:nth-child(even) .img { animation-delay: -3.5s; }

@keyframes imgFloat {
  from { translate: 0 -5px; }
  to { translate: 0 5px; }
}

.grid-requests {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.card-request {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-card);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  background:
    linear-gradient(var(--glass), var(--glass)),
    linear-gradient(90deg, rgb(0, 0, 0) 25%, rgba(0, 0, 0, 0.44) 86%);
  border: 1px solid var(--glass-border);
  box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  transition: border-color 0.25s ease, background-color 0.25s ease;
  color: inherit;
}
.card-request:hover { border-color: rgba(255, 255, 255, 0.32); }

.card-request .body { flex: 1; min-width: 0; }

.card-request .title-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.card-request .title-row .icon { color: var(--text); }
.card-request h3 {
  margin: 0;
  font-size: clamp(19px, 2.2vw, 22px);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.card-request .desc {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.25;
  color: var(--text);
  opacity: 0.4;
  max-width: 400px;
}
.card-request .btn-icon .icon { rotate: -90deg; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 820px;
  margin-inline: auto;
}

.faq-item {
  border-radius: 18px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  overflow: hidden;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}
.faq-item:hover { border-color: rgba(255, 255, 255, 0.28); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 17px 20px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.3px;
  text-align: left;
  line-height: 1.3;
}
.faq-q .icon {
  color: var(--text);
  transition: rotate 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.faq-item.open .faq-q .icon { rotate: 180deg; }

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows calc(0.4s * var(--speed)) cubic-bezier(0.22, 0.61, 0.36, 1);
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a-content {
  padding: 0 20px 18px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--text-dim);
}

.email-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 4px;
}
.email-row {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 12px 14px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.04);
  transition: background-color 0.2s ease;
}
.email-row:hover { background: rgba(255, 255, 255, 0.08); }
.email-row .label { font-size: 13px; color: var(--text-faint); }
.email-row .mail { font-size: 15px; font-weight: 500; color: var(--text); }

.site-footer {
  position: relative;
  z-index: 1;
  background: rgba(20, 20, 21, 0.3);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.055);
}

.footer-main {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding-top: 28px;
}

.footer-logo { color: var(--text); flex: 1; }

.footer-cols {
  display: flex;
  gap: 24px;
  flex: 2;
}
.footer-col { flex: 1; display: flex; flex-direction: column; gap: 12px; }
.footer-col .col-label {
  font-size: 14px;
  line-height: 18px;
  color: var(--text-dim);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-links a {
  font-size: 15px;
  line-height: 19px;
  color: var(--text);
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--accent-border); }

.footer-email {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  transition: color 0.2s ease;
  overflow-wrap: anywhere;
}
.footer-email:hover { color: var(--accent-border); }

.footer-socials {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
.footer-socials .btn-icon { background: #19191a; }
.footer-socials .btn-icon:hover { background: #2b2b2d; }

.footer-sep {
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.055);
  margin-top: 26px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 20px;
  font-size: 13.5px;
  color: var(--text-dim);
}
.footer-bottom-links { display: flex; gap: 36px; }
.footer-bottom a { transition: color 0.2s ease; }
.footer-bottom a:hover { color: var(--text); }

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  visibility: hidden;
  pointer-events: none; transition: visibility 0s linear 0.4s; }
.modal.shown { visibility: visible; pointer-events: auto; transition-delay: 0s; }

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.modal.shown .modal-backdrop { opacity: 1; }

.modal-panel {
  position: relative;
  width: min(390px, 100%);
  border-radius: 20px;
  background: #111112;
  box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.03), 0 30px 80px rgba(0, 0, 0, 0.7);
  padding: 22px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  transform: scale(0.94) translateY(10px);
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.modal.shown .modal-panel { opacity: 1; transform: scale(1) translateY(0); }

.modal-logo { display: flex; justify-content: center; color: var(--text); }

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: var(--text-dim);
  font-size: 18px;
  line-height: 1;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.modal-close:hover { color: var(--text); background: rgba(255, 255, 255, 0.07); }

.contacts-block { display: flex; flex-direction: column; gap: 12px; }
.contacts-block .contacts-title {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.contact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  transition: background-color 0.2s ease;
}
.contact-row:hover { background: rgba(255, 255, 255, 0.09); }
.contact-row .col { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.contact-row .label {
  font-size: 13px;
  line-height: 1.2;
  color: var(--text-faint);
}
.contact-row .mail {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.1;
  color: var(--text);
  overflow-wrap: anywhere;
}
.contact-row .icon { rotate: -90deg; color: #676767; }

@media (max-width: 920px) {
  .header-nav, .header-actions .lang-wrap { display: none; }
  .burger-btn { display: inline-flex; }

  .grid-products, .grid-requests { grid-template-columns: 1fr; }
}

@media (min-width: 921px) {
  .menu-open .mobile-menu { display: none; }
}

@media (max-width: 640px) {
  .site-header { height: 56px; padding-left: 16px; }

  .hero { padding-top: 44px; }
  .hero-actions { width: 100%; max-width: 320px; }
  .hero-actions .btn { flex: 1; min-width: 0; }
  .btn { height: 44px; }

  .card-product {
    min-height: 0;
    padding: 20px 18px;
  }
  .card-product .img {
    position: static;
    order: -1;
    align-self: center;
    margin: 4px 0 22px;
    width: 182px;
    height: 182px;
  }
  .card-product h3 { font-size: 28px; }
  .card-product .desc { max-width: none; font-size: 14px; }
  .card-product .btn { align-self: stretch; margin-top: 22px; }

  .card-request { display: block; position: relative; }
  .card-request .btn-icon { position: absolute; top: 18px; right: 18px; }
  .card-request .title-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-right: 56px;
  }
  .card-request .desc { margin-top: 10px; }

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

  .footer-main { flex-direction: column; gap: 28px; }
  .footer-cols { flex-direction: column; gap: 28px; width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-bottom-links { flex-direction: column; gap: 12px; }
}

@media (max-width: 380px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg { animation-duration: 0.01s; }
  .hero-title-row, .hero-sub, .hero-actions, .site-header { animation-duration: 0.01s; animation-delay: 0s; }
  .card-product .img { animation: none; }
}

.anim-done .hero-bg,
.anim-done .site-header,
.anim-done .hero-title-row,
.anim-done .hero-sub,
.anim-done .hero-actions { animation: none; }

.no-anim .hero-bg,
.no-anim .hero-title-row, .no-anim .hero-sub, .no-anim .hero-actions, .no-anim .site-header { animation-duration: 0.01s !important; animation-delay: 0s !important; }
.no-anim .card-product .img { animation: none !important; }
