:root {
  --cream: #f7f1df;
  --paper: #fffaf0;
  --ink: #17351f;
  --ink-soft: #526558;
  --green: #4e8d61;
  --green-dark: #2f6842;
  --sage: #dce9cc;
  --sage-soft: #edf3df;
  --yellow: #f5c85b;
  --yellow-soft: #f9eab0;
  --rose: #efc7bb;
  --line: rgba(23, 53, 31, 0.14);
  --shadow: 0 22px 70px rgba(51, 71, 45, 0.14);
  --radius-lg: 42px;
  --radius-md: 28px;
  --page: min(1420px, calc(100vw - 64px));
  color: var(--ink);
  background: var(--cream);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 8%, rgba(245, 200, 91, 0.22), transparent 28rem),
    radial-gradient(circle at 92% 17%, rgba(78, 141, 97, 0.16), transparent 31rem),
    var(--cream);
  color: var(--ink);
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgba(23, 53, 31, 0.05) 0.7px, transparent 0.7px);
  background-size: 18px 18px;
  content: "";
  pointer-events: none;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
select {
  font: inherit;
}

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

h1,
h2,
h3 {
  letter-spacing: -0.045em;
  line-height: 1.02;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3.4rem, 6vw, 6rem);
  font-weight: 780;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 5.2vw, 5rem);
  font-weight: 750;
}

h3 {
  font-size: 1.45rem;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
}

.skip-link:focus {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: var(--page);
  min-height: 68px;
  padding: 10px 12px 10px 16px;
  margin: 14px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 24px;
  background: rgba(255, 250, 240, 0.75);
  box-shadow: 0 12px 40px rgba(51, 71, 45, 0.09);
  backdrop-filter: blur(20px) saturate(135%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  color: var(--ink);
  font-weight: 720;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand img {
  border-radius: 11px;
  box-shadow: 0 5px 14px rgba(51, 71, 45, 0.16);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 7px;
}

.desktop-nav a {
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 610;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.desktop-nav a:hover {
  background: var(--sage-soft);
  color: var(--ink);
}

.language-picker {
  justify-self: end;
}

.language-picker select {
  min-height: 42px;
  padding: 0 31px 0 13px;
  border: 1px solid var(--line);
  border-radius: 14px;
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, var(--ink) 50%) calc(100% - 14px) 18px / 5px 5px no-repeat,
    linear-gradient(135deg, var(--ink) 50%, transparent 50%) calc(100% - 10px) 18px / 5px 5px no-repeat,
    rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 720;
  cursor: pointer;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(540px, 1.08fr);
  gap: 58px;
  align-items: center;
  width: var(--page);
  min-height: calc(100svh - 96px);
  padding: 76px 0 86px;
  margin: 0 auto;
}

.eyebrow,
.section-label {
  margin-bottom: 18px;
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 780;
  letter-spacing: 0.16em;
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.9vw, 1.35rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 15px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 17px;
  font-weight: 720;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--ink);
  box-shadow: 0 12px 28px rgba(23, 53, 31, 0.2);
  color: white;
}

.button-primary:hover {
  box-shadow: 0 17px 34px rgba(23, 53, 31, 0.25);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 250, 240, 0.64);
  color: var(--ink);
}

.button-secondary:hover {
  background: var(--paper);
}

.availability {
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.trust-list li {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.58);
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 640;
}

.hero-art {
  position: relative;
  margin: 0;
  isolation: isolate;
}

.hero-art picture {
  position: relative;
  z-index: 2;
  display: block;
}

.hero-art img {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 36px;
  box-shadow: 0 30px 65px rgba(51, 71, 45, 0.17);
}

.hero-glow {
  position: absolute;
  inset: -8% -5% -9% 3%;
  z-index: 0;
  border-radius: 47% 53% 43% 57% / 53% 44% 56% 47%;
  background: linear-gradient(145deg, var(--yellow-soft), var(--sage));
  filter: blur(8px);
  transform: rotate(-5deg);
}

.hero-art figcaption {
  position: absolute;
  bottom: 18px;
  left: 18px;
  z-index: 3;
  width: max-content;
  padding: 10px 14px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.82);
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 640;
  backdrop-filter: blur(12px);
}

html[lang="ru"] .hero h1 {
  font-size: clamp(3.35rem, 5.4vw, 5.4rem);
}

.section {
  width: var(--page);
  margin: 0 auto 34px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.statement {
  padding: clamp(54px, 8vw, 100px);
  background: var(--ink);
  color: white;
}

.statement .section-label {
  color: var(--yellow);
}

.statement-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: end;
}

.statement-grid h2 {
  max-width: 680px;
  margin-bottom: 0;
}

.statement-copy > p {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
  line-height: 1.7;
}

.anti-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.anti-features span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: var(--sage);
  font-size: 0.82rem;
  font-weight: 680;
}

.moments,
.categories,
.how {
  padding: clamp(42px, 6vw, 78px);
  background: rgba(255, 250, 240, 0.86);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 50px;
}

.section-heading.compact {
  margin-bottom: 38px;
}

.section-heading h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 480px;
  margin-bottom: 7px;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.65;
}

.notification-stage {
  position: relative;
  min-height: 485px;
  padding: 58px 8%;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 15% 20%, rgba(245, 200, 91, 0.6), transparent 34%),
    radial-gradient(circle at 83% 74%, rgba(78, 141, 97, 0.28), transparent 35%),
    #e9edd5;
}

.notification-stage::before,
.notification-stage::after {
  position: absolute;
  width: 230px;
  height: 230px;
  border: 2px solid rgba(23, 53, 31, 0.08);
  border-radius: 42% 58% 63% 37%;
  content: "";
}

.notification-stage::before {
  top: -80px;
  right: 10%;
  transform: rotate(24deg);
}

.notification-stage::after {
  bottom: -120px;
  left: 3%;
  transform: rotate(-16deg);
}

.notification-card {
  position: relative;
  z-index: 2;
  width: min(590px, 82%);
  padding: 16px 18px 18px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 20px 50px rgba(51, 71, 45, 0.16);
  backdrop-filter: blur(18px);
}

.notification-family {
  margin-left: 0;
  transform: rotate(-2deg);
}

.notification-nature {
  margin: 30px 0 0 auto;
  transform: rotate(1.2deg);
}

.notification-pets {
  margin: 32px auto 0 13%;
  transform: rotate(-0.6deg);
}

.notification-meta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.notification-meta img {
  border-radius: 12px;
}

.notification-meta time {
  color: rgba(23, 53, 31, 0.47);
  font-weight: 600;
}

.notification-card > p {
  margin: 13px 2px 0 54px;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 650;
  letter-spacing: -0.02em;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 13px;
}

.category-grid article {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 148px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 720;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.category-grid article:hover {
  box-shadow: 0 14px 30px rgba(51, 71, 45, 0.1);
  transform: translateY(-3px);
}

.category-grid img {
  width: 58px;
  height: 58px;
  border-radius: 15px;
}

.category-grid small {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 4px 7px;
  border-radius: 999px;
  background: var(--yellow-soft);
  color: var(--green-dark);
  font-size: 0.68rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 0;
  margin: 0;
  counter-reset: step;
  list-style: none;
}

.steps li {
  min-height: 280px;
  padding: 24px;
  border-radius: 27px;
  background: var(--sage-soft);
}

.steps li:nth-child(2) {
  background: #f7e8ce;
}

.steps li:nth-child(3) {
  background: #e6ded2;
}

.step-number {
  display: block;
  margin-bottom: 76px;
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 780;
  letter-spacing: 0.14em;
}

.steps h3 {
  margin-bottom: 12px;
}

.steps p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.devices {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 36px;
  align-items: center;
  min-height: 620px;
  padding: clamp(46px, 7vw, 86px);
  overflow: hidden;
  background: var(--sage);
}

.device-copy h2 {
  max-width: 520px;
}

.device-copy > p:not(.section-label) {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.68;
}

.device-copy ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.device-copy li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
  font-weight: 620;
}

.device-copy li::before {
  position: absolute;
  top: 0.2em;
  left: 0;
  color: var(--green-dark);
  content: "✓";
  font-weight: 800;
}

.device-art {
  position: relative;
  min-height: 430px;
}

.device-mac {
  position: absolute;
  top: 12%;
  left: 1%;
  width: 103%;
  filter: drop-shadow(0 30px 40px rgba(51, 71, 45, 0.18));
  transform: rotate(2deg);
}

.device-phone {
  position: absolute;
  right: 0;
  bottom: -18%;
  width: 31%;
  filter: drop-shadow(0 25px 30px rgba(51, 71, 45, 0.22));
  transform: rotate(-4deg);
}

.privacy {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 50px;
  align-items: center;
  padding: clamp(44px, 7vw, 82px);
  background: var(--ink);
  color: white;
}

.privacy-mark {
  display: grid;
  width: clamp(120px, 17vw, 210px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--yellow) 0 12%, transparent 13%),
    radial-gradient(circle, transparent 0 39%, rgba(245, 200, 91, 0.2) 40% 41%, transparent 42%);
  color: var(--yellow);
  font-size: clamp(4rem, 9vw, 8rem);
}

.privacy .section-label {
  color: var(--yellow);
}

.privacy h2 {
  max-width: 750px;
}

.privacy p:not(.section-label) {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  line-height: 1.7;
}

.text-link {
  display: inline-block;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  color: var(--yellow);
  font-weight: 700;
  text-decoration: none;
}

.final-cta {
  display: flex;
  min-height: 610px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 70px 24px;
  background:
    radial-gradient(circle at 20% 15%, rgba(245, 200, 91, 0.42), transparent 30%),
    radial-gradient(circle at 85% 80%, rgba(78, 141, 97, 0.25), transparent 35%),
    var(--paper);
  text-align: center;
}

.final-cta img {
  margin-bottom: 26px;
  border-radius: 28px;
  box-shadow: 0 18px 34px rgba(51, 71, 45, 0.18);
}

.final-cta h2 {
  max-width: 850px;
}

.final-cta > p:not(.section-label) {
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 38px;
  align-items: end;
  width: var(--page);
  padding: 40px 0 48px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.site-footer strong {
  color: var(--ink);
  font-size: 1rem;
}

.site-footer p {
  margin: 4px 0 0;
}

.site-footer nav {
  display: flex;
  gap: 18px;
}

.site-footer a {
  text-decoration-color: rgba(23, 53, 31, 0.3);
  text-underline-offset: 3px;
}

.consent-settings {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(23, 53, 31, 0.3);
  text-underline-offset: 3px;
  cursor: pointer;
}

.consent-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  width: min(500px, calc(100vw - 48px));
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 25px;
  background: rgba(255, 250, 240, 0.94);
  box-shadow: 0 24px 70px rgba(23, 53, 31, 0.22);
  backdrop-filter: blur(22px) saturate(135%);
}

.consent-banner[hidden] {
  display: none;
}

.consent-banner p {
  margin-bottom: 18px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.58;
}

.consent-banner a {
  color: var(--green-dark);
  font-weight: 680;
  text-underline-offset: 3px;
}

.consent-actions {
  display: flex;
  gap: 9px;
}

.consent-actions button {
  min-height: 44px;
  flex: 1;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: transparent;
  color: var(--ink);
  font-weight: 720;
  cursor: pointer;
}

.consent-actions .consent-accept {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}

.content-page {
  width: min(820px, calc(100vw - 48px));
  min-height: calc(100svh - 210px);
  padding: clamp(44px, 8vw, 86px);
  margin: 56px auto 34px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 240, 0.9);
  box-shadow: var(--shadow);
}

.content-page h1 {
  margin-bottom: 18px;
  font-size: clamp(2.7rem, 7vw, 5.4rem);
}

.content-page .lede {
  margin-bottom: 44px;
  color: var(--ink-soft);
  font-size: 1.14rem;
}

.content-page h2 {
  margin-top: 42px;
  margin-bottom: 12px;
  font-size: clamp(1.7rem, 4vw, 2.3rem);
}

.content-page h3 {
  margin-top: 28px;
}

.content-page p,
.content-page li {
  color: var(--ink-soft);
  line-height: 1.72;
}

.content-page ul,
.content-page ol {
  padding-left: 1.25rem;
}

.content-page a {
  color: var(--green-dark);
  text-underline-offset: 3px;
}

.content-page .button {
  margin-top: 12px;
  color: white;
}

.page-kicker {
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 780;
  letter-spacing: 0.16em;
}

.policy-meta {
  padding-top: 28px;
  margin-top: 44px;
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 30px 0 42px;
}

.support-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--sage-soft);
}

.support-card:nth-child(2n) {
  background: #f7e8ce;
}

.support-card h2 {
  margin-top: 0;
  font-size: 1.45rem;
}

.support-card p:last-child {
  margin-bottom: 0;
}

.not-found {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 24px;
  text-align: center;
}

.not-found > div {
  max-width: 660px;
}

.not-found img {
  width: 96px;
  margin: 0 auto 26px;
  border-radius: 24px;
}

.not-found h1 {
  font-size: clamp(3rem, 10vw, 6rem);
}

.js-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 88px;
  }

  .hero-copy {
    max-width: 820px;
  }

  .hero-art {
    width: min(840px, 100%);
    margin: 0 auto;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .statement-grid,
  .section-heading,
  .devices {
    grid-template-columns: 1fr;
  }

  .statement-grid {
    gap: 34px;
  }

  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .devices {
    min-height: 900px;
  }

  .device-copy {
    max-width: 700px;
  }

  .device-art {
    min-height: 460px;
  }

  .device-mac {
    width: 90%;
  }

  .device-phone {
    right: 5%;
    width: 25%;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
  }

  .site-footer > p {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  :root {
    --page: calc(100vw - 28px);
    --radius-lg: 30px;
  }

  .site-header {
    top: 8px;
    min-height: 60px;
    margin-top: 8px;
    border-radius: 20px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .brand span {
    font-size: 0.92rem;
  }

  .language-picker select {
    min-height: 38px;
  }

  .hero {
    gap: 48px;
    padding: 68px 0 74px;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

  h2 {
    font-size: clamp(2.25rem, 10vw, 3.4rem);
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .trust-list {
    gap: 6px;
  }

  .hero-art {
    width: min(330px, 88%);
  }

  .hero-art img {
    max-height: 620px;
    object-fit: contain;
  }

  .hero-glow {
    inset: 3% -10% 3%;
  }

  .hero-art figcaption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
    max-width: 100%;
    text-align: center;
  }

  .section {
    margin-bottom: 18px;
  }

  .statement,
  .moments,
  .categories,
  .how,
  .devices,
  .privacy {
    padding: 40px 24px;
  }

  .section-heading {
    gap: 20px;
    margin-bottom: 32px;
  }

  .notification-stage {
    min-height: 490px;
    padding: 42px 16px;
    border-radius: 25px;
  }

  .notification-card {
    width: 94%;
    padding: 14px;
    border-radius: 19px;
  }

  .notification-nature {
    margin-top: 35px;
  }

  .notification-pets {
    margin-top: 38px;
    margin-left: 3%;
  }

  .notification-card > p {
    margin-left: 0;
    font-size: 1rem;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
  }

  .category-grid article {
    min-height: 126px;
    padding: 14px;
    border-radius: 20px;
  }

  .category-grid img {
    width: 50px;
    height: 50px;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .steps li {
    min-height: 220px;
  }

  .step-number {
    margin-bottom: 46px;
  }

  .devices {
    min-height: 725px;
  }

  .device-art {
    min-height: 250px;
  }

  .device-mac {
    top: 6%;
    left: -8%;
    width: 112%;
  }

  .device-phone {
    right: -1%;
    bottom: -26%;
    width: 35%;
  }

  .privacy {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .privacy-mark {
    width: 118px;
  }

  .final-cta {
    min-height: 560px;
    padding: 58px 24px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
  }

  .site-footer > p {
    grid-column: auto;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }

  .consent-banner {
    right: 14px;
    bottom: 14px;
    width: calc(100vw - 28px);
    padding: 19px;
  }

  .consent-actions {
    flex-direction: column;
  }

  .content-page {
    width: calc(100vw - 28px);
    padding: 38px 24px;
    margin-top: 34px;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }
}

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

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

  .js-reveal {
    opacity: 1;
    transform: none;
  }
}
