:root {
  --coral: #ff6b57;
  --coral-strong: #ff5d48;
  --ink: #17223b;
  --muted: #5d6985;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-line: rgba(23, 34, 59, 0.08);
  --surface-shadow: 0 30px 70px -42px rgba(22, 34, 59, 0.28);
  --header-height: 106px;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100svh;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 14%, rgba(255, 107, 87, 0.14), transparent 28%),
    radial-gradient(circle at 86% 84%, rgba(255, 107, 87, 0.09), transparent 30%),
    linear-gradient(180deg, #fff8f4 0%, #ffffff 100%);
}

body.is-menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

.content-shell {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.intro-panel-static {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--header-height);
  background: linear-gradient(155deg, #ff7d6d 0%, #ff6b57 52%, #ff604c 100%);
  box-shadow: 0 18px 38px -28px rgba(23, 34, 59, 0.28);
}

.intro-noise,
.intro-glow {
  position: absolute;
  inset: 0;
}

.intro-noise {
  opacity: 0.08;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.9) 0.6px, transparent 0.7px),
    radial-gradient(circle at 78% 34%, rgba(255, 255, 255, 0.8) 0.7px, transparent 0.8px),
    radial-gradient(circle at 34% 76%, rgba(255, 255, 255, 0.85) 0.6px, transparent 0.7px),
    radial-gradient(circle at 65% 68%, rgba(255, 255, 255, 0.75) 0.6px, transparent 0.7px);
  background-size: 26px 26px, 32px 32px, 24px 24px, 30px 30px;
}

.intro-glow {
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.18), transparent 32%),
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.1), transparent 26%);
}

.intro-nav,
.language-switch {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  transform: translateY(-50%);
  flex-wrap: wrap;
}

.intro-nav {
  left: clamp(1rem, 2.8vw, 1.8rem);
}

.language-switch {
  right: clamp(1rem, 2.8vw, 1.8rem);
  gap: 0.85rem;
}

.intro-burger {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.34rem;
  width: 2.95rem;
  height: 2.95rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition:
    background 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    transform 0.24s ease;
}

.intro-burger:hover,
.intro-burger:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 16px 28px -22px rgba(23, 34, 59, 0.46);
  transform: translateY(-1px);
  outline: none;
}

.intro-burger-line {
  display: block;
  width: 1.1rem;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
}

.language-button {
  position: relative;
  padding: 0.2rem 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font: inherit;
  font-size: clamp(0.92rem, 1.06vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition:
    color 0.24s ease,
    transform 0.24s ease;
}

.language-button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.16rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.92);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition:
    opacity 0.24s ease,
    transform 0.24s ease;
}

.language-button:hover,
.language-button:focus-visible {
  color: #ffffff;
  transform: translateY(-1px);
  outline: none;
}

.language-button.is-active {
  color: #ffffff;
}

.language-button.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.intro-logo-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(8.8rem, 15vw, 12.4rem);
  transform: translate(-50%, -50%);
}

.intro-logo {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 16px 24px rgba(255, 107, 87, 0.18));
}

.site-drawer {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: flex;
  justify-content: flex-start;
  background: rgba(23, 34, 59, 0.24);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.site-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.site-drawer-surface {
  width: min(24rem, 88vw);
  height: 100%;
  padding: 1.35rem 1.1rem 1.2rem;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 30%),
    linear-gradient(155deg, #ff7d6d 0%, #ff6b57 52%, #ff604c 100%);
  box-shadow: 0 26px 54px -28px rgba(23, 34, 59, 0.42);
  transform: translateX(-1.5rem);
  transition: transform 0.24s ease;
}

.site-drawer.is-open .site-drawer-surface {
  transform: translateX(0);
}

.site-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-drawer-kicker {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-drawer-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.7rem;
  height: 2.7rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition:
    background 0.24s ease,
    border-color 0.24s ease,
    transform 0.24s ease;
}

.site-drawer-close:hover,
.site-drawer-close:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.36);
  transform: translateY(-1px);
  outline: none;
}

.site-drawer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  margin-top: 2rem;
}

.site-drawer-link {
  display: inline-flex;
  align-items: center;
  min-height: 3rem;
  padding: 0.2rem 0;
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
  transition:
    color 0.24s ease,
    transform 0.24s ease;
}

.site-drawer-link:hover,
.site-drawer-link:focus-visible,
.site-drawer-link.is-active,
.site-drawer-link[aria-current="page"] {
  color: #ffffff;
  transform: translateX(4px);
  outline: none;
}

.content-main,
.not-found-shell {
  width: min(100%, 76rem);
  margin: 0 auto;
  padding: 2rem 1.3rem 4rem;
}

.content-main {
  flex: 1 0 auto;
}

.site-footer {
  width: min(100%, 76rem);
  margin: 0 auto;
  padding: 0 1.3rem 1.6rem;
  color: rgba(23, 34, 59, 0.44);
  text-align: center;
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(23, 34, 59, 0.08);
}

.site-footer__links,
.site-footer__contacts {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
}

.site-footer__link,
.site-footer__contact {
  color: inherit;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.01em;
  transition: color 0.22s ease, opacity 0.22s ease;
}

.site-footer__link:hover,
.site-footer__link:focus-visible,
.site-footer__contact:hover,
.site-footer__contact:focus-visible {
  color: var(--coral-strong);
  outline: none;
}

.site-footer__link.is-active {
  color: var(--coral-strong);
}

.site-footer small {
  display: block;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.content-main-lightweight {
  padding-top: clamp(2rem, 5vw, 3.6rem);
  padding-bottom: clamp(3.5rem, 8vw, 5rem);
}

.page-hero {
  margin-top: 1rem;
  padding: clamp(1.8rem, 4vw, 2.5rem);
  border-radius: 2rem;
  background: linear-gradient(155deg, #ff7d6d 0%, #ff6b57 52%, #ff604c 100%);
  color: #fff;
  box-shadow: 0 28px 56px -38px rgba(23, 34, 59, 0.35);
}

.page-eyebrow {
  margin: 0 0 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-hero h1,
.not-found-shell h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.page-lead,
.not-found-shell p {
  width: min(100%, 44rem);
  margin: 1rem 0 0;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.4rem;
  color: rgba(23, 34, 59, 0.56);
  font-size: 0.94rem;
}

.breadcrumb a {
  text-decoration: none;
}

.breadcrumb-lightweight {
  display: flex;
  justify-content: center;
  margin-top: 0;
  margin-bottom: 0.9rem;
}

.page-hero-lightweight {
  margin-top: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  box-shadow: none;
  text-align: center;
}

.page-eyebrow-lightweight {
  color: var(--coral);
}

.page-hero-lightweight .page-eyebrow {
  margin-bottom: 0.9rem;
}

.page-hero-lightweight h1 {
  width: min(100%, 48rem);
  margin: 0 auto;
  color: var(--ink);
}

.page-hero-lightweight .page-lead {
  margin: 1rem auto 0;
  color: rgba(23, 34, 59, 0.7);
}

.content-section-grid,
.faq-grid,
.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
  margin-top: 1.6rem;
}

.content-card,
.contact-card,
.content-cta,
.not-found-shell {
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 1.7rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--surface-shadow);
}

.content-card {
  padding: 1.35rem 1.35rem 1.45rem;
}

.content-card h2,
.content-cta h2,
.contact-card__value {
  margin: 0;
  color: var(--ink);
}

.content-card h2,
.content-cta h2 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.content-card p,
.content-cta p,
.contact-card__secondary {
  margin: 0.8rem 0 0;
  color: rgba(23, 34, 59, 0.75);
  font-size: 1rem;
  line-height: 1.72;
}

.content-list {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: rgba(23, 34, 59, 0.82);
}

.content-list li + li {
  margin-top: 0.55rem;
}

.content-section-grid-lightweight {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.8rem, 3vw, 2.6rem);
  margin-top: clamp(2.4rem, 5vw, 3.5rem);
}

.content-section-grid-lightweight-2up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.content-feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.95rem;
  padding: 0.25rem 0;
}

.content-feature__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.35rem;
  height: 3.35rem;
  color: var(--coral);
  isolation: isolate;
}

.content-feature__icon::before {
  content: "";
  position: absolute;
  top: 0.42rem;
  left: -0.18rem;
  z-index: -1;
  width: 2.55rem;
  height: 2.35rem;
  background: rgba(255, 107, 87, 0.15);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  filter: blur(12px);
  transform: rotate(-12deg);
  pointer-events: none;
}

.content-feature__icon svg {
  width: 2.75rem;
  height: 2.75rem;
}

.content-feature h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.16rem, 1.7vw, 1.4rem);
  line-height: 1.22;
  letter-spacing: -0.03em;
}

.content-feature p {
  margin: 0;
  color: rgba(23, 34, 59, 0.74);
  font-size: 1rem;
  line-height: 1.72;
}

.content-list-lightweight {
  margin: 0.1rem 0 0;
  padding: 0;
  list-style: none;
  color: rgba(23, 34, 59, 0.84);
}

.content-list-lightweight li {
  position: relative;
  padding-left: 1.1rem;
  line-height: 1.72;
}

.content-list-lightweight li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.82rem;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: var(--coral);
  transform: translateY(-50%);
}

.content-list-lightweight li + li {
  margin-top: 0.7rem;
}

.faq-accordion {
  width: min(100%, 52rem);
  margin: clamp(2.6rem, 6vw, 4rem) auto 0;
}

.faq-item {
  border-bottom: 1px solid rgba(23, 34, 59, 0.1);
  transition: border-color 0.24s ease;
}

.faq-item:first-child {
  border-top: 1px solid rgba(23, 34, 59, 0.1);
}

.faq-item.is-open {
  border-color: rgba(255, 107, 87, 0.26);
}

.faq-item__heading {
  margin: 0;
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.faq-item__trigger:hover,
.faq-item__trigger:focus-visible {
  color: var(--coral-strong);
  outline: none;
}

.faq-item__question {
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.faq-item__indicator {
  position: relative;
  flex: 0 0 auto;
  width: 1.15rem;
  height: 1.15rem;
  color: var(--coral);
}

.faq-item__indicator::before,
.faq-item__indicator::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.faq-item__indicator::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-item__indicator::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0.2);
}

.faq-item__panel {
  padding: 0 0 1.2rem;
}

.faq-item__panel p {
  width: min(100%, 44rem);
  margin: 0;
  color: rgba(23, 34, 59, 0.74);
  font-size: 1rem;
  line-height: 1.72;
}

.contact-facts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem clamp(1.4rem, 2vw, 2rem);
  margin-top: clamp(2.4rem, 5vw, 3.5rem);
}

.contact-fact {
  display: flex;
  align-items: flex-start;
  gap: 0.95rem;
  padding: 0.4rem 0;
}

.contact-fact__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 2.65rem;
  height: 2.65rem;
  color: var(--coral);
  isolation: isolate;
}

.contact-fact__icon::before {
  content: "";
  position: absolute;
  top: 0.35rem;
  left: -0.12rem;
  z-index: -1;
  width: 1.95rem;
  height: 1.8rem;
  background: rgba(255, 107, 87, 0.14);
  border-radius: 42% 58% 63% 37% / 36% 48% 52% 64%;
  filter: blur(10px);
  transform: rotate(-10deg);
}

.contact-fact__icon svg {
  width: 2rem;
  height: 2rem;
}

.contact-fact__body {
  min-width: 0;
}

.contact-fact__label {
  display: inline-block;
  color: rgba(23, 34, 59, 0.5);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-fact__value {
  display: block;
  margin-top: 0.35rem;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.32;
  letter-spacing: -0.02em;
}

.contact-fact__secondary {
  margin: 0.45rem 0 0;
  color: rgba(23, 34, 59, 0.68);
  font-size: 0.96rem;
  line-height: 1.65;
}

.contact-fact__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6rem;
  margin-top: 0.9rem;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(23, 34, 59, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  color: var(--ink);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    color 0.24s ease,
    box-shadow 0.24s ease;
}

.contact-fact__link:hover,
.contact-fact__link:focus-visible {
  border-color: rgba(255, 107, 87, 0.18);
  color: var(--coral-strong);
  transform: translateY(-2px);
  box-shadow: 0 18px 30px -26px rgba(23, 34, 59, 0.18);
  outline: none;
}

.faq-card {
  min-height: 100%;
}

.contact-card {
  padding: 1.25rem 1.25rem 1.35rem;
}

.contact-card__label {
  display: inline-block;
  color: rgba(23, 34, 59, 0.52);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card__value {
  display: block;
  margin-top: 0.55rem;
  font-size: 1.25rem;
  line-height: 1.22;
  letter-spacing: -0.03em;
}

.contact-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  margin-top: 1rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 107, 87, 0.12);
  color: var(--ink);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
}

.compliance-main {
  width: min(100%, 76rem);
}

.compliance-hero .page-lead {
  width: min(100%, 42rem);
}

.compliance-document {
  width: min(100%, 48rem);
  margin: clamp(2.2rem, 5vw, 3.2rem) auto 0;
  color: rgba(23, 34, 59, 0.82);
}

.compliance-document h1,
.compliance-document h2,
.compliance-document h3 {
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.03em;
}

.compliance-document h1 + p,
.compliance-document h2 + p,
.compliance-document h3 + p {
  margin-top: 0.8rem;
}

.compliance-document h2 {
  margin-top: 2rem;
  font-size: clamp(1.28rem, 2vw, 1.58rem);
  line-height: 1.2;
}

.compliance-document h3 {
  margin-top: 1.3rem;
  font-size: 1.02rem;
  line-height: 1.35;
}

.compliance-document p,
.compliance-document li {
  font-size: 1rem;
  line-height: 1.74;
}

.compliance-document p,
.compliance-document ul,
.compliance-document ol {
  margin: 0.9rem 0 0;
}

.compliance-document ul,
.compliance-document ol {
  padding-left: 1.2rem;
}

.compliance-document a {
  color: var(--coral-strong);
  text-decoration-thickness: 0.08em;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(2.2rem, 5vw, 3.2rem);
}

.legal-card {
  padding: 1.2rem 1.2rem 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--surface-shadow);
}

.legal-card__label {
  display: inline-block;
  color: rgba(23, 34, 59, 0.5);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-card__value {
  display: block;
  margin-top: 0.5rem;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.legal-card__note {
  margin: 0.55rem 0 0;
  color: rgba(23, 34, 59, 0.68);
  font-size: 0.95rem;
  line-height: 1.6;
}

.legal-contact-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.legal-contact-list__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(23, 34, 59, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    color 0.24s ease,
    box-shadow 0.24s ease;
}

.legal-contact-list__item:hover,
.legal-contact-list__item:focus-visible {
  border-color: rgba(255, 107, 87, 0.18);
  color: var(--coral-strong);
  transform: translateY(-2px);
  box-shadow: 0 18px 30px -26px rgba(23, 34, 59, 0.18);
  outline: none;
}

.content-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 1.8rem;
  padding: 1.45rem 1.45rem 1.55rem;
}

.content-cta .page-eyebrow {
  margin-bottom: 0.5rem;
  color: rgba(23, 34, 59, 0.5);
}

.content-cta p {
  width: min(100%, 38rem);
  margin-top: 0.7rem;
}

.content-cta__actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.content-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  background: rgba(23, 34, 59, 0.06);
  color: var(--ink);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  transition:
    transform 0.24s ease,
    background 0.24s ease,
    color 0.24s ease,
    box-shadow 0.24s ease;
}

.content-social-link:hover,
.content-social-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px -24px rgba(23, 34, 59, 0.18);
  outline: none;
}

.content-social-link.instagram:hover,
.content-social-link.instagram:focus-visible {
  background: rgba(216, 79, 121, 0.1);
  color: #d84f79;
}

.content-social-link.telegram:hover,
.content-social-link.telegram:focus-visible {
  background: rgba(34, 158, 217, 0.1);
  color: #229ed9;
}

.content-cta-lightweight {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.35rem;
  margin-top: clamp(3rem, 7vw, 4.8rem);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.content-cta-lightweight .content-cta__copy {
  width: min(100%, 40rem);
}

.content-cta-lightweight .page-eyebrow {
  margin-bottom: 0.5rem;
}

.content-cta-lightweight h2 {
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.content-cta-lightweight p {
  margin: 0.75rem auto 0;
  color: rgba(23, 34, 59, 0.72);
}

.content-cta-lightweight .content-cta__actions {
  width: 100%;
  justify-content: center;
}

.content-cta-lightweight .content-social-link {
  min-height: 3.15rem;
  width: max-content;
  padding: 0.9rem 1.2rem;
  border: 1px solid rgba(23, 34, 59, 0.1);
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 18px 34px -30px rgba(23, 34, 59, 0.18);
}

.not-found-shell {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  margin-top: 8svh;
  padding: 2rem;
}

.not-found-logo {
  width: min(16rem, 48vw);
  margin-bottom: 1rem;
}

@media (max-width: 920px) {
  .content-cta:not(.content-cta-lightweight) {
    flex-direction: column;
    align-items: flex-start;
  }

  .content-section-grid:not(.content-section-grid-lightweight),
  .faq-grid,
  .contact-card-grid {
    grid-template-columns: 1fr;
  }

  .content-section-grid-lightweight {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .content-section-grid-lightweight-2up,
  .contact-facts-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 100px;
  }

  .content-main,
  .not-found-shell {
    padding-inline: 0.9rem;
  }

  .site-footer__links,
  .site-footer__contacts {
    gap: 0.28rem 0.75rem;
  }

  .site-footer__link,
  .site-footer__contact {
    font-size: 0.73rem;
  }

  .page-hero,
  .content-card,
  .contact-card,
  .content-cta:not(.content-cta-lightweight),
  .not-found-shell {
    border-radius: 1.35rem;
  }

  .intro-nav {
    left: 1rem;
  }

  .language-switch {
    right: 1rem;
    gap: 0.7rem;
  }

  .intro-burger {
    width: 2.75rem;
    height: 2.75rem;
  }

  .language-button {
    font-size: 0.86rem;
    letter-spacing: 0.09em;
  }

  .intro-logo-wrap {
    width: clamp(7.8rem, 28vw, 10.2rem);
  }

  .content-cta:not(.content-cta-lightweight) .content-cta__actions {
    width: 100%;
  }

  .content-cta:not(.content-cta-lightweight) .content-social-link {
    width: 100%;
  }

  .content-main-lightweight {
    padding-top: 1.8rem;
  }

  .breadcrumb-lightweight {
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
  }

  .page-hero-lightweight h1 {
    width: min(100%, 22rem);
  }

  .content-feature {
    gap: 0.8rem;
  }

  .faq-accordion {
    margin-top: 2.25rem;
  }

  .faq-item__trigger {
    padding: 1rem 0;
  }

  .faq-item__question {
    font-size: 1rem;
  }

  .contact-facts-grid {
    margin-top: 2rem;
  }

  .compliance-document {
    margin-top: 2rem;
  }

  .legal-contact-list {
    flex-direction: column;
  }

  .legal-contact-list__item {
    width: min(100%, 18rem);
  }

  .content-cta-lightweight .content-cta__actions {
    flex-direction: column;
    align-items: center;
  }

  .content-cta-lightweight .content-social-link {
    width: min(100%, 18rem);
  }
}
