:root {
  --accent: #93569E;
  --accent-bright: #b873c4;
  --bg: #0d0d12;
  --bg-soft: #14141d;
  --text: #f7f4fa;
  --muted: #b9afc1;
  --line: rgba(255, 255, 255, 0.12);
  --glass: rgba(255, 255, 255, 0.075);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 16% 10%, rgba(147, 86, 158, 0.28), transparent 34rem),
    radial-gradient(circle at 88% 40%, rgba(184, 115, 196, 0.13), transparent 28rem),
    var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -5;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent 70%);
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.section {
  position: relative;
  padding: 110px 0;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: var(--scroll-progress, 0%);
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #fff, var(--accent-bright));
  box-shadow: 0 0 22px rgba(184, 115, 196, 0.65);
  pointer-events: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled,
.site-header.menu-open {
  background: rgba(10, 10, 15, 0.82);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  height: 82px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand img,
.footer-logo img {
  width: auto;
  height: 58px;
  object-fit: contain;
}

.brand img {
  height: 64px;
}

.footer-logo img {
  height: 74px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 600;
}

.header-contacts {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
  font-weight: 700;
}

.header-contacts a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.header-contacts i {
  color: var(--accent-bright);
  font-size: 0.78rem;
}

.header-contacts a:hover {
  color: #fff;
}

.main-nav a {
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: #fff;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.header-cta {
  background: rgba(147, 86, 158, 0.2);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.14);
}

.btn:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-bright));
  color: #fff;
  box-shadow: 0 16px 35px rgba(147, 86, 158, 0.35);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
}

.btn-whatsapp {
  background: rgba(37, 211, 102, 0.14);
  color: #dfffe9;
  border-color: rgba(37, 211, 102, 0.32);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.nav-toggle span {
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 4px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

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

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

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 150px 0 90px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -10vw;
  bottom: -18vw;
  width: min(54vw, 720px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.09);
  transform: translateY(calc(var(--scroll-y, 0px) * 0.08)) rotate(12deg);
  background: radial-gradient(circle, rgba(147, 86, 158, 0.28), transparent 65%);
  pointer-events: none;
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  z-index: -3;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(110deg, rgba(13, 13, 18, 0.92) 0%, rgba(13, 13, 18, 0.72) 42%, rgba(147, 86, 158, 0.48) 100%),
    linear-gradient(180deg, rgba(13, 13, 18, 0.2), var(--bg));
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.42fr);
  gap: 120px;
  align-items: end;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ead9ef;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent-bright);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 700px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 6.4vw, 5.55rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.15rem, 4vw, 4rem);
  line-height: 1.03;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.12rem;
  line-height: 1.25;
  letter-spacing: -0.018em;
}

p {
  color: var(--muted);
}

.hero-copy p {
  max-width: 690px;
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-panel,
.text-card,
.service-card,
.seo-panel,
.contact-card {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-panel {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 16px;
  animation: floatPanel 6s ease-in-out infinite;
  max-width: 380px;
  justify-self: end;
}

.visual-section {
  overflow: hidden;
  isolation: isolate;
}

.section-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-position: center;
  background-size: cover;
  opacity: 0.22;
  transform: translate3d(0, calc(var(--parallax, 0px) * -0.08), 0) scale(1.08);
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.visual-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(13, 13, 18, 0.96), rgba(13, 13, 18, 0.76), rgba(147, 86, 158, 0.22)),
    radial-gradient(circle at 78% 22%, rgba(184, 115, 196, 0.2), transparent 30rem);
  pointer-events: none;
}

.agency .section-bg {
  background-image: url("../../media/SitoDesign 1.jpeg");
  background-position: right center;
}

.services .section-bg {
  background-image: url("../../media/SitoDesign 2.jpg");
}

.social .section-bg {
  background-image: url("../../media/SitoDesign 4.jpg");
  opacity: 0.26;
}

.seo .section-bg {
  background-image: url("../../media/SitoDesign 5.jpeg");
}

.contact .section-bg {
  background-image: url("../../media/SitoDesign 3.jpg");
  background-position: left center;
  opacity: 0.18;
}

.metric {
  padding: 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.metric strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 1.35rem;
}

.metric span {
  color: var(--muted);
  font-size: 0.95rem;
}

.promo-focus {
  padding: 74px 0;
  background:
    linear-gradient(90deg, rgba(13, 13, 18, 0.98), rgba(13, 13, 18, 0.7)),
    url("../../media/SitoDesign 4.jpg") center / cover fixed;
}

.promo-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 44px;
  align-items: center;
  padding: 38px;
  border: 1px solid rgba(184, 115, 196, 0.42);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(147, 86, 158, 0.26), rgba(255, 255, 255, 0.065)),
    rgba(13, 13, 18, 0.72);
  box-shadow: 0 26px 80px rgba(147, 86, 158, 0.22);
  backdrop-filter: blur(18px);
}

.promo-copy h2 {
  max-width: 800px;
  margin-bottom: 18px;
}

.promo-copy p {
  max-width: 760px;
  margin-bottom: 0;
  font-size: 1.12rem;
}

.promo-price {
  display: grid;
  gap: 14px;
  justify-items: start;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.promo-price span {
  color: #ead9ef;
  font-weight: 800;
  text-transform: uppercase;
}

.promo-price strong {
  display: block;
  color: #fff;
  font-size: clamp(3rem, 7vw, 5.2rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.two-column,
.contact-layout,
.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 54px;
  align-items: center;
}

.text-card {
  padding: 38px;
  border-radius: 16px;
}

.text-card p,
.seo-panel p {
  margin-bottom: 0;
  font-size: 1.08rem;
}

.section-heading {
  width: min(780px, 100%);
  margin-bottom: 42px;
}

.section-heading p {
  font-size: 1.05rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  min-height: 260px;
  padding: 28px;
  border-radius: 14px;
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.015);
  border-color: rgba(184, 115, 196, 0.54);
  background: linear-gradient(145deg, rgba(147, 86, 158, 0.22), rgba(255, 255, 255, 0.055));
}

.service-card i {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-bright));
  box-shadow: 0 16px 32px rgba(147, 86, 158, 0.28);
}

.content-management {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(147, 86, 158, 0.08));
}

.feature-media {
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transform: translateY(calc(var(--parallax, 0px) * -0.035));
}

.feature-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transform: scale(1.04);
}

.feature-copy p {
  font-size: 1.1rem;
}

.pill-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.pill-grid div {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 18px 20px;
  border-radius: 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.pill-grid div:hover {
  transform: translateY(-5px);
  border-color: rgba(184, 115, 196, 0.5);
  background: rgba(147, 86, 158, 0.18);
}

.pill-grid i {
  color: #f0c8f8;
}

.seo-panel {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 40px;
  padding: 42px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(147, 86, 158, 0.26), rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.05);
}

.mid-cta {
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(13, 13, 18, 0.9), rgba(147, 86, 158, 0.5)),
    url("../../media/SitoDesign 5.jpeg") center / cover;
  transform: translateY(calc(var(--parallax, 0px) * -0.08)) scale(1.08);
}

.mid-cta h2 {
  max-width: 720px;
}

.contact {
  padding-bottom: 90px;
}

.contact-card {
  padding: 34px;
  border-radius: 16px;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: flex;
  gap: 14px;
  color: var(--muted);
}

.contact-list i {
  width: 22px;
  margin-top: 4px;
  color: var(--accent-bright);
}

.contact-list a:hover {
  color: #fff;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #09090d;
}

.footer-inner {
  min-height: 142px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-inner p {
  margin: 0;
}

.footer-copy {
  display: grid;
  gap: 6px;
}

.kubocom-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-weight: 700;
}

.kubocom-link img {
  width: auto;
  height: 42px;
  object-fit: contain;
}

.footer-inner a:hover {
  color: #fff;
}

.legal-page {
  background:
    linear-gradient(rgba(13, 13, 18, 0.9), rgba(13, 13, 18, 0.98)),
    url("../../media/SitoDesign 2.jpg") center top / cover fixed,
    var(--bg);
}

.legal-main {
  padding-top: 82px;
}

.legal-hero {
  padding-bottom: 54px;
}

.legal-hero h1 {
  max-width: 880px;
}

.legal-hero p {
  max-width: 760px;
  font-size: 1.08rem;
}

.legal-updated {
  color: #ead9ef;
  font-weight: 700;
}

.legal-content {
  padding-top: 0;
}

.legal-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.legal-index {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
}

.legal-index a {
  padding: 9px 10px;
  border-radius: 8px;
  color: var(--muted);
  font-weight: 700;
}

.legal-index a:hover {
  color: #fff;
  background: rgba(147, 86, 158, 0.22);
}

.legal-card {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(13, 13, 18, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.legal-card h2 {
  margin-top: 38px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card h3 {
  margin-top: 28px;
  color: #fff;
  font-size: 1.22rem;
}

.legal-card a {
  color: #ead9ef;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding-left: 22px;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: none;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
  padding: 20px;
  border: 1px solid rgba(184, 115, 196, 0.35);
  border-radius: 16px;
  background: rgba(13, 13, 18, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.cookie-banner.is-visible {
  display: grid;
}

.cookie-text strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
}

.cookie-text p {
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.cookie-text a {
  color: #ead9ef;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-actions .btn {
  min-height: 42px;
  cursor: pointer;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.62);
}

.cookie-modal.is-open {
  display: grid;
}

.cookie-modal-card {
  position: relative;
  width: min(560px, 100%);
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #111119;
  box-shadow: var(--shadow);
}

.cookie-modal-card h2 {
  font-size: 2rem;
}

.cookie-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.cookie-switch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 24px 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.cookie-switch span {
  display: grid;
  gap: 4px;
}

.cookie-switch small {
  color: var(--muted);
}

.cookie-switch input {
  width: 22px;
  height: 22px;
  accent-color: var(--accent);
}

.reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  filter: blur(8px);
  transition: opacity 0.8s ease, transform 0.8s ease, filter 0.8s ease;
  transition-delay: var(--delay, 0ms);
}

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

.section-copy.reveal,
.section-heading.reveal {
  transform: translateX(-34px);
}

.section-copy.reveal.is-visible,
.section-heading.reveal.is-visible {
  transform: translateX(0);
}

@keyframes floatPanel {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@media (max-width: 1024px) {
  .header-contacts {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .main-nav {
    gap: 16px;
  }

  .hero-content,
  .promo-inner,
  .two-column,
  .contact-layout,
  .split-feature,
  .seo-panel {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 620px;
    justify-self: start;
  }

  .promo-inner {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .pill-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .section {
    padding: 78px 0;
  }

  .header-inner {
    height: 72px;
  }

  .brand img,
  .footer-logo img {
    width: auto;
    height: 52px;
  }

  .brand img {
    height: 56px;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 72px;
    left: 14px;
    right: 14px;
    display: grid;
    gap: 4px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(13, 13, 18, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 12px 10px;
    border-radius: 8px;
  }

  .main-nav a:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .hero {
    min-height: auto;
    padding: 128px 0 72px;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4.5rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-copy p {
    font-size: 1.02rem;
  }

  .hero-actions,
  .contact-actions,
  .cookie-actions {
    display: grid;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
  }

  .promo-focus {
    padding: 54px 0;
    background-attachment: scroll;
  }

  .promo-inner {
    padding: 24px;
  }

  .hero-panel,
  .text-card,
  .contact-card,
  .seo-panel {
    padding: 24px;
    border-radius: 14px;
  }

  .cards-grid,
  .pill-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .pill-grid div {
    min-height: 68px;
  }

  .mid-cta {
    min-height: 360px;
  }

  .footer-inner {
    padding: 28px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .kubocom-link {
    width: 100%;
    justify-content: space-between;
  }

  .legal-main {
    padding-top: 72px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-index {
    position: static;
  }

  .legal-card {
    padding: 24px;
  }
}

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

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