:root {
  --paper: #f5f3ea;
  --paper-soft: #eef4ea;
  --ink: #17211c;
  --muted: #526258;
  --deep: #09291d;
  --deep-2: #12392b;
  --line: rgba(20, 96, 67, 0.18);
  --accent: #0f5b3f;
  --accent-2: #1f8a63;
  --white: #ffffff;
  --shadow: 0 26px 80px rgba(8, 36, 25, 0.12);
  --shadow-soft: 0 16px 46px rgba(8, 36, 25, 0.08);
  --radius-lg: 34px;
  --radius-md: 24px;
  --radius-sm: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 20% 0%, rgba(31, 138, 99, 0.18), transparent 32rem),
    radial-gradient(circle at 85% 12%, rgba(15, 91, 63, 0.14), transparent 34rem),
    linear-gradient(180deg, var(--paper) 0%, #fbfaf6 46%, var(--paper-soft) 100%);
  color: var(--ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

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


h1,
h2,
p,
a,
span,
th,
td {
  overflow-wrap: break-word;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.brand:focus-visible {
  outline: 3px solid rgba(188, 232, 209, 0.95);
  outline-offset: 5px;
  box-shadow: 0 0 0 7px rgba(15, 91, 63, 0.18);
}

.header-contacts a:focus-visible,
.site-footer a:focus-visible {
  border-radius: 8px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 18px 0;
  background: rgba(245, 243, 234, 0.78);
  border-bottom: 1px solid rgba(20, 96, 67, 0.1);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.header-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.brand {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  min-width: 0;
}

.brand img {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  filter: drop-shadow(0 12px 22px rgba(8, 36, 25, 0.16));
}

.brand-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-name {
  color: var(--deep);
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: 760;
  letter-spacing: -0.03em;
  overflow-wrap: anywhere;
}

.brand-note {
  color: var(--muted);
  font-size: 13px;
  font-weight: 620;
}

.header-contacts {
  display: grid;
  gap: 2px;
  color: rgba(23, 33, 28, 0.78);
  font-size: 13px;
  line-height: 1.35;
  text-align: right;
}

.header-contacts a {
  color: var(--deep);
  font-weight: 680;
}

.section {
  padding: clamp(54px, 7vw, 108px) 0;
}

.hero {
  min-height: calc(100svh - 86px);
  display: grid;
  align-items: center;
  padding-top: clamp(44px, 6vw, 92px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
}

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

.eyebrow {
  margin: 0 0 22px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 780;
  letter-spacing: 0.08em;
}

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

h1 {
  margin-bottom: 22px;
  max-width: 880px;
  color: var(--ink);
  font-size: clamp(42px, 7vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.075em;
  font-weight: 820;
}

h2 {
  margin-bottom: clamp(22px, 3vw, 36px);
  color: var(--ink);
  font-size: clamp(30px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.06em;
  font-weight: 800;
}

.price {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 30px;
  padding: 13px 18px;
  border: 1px solid rgba(20, 96, 67, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 16px 40px rgba(8, 36, 25, 0.08);
  color: var(--deep);
  font-size: clamp(18px, 2.3vw, 27px);
  font-weight: 780;
  line-height: 1.15;
}

.lead {
  margin-bottom: 18px;
  max-width: 760px;
  color: rgba(23, 33, 28, 0.76);
  font-size: clamp(17px, 1.6vw, 22px);
}

.hero-note {
  margin-bottom: 32px;
  max-width: 720px;
  padding-left: 20px;
  border-left: 2px solid rgba(15, 91, 63, 0.52);
  color: var(--deep);
  font-size: clamp(17px, 1.55vw, 21px);
  font-weight: 620;
}

.hero-actions,
.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  max-width: 100%;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 760;
  line-height: 1.15;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--white);
  box-shadow: 0 18px 42px rgba(15, 91, 63, 0.22);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.66);
  color: var(--deep);
  border-color: rgba(15, 91, 63, 0.22);
  box-shadow: 0 16px 38px rgba(8, 36, 25, 0.08);
}

.btn-ghost {
  background: transparent;
  color: var(--deep);
  border-color: rgba(15, 91, 63, 0.24);
}

.hero-panel {
  position: relative;
  min-height: clamp(420px, 42vw, 620px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(155deg, rgba(9, 41, 29, 0.96), rgba(18, 57, 43, 0.9)),
    radial-gradient(circle at 28% 18%, rgba(31, 138, 99, 0.64), transparent 23rem);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(194, 232, 209, 0.16);
  border-radius: 28px;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto -18% -28% 18%;
  height: 58%;
  background: radial-gradient(circle, rgba(31, 138, 99, 0.34), transparent 64%);
  filter: blur(12px);
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
}

.orb-one {
  top: 14%;
  left: 12%;
  width: 170px;
  height: 170px;
  background: rgba(31, 138, 99, 0.32);
}

.orb-two {
  right: 9%;
  bottom: 16%;
  width: 240px;
  height: 240px;
  background: rgba(239, 246, 231, 0.1);
}

.panel-line {
  position: absolute;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(238, 244, 234, 0.36), transparent);
}

.panel-line:nth-of-type(3) {
  top: 34%;
}

.panel-line:nth-of-type(4) {
  top: 52%;
}

.panel-line:nth-of-type(5) {
  top: 70%;
}

.panel-chip {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(58%, 280px);
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(238, 244, 234, 0.16);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 52%),
    conic-gradient(from 120deg, rgba(31, 138, 99, 0.18), rgba(238, 244, 234, 0.04), rgba(31, 138, 99, 0.2));
}

.services {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(238, 244, 234, 0.74));
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-card {
  position: relative;
  min-height: 170px;
  overflow: hidden;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: var(--shadow-soft);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(31, 138, 99, 0.42);
  box-shadow: 0 0 0 8px rgba(31, 138, 99, 0.08);
}

.service-card p {
  margin: 0;
  padding-right: 14px;
  color: rgba(23, 33, 28, 0.82);
  font-size: 16px;
  font-weight: 620;
}

.compare {
  background:
    radial-gradient(circle at 85% 0%, rgba(31, 138, 99, 0.22), transparent 34rem),
    linear-gradient(180deg, var(--deep), #0d211a);
  color: var(--white);
}

.compare h2 {
  color: var(--white);
}

.table-wrap {
  overflow: hidden;
  border: 1px solid rgba(238, 244, 234, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.22);
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: clamp(18px, 2.6vw, 30px);
  border-bottom: 1px solid rgba(238, 244, 234, 0.12);
  text-align: left;
  vertical-align: top;
}

th {
  color: rgba(238, 244, 234, 0.72);
  font-size: 14px;
  font-weight: 760;
  letter-spacing: 0.07em;
}

td {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 680;
}

tr:last-child td {
  border-bottom: 0;
}

td:nth-child(2),
td:nth-child(3),
th:nth-child(2),
th:nth-child(3) {
  text-align: center;
}

td:nth-child(3) {
  color: #bce8d1;
}

.budget {
  padding: clamp(46px, 6vw, 78px) 0;
}

.budget p {
  margin: 0;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-soft);
  color: var(--deep);
  font-size: clamp(20px, 2.2vw, 32px);
  font-weight: 760;
  line-height: 1.22;
  letter-spacing: -0.035em;
}

.cta {
  padding-top: 0;
}

.cta-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  padding: clamp(28px, 5vw, 58px);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 94% 4%, rgba(31, 138, 99, 0.32), transparent 24rem),
    linear-gradient(135deg, #fdfdf9, #eaf2e8);
  border: 1px solid rgba(15, 91, 63, 0.17);
  box-shadow: var(--shadow);
}

.cta h2 {
  margin-bottom: 12px;
}

.cta p {
  margin-bottom: 0;
  color: rgba(23, 33, 28, 0.72);
  font-size: clamp(17px, 1.5vw, 21px);
}

.cta-actions {
  justify-content: flex-end;
}

.site-footer {
  padding: 34px 0 42px;
  background: #071b14;
  color: rgba(255, 255, 255, 0.72);
}

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

.site-footer p {
  margin: 0 0 6px;
  font-size: 14px;
}

.site-footer p:first-child,
.site-footer a {
  color: var(--white);
  font-weight: 720;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1120px) {
  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .hero-panel {
    min-height: 360px;
  }

  .cta-shell {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 860px) {
  .header-shell {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .header-contacts {
    text-align: left;
  }

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

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

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

  .site-header {
    position: static;
    padding: 14px 0;
  }

  .brand {
    gap: 12px;
  }

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

  .header-contacts {
    font-size: 12.5px;
    overflow-wrap: anywhere;
  }

  .hero {
    min-height: auto;
    padding-top: 48px;
  }

  h1 {
    font-size: clamp(36px, 12vw, 56px);
  }

  .price {
    border-radius: 24px;
  }

  .hero-actions,
  .cta-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .btn {
    width: 100%;
    min-height: 54px;
    white-space: normal;
  }

  .hero-panel {
    min-height: 300px;
    border-radius: 28px;
  }

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

  .service-card {
    min-height: 0;
    padding: 18px;
  }

  .table-wrap {
    border: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }

  table,
  thead,
  tbody,
  tr,
  th,
  td {
    display: block;
    width: 100%;
  }

  thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    clip-path: inset(50%);
  }

  tr {
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid rgba(238, 244, 234, 0.14);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.06);
  }

  td {
    display: grid;
    grid-template-columns: minmax(104px, 38%) 1fr;
    gap: 16px;
    align-items: start;
    padding: 16px;
    border-bottom: 1px solid rgba(238, 244, 234, 0.1);
    text-align: left !important;
    font-size: 16px;
  }

  td::before {
    content: attr(data-label);
    color: rgba(238, 244, 234, 0.62);
    font-size: 12px;
    font-weight: 780;
    letter-spacing: 0.06em;
    }

  .cta-shell {
    padding: 24px;
    border-radius: 28px;
  }
}

@media (max-width: 380px) {
  .container {
    width: min(100% - 22px, var(--container));
  }

  .brand-name {
    font-size: 15px;
  }

  .brand-note {
    font-size: 12px;
  }

  .lead,
  .hero-note,
  .cta p {
    font-size: 16px;
  }

  td {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

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

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

  [data-reveal],
  .reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}



.site-header {
  padding: 14px 0;
  background: rgba(245, 243, 234, 0.86);
}

.header-shell {
  gap: clamp(18px, 4vw, 42px);
}

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

.header-contacts {
  justify-self: end;
  min-width: 292px;
  padding: 12px 18px;
  border: 1px solid rgba(20, 96, 67, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.46);
  box-shadow: 0 12px 34px rgba(8, 36, 25, 0.06);
  font-size: 12.8px;
  line-height: 1.32;
}

.header-contacts a {
  font-size: 13.6px;
}

.hero {
  min-height: calc(100svh - 76px);
  padding-top: clamp(32px, 4.6vw, 58px);
  padding-bottom: clamp(54px, 7vw, 96px);
}

.hero-grid {
  grid-template-columns: minmax(0, 1.36fr) minmax(280px, 0.64fr);
  gap: clamp(30px, 5vw, 66px);
  align-items: center;
}

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

.eyebrow {
  margin-bottom: clamp(16px, 2.4vw, 24px);
}

h1 {
  max-width: 760px;
  margin-bottom: clamp(18px, 2.6vw, 26px);
  font-size: clamp(42px, 5.45vw, 74px);
  line-height: 1.01;
  letter-spacing: -0.066em;
  text-wrap: balance;
}

.h-line {
  display: block;
}

.price {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0 0.35em;
  align-items: center;
  max-width: min(100%, 640px);
  margin-bottom: clamp(22px, 3vw, 32px);
  padding: 14px 22px;
  border-radius: 999px;
  font-size: clamp(18px, 1.75vw, 24px);
  line-height: 1.18;
}

.price-nowrap {
  white-space: nowrap;
}

.lead {
  max-width: 690px;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.62;
}

.hero-note {
  max-width: 680px;
  font-size: clamp(17px, 1.3vw, 20px);
}

.hero-panel {
  justify-self: end;
  width: min(100%, 420px);
  min-height: clamp(330px, 32vw, 470px);
  border-radius: 32px;
  box-shadow: 0 24px 76px rgba(8, 36, 25, 0.14);
  opacity: 0.98;
}

.hero-panel::before {
  inset: 16px;
  border-radius: 24px;
}

.orb-one {
  width: 132px;
  height: 132px;
  opacity: 0.86;
}

.orb-two {
  width: 190px;
  height: 190px;
  opacity: 0.82;
}

.panel-chip {
  width: min(54%, 210px);
}

@media (max-width: 1120px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

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

  h1 {
    max-width: 820px;
  }

  .hero-panel {
    justify-self: stretch;
    width: 100%;
    min-height: 300px;
  }
}

@media (max-width: 860px) {
  .header-contacts {
    justify-self: stretch;
    min-width: 0;
    text-align: left;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 13px 0;
  }

  .header-contacts {
    padding: 11px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.52);
  }

  .hero {
    padding-top: 42px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(35px, 10.6vw, 48px);
    line-height: 1.02;
    letter-spacing: -0.064em;
  }

  .h-line {
    display: inline;
  }

  .h-line::after {
    content: " ";
  }

  .h-line:last-child::after {
    content: "";
  }

  .price {
    display: flex;
    width: 100%;
    border-radius: 24px;
    padding: 14px 16px;
    font-size: clamp(18px, 5.2vw, 22px);
  }

  .hero-panel {
    min-height: 238px;
    border-radius: 26px;
  }

  .orb-one {
    width: 112px;
    height: 112px;
  }

  .orb-two {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: clamp(33px, 10.2vw, 39px);
    letter-spacing: -0.058em;
  }

  .price {
    font-size: 18px;
  }
}


.footer-legal {
  display: flex;
  grid-column: 1 / -1;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(188, 232, 209, 0.16);
}

.footer-legal a {
  color: rgba(244, 249, 246, 0.78);
  font-size: 13px;
  font-weight: 620;
  transition: color 180ms ease;
}

.footer-legal a:hover {
  color: #ffffff;
}

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  width: min(680px, calc(100% - 40px));
  padding: 16px;
  border: 1px solid rgba(188, 232, 209, 0.22);
  border-radius: 22px;
  background: rgba(9, 41, 29, 0.94);
  box-shadow: 0 24px 70px rgba(8, 36, 25, 0.28);
  color: #ffffff;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

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

.cookie-banner__text {
  display: grid;
  gap: 4px;
  min-width: 0;
  font-size: 13px;
  line-height: 1.4;
}

.cookie-banner__text strong {
  font-size: 14px;
}

.cookie-banner__text span {
  color: rgba(255, 255, 255, 0.78);
}

.cookie-banner__text a {
  width: fit-content;
  color: #bce8d1;
  font-weight: 720;
}

.cookie-banner__button {
  min-height: 44px;
  padding: 11px 16px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: var(--deep);
  font: inherit;
  font-size: 14px;
  font-weight: 780;
  cursor: pointer;
}

.legal-page {
  background: linear-gradient(180deg, var(--paper) 0%, #fbfaf6 45%, var(--paper-soft) 100%);
}

.legal-header {
  position: sticky;
}

.legal-hero {
  padding: clamp(52px, 8vw, 100px) 0 clamp(30px, 5vw, 58px);
}

.legal-shell {
  display: grid;
  gap: 18px;
}

.legal-back {
  width: fit-content;
  color: var(--accent);
  font-size: 14px;
  font-weight: 760;
  letter-spacing: 0.02em;
}

.legal-shell h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(38px, 6vw, 74px);
  line-height: 0.98;
}

.legal-updated {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
}

.legal-content {
  padding: 0 0 clamp(70px, 9vw, 128px);
}

.legal-document {
  max-width: 920px;
  padding: clamp(26px, 4vw, 52px);
  border: 1px solid rgba(20, 96, 67, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft);
}

.legal-document h2 {
  margin: 34px 0 12px;
  font-size: clamp(23px, 2.8vw, 34px);
  letter-spacing: -0.04em;
}

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

.legal-document p {
  margin: 0 0 14px;
  color: rgba(23, 33, 28, 0.78);
  font-size: clamp(16px, 1.5vw, 18px);
}

@media (max-width: 720px) {
  .cookie-banner {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

  .cookie-banner__button {
    width: 100%;
  }

  .footer-legal {
    display: grid;
    gap: 10px;
  }

  .legal-document {
    padding: 24px;
    border-radius: 24px;
  }
}
