
:root {
  --ink: #f7f5fc;
  --muted: #aaa6ba;
  --background: #070914;
  --surface: #111427;
  --line: rgba(255, 255, 255, 0.12);
  --coral: #ff5a5f;
  --magenta: #ee3d98;
  --violet: #8b4dff;
  --blue: #4769ff;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  background: var(--background);
}

body {
  margin: 0;
  background: var(--background);
  color: var(--ink);
  font-family: Manrope, Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.shell {
  width: min(1324px, calc(100% - 80px));
  margin-inline: auto;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 47% 45%, rgba(79, 27, 111, 0.22), transparent 38%),
    linear-gradient(135deg, #070914 0%, #0a0918 54%, #10091d 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.14'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  z-index: -1;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.14;
  pointer-events: none;
}

.hero-glow--one {
  top: 18%;
  left: 36%;
  background: var(--magenta);
}

.hero-glow--two {
  right: -8%;
  bottom: -12%;
  background: var(--blue);
}

.site-header {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 92px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
  font-size: 19px;
  font-weight: 750;
  letter-spacing: -0.03em;
}

.site-brand__mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255, 90, 95, 0.2), rgba(71, 105, 255, 0.18));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.site-nav {
  display: flex;
  gap: 44px;
  color: #bdb9ca;
  font-size: 15px;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
}

.independent-label {
  justify-self: end;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 14px;
  color: #d7d4e1;
  font-size: 13px;
  background:
    linear-gradient(#0c0d1b, #0c0d1b) padding-box,
    linear-gradient(100deg, rgba(255, 90, 95, 0.9), rgba(71, 105, 255, 0.9)) border-box;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.84fr) minmax(660px, 1.46fr);
  gap: clamp(48px, 5vw, 86px);
  align-items: center;
  min-height: calc(100svh - 138px);
  padding: 30px 0 76px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 500px;
  animation: rise-in 600ms ease-out both;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
  color: #c5c1d1;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 1px;
  margin-right: 12px;
  content: "";
  background: linear-gradient(90deg, var(--coral), var(--violet));
}

.hero-copy h1 {
  max-width: 490px;
  margin: 0;
  font-size: clamp(55px, 4.45vw, 72px);
  font-weight: 780;
  line-height: 1.02;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hero-copy > p {
  max-width: 455px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.promo-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 455px);
  margin-top: 24px;
}

.promo-option {
  position: relative;
  overflow: hidden;
  min-height: 104px;
  padding: 18px 17px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.promo-option::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  content: "";
  background: linear-gradient(180deg, var(--coral), var(--violet));
}

.promo-option--returning::before {
  background: linear-gradient(180deg, var(--violet), var(--blue));
}

.promo-option strong,
.promo-option span {
  display: block;
}

.promo-option strong {
  color: #fff;
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.promo-option span {
  margin-top: 8px;
  color: #aaa6ba;
  font-size: 12px;
  line-height: 1.4;
}

.primary-cta {
  display: flex;
  width: min(100%, 410px);
  min-height: 72px;
  margin-top: 24px;
  padding: 0 25px 0 30px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  color: #fff;
  font-size: 19px;
  font-weight: 650;
  background: linear-gradient(100deg, var(--coral) 0%, var(--magenta) 38%, var(--violet) 72%, var(--blue) 100%);
  background-size: 140% 100%;
  box-shadow: 0 18px 52px rgba(113, 53, 255, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease, background-position 300ms ease;
}

.primary-cta span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.primary-cta:hover,
.primary-cta:focus-visible {
  transform: translateY(-2px);
  background-position: 100% 0;
  box-shadow: 0 22px 58px rgba(113, 53, 255, 0.34);
}

.hero-note {
  display: block;
  max-width: 390px;
  margin-top: 16px;
  color: #777486;
  font-size: 12px;
  line-height: 1.5;
}

.service-mosaic {
  position: relative;
  display: grid;
  grid-template-columns: 1.12fr 0.98fr;
  grid-template-rows: repeat(2, minmax(255px, 1fr));
  gap: 14px;
  min-height: 595px;
  perspective: 1200px;
}

.service-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  background-color: var(--surface);
  background-position: center;
  background-size: cover;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
  animation: card-in 660ms ease-out both;
}

.service-card:hover {
  z-index: 2;
  transform: translateY(-5px) scale(1.012) rotate(0deg);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 30px 84px rgba(0, 0, 0, 0.42);
}

.service-card--cinema {
  transform: rotate(-2deg) translateY(6px);
  border-color: rgba(255, 92, 76, 0.65);
  background-image: url("/cards/cinema-card.png");
}

.service-card--music {
  transform: rotate(1.5deg) translateY(20px);
  border-color: rgba(161, 78, 255, 0.62);
  background-image: url("/cards/music-card.png");
  animation-delay: 70ms;
}

.service-card--books {
  transform: rotate(-1deg) translate(-12px, -2px);
  border-color: rgba(76, 112, 255, 0.62);
  background-image: url("/cards/books-card.png");
  animation-delay: 140ms;
}

.service-card--plus {
  transform: rotate(-1.5deg) translate(2px, 10px);
  border-color: rgba(231, 72, 169, 0.58);
  background-image: url("/cards/plus-card.png");
  animation-delay: 210ms;
}

.service-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 7, 18, 0.16), rgba(6, 7, 18, 0.02) 45%, rgba(6, 7, 18, 0.6));
}

.service-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  padding: 30px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.logo-plate {
  display: inline-flex;
  max-width: 88%;
  min-height: 44px;
  padding: 10px 13px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 12px;
  background: rgba(5, 7, 16, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(12px);
}

.logo-plate--books {
  background: rgba(255, 255, 255, 0.92);
}

.logo-plate--plus {
  padding-block: 8px;
  background: rgba(255, 255, 255, 0.93);
}

.service-logo {
  display: block;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}

.service-logo--kinopoisk {
  width: 180px;
  height: auto;
}

.service-logo--music {
  width: 205px;
  height: auto;
}

.service-logo--books {
  width: 164px;
  height: auto;
}

.service-logo--plus {
  width: 180px;
  height: 27px;
}

.service-card__content p {
  max-width: 88%;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.4;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.45);
}

.hero-scroll {
  position: absolute;
  right: 0;
  bottom: 24px;
  left: 0;
  display: flex;
  gap: 14px;
  align-items: center;
  color: #777487;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-scroll__line {
  width: 70px;
  height: 1px;
  background: linear-gradient(90deg, #777487, transparent);
}

.content-shell {
  width: min(1180px, calc(100% - 80px));
  margin-inline: auto;
}

.content-section {
  padding: 132px 0;
}

.services-section {
  background:
    radial-gradient(circle at 85% 12%, rgba(90, 62, 255, 0.12), transparent 30%),
    #0a0b17;
}

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

.section-kicker {
  display: inline-block;
  margin-bottom: 17px;
  color: #938da9;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-heading h2,
.conditions-copy h2,
.trust-card h2,
.offer-card h2 {
  margin: 0;
  color: #f7f5fc;
  font-size: clamp(40px, 4.2vw, 62px);
  font-weight: 760;
  line-height: 1.06;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.section-heading > p,
.conditions-copy > p {
  max-width: 670px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.service-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.detail-card {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(145deg, #111426, #0d0f1e);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.detail-card::after {
  position: absolute;
  right: -72px;
  bottom: -100px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  content: "";
  opacity: 0.26;
  filter: blur(2px);
  background: radial-gradient(circle at 30% 30%, var(--card-accent, #8b4dff), transparent 66%);
}

.detail-card--cinema { --card-accent: #ff5a5f; }
.detail-card--music { --card-accent: #ffd400; }
.detail-card--books { --card-accent: #4769ff; }
.detail-card--family { --card-accent: #ee3d98; }

.detail-card__logo {
  display: inline-flex;
  min-height: 56px;
  padding: 11px 15px;
  align-items: center;
  border-radius: 14px;
}

.detail-card__logo img {
  display: block;
  width: auto;
  max-width: 230px;
  max-height: 42px;
}

.dark-logo-plate {
  background: #070914;
  border: 1px solid rgba(255, 255, 255, 0.11);
}

.light-logo-plate {
  background: rgba(255, 255, 255, 0.94);
}

.detail-card h3 {
  max-width: 430px;
  margin: 62px 0 14px;
  font-size: 29px;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.detail-card > p {
  position: relative;
  z-index: 1;
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.detail-card > span {
  position: absolute;
  top: 34px;
  right: 34px;
  color: #777387;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.family-mark {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  font-size: 24px;
  font-weight: 750;
  background: linear-gradient(135deg, rgba(255, 90, 95, 0.55), rgba(71, 105, 255, 0.55));
}

.conditions-section {
  background:
    radial-gradient(circle at 18% 45%, rgba(238, 61, 152, 0.14), transparent 30%),
    #070914;
}

.conditions-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(70px, 8vw, 130px);
  align-items: start;
}

.conditions-copy {
  position: sticky;
  top: 50px;
}

.condition-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.condition-list li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 22px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
}

.condition-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.condition-list > li > span {
  padding-top: 5px;
  color: #787389;
  font-size: 12px;
  letter-spacing: 0.1em;
}

.condition-list h3 {
  margin: 0 0 10px;
  font-size: 23px;
  letter-spacing: -0.02em;
}

.condition-list p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.trust-section {
  padding: 0 0 132px;
  background: #070914;
}

.trust-card {
  display: grid;
  grid-template-columns: 76px 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
  padding: 50px;
  border: 1px solid transparent;
  border-radius: 30px;
  background:
    linear-gradient(#101223, #101223) padding-box,
    linear-gradient(110deg, rgba(255, 90, 95, 0.8), rgba(139, 77, 255, 0.25), rgba(71, 105, 255, 0.82)) border-box;
}

.trust-icon {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border-radius: 22px;
  font-size: 26px;
  background: linear-gradient(135deg, var(--coral), var(--violet), var(--blue));
}

.trust-card h2 {
  max-width: 560px;
  font-size: clamp(30px, 3.1vw, 45px);
}

.trust-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.faq-section {
  background: #0a0b17;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(56px, 8vw, 120px);
}

.faq-heading {
  margin: 0;
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 27px 48px 27px 0;
  cursor: pointer;
  list-style: none;
  font-size: 20px;
  font-weight: 630;
  letter-spacing: -0.015em;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 22px;
  right: 0;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "+";
  color: #aaa6ba;
  font-size: 20px;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 620px;
  margin: -6px 0 28px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.offer-section {
  position: relative;
  overflow: hidden;
  padding: 150px 0;
  text-align: center;
  background: #070914;
}

.offer-glow {
  position: absolute;
  top: 10%;
  left: 50%;
  width: 720px;
  height: 480px;
  transform: translateX(-50%);
  opacity: 0.28;
  filter: blur(90px);
  background: radial-gradient(ellipse, #7e2fd2, #263fcb 48%, transparent 70%);
}

.offer-card {
  position: relative;
  z-index: 1;
  display: flex;
  max-width: 840px;
  flex-direction: column;
  align-items: center;
}

.offer-card > img {
  width: min(310px, 70%);
  height: 46px;
  margin-bottom: 36px;
  object-fit: contain;
}

.offer-card h2 {
  max-width: 780px;
}

.offer-card > p {
  max-width: 610px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.primary-cta--center {
  margin-top: 38px;
}

.offer-card small {
  margin-top: 16px;
  color: #777486;
}

.site-footer {
  padding: 76px 0 34px;
  border-top: 1px solid var(--line);
  background: #05060c;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
}

.footer-grid > div > p {
  max-width: 430px;
  margin: 20px 0 0;
  color: #777486;
  font-size: 14px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  color: #aaa6ba;
  font-size: 13px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
}

.footer-legal {
  display: flex;
  margin-top: 62px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
  color: #666372;
  font-size: 12px;
}

.footer-legal details {
  max-width: 680px;
}

.footer-legal summary {
  cursor: pointer;
  color: #9a96a8;
}

.footer-legal details p {
  line-height: 1.7;
}

.footer-legal > p {
  margin: 0;
  white-space: nowrap;
}

.cookie-notice {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  width: min(460px, calc(100% - 40px));
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 20px;
  background: rgba(13, 15, 30, 0.95);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(20px);
}

.cookie-notice p {
  margin: 0;
  color: #c5c1cf;
  font-size: 13px;
  line-height: 1.55;
}

.cookie-notice__actions {
  display: flex;
  gap: 9px;
  margin-top: 16px;
}

.cookie-notice button {
  padding: 10px 15px;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  color: #fff;
  font: inherit;
  font-size: 12px;
  font-weight: 650;
  background: linear-gradient(100deg, var(--coral), var(--violet), var(--blue));
}

.cookie-notice .cookie-notice__secondary {
  border: 1px solid var(--line);
  background: transparent;
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes card-in {
  from { opacity: 0; filter: blur(5px); }
  to { opacity: 1; filter: blur(0); }
}

@media (max-width: 1120px) {
  .shell {
    width: min(100% - 48px, 980px);
  }

  .content-shell {
    width: min(100% - 48px, 980px);
  }

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

  .site-nav {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 52px;
  }

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

  .hero-copy h1,
  .hero-copy > p {
    max-width: 720px;
  }

  .service-mosaic {
    min-height: 640px;
  }

  .hero-scroll {
    display: none;
  }

  .trust-card {
    grid-template-columns: 68px 1fr;
  }

  .trust-card > p {
    grid-column: 2;
  }

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

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 32px, 560px);
  }

  .content-shell {
    width: min(100% - 32px, 560px);
  }

  .site-header {
    min-height: 74px;
  }

  .site-brand {
    font-size: 16px;
  }

  .site-brand__mark {
    width: 30px;
    height: 30px;
  }

  .independent-label {
    padding: 9px 11px;
    border-radius: 10px;
    font-size: 10px;
  }

  .hero-grid {
    min-height: auto;
    gap: 56px;
    padding: 60px 0 80px;
  }

  .hero-copy h1 {
    font-size: clamp(44px, 14vw, 62px);
  }

  .hero-copy > p {
    font-size: 17px;
  }

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

  .promo-option {
    min-height: 0;
  }

  .primary-cta {
    min-height: 68px;
    border-radius: 18px;
    font-size: 17px;
  }

  .service-mosaic {
    display: flex;
    min-height: auto;
    margin-inline: -16px;
    padding: 12px 16px 28px;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .service-mosaic::-webkit-scrollbar {
    display: none;
  }

  .service-card {
    width: min(78vw, 340px);
    min-width: min(78vw, 340px);
    height: 430px;
    transform: none;
    scroll-snap-align: center;
  }

  .service-card--music,
  .service-card--books,
  .service-card--plus,
  .service-card--cinema {
    transform: none;
  }

  .content-section {
    padding: 90px 0;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading h2,
  .conditions-copy h2,
  .offer-card h2 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .service-details,
  .conditions-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .detail-card {
    min-height: 330px;
    padding: 28px;
    border-radius: 24px;
  }

  .detail-card > span {
    top: 28px;
    right: 28px;
  }

  .conditions-grid,
  .faq-grid {
    gap: 50px;
  }

  .conditions-copy {
    position: static;
  }

  .trust-section {
    padding-bottom: 90px;
  }

  .trust-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px;
  }

  .trust-card > p {
    grid-column: auto;
  }

  .trust-card h2 {
    font-size: 34px;
  }

  .offer-section {
    padding: 100px 0;
  }

  .footer-grid,
  .footer-legal {
    display: flex;
    flex-direction: column;
  }

  .footer-links {
    flex-direction: column;
  }

  .footer-legal {
    margin-top: 42px;
  }

  .footer-legal > p {
    white-space: normal;
  }

  .cookie-notice {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
  }
}

@media (max-width: 430px) {
  .independent-label {
    display: none;
  }

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

  .hero-grid {
    padding-top: 44px;
  }

  .service-card__content {
    padding: 24px;
  }

  .detail-card h3 {
    margin-top: 52px;
    font-size: 26px;
  }

  .condition-list li {
    grid-template-columns: 40px 1fr;
    gap: 14px;
  }

  .cookie-notice__actions {
    flex-direction: column;
  }
}

@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;
  }
}
