@charset "UTF-8";
/** 
 ФАЙЛ НОРМАЛИЗАЦИИ CSS-СТИЛЕЙ (CSS reset/normalize) — 
 ЕГО ПОДКЛЮЧАЮТ В НАЧАЛЕ КАЖДОГО ПРОЕКТА, ЧТОБЫ 
 УБРАТЬ РАЗЛИЧИЯ В СТИЛЯХ ПО УМОЛЧАНИЮ МЕЖДУ РАЗЛИЧНЫМИ БРАУЗЕРАМИ И
 СОЗДАТЬ ПРЕДСКАЗУЕМУЮ БАЗУ ДЛЯ ВЁРСТКИ.
*/
/**
    Нормализация блочной модели
 */
*,
::before,
::after {
  box-sizing: border-box;
}

/**
  Убираем внутренние отступы слева тегам списков,
  у которых есть атрибут class
 */
:where(ul, ol):where([class]) {
  padding-left: 0;
}

/**
  Убираем внешние отступы body и двум другим тегам,
  у которых есть атрибут class
 */
body,
:where(blockquote, figure):where([class]) {
  margin: 0;
}

/**
  Убираем внешние отступы вертикали нужным тегам,
  у которых есть атрибут class
 */
:where(h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl):where([class]) {
  margin-block: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  margin-left: 0;
  padding: 0;
  border: none;
}

/**
  Убираем стандартный маркер маркированному списку,
  у которого есть атрибут class
 */
:where(ul[class]) {
  list-style: none;
}

:where(address[class]) {
  font-style: normal;
}

/**
  Обнуляем вертикальные внешние отступы параграфа,
  объявляем локальную переменную для внешнего отступа вниз,
  чтобы избежать взаимодействие с более сложным селектором
 */
p {
  --paragraphMarginBottom: 24px;
  margin-block: 0;
}

/**
  Внешний отступ вниз для параграфа без атрибута class,
  который расположен не последним среди своих соседних элементов
 */
p:where(:not([class]):not(:last-child)) {
  margin-bottom: var(--paragraphMarginBottom);
}

/**
  Упрощаем работу с изображениями и видео
 */
img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

/**
  Наследуем свойства шрифт для полей ввода
 */
input,
textarea,
select,
button {
  font: inherit;
}

html {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  height: 100%;
  /**
    Убираем скачок интерфейса по горизонтали
    при появлении / исчезновении скроллбара
   */
  scrollbar-gutter: stable;
}

/**
  Плавный скролл
 */
html,
:has(:target) {
  scroll-behavior: smooth;
}

body {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  min-height: 100%;
  /**
    Унифицированный интерлиньяж
   */
  line-height: 1.5;
}

/**
  Нормализация высоты элемента ссылки при его инспектировании в DevTools
 */
a:where([class]) {
  display: inline-flex;
}

/**
  Курсор-рука при наведении на элемент
 */
button,
label {
  cursor: pointer;
}

/**
  Приводим к единому цвету svg-элементы
 */
[fill] {
  fill: currentColor;
}

[stroke] {
  stroke: currentColor;
}

/**
  Чиним баг задержки смены цвета при взаимодействии с svg-элементами
 */
svg * {
  transition-property: fill, stroke;
}

/**
  Удаляем все анимации и переходы для людей,
  которые предпочитают их не использовать
 */
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/CormorantGaramond-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/CormorantGaramond-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/CormorantGaramond-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/CormorantGaramond-Italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
:root {
  --bg: #ffffff;
  --surface: #f4f7fd;
  --surface-2: #e8eef8;
  --text: #0f1e35;
  --muted: #4a5a75;
  --accent: #2d7dd2;
  --accent-light: #5fa3e8;
  --accent-soft: rgba(45, 125, 210, 0.12);
  --border: rgba(0, 0, 0, 0.07);
  --border-light: rgba(0, 0, 0, 0.12);
  --color-light: #5fa3e8;
  --color-powdery: #f4f7fd;
  --transition-duration: 0.55s;
  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 42px;
  --container-width: 1440px;
  --container-padding-x: 20px;
  --font-family-base: 'Cormorant Garamond', serif;
  --shadow-blue: 0 0 60px rgba(45, 125, 210, 0.14);
  --transition: 0.55s cubic-bezier(.16, 1, .3, 1);
}

.container {
  max-width: calc(var(--container-width) + var(--container-padding-x) * 2);
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
}

@media (width <= 47.99875rem) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (width > 47.99875rem) {
  .visible-mobile {
    display: none !important;
  }
}

html {
  height: 100%;
  scrollbar-gutter: stable;
}

html,
:has(:target) {
  scroll-behavior: smooth;
}

body {
  font-size: clamp(1.25rem, 1.0336538462rem + 0.9615384615vw, 1.875rem);
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  font-family: var(--font-family-base);
  color: var(--text);
  background-color: #ffffff;
  background-image: radial-gradient(ellipse 100% 40% at 20% 10%, rgba(45, 125, 210, 0.18) 0%, transparent 70%), radial-gradient(ellipse 80% 40% at 80% 35%, rgba(94, 163, 232, 0.12) 0%, transparent 65%), radial-gradient(ellipse 100% 40% at 10% 60%, rgba(45, 125, 210, 0.1) 0%, transparent 70%), radial-gradient(ellipse 80% 40% at 90% 80%, rgba(94, 163, 232, 0.12) 0%, transparent 65%);
  background-attachment: fixed;
  overflow-x: hidden;
}

a {
  transition: color 0.4s ease;
}

button {
  transition: background-color 0.4s ease, color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

img {
  transition: transform 0.4s ease, filter 0.4s ease;
  will-change: transform;
}

svg {
  transition: transform 0.4s ease, color 0.4s ease;
}

input,
textarea,
select {
  transition: border-color 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease;
}

main {
  flex-grow: 1;
}

h1,
.h1 {
  font-size: clamp(1.875rem, 1.0096153846rem + 3.8461538462vw, 4.375rem);
  font-weight: 600;
  line-height: 1.2;
}

h2,
.h2 {
  font-size: clamp(1.75rem, 1.1009615385rem + 2.8846153846vw, 3.625rem);
  font-weight: 600;
  line-height: 1.3;
}

h3,
.h3 {
  font-size: clamp(1.5rem, 1.1538461538rem + 1.5384615385vw, 2.5rem);
  font-weight: 400;
}

h4,
.h4 {
  font-size: clamp(1.125rem, 0.9519230769rem + 0.7692307692vw, 1.625rem);
  font-weight: 400;
}

a {
  color: inherit;
  text-decoration: none;
}
@media (any-hover: hover) {
  a:hover {
    color: var(--color-light);
  }
}
@media (any-hover: none) {
  a:active {
    color: var(--color-light);
  }
}
a[class] {
  text-decoration: none;
}

a[aria-label]:not(.burger):not(.case-item__prev):not(.case-item__next),
button[aria-label]:not(.burger):not(.case-item__prev):not(.case-item__next) {
  position: relative;
}
a[aria-label]:not(.burger):not(.case-item__prev):not(.case-item__next)::before,
button[aria-label]:not(.burger):not(.case-item__prev):not(.case-item__next)::before {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 2.75rem;
  height: 2.75rem;
  content: "";
}

button,
label {
  cursor: pointer;
}

:focus-visible {
  outline: 0.1875rem solid var(--accent);
  outline-offset: 0.125rem;
  box-shadow: 0 0 0 0.25rem rgba(45, 125, 210, 0.2);
  transition-duration: 0s !important;
}

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

[fill] {
  fill: currentColor;
}

[stroke] {
  stroke: currentColor;
}

svg * {
  transition-property: fill, stroke;
  transition-duration: 0.4s;
  transition-timing-function: ease;
}

input,
textarea,
select,
button {
  font: inherit;
}

* {
  cursor: none !important;
}
@media (width <= 63.99875rem) {
  * {
    cursor: auto !important;
  }
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 0.75rem;
  height: 0.75rem;
  background-color: var(--accent-light);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  opacity: 1;
  transition: width 0.3s ease, height 0.3s ease, opacity 0.2s ease;
}

.cursor--hover {
  width: 1.25rem;
  height: 1.25rem;
  opacity: 0.4;
}

.container {
  max-width: calc(var(--container-width) + var(--container-padding-x) * 2);
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
}

@media (width <= 47.99875rem) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (width > 47.99875rem) {
  .visible-mobile {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--bg);
}

.header__inner {
  max-width: calc(var(--container-width) + var(--container-padding-x) * 2);
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  height: 5rem;
}
.header__inner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0.0625rem;
  background-color: var(--border);
}

.header__logo {
  flex-shrink: 0;
  margin-right: auto;
}
@media (any-hover: hover) {
  .header__logo:hover {
    opacity: 0.8;
  }
}
@media (any-hover: none) {
  .header__logo:active {
    opacity: 0.8;
  }
}

.header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
@media (width <= 63.99875rem) {
  .header__nav {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    inset: 4.5rem 0 0 0;
    background-color: var(--bg);
    padding: 1.5rem 1.25rem;
    transition: opacity var(--transition), visibility var(--transition);
  }
  .header__nav.is-open {
    opacity: 1;
    visibility: visible;
  }
}

.header__btn {
  flex-shrink: 0;
  margin-left: auto;
}
@media (width <= 47.99875rem) {
  .header__btn {
    display: none;
  }
}

.header__nav-list {
  display: flex;
  align-items: center;
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
}
@media (width <= 63.99875rem) {
  .header__nav-list {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 0;
  }
}

.header__nav-link {
  position: relative;
  font-size: 1.5625rem;
  font-weight: 400;
  color: var(--muted);
  text-decoration: none;
  padding-bottom: 1.375rem;
  transition: color var(--transition);
}
.header__nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.125rem;
  background-color: var(--accent);
  border-radius: 0.125rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.header__nav-link.is-active {
  color: var(--text);
}
@media (any-hover: hover) {
  .header__nav-link:hover {
    color: var(--text);
  }
}
@media (any-hover: none) {
  .header__nav-link:active {
    color: var(--text);
  }
}
.header__nav-link.is-active::after {
  opacity: 1;
}
@media (width <= 63.99875rem) {
  .header__nav-link {
    display: block;
    width: 100%;
    font-size: 1.125rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
  }
  .header__nav-link::after {
    display: none;
  }
}

.header__btn {
  flex-shrink: 0;
}
@media (width <= 47.99875rem) {
  .header__btn {
    display: none;
  }
}

.burger {
  display: none;
}
@media (width <= 63.99875rem) {
  .burger {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    flex-direction: column;
    row-gap: 0.3125rem;
    flex-shrink: 0;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: background-color var(--transition), border-color var(--transition);
  }
  .burger span {
    display: block;
    height: 0.09375rem;
    background-color: var(--text);
    border-radius: 0.125rem;
    transition: width var(--transition), background-color var(--transition);
  }
  .burger span:nth-child(1) {
    width: 1.125rem;
  }
  .burger span:nth-child(2) {
    width: 0.75rem;
  }
  .burger span:nth-child(3) {
    width: 1.125rem;
  }
}
@media (width <= 63.99875rem) and (any-hover: hover) {
  .burger:hover {
    background-color: var(--accent);
    border-color: var(--accent);
  }
  .burger:hover span {
    background-color: #fff;
  }
  .burger:hover span:nth-child(2) {
    width: 1.125rem;
  }
}
@media (width <= 63.99875rem) and (any-hover: none) {
  .burger:active {
    background-color: var(--accent);
    border-color: var(--accent);
  }
  .burger:active span {
    background-color: #fff;
  }
  .burger:active span:nth-child(2) {
    width: 1.125rem;
  }
}
@media (width <= 63.99875rem) {
  .burger[aria-expanded=true] {
    background-color: var(--accent);
    border-color: var(--accent);
  }
  .burger[aria-expanded=true] span {
    background-color: #fff;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background-color: var(--accent);
  color: #fff;
  border-radius: 100px;
  font-size: 1.25rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background-color var(--transition);
}
@media (any-hover: hover) {
  .btn:hover {
    background-color: var(--accent);
    color: #fff;
    box-shadow: 0 0 24px rgb(95, 163, 232);
    transform: translateY(-2px);
  }
}
@media (any-hover: none) {
  .btn:active {
    background-color: var(--accent);
    color: #fff;
    box-shadow: 0 0 24px rgb(95, 163, 232);
    transform: translateY(-2px);
  }
}
@media (width <= 63.99875rem) {
  .btn {
    padding: 0.625rem 1.125rem;
    font-size: 0.9375rem;
  }
}
@media (width <= 47.99875rem) {
  .btn {
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
  }
}

.btn__arrow {
  width: 1.625rem;
  height: 1.625rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8125rem;
}
@media (width <= 63.99875rem) {
  .btn__arrow {
    width: 1.375rem;
    height: 1.375rem;
    font-size: 0.6875rem;
  }
}

.hero {
  padding-block: 5rem 2.5rem;
}
@media (width <= 63.99875rem) {
  .hero {
    padding-block: 3.75rem 2rem;
  }
}
@media (width <= 47.99875rem) {
  .hero {
    padding-block: 1.5rem 1rem;
  }
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2.5rem;
  position: relative;
}
@media (width <= 63.99875rem) {
  .hero__inner {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}
@media (width <= 63.99875rem) {
  .hero__content {
    align-items: center;
    order: 1;
  }
}

.hero__label {
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
@media (width <= 63.99875rem) {
  .hero__label {
    text-align: center;
  }
}

.hero__title {
  font-size: clamp(2.25rem, 1.6442307692rem + 2.6923076923vw, 4rem);
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--text);
  transition: color var(--transition);
  cursor: default;
}
@media (any-hover: hover) {
  .hero__title:hover {
    color: var(--accent);
    font-weight: 700;
  }
}
@media (any-hover: none) {
  .hero__title:active {
    color: var(--accent);
    font-weight: 700;
  }
}
@media (width <= 63.99875rem) {
  .hero__title {
    text-align: center;
  }
}

.hero__desc {
  font-size: 1.125rem;
  color: var(--muted);
  line-height: 1.6;
}
@media (width <= 63.99875rem) {
  .hero__desc {
    display: none;
  }
}

.hero__more {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--border-light);
  border-radius: 100px;
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  transition: background-color var(--transition), border-color var(--transition);
}
@media (any-hover: hover) {
  .hero__more:hover {
    background-color: rgba(255, 255, 255, 0.9);
    border-color: var(--accent);
  }
}
@media (any-hover: none) {
  .hero__more:active {
    background-color: rgba(255, 255, 255, 0.9);
    border-color: var(--accent);
  }
}
@media (width <= 63.99875rem) {
  .hero__more {
    display: none;
  }
}

.hero__more-icon {
  font-size: 0.875rem;
  color: var(--accent-light);
}

.hero__image {
  aspect-ratio: 4/5;
  max-height: 47.5rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  align-self: start;
  width: 100%;
}
.hero__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 20%;
     object-position: center 20%;
}
@media (width <= 63.99875rem) {
  .hero__image {
    aspect-ratio: 3/4;
    max-height: 58.75rem;
    max-width: 28.75rem;
    width: 100%;
    margin-inline: auto;
    order: 2;
  }
}
@media (width <= 47.99875rem) {
  .hero__image {
    aspect-ratio: 1/1.2;
    max-height: 22.5rem;
    max-width: 17.5rem;
    width: 100%;
    margin-inline: auto;
    order: 2;
  }
}

.hero__cards {
  max-width: calc(var(--container-width) + var(--container-padding-x) * 2);
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-left: auto;
  width: 55%;
  margin-top: -5rem;
  position: relative;
  z-index: 2;
}
@media (width <= 63.99875rem) {
  .hero__cards {
    width: 100%;
    margin-top: 1.5rem;
  }
}
@media (width <= 63.99875rem) {
  .hero__cards {
    display: none;
  }
}

.hero__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.75rem 1.5rem;
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-align: center;
  transition: background-color var(--transition), box-shadow var(--transition);
}
@media (any-hover: hover) {
  .hero__card:hover {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-blue);
  }
}
@media (any-hover: none) {
  .hero__card:active {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-blue);
  }
}
@media (width <= 90.06125rem) {
  .hero__card {
    padding: 1.125rem 1rem;
    gap: 0.5rem;
  }
}
@media (width <= 47.99875rem) {
  .hero__card {
    padding: 0.875rem 0.5rem;
    gap: 0.375rem;
    border-radius: 0.75rem;
  }
}
@media (width <= 30.06125rem) {
  .hero__card {
    padding: 0.5rem 0.25rem;
    gap: 0.1875rem;
    border-radius: 0.5rem;
  }
}

.hero__card-icon {
  font-size: 1.5rem;
  color: var(--accent);
  line-height: 1;
}
@media (width <= 47.99875rem) {
  .hero__card-icon {
    font-size: 1.125rem;
  }
}
@media (width <= 30.06125rem) {
  .hero__card-icon {
    font-size: 0.75rem;
  }
  .hero__card-icon svg {
    width: 12px;
    height: 12px;
  }
}

.hero__card-text {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.4;
}
@media (width <= 47.99875rem) {
  .hero__card-text {
    font-size: 0.6875rem;
  }
}
@media (width <= 30.06125rem) {
  .hero__card-text {
    font-size: 0.5rem;
  }
}

.why {
  padding-block: 3.75rem;
  background: transparent;
}
@media (width <= 63.99875rem) {
  .why {
    padding-block: 1.125rem;
  }
}
@media (width <= 47.99875rem) {
  .why {
    padding-block: 0.75rem;
  }
}

.why__top {
  margin-bottom: 0.625rem;
}

.why__title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  text-align: center;
  color: var(--text);
  margin-bottom: 1.875rem;
}
@media (width <= 63.99875rem) {
  .why__title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
  }
}
@media (width <= 47.99875rem) {
  .why__title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
  }
}

.why__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
@media (width <= 63.99875rem) {
  .why__items {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }
}
@media (width <= 47.99875rem) {
  .why__items {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 0.625rem;
    padding: 0.625rem 0.5rem;
    gap: 0.375rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    width: 100%;
    max-width: none;
  }
}
@media (width <= 30.06125rem) {
  .why__items {
    grid-template-columns: 1fr;
    max-width: 21.875rem;
    margin-inline: auto;
  }
}

.why__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.125rem 0.875rem;
  gap: 0.5rem;
  text-align: center;
}
.why__item:not(:last-child) {
  border-right: 1px solid var(--border);
}
@media (width <= 63.99875rem) {
  .why__item:not(:last-child) {
    border: none;
  }
}
@media (width <= 47.99875rem) {
  .why__item:not(:last-child) {
    border: none;
  }
}
@media (width <= 63.99875rem) {
  .why__item {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 1.25rem;
    padding: 1.25rem 1rem;
    max-width: 32.5rem;
    width: 100%;
    margin-inline: auto;
    align-items: center;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    gap: 0.75rem;
  }
}
@media (width <= 47.99875rem) {
  .why__item {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 0.75rem;
    padding: 0.875rem 0.75rem;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    width: 100%;
    max-width: 17.5rem;
  }
}
@media (width <= 30.06125rem) {
  .why__item {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 0.75rem;
    padding: 0.875rem 0.75rem;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    width: 100%;
    max-width: 17.5rem;
  }
}

.why__icon {
  flex-shrink: 0;
  color: var(--accent);
}
@media (width <= 63.99875rem) {
  .why__icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
    border-radius: 50%;
    background: rgba(61, 132, 255, 0.08);
    padding: 0.875rem;
  }
}
@media (width <= 47.99875rem) {
  .why__icon {
    width: 2rem;
    height: 2rem;
    padding: 0.5rem;
  }
}

.why__item-title {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text);
}
@media (width <= 63.99875rem) {
  .why__item-title {
    font-size: 1.0625rem;
    line-height: 1.3;
  }
}
@media (width <= 47.99875rem) {
  .why__item-title {
    font-size: 0.8125rem;
    line-height: 1.2;
  }
}

.why__item-desc {
  font-size: 0.9375rem;
  color: var(--muted);
}
@media (width <= 63.99875rem) {
  .why__item-desc {
    font-size: 0.875rem;
    line-height: 1.5;
  }
}
@media (width <= 47.99875rem) {
  .why__item-desc {
    font-size: 0.6875rem;
    line-height: 1.3;
  }
}

.about-hero {
  padding-block: 5rem 3.75rem;
  position: relative;
  overflow: hidden;
}
@media (width <= 63.99875rem) {
  .about-hero {
    padding-block: 3rem 2rem;
  }
}
@media (width <= 47.99875rem) {
  .about-hero {
    padding-block: 2rem 1.5rem;
  }
}

.about-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  position: relative;
  z-index: 1;
  align-items: start;
  gap: 4rem;
}
@media (width <= 63.99875rem) {
  .about-hero__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    justify-items: center;
  }
}

.about-hero__decor-img {
  position: absolute;
  top: -2.5rem;
  right: -2.5rem;
  width: 35.625rem;
  height: auto;
  opacity: 0.5;
  pointer-events: none;
  z-index: 2;
}
@media (width <= 63.99875rem) {
  .about-hero__decor-img {
    width: 31.25rem;
    right: -3.75rem;
    top: -1.25rem;
    opacity: 0.4;
  }
}
@media (width <= 47.99875rem) {
  .about-hero__decor-img {
    display: none;
  }
}

.about-hero__image-wrap {
  position: relative;
  max-width: 34.375rem;
  border-radius: var(--radius-md);
  overflow: visible;
}
@media (width <= 63.99875rem) {
  .about-hero__image-wrap {
    height: 31.25rem;
    width: 100%;
  }
}
@media (width <= 47.99875rem) {
  .about-hero__image-wrap {
    height: 25rem;
    width: 100%;
  }
}
@media (width <= 30.06125rem) {
  .about-hero__image-wrap {
    height: 25rem;
    width: 100%;
  }
}

.about-hero__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 60%;
     object-position: center 60%;
  border-radius: var(--radius-md);
  display: block;
}

.about-hero__badge {
  position: absolute;
  bottom: 1.5rem;
  left: -1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.625rem 0.875rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.125rem;
  box-shadow: var(--shadow-blue);
}
@media (width <= 90.06125rem) {
  .about-hero__badge {
    bottom: 1rem;
    left: 0.5rem;
    padding: 0.375rem 0.5625rem;
  }
}
@media (width <= 63.99875rem) {
  .about-hero__badge {
    bottom: 1rem;
    left: 0.5rem;
    padding: 0.375rem 0.5625rem;
  }
}
@media (width <= 47.99875rem) {
  .about-hero__badge {
    bottom: 0.5rem;
    left: 0.375rem;
    padding: 0.1875rem 0.375rem;
  }
}

.about-hero__badge-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
}
@media (width <= 63.99875rem) {
  .about-hero__badge-num {
    font-size: 1.125rem;
  }
}
@media (width <= 47.99875rem) {
  .about-hero__badge-num {
    font-size: 1rem;
  }
}

.about-hero__badge-label {
  font-size: 0.625rem;
  color: var(--muted);
}
@media (width <= 47.99875rem) {
  .about-hero__badge-label {
    font-size: 0.5625rem;
  }
}

.about-hero__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.25rem;
}
@media (width <= 63.99875rem) {
  .about-hero__content {
    align-items: center;
    text-align: center;
    padding-top: 0;
    width: 100%;
  }
}

.about-hero__label {
  font-size: 1.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.about-hero__name {
  font-size: clamp(2.5rem, 1.9807692308rem + 2.3076923077vw, 4rem);
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  line-height: 1.05;
  color: var(--text);
}

.about-hero__roles {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.about-hero__tagline {
  font-size: clamp(1.125rem, 0.9519230769rem + 0.7692307692vw, 1.625rem);
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  line-height: 1.3;
}
@media (width <= 63.99875rem) {
  .about-hero__tagline {
    text-align: center;
  }
}

.about-hero__text {
  font-size: 1.125rem;
  color: var(--muted);
  line-height: 1.7;
}

.about-trust {
  padding-block: 5rem;
}
@media (width <= 63.99875rem) {
  .about-trust {
    padding-block: 3rem;
  }
}
@media (width <= 47.99875rem) {
  .about-trust {
    padding-block: 2rem;
  }
}

.about-trust__title {
  font-size: clamp(1.625rem, 1.3221153846rem + 1.3461538462vw, 2.5rem);
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  color: var(--text);
  text-align: center;
  margin-bottom: 0.75rem;
}

.about-trust__line {
  width: 2.5rem;
  height: 0.125rem;
  background-color: var(--accent);
  border-radius: 0.125rem;
  margin: 0 auto 3rem;
  align-items: center;
}

.about-trust__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}
@media (width <= 63.99875rem) {
  .about-trust__grid {
    justify-content: center;
    align-items: center;
  }
}
@media (width <= 47.99875rem) {
  .about-trust__grid {
    flex-direction: column;
    align-items: center;
  }
}

.about-trust__item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1.125rem;
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 100px;
  white-space: nowrap;
}
.about-trust__item p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1;
}
@media (width <= 63.99875rem) {
  .about-trust__item {
    flex-direction: column;
    text-align: center;
    white-space: normal;
    width: 100%;
  }
}
@media (width <= 47.99875rem) {
  .about-trust__item {
    flex-direction: column;
    text-align: center;
    white-space: normal;
    width: 100%;
    max-width: 20rem;
    padding: 0.625rem 0.875rem;
  }
}
.about-trust__item img {
  width: 2rem !important;
  height: 2rem !important;
  flex-shrink: 0;
}
@media (width <= 63.99875rem) {
  .about-trust__item img {
    display: none;
  }
}
@media (any-hover: hover) {
  .about-trust__item:hover {
    box-shadow: var(--shadow-blue);
  }
}
@media (any-hover: none) {
  .about-trust__item:active {
    box-shadow: var(--shadow-blue);
  }
}

.about-teaching {
  padding-block: 5rem;
}
@media (width <= 63.99875rem) {
  .about-teaching {
    padding-block: 3rem;
  }
}
@media (width <= 47.99875rem) {
  .about-teaching {
    padding-block: 2rem;
  }
}

.about-teaching__title {
  font-size: clamp(1.625rem, 1.3221153846rem + 1.3461538462vw, 2.5rem);
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  color: var(--text);
  text-align: center;
  margin-bottom: 0.75rem;
}

.about-teaching__desc {
  font-size: 0.9375rem;
  color: var(--muted);
  text-align: center;
  margin-bottom: 1.5rem;
}

.about-teaching__timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}
@media (width <= 47.99875rem) {
  .about-teaching__timeline {
    grid-template-columns: 1fr;
  }
  .about-teaching__timeline::before {
    display: none;
  }
}

.about-teaching__year {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.about-teaching__year-label {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.about-teaching__dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background-color: var(--accent);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.about-teaching__card {
  width: 100%;
  padding: 1.5rem 1.25rem;
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.about-teaching__card h3 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.75rem;
}
@media (width <= 63.99875rem) {
  .about-teaching__card h3 {
    text-align: center;
  }
}
.about-teaching__card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
@media (width <= 63.99875rem) {
  .about-teaching__card p {
    text-align: center;
  }
}
.about-teaching__card p:last-child {
  margin-bottom: 0;
}

.about-teaching__card--future {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}
.about-teaching__card--future p {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.6;
}

.about-teaching__plus {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--accent);
}

.about-pro {
  padding-block: 5rem;
}
@media (width <= 63.99875rem) {
  .about-pro {
    padding-block: 3rem;
  }
}
@media (width <= 47.99875rem) {
  .about-pro {
    padding-block: 2rem;
  }
}

.about-pro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}
@media (width <= 63.99875rem) {
  .about-pro__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.about-pro__title {
  font-size: clamp(1.5rem, 1.2403846154rem + 1.1538461538vw, 2.25rem);
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 1.5rem;
}
@media (width <= 63.99875rem) {
  .about-pro__title {
    text-align: center;
  }
}
@media (width <= 30.06125rem) {
  .about-pro__title {
    grid-template-columns: 1fr;
    gap: 2rem;
    justify-content: center;
  }
}

.about-pro__text {
  font-size: 1.125rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.about-pro__text:last-child {
  margin-bottom: 0;
}
@media (width <= 63.99875rem) {
  .about-pro__text {
    text-align: center;
  }
}

.about-pro__image {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about-pro__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (width <= 63.99875rem) {
  .about-pro__image {
    order: -1;
  }
}

.about-approach {
  padding-block: 3rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
@media (width <= 63.99875rem) {
  .about-approach {
    padding-block: 2.25rem;
  }
}
@media (width <= 47.99875rem) {
  .about-approach {
    padding-block: 1.75rem;
    border-bottom: none;
  }
}

.about-approach__decor-img {
  position: absolute;
  bottom: -16.875rem;
  left: -4.375rem;
  width: 31.25rem;
  height: auto;
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}
@media (width <= 90.06125rem) {
  .about-approach__decor-img {
    bottom: -15.625rem;
    left: -1.25rem;
  }
}
@media (width <= 47.99875rem) {
  .about-approach__decor-img {
    display: none;
  }
}

.about-approach__left,
.about-approach__right {
  position: relative;
  z-index: 1;
}

.about-approach__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  position: relative;
}
@media (width <= 63.99875rem) {
  .about-approach__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.about-approach__left {
  position: relative;
}

.about-approach__label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
@media (width <= 63.99875rem) {
  .about-approach__label {
    text-align: center;
  }
}

.about-approach__line {
  width: 2rem;
  height: 0.125rem;
  background-color: var(--accent);
  border-radius: 0.125rem;
  margin-bottom: 2rem;
}
@media (width <= 63.99875rem) {
  .about-approach__line {
    margin-inline: auto;
  }
}

.about-approach__principle {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(1.125rem, 0.9951923077rem + 0.5769230769vw, 1.5rem);
  color: var(--accent);
  line-height: 1.5;
}
@media (width <= 63.99875rem) {
  .about-approach__principle {
    text-align: center;
  }
}

.about-approach__decor {
  position: absolute;
  bottom: 0;
  left: -5.625rem;
  width: 62.5rem;
  height: auto;
  pointer-events: none;
  z-index: 0;
}

.about-approach__right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (width <= 63.99875rem) {
  .about-approach__right {
    align-items: center;
    text-align: center;
  }
}

.about-approach__title {
  font-size: clamp(1.875rem, 1.4855769231rem + 1.7307692308vw, 3rem);
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  color: var(--bg);
  line-height: 1.2;
}
.about-approach__title span {
  font-size: 1.875rem;
  color: var(--accent-light);
}

.about-approach__text {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.7;
}
@media (width <= 63.99875rem) {
  .about-approach__text {
    text-align: center;
  }
}

.about-approach__footer {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.9375rem;
}
.about-approach__footer svg {
  color: var(--accent);
  flex-shrink: 0;
}

.services {
  padding-block: 5rem;
}
@media (width <= 63.99875rem) {
  .services {
    padding-block: 3.75rem;
  }
}
@media (width <= 47.99875rem) {
  .services {
    padding-block: 2.5rem;
  }
}

.services__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 2.5rem;
  margin-bottom: 3.75rem;
  border-radius: var(--radius-md);
  overflow: hidden;
}
@media (width <= 63.99875rem) {
  .services__header {
    grid-template-columns: 1fr;
    margin-bottom: 2.5rem;
  }
}

.services__header-content {
  padding: 3rem 2.5rem 3rem 0;
}
@media (width <= 63.99875rem) {
  .services__header-content {
    padding: 2rem 0 0;
  }
}

.services__title {
  font-size: clamp(2.25rem, 1.8173076923rem + 1.9230769231vw, 3.5rem);
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.services__title-line {
  width: 2.5rem;
  height: 0.125rem;
  background-color: var(--accent);
  border-radius: 0.125rem;
  margin-bottom: 1.25rem;
}

.services__desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
}

.services__header-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16/7;
}
.services__header-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 15%;
     object-position: center 15%;
}
@media (width <= 63.99875rem) {
  .services__header-image {
    aspect-ratio: 16/9;
  }
}

.services__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 4rem;
}

.services__category {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.services__category.is-open {
  box-shadow: var(--shadow-blue);
}

.services__category-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.5rem 1.75rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color var(--transition);
}
@media (any-hover: hover) {
  .services__category-btn:hover {
    background-color: rgba(45, 125, 210, 0.04);
  }
}
@media (any-hover: none) {
  .services__category-btn:active {
    background-color: rgba(45, 125, 210, 0.04);
  }
}
@media (width <= 47.99875rem) {
  .services__category-btn {
    padding: 1.125rem 1.25rem;
  }
}

.services__category-info {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.services__category-icon {
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.services__category-icon img {
  color: var(--accent);
}

.services__category-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.25rem, 1.0769230769rem + 0.7692307692vw, 1.75rem);
  font-weight: 500;
  color: var(--text);
}

.services__category-subtitle {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 0.125rem;
}

.services__category-toggle {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  transition: background-color var(--transition), border-color var(--transition);
}
.services__category-toggle .services__icon-minus {
  display: none;
}

.services__category.is-open .services__category-toggle {
  background-color: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.services__category.is-open .services__category-toggle .services__icon-plus {
  display: none;
}
.services__category.is-open .services__category-toggle .services__icon-minus {
  display: block;
}

.services__items {
  display: none;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem 1.75rem;
  border-top: 1px solid var(--border);
}
.services__items.is-open {
  display: flex;
}
@media (width <= 47.99875rem) {
  .services__items {
    padding: 1rem 1.25rem;
    gap: 0.75rem;
  }
}

.services__item {
  flex: 1 1 18.75rem;
  display: flex;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
@media (any-hover: hover) {
  .services__item:hover {
    box-shadow: var(--shadow-blue);
  }
}
@media (any-hover: none) {
  .services__item:active {
    box-shadow: var(--shadow-blue);
  }
}

.services__item-image {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  flex-shrink: 0;
}
.services__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform var(--transition);
}

.services__item-content {
  padding: 0.875rem 1rem 0rem;
  flex: 1;
}

.services__item-title {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.375rem;
  line-height: 1.3;
}

.services__item-desc {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.5;
}

.services__item-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  margin-top: 0.5rem;
  border-top: 1px solid var(--border);
  gap: 0.5rem;
}

.services__item-price {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  background-color: var(--accent-soft);
  color: var(--accent);
  font-size: 0.8125rem;
  font-weight: 500;
  border-radius: 100px;
  white-space: nowrap;
}

.services__item-time {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: var(--muted);
  white-space: nowrap;
}
.services__item-time svg {
  flex-shrink: 0;
}

[data-category=podology] .services__items .services__item {
  flex: 1 1 calc(33.333% - 0.75rem);
  max-width: calc(33.333% - 0.75rem);
}
@media (width <= 768px) and (width > 425px) {
  [data-category=podology] .services__items .services__item {
    flex: 1 1 calc(50% - 0.5rem);
    max-width: calc(50% - 0.5rem);
  }
}
@media (width <= 63.99875rem) {
  [data-category=podology] .services__items .services__item {
    flex: 1 1 calc(50% - 0.5rem);
    max-width: calc(50% - 0.5rem);
  }
}
@media (width <= 47.99875rem) {
  [data-category=podology] .services__items .services__item {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.services__items--education {
  display: none;
  flex-direction: column;
  padding: 0rem;
}
.services__items--education.is-open {
  display: flex;
}

.services__items--education {
  display: none;
  flex-direction: column;
  padding: 0;
  gap: 0;
}
.services__items--education.is-open {
  display: flex;
}

.edu__section-header {
  padding: 2rem 1.75rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.edu__section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.25rem, 1.1201923077rem + 0.5769230769vw, 1.625rem);
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.edu__section-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
}

.edu__card {
  display: grid;
  grid-template-columns: 1fr 15rem;
  align-items: stretch;
  border-bottom: 1px solid var(--border);
  transition: background-color var(--transition);
  min-height: 16.25rem;
}
.edu__card:last-child {
  border-bottom: none;
}
@media (any-hover: hover) {
  .edu__card:hover {
    background-color: rgba(45, 125, 210, 0.02);
  }
}
@media (any-hover: none) {
  .edu__card:active {
    background-color: rgba(45, 125, 210, 0.02);
  }
}
.edu__card--featured {
  background-color: rgba(45, 125, 210, 0.03);
}
@media (any-hover: hover) {
  .edu__card--featured:hover {
    background-color: rgba(45, 125, 210, 0.05);
  }
}
@media (any-hover: none) {
  .edu__card--featured:active {
    background-color: rgba(45, 125, 210, 0.05);
  }
}
.edu__card--featured .edu__card-badge--flagship {
  background-color: var(--accent);
  color: #fff;
}
@media (width <= 47.99875rem) {
  .edu__card {
    grid-template-columns: 1fr;
    min-height: unset;
  }
}

.edu__card-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.75rem 1.75rem;
  order: 1;
}
@media (width <= 63.99875rem) {
  .edu__card-body {
    padding: 1.25rem 1.25rem;
    gap: 0.5rem;
  }
}
@media (width <= 47.99875rem) {
  .edu__card-body {
    padding: 1.25rem 1.25rem;
    gap: 0.625rem;
  }
}

.edu__card-image {
  order: 2;
  border-left: 1px solid var(--border);
  background-color: var(--surface-2, #f5f5f4);
}
.edu__card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  display: block;
}
@media (width <= 63.99875rem) {
  .edu__card-image {
    align-self: end;
  }
}
@media (width <= 47.99875rem) {
  .edu__card-image {
    order: 3;
    border-left: none;
    border-top: 1px solid var(--border);
    width: 50%;
    margin: 0 auto;
  }
  .edu__card-image img {
    height: auto;
    -o-object-fit: unset;
       object-fit: unset;
  }
}

.edu__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.edu__card-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  background-color: var(--accent-soft);
  color: var(--accent);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: 100px;
}
.edu__card-badge--speed {
  background-color: rgba(16, 150, 115, 0.1);
  color: #0a7a5c;
}
.edu__card-badge--flagship {
  background-color: var(--accent);
  color: #fff;
}
.edu__card-badge--expert {
  background-color: rgba(180, 60, 30, 0.09);
  color: #a0370e;
}
.edu__card-badge--individual {
  background-color: rgba(100, 80, 160, 0.1);
  color: #5a3fa0;
}

.edu__card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.edu__card-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.3125rem;
  font-size: 0.8125rem;
  color: var(--muted);
  white-space: nowrap;
}
.edu__card-meta-item svg {
  flex-shrink: 0;
  opacity: 0.6;
}

.edu__card-title {
  font-size: clamp(1.0625rem, 0.9543269231rem + 0.4807692308vw, 1.375rem);
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  color: var(--text);
  line-height: 1.25;
}

.edu__card-subtitle {
  font-size: 0.8125rem;
  color: var(--muted);
  font-style: italic;
  margin-top: -0.375rem;
}

.edu__card-highlight {
  font-size: 0.8125rem;
  color: var(--accent);
  line-height: 1.5;
  padding: 0.5rem 0.75rem;
  background-color: var(--accent-soft);
  border-radius: 0.375rem;
  border-left: 0.125rem solid var(--accent);
  align-self: flex-start;
}

.edu__card-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.5rem;
}
@media (width <= 47.99875rem) {
  .edu__card-cols {
    grid-template-columns: 1fr;
  }
}

.edu__card-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.edu__card-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.25rem;
}
.edu__card-label:first-child {
  margin-top: 0;
}

.edu__card-text {
  font-size: 0.8125rem;
  color: var(--text);
  line-height: 1.6;
}

.edu__card-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.edu__card-list li {
  font-size: 0.8125rem;
  color: var(--text);
  line-height: 1.5;
  padding-left: 0.875rem;
  position: relative;
}
.edu__card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.375rem;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background-color: var(--accent);
  opacity: 0.7;
}

.edu__card-btn {
  margin-top: 0.25rem;
  align-self: flex-start;
}

.help {
  padding-block: 2.5rem;
  position: relative;
  overflow: hidden;
}
.help::after {
  content: "";
  position: absolute;
  top: -1.25rem;
  left: -2.5rem;
  width: 31.25rem;
  height: 31.25rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}
@media (width <= 63.99875rem) {
  .help::after {
    width: 18.75rem;
    height: 18.75rem;
    left: -5rem;
    bottom: -3.75rem;
  }
}
@media (width <= 47.99875rem) {
  .help::after {
    display: none;
  }
}
@media (width <= 63.99875rem) {
  .help {
    padding-block: 1.25rem;
  }
}
@media (width <= 47.99875rem) {
  .help {
    padding-block: 0.75rem;
  }
}

.help__inner {
  display: grid;
  grid-template-columns: 17.5rem 1fr;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 1;
}
@media (width <= 63.99875rem) {
  .help__inner {
    grid-template-columns: 17.5rem 1fr;
  }
}
@media (width <= 47.99875rem) {
  .help__inner {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

.help__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (width <= 63.99875rem) {
  .help__content {
    gap: 0.75rem;
  }
}
@media (width <= 47.99875rem) {
  .help__content {
    padding-inline: 0.75rem;
    text-align: center;
    align-items: center;
    gap: 0.625rem;
  }
}

.help__label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.help__title {
  font-size: clamp(1.75rem, 1.4038461538rem + 1.5384615385vw, 2.75rem);
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  color: var(--text);
  line-height: 1.15;
}
@media (width <= 63.99875rem) {
  .help__title {
    font-size: 1.75rem;
  }
}
@media (width <= 47.99875rem) {
  .help__title {
    font-size: 1.5rem;
  }
}

.help__accent-line {
  width: 0.1875rem;
  height: 2rem;
  background-color: var(--accent);
  border-radius: 0.125rem;
}
@media (width <= 63.99875rem) {
  .help__accent-line {
    display: none;
  }
}

.help__desc {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.7;
}
@media (width <= 47.99875rem) {
  .help__desc {
    font-size: 0.875rem;
    line-height: 1.5;
  }
}

.help__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  margin-top: 0.25rem;
  transition: gap var(--transition);
}
@media (any-hover: hover) {
  .help__link:hover {
    gap: 0.875rem;
  }
}
@media (any-hover: none) {
  .help__link:active {
    gap: 0.875rem;
  }
}
@media (width <= 47.99875rem) {
  .help__link {
    font-size: 0.875rem;
    margin-top: 0.125rem;
  }
}

.help__scroll-wrap {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 90%, transparent 100%);
}
@media (width <= 63.99875rem) {
  .help__scroll-wrap {
    padding-inline: 0rem;
  }
}
@media (width <= 47.99875rem) {
  .help__scroll-wrap {
    width: 100%;
    padding-inline: 0;
  }
}

.help__scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-block: 0.5rem;
  padding-inline: 1.25rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.help__scroll::-webkit-scrollbar {
  display: none;
}
@media (width <= 63.99875rem) {
  .help__scroll {
    padding-inline: 0rem;
  }
}
@media (width <= 47.99875rem) {
  .help__scroll {
    flex-direction: row;
    overflow-x: auto;
    padding-inline: 0.75rem;
    padding-block: 0.25rem;
    gap: 0.5rem;
  }
}

.help__card {
  flex-shrink: 0;
  width: 16.25rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  scroll-snap-align: start;
  transition: box-shadow var(--transition), transform var(--transition);
}
@media (any-hover: hover) {
  .help__card:hover {
    box-shadow: var(--shadow-blue);
    transform: translateY(-0.25rem);
  }
}
@media (any-hover: none) {
  .help__card:active {
    box-shadow: var(--shadow-blue);
    transform: translateY(-0.25rem);
  }
}
@media (width <= 63.99875rem) {
  .help__card {
    width: 18.75rem;
  }
}
@media (width <= 47.99875rem) {
  .help__card {
    width: 18.75rem;
    margin-inline: auto;
  }
}
@media (width <= 30.06125rem) {
  .help__card {
    width: 15.625rem;
    margin-inline: auto;
  }
}

.help__card-image {
  width: 100%;
  aspect-ratio: 2/3;
  overflow: hidden;
  position: relative;
}
@media (width <= 63.99875rem) {
  .help__card-image {
    aspect-ratio: 3/4;
  }
}
.help__card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform var(--transition);
}
.help__card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(15, 30, 53, 0.5) 100%);
  pointer-events: none;
}
@media (width <= 47.99875rem) {
  .help__card-image {
    aspect-ratio: 4/3;
  }
}

.help__card:hover .help__card-image img {
  transform: scale(1.04);
}

.help__card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.125rem;
  background-color: rgba(255, 255, 255, 0.95);
  border-top: 1px solid var(--border);
}
@media (width <= 47.99875rem) {
  .help__card-footer {
    padding: 0.5rem 0.75rem;
  }
}

.help__card-title {
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--text);
}
@media (width <= 47.99875rem) {
  .help__card-title {
    font-size: 0.8125rem;
  }
}

.help__card-btn {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color var(--transition);
}
@media (width <= 47.99875rem) {
  .help__card-btn {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.help__card:hover .help__card-btn {
  background-color: var(--accent-light);
}

.contacts {
  padding-block: 5rem;
  position: relative;
  overflow: hidden;
}
@media (width <= 63.99875rem) {
  .contacts {
    padding-block: 3.75rem;
  }
}
@media (width <= 47.99875rem) {
  .contacts {
    padding-block: 2.5rem;
  }
}

.contacts__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  align-items: start;
  gap: 3rem;
}
@media (width <= 63.99875rem) {
  .contacts__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.contacts__content {
  position: relative;
}

.contacts__title {
  font-size: clamp(2.25rem, 1.8173076923rem + 1.9230769231vw, 3.5rem);
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.contacts__desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.contacts__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contacts__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: box-shadow var(--transition), background-color var(--transition);
}
@media (any-hover: hover) {
  .contacts__item:hover {
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-blue);
  }
}
@media (any-hover: none) {
  .contacts__item:active {
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-blue);
  }
}
.contacts__item--static {
  cursor: default;
}
@media (any-hover: hover) {
  .contacts__item--static:hover {
    box-shadow: none;
    background-color: rgba(255, 255, 255, 0.6);
  }
}
@media (any-hover: none) {
  .contacts__item--static:active {
    box-shadow: none;
    background-color: rgba(255, 255, 255, 0.6);
  }
}

.contacts__item-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background-color: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contacts__item-icon img {
  width: 2.5rem;
  height: 2.5rem;
}

.contacts__item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.contacts__item-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.contacts__item-value {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.4;
}

.contacts__item-arrow {
  font-size: 1.25rem;
  color: var(--muted);
  flex-shrink: 0;
  line-height: 1;
}

.contacts__map {
  position: static;
  height: 100%;
  min-height: 30rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-blue);
}
.contacts__map iframe {
  width: 100%;
  height: 100%;
  display: block;
}
@media (width <= 63.99875rem) {
  .contacts__map {
    min-height: 25rem;
  }
}
@media (width <= 47.99875rem) {
  .contacts__map {
    min-height: 22.5rem;
  }
}

.footer {
  background: linear-gradient(to bottom, transparent 0%, transparent 15%, rgba(220, 237, 254, 0.15) 35%, rgba(180, 220, 250, 0.3) 55%, rgba(140, 190, 245, 0.5) 75%, rgba(95, 163, 232, 0.5) 100%);
}

.footer__inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 2.5rem;
}
@media (width <= 63.99875rem) {
  .footer__inner {
    grid-template-columns: auto 1fr auto auto;
    gap: 0.5rem;
  }
}
@media (width <= 47.99875rem) {
  .footer__inner {
    grid-template-columns: repeat(4, auto);
    justify-content: center;
    gap: 0.375rem;
  }
}
@media (width <= 30.06125rem) {
  .footer__inner {
    grid-template-columns: auto auto;
    justify-content: center;
  }
}

@media (width <= 47.99875rem) {
  .footer__brand {
    grid-column: 1/-1;
  }
}
@media (width <= 30.06125rem) {
  .footer__brand {
    grid-column: 1/-1;
  }
}

@media (width <= 47.99875rem) {
  .footer__contacts {
    grid-column: 1/-1;
  }
}
@media (width <= 30.06125rem) {
  .footer__contacts {
    grid-column: 1/-1;
  }
}

.footer__brand {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (width <= 63.99875rem) {
  .footer__brand {
    align-items: center;
  }
}
@media (width <= 47.99875rem) {
  .footer__brand {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    gap: 0.5rem;
  }
}

.footer__brand-logo {
  margin-right: 0;
}
@media (width <= 47.99875rem) {
  .footer__brand-logo {
    display: none;
  }
}

.footer__brand .header__logo {
  margin-right: 0;
}
@media (width <= 47.99875rem) {
  .footer__brand .header__logo {
    display: none;
  }
}

.footer__brand-text {
  font-size: 0.75rem;
  color: var(--text);
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
@media (width <= 63.99875rem) {
  .footer__brand-text {
    font-size: 0.5625rem;
  }
}
@media (width <= 47.99875rem) {
  .footer__brand-text {
    font-size: 0.5rem;
  }
}
@media (width <= 30.06125rem) {
  .footer__brand-text {
    word-spacing: normal;
    line-height: 1.5;
    max-width: 16.25rem;
    margin-inline: auto;
  }
}

.footer__ai-note {
  font-size: 0.5625rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
  margin: 0;
}

.footer__brand-content {
  display: flex;
  flex-direction: column;
}
@media (width <= 63.99875rem) {
  .footer__brand-content {
    justify-content: center;
  }
}

.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 0rem;
}
@media (width <= 63.99875rem) {
  .footer__contacts {
    align-items: center;
    text-align: center;
  }
}
@media (width <= 47.99875rem) {
  .footer__contacts {
    align-items: center;
    text-align: center;
  }
}

.footer__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--accent-light);
  text-decoration: none;
  transition: opacity var(--transition);
  line-height: 1.4;
}
@media (any-hover: hover) {
  .footer__phone:hover {
    opacity: 0.8;
  }
}
@media (any-hover: none) {
  .footer__phone:active {
    opacity: 0.8;
  }
}
@media (width <= 63.99875rem) {
  .footer__phone {
    display: flex;
    font-size: 0.625rem;
    line-height: 1.2;
  }
}
@media (width <= 47.99875rem) {
  .footer__phone {
    font-size: 0.625rem;
  }
}
@media (width <= 30.06125rem) {
  .footer__phone {
    font-size: 0.8125rem;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.footer__schedule {
  font-size: 0.8125rem;
  color: var(--text);
  line-height: 1.6;
}
@media (width <= 63.99875rem) {
  .footer__schedule {
    font-size: 0.5rem;
    line-height: 1.3;
  }
}
@media (width <= 47.99875rem) {
  .footer__schedule {
    font-size: 0.5rem;
  }
}
@media (width <= 30.06125rem) {
  .footer__schedule {
    word-spacing: normal;
    line-height: 1.5;
    max-width: 16.25rem;
    margin-inline: auto;
  }
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.footer__icon {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.65);
  width: 1rem;
  height: 1rem;
}

.footer__social {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition);
}
.footer__social img {
  width: 2.5rem;
  height: 2.5rem;
}
@media (any-hover: hover) {
  .footer__social:hover {
    background-color: rgba(255, 255, 255, 0.35);
  }
}
@media (any-hover: none) {
  .footer__social:active {
    background-color: rgba(255, 255, 255, 0.35);
  }
}

.footer__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.875rem 1.375rem;
  background-color: rgba(255, 255, 255, 0);
  border: 1px solid var(--accent-light);
  border-radius: 100px;
  color: var(--text);
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
@media (any-hover: hover) {
  .footer__btn:hover {
    color: var(--accent-light);
    background-color: rgba(95, 163, 232, 0.12);
    border-color: #5fa3e8;
    box-shadow: 0 0 18px rgba(95, 163, 232, 0.35);
    transform: translateY(-2px);
  }
}
@media (any-hover: none) {
  .footer__btn:active {
    color: var(--accent-light);
    background-color: rgba(95, 163, 232, 0.12);
    border-color: #5fa3e8;
    box-shadow: 0 0 18px rgba(95, 163, 232, 0.35);
    transform: translateY(-2px);
  }
}
@media (width <= 63.99875rem) {
  .footer__btn {
    font-size: 0.5625rem;
    padding: 0.375rem 0.625rem;
    gap: 0.125rem;
    height: 2.1875rem;
  }
  .footer__btn img {
    width: 1.25rem;
    height: 1.25rem;
  }
}
@media (width <= 47.99875rem) {
  .footer__btn {
    width: 8.75rem;
    height: 2rem;
    padding: 0 0.625rem;
    font-size: 0.5rem;
    display: flex;
    justify-self: center;
    margin-inline: auto;
    align-items: center;
    justify-content: center;
  }
}
@media (width <= 30.06125rem) {
  .footer__btn {
    width: auto;
    height: 1.75rem;
    padding: 0.375rem 0.75rem;
    font-size: 0.4375rem;
  }
}

.footer__dev {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  text-decoration: none;
  padding: 0.875rem 1.375rem;
  border: 1px solid var(--accent-light);
  border-radius: 100px;
  transition: background-color var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
@media (any-hover: hover) {
  .footer__dev:hover {
    background-color: rgba(95, 163, 232, 0.12);
    border-color: #5fa3e8;
    box-shadow: 0 0 18px rgba(95, 163, 232, 0.35);
    transform: translateY(-2px);
  }
  .footer__dev:hover .footer__dev-skills {
    color: var(--accent);
  }
}
@media (any-hover: none) {
  .footer__dev:active {
    background-color: rgba(95, 163, 232, 0.12);
    border-color: #5fa3e8;
    box-shadow: 0 0 18px rgba(95, 163, 232, 0.35);
    transform: translateY(-2px);
  }
  .footer__dev:active .footer__dev-skills {
    color: var(--accent);
  }
}
@media (width <= 63.99875rem) {
  .footer__dev {
    padding: 0.375rem 0.625rem;
    gap: 0.125rem;
    font-size: 0.5625rem;
    height: 2.1875rem;
  }
}
@media (width <= 47.99875rem) {
  .footer__dev {
    width: 8.75rem;
    height: 2rem;
    padding: 0 0.625rem;
    font-size: 0.5rem;
    display: flex;
    justify-self: center;
    align-items: center;
    justify-content: center;
  }
}
@media (width <= 30.06125rem) {
  .footer__dev {
    width: auto;
    height: 1.75rem;
    padding: 0.375rem 0.75rem;
    font-size: 0.4375rem;
  }
}

.footer__dev-name {
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text) span;
  color-font-weight: 400;
  color-color: var(--accent-light);
}
@media (width <= 63.99875rem) {
  .footer__dev-name {
    font-size: 0.4375rem;
    line-height: 1;
  }
}
@media (width <= 47.99875rem) {
  .footer__dev-name {
    font-size: 0.4375rem;
  }
}

.footer__dev-skills {
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}
@media (width <= 63.99875rem) {
  .footer__dev-skills {
    font-size: 0.375rem;
    line-height: 1;
  }
}
@media (width <= 47.99875rem) {
  .footer__dev-skills {
    font-size: 0.375rem;
  }
}

.footer__dev-role {
  display: none;
}

.footer__dev-desc {
  text-align: center;
  font-size: 0.6875rem;
  color: var(--accent-light);
  margin-top: 0.125rem;
}
@media (width <= 63.99875rem) {
  .footer__dev-desc {
    font-size: 0.375rem;
    margin-top: 0.0625rem;
    display: none;
  }
}

.footer__dev-link {
  text-align: center;
  font-size: 0.75rem;
  color: var(--accent-light);
  margin-top: 0.25rem;
  font-weight: 500;
}
@media (width <= 63.99875rem) {
  .footer__dev-link {
    font-size: 0.375rem;
    margin-top: 0.0625rem;
    display: none;
  }
}

.footer__dev-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #fff;
  background: rgba(95, 163, 232, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 3.875rem;
  height: 3.875rem;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  line-height: 1.2;
  flex-shrink: 0;
}
@media (any-hover: hover) {
  .footer__dev-btn:hover {
    background: rgba(95, 163, 232, 0.9);
    border-color: rgba(255, 255, 255, 0.3);
  }
}
@media (any-hover: none) {
  .footer__dev-btn:active {
    background: rgba(95, 163, 232, 0.9);
    border-color: rgba(255, 255, 255, 0.3);
  }
}
.footer__dev-btn svg {
  display: none;
}
@media (width <= 63.99875rem) {
  .footer__dev-btn {
    width: auto;
    height: auto;
    border-radius: 1.5rem;
    padding: 0.625rem 1.5rem;
  }
}
@media (width <= 47.99875rem) {
  .footer__dev-btn {
    width: 100%;
    border-radius: 1.5rem;
    padding: 0.625rem 1.5rem;
  }
}

.footer__bottom {
  margin-top: 1.5625rem;
  padding-bottom: 1.5rem;
}
@media (width <= 63.99875rem) {
  .footer__bottom {
    padding-bottom: 1.25rem;
  }
}
@media (width <= 47.99875rem) {
  .footer__bottom {
    padding-bottom: 1rem;
  }
}

.footer__bottom-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.375rem;
  align-items: start;
}
@media (width <= 63.99875rem) {
  .footer__bottom-content {
    gap: 1.25rem;
  }
}
@media (width <= 47.99875rem) {
  .footer__bottom-content {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    align-items: start;
  }
}
@media (width <= 30.06125rem) {
  .footer__bottom-content {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

.footer__bottom-left,
.footer__bottom-center,
.footer__bottom-right {
  display: flex;
  flex-direction: column;
  padding-top: 0.5rem;
  align-items: flex-start;
}
@media (width <= 47.99875rem) {
  .footer__bottom-left,
  .footer__bottom-center,
  .footer__bottom-right {
    align-items: center;
    text-align: center;
    justify-content: flex-start;
    width: 100%;
    padding-top: 0;
  }
}

.footer__bottom-center {
  align-items: center;
  margin-top: 1.875rem;
}
@media (width <= 47.99875rem) {
  .footer__bottom-center {
    margin-top: 0;
  }
}

.footer__bottom-right {
  align-items: flex-end;
}
@media (width <= 47.99875rem) {
  .footer__bottom-right {
    align-items: stretch;
  }
}

.footer__copyright {
  font-size: 0.6875rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}
@media (width <= 63.99875rem) {
  .footer__copyright {
    font-size: 0.5rem;
  }
}
@media (width <= 47.99875rem) {
  .footer__copyright {
    font-size: 0.4375rem;
    line-height: 1.3;
    text-align: center;
  }
}
@media (width <= 30.06125rem) {
  .footer__copyright {
    text-align: center;
  }
}

.footer__copyright--warning {
  font-weight: 600;
  color: #063bd9;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer__rights {
  font-size: 0.6875rem;
  color: var(--muted);
  margin: 0;
}
@media (width <= 63.99875rem) {
  .footer__rights {
    font-size: 0.5rem;
  }
}
@media (width <= 47.99875rem) {
  .footer__rights {
    font-size: 0.4375rem;
    line-height: 1.3;
    text-align: center;
  }
}
@media (width <= 30.06125rem) {
  .footer__rights {
    text-align: center;
  }
}

.footer__ai-note {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  text-align: center;
  max-width: none;
}
@media (width <= 63.99875rem) {
  .footer__ai-note {
    font-size: 0.5rem;
  }
}
@media (width <= 47.99875rem) {
  .footer__ai-note {
    font-size: 0.4375rem;
    line-height: 1.3;
    text-align: center;
  }
}

.footer__policy {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted);
  text-decoration: none;
  transition: opacity var(--transition);
}
.footer__policy img {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.65);
  width: 1rem;
  height: 1rem;
}
@media (width <= 47.99875rem) {
  .footer__policy img {
    display: none !important;
  }
}
@media (any-hover: hover) {
  .footer__policy:hover {
    opacity: 0.85;
  }
}
@media (any-hover: none) {
  .footer__policy:active {
    opacity: 0.85;
  }
}
@media (width <= 63.99875rem) {
  .footer__policy {
    justify-content: center;
    font-size: 0.5rem;
  }
}
@media (width <= 47.99875rem) {
  .footer__policy {
    display: block;
    max-width: 20rem;
    margin: 0 auto;
    text-align: center;
  }
}
@media (width <= 30.06125rem) {
  .footer__policy {
    display: block;
    width: 100%;
    max-width: 20rem;
    margin: 0 auto;
    text-align: center;
  }
}

.footer__yandex {
  font-size: 0.6875rem;
  color: var(--muted);
  margin: 0;
  text-align: right;
  line-height: 1.5;
}
@media (width <= 63.99875rem) {
  .footer__yandex {
    text-align: center;
    font-size: 0.5rem;
  }
}
@media (width <= 47.99875rem) {
  .footer__yandex {
    font-size: 0.4375rem;
  }
}
@media (width <= 30.06125rem) {
  .footer__yandex {
    max-width: 20rem;
    margin: 0 auto;
    text-align: center;
  }
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  background-image: radial-gradient(ellipse 100% 40% at 20% 10%, rgba(45, 125, 210, 0.18) 0%, transparent 70%), radial-gradient(ellipse 80% 40% at 80% 35%, rgba(94, 163, 232, 0.12) 0%, transparent 65%), radial-gradient(ellipse 100% 40% at 10% 60%, rgba(45, 125, 210, 0.1) 0%, transparent 70%), radial-gradient(ellipse 80% 40% at 90% 80%, rgba(94, 163, 232, 0.12) 0%, transparent 65%);
  background-attachment: fixed;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  padding-inline: 2rem;
  margin-top: -7.5rem;
}

.preloader__logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 6rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  letter-spacing: 0.05em;
}
@media (width <= 47.99875rem) {
  .preloader__logo {
    font-size: 4.5rem;
  }
}

.preloader__school {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  line-height: 1.6;
  margin-top: 1.5rem;
}

.preloader__tagline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text);
}
@media (width <= 47.99875rem) {
  .preloader__tagline {
    font-size: 1.375rem;
  }
}

.preloader__foot {
  font-size: 1.5rem;
}
@media (width <= 47.99875rem) {
  .preloader__foot {
    font-size: 1.125rem;
  }
}

.preloader__dots {
  font-size: 0.9375rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.preloader__bar-wrap {
  width: 20rem;
  height: 0.25rem;
  background-color: rgba(45, 125, 210, 0.15);
  border-radius: 0.25rem;
  overflow: hidden;
  margin-top: 1.5rem;
}
@media (width <= 47.99875rem) {
  .preloader__bar-wrap {
    width: 15rem;
  }
}

.preloader__bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, var(--accent-light), var(--accent));
  border-radius: 0.25rem;
  transition: width 0.1s ease;
}

.preloader__percent {
  font-size: 0.875rem;
  color: var(--accent);
  font-weight: 500;
  align-self: flex-end;
  margin-top: -0.5rem;
  padding-right: 0.25rem;
}

.preloader__logo-img {
  width: 7.5rem;
  height: 7.5rem;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 0.5rem;
}

.preloader__tagline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media (width <= 47.99875rem) {
  .preloader__tagline {
    font-size: 1.125rem;
  }
}

.results {
  position: relative;
  overflow: visible;
  padding-block: 3.75rem;
}
.results::before {
  display: none;
}
@media (width <= 63.99875rem) {
  .results {
    padding-block: 1.875rem;
  }
}
@media (width <= 47.99875rem) {
  .results {
    padding-block: 0.75rem;
  }
}

.results__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 17.5rem 1fr;
  align-items: center;
  gap: 3rem;
}
@media (width <= 63.99875rem) {
  .results__inner {
    grid-template-columns: 17.5rem 1fr;
  }
}
@media (width <= 47.99875rem) {
  .results__inner {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

.results__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 2;
}
@media (width <= 63.99875rem) {
  .results__content {
    gap: 0.5rem;
  }
}
@media (width <= 47.99875rem) {
  .results__content {
    padding-inline: 0.75rem;
    text-align: center;
    align-items: center;
    gap: 0.625rem;
  }
}

.results__label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.results__title {
  font-size: clamp(1.75rem, 1.4038461538rem + 1.5384615385vw, 2.75rem);
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  color: var(--text);
  line-height: 1.2;
}
@media (width <= 63.99875rem) {
  .results__title {
    font-size: 1.75rem;
  }
}
@media (width <= 47.99875rem) {
  .results__title {
    font-size: 1.5rem;
  }
}

.results__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  margin-top: 0.5rem;
  transition: gap var(--transition);
}
@media (any-hover: hover) {
  .results__link:hover {
    gap: 0.875rem;
  }
}
@media (any-hover: none) {
  .results__link:active {
    gap: 0.875rem;
  }
}
@media (width <= 63.99875rem) {
  .results__link {
    margin-top: 0.25rem;
  }
}
@media (width <= 47.99875rem) {
  .results__link {
    font-size: 0.875rem;
    margin-top: 0.125rem;
  }
}

.results__desc {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}
@media (width <= 47.99875rem) {
  .results__desc {
    font-size: 0.875rem;
    line-height: 1.5;
  }
}

.results__scroll-wrap {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 90%, transparent 100%);
}
@media (width <= 47.99875rem) {
  .results__scroll-wrap {
    width: 100%;
    padding-inline: 0;
  }
}

.results__scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-block: 0.5rem;
  padding-inline: 1.25rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.results__scroll::-webkit-scrollbar {
  display: none;
}
@media (width <= 63.99875rem) {
  .results__scroll {
    padding-inline: 0rem;
  }
}
@media (width <= 47.99875rem) {
  .results__scroll {
    padding-inline: 0.75rem;
    padding-block: 0.25rem;
    gap: 0.75rem;
  }
}

.results__card {
  flex-shrink: 0;
  width: 21.875rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  scroll-snap-align: start;
  text-decoration: none;
  transition: box-shadow var(--transition), transform var(--transition);
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
}
@media (any-hover: hover) {
  .results__card:hover {
    box-shadow: var(--shadow-blue);
    transform: translateY(-0.25rem);
  }
}
@media (any-hover: none) {
  .results__card:active {
    box-shadow: var(--shadow-blue);
    transform: translateY(-0.25rem);
  }
}
@media (width <= 63.99875rem) {
  .results__card {
    width: 20rem;
  }
}
@media (width <= 47.99875rem) {
  .results__card {
    width: 100%;
  }
}

.results__card-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
}

.results__card-before,
.results__card-after {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
}
.results__card-before img,
.results__card-after img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform var(--transition);
}
@media (width <= 47.99875rem) {
  .results__card-before,
  .results__card-after {
    aspect-ratio: 1.4;
  }
}

.results__card-before {
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}

.results__card:hover img {
  transform: scale(1.03);
}

.results__card-tag {
  position: absolute;
  top: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
}
@media (width <= 47.99875rem) {
  .results__card-tag {
    font-size: 0.5625rem;
    padding: 0.125rem 0.375rem;
  }
}
.results__card-tag--before {
  left: 0.625rem;
  background-color: rgba(15, 30, 53, 0.75);
  color: #fff;
}
@media (width <= 47.99875rem) {
  .results__card-tag--before {
    left: 0.375rem;
  }
}
.results__card-tag--after {
  right: 0.625rem;
  background-color: var(--accent);
  color: #fff;
}
@media (width <= 47.99875rem) {
  .results__card-tag--after {
    right: 0.375rem;
  }
}

.results__card-info {
  padding: 0.875rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}
@media (width <= 47.99875rem) {
  .results__card-info {
    padding: 0.5rem 0.625rem;
    gap: 0.125rem;
  }
}

.results__card-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}
@media (width <= 47.99875rem) {
  .results__card-title {
    font-size: 0.75rem;
    line-height: 1.25;
  }
}

.results__card-duration {
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0;
}
@media (width <= 47.99875rem) {
  .results__card-duration {
    font-size: 0.5625rem;
    line-height: 1.3;
  }
}

.results__card-link {
  font-size: 0.8125rem;
  color: var(--accent);
  font-weight: 500;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
@media (width <= 47.99875rem) {
  .results__card-link {
    font-size: 0.625rem;
    margin-top: auto;
  }
}

.results__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (width <= 63.99875rem) {
  .results__grid {
    gap: 1rem;
  }
}
@media (width <= 47.99875rem) {
  .results__grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
}

.results__grid .results__card {
  width: auto;
  flex-shrink: unset;
  display: flex;
  flex-direction: row;
  text-decoration: none;
  scroll-snap-align: unset;
}

.results__decor-img {
  position: absolute;
  bottom: 3.75rem;
  left: -12.5rem;
  width: 26.25rem;
  max-width: 21.875rem;
  height: auto;
  opacity: 0.9;
  pointer-events: none;
  z-index: 2;
}
@media (width <= 90.06125rem) {
  .results__decor-img {
    left: -11.25rem;
    bottom: 5rem;
    width: 28.125rem;
    max-width: 23.75rem;
    opacity: 0.75;
  }
}
@media (width <= 63.99875rem) {
  .results__decor-img {
    display: none;
  }
}
@media (width <= 47.99875rem) {
  .results__decor-img {
    display: none;
  }
}

.not-found {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0rem;
  text-align: center;
  padding: 2.5rem 1.25rem;
  background-color: #ffffff;
  background-image: radial-gradient(ellipse 100% 40% at 20% 10%, rgba(45, 125, 210, 0.18) 0%, transparent 70%), radial-gradient(ellipse 80% 40% at 80% 35%, rgba(94, 163, 232, 0.12) 0%, transparent 65%), radial-gradient(ellipse 100% 40% at 10% 60%, rgba(45, 125, 210, 0.1) 0%, transparent 70%), radial-gradient(ellipse 80% 40% at 90% 80%, rgba(94, 163, 232, 0.12) 0%, transparent 65%);
  background-attachment: fixed;
}

.not-found__logo {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  margin-bottom: -0.75rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.08em;
}
@media (any-hover: hover) {
  .not-found__logo:hover {
    opacity: 0.7;
  }
}
@media (any-hover: none) {
  .not-found__logo:active {
    opacity: 0.7;
  }
}

.not-found__num {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(12.5rem, 35vw, 17.5rem);
  color: var(--accent);
  text-shadow: 0 0 20px rgba(95, 163, 232, 0.3), 0 0 40px rgba(45, 125, 210, 0.15);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin: 0;
  padding: 0;
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

.not-found__text {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.25rem, 1.0769230769rem + 0.7692307692vw, 1.75rem);
  font-weight: 400;
  color: var(--text);
  margin-top: 0rem;
  margin-bottom: 0.25rem;
}

.not-found__sub {
  font-size: 0.9375rem;
  color: var(--muted);
  margin-top: 0.125rem;
}

.not-found__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  margin-top: 1.25rem;
  padding: 0.875rem 2rem;
  border: 1px solid var(--border-light);
  border-radius: 100px;
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  color: var(--text);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.not-found__btn svg {
  color: var(--accent);
}
@media (any-hover: hover) {
  .not-found__btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
    border-color: var(--accent);
    box-shadow: var(--shadow-blue);
  }
}
@media (any-hover: none) {
  .not-found__btn:active {
    background-color: rgba(255, 255, 255, 0.9);
    border-color: var(--accent);
    box-shadow: var(--shadow-blue);
  }
}

.cases {
  padding-block: 5rem;
}
@media (width <= 63.99875rem) {
  .cases {
    padding-block: 3.75rem;
  }
}
@media (width <= 47.99875rem) {
  .cases {
    padding-block: 2.5rem;
  }
}

.cases-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 2.5rem;
  margin-bottom: 3.75rem;
  border-radius: var(--radius-md);
  overflow: hidden;
}
@media (width <= 63.99875rem) {
  .cases-hero {
    grid-template-columns: 1fr;
    margin-bottom: 2.5rem;
  }
}

.cases-hero__content {
  padding: 3rem 2.5rem 3rem 0;
}
@media (width <= 63.99875rem) {
  .cases-hero__content {
    padding: 2rem 0 0;
  }
}

.cases-hero__title {
  font-size: clamp(2.25rem, 1.8173076923rem + 1.9230769231vw, 3.5rem);
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.cases-hero__title::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 0.125rem;
  background-color: var(--accent);
  border-radius: 0.125rem;
  margin-bottom: 1.25rem;
  margin-top: 0rem;
}

.cases-hero__description {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.cases-hero__image {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16/7;
}
.cases-hero__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 15%;
     object-position: center 15%;
}
@media (width <= 63.99875rem) {
  .cases-hero__image {
    aspect-ratio: 16/9;
  }
}

.cases-stats {
  padding-block: 2.5rem;
  background: linear-gradient(135deg, rgba(45, 125, 210, 0.03) 0%, rgba(45, 125, 210, 0.01) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 3.75rem;
}
@media (width <= 63.99875rem) {
  .cases-stats {
    padding-block: 2rem;
    margin-bottom: 2.5rem;
  }
}
@media (width <= 47.99875rem) {
  .cases-stats {
    padding-block: 1.5rem;
    margin-bottom: 2rem;
  }
}
@media (width <= 47.99875rem) {
  .cases-stats {
    padding-block: 0.875rem;
    margin-bottom: 1.375rem;
  }
}

.cases-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  justify-items: center;
}
@media (width <= 63.99875rem) {
  .cases-stats__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    justify-items: center;
  }
}
@media (width <= 47.99875rem) {
  .cases-stats__grid {
    gap: 0.9375rem;
  }
}

.cases-stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}
@media (width <= 47.99875rem) {
  .cases-stats__item {
    flex-direction: column;
    text-align: center;
  }
}

@media (width <= 47.99875rem) {
  .cases-stats__icon {
    display: flex;
    width: 2rem;
    height: 2rem;
  }
}

.cases-stats__content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: center;
}
@media (width <= 63.99875rem) {
  .cases-stats__content {
    text-align: center;
  }
}

.cases-stats__number {
  font-size: clamp(1.75rem, 1.4903846154rem + 1.1538461538vw, 2.5rem);
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  color: var(--text);
  line-height: 1;
}
@media (width <= 47.99875rem) {
  .cases-stats__number {
    font-size: 18px;
    text-align: center;
  }
}
@media (width <= 30.06125rem) {
  .cases-stats__number {
    font-size: 14px;
    text-align: center;
  }
}

.cases-stats__label {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.4;
}
@media (width <= 47.99875rem) {
  .cases-stats__label {
    font-size: 14px;
    text-align: center;
  }
}

.cases-list {
  padding-block: 2.5rem;
}
@media (width <= 63.99875rem) {
  .cases-list {
    padding-block: 2rem;
  }
}
@media (width <= 47.99875rem) {
  .cases-list {
    padding-block: 1.5rem;
  }
}

.cases-category {
  margin-bottom: 2.5rem;
}
@media (width <= 63.99875rem) {
  .cases-category {
    margin-bottom: 2rem;
  }
}
@media (width <= 47.99875rem) {
  .cases-category {
    margin-bottom: 1.5rem;
  }
}

.cases-category__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (width <= 63.99875rem) {
  .cases-category__grid {
    gap: 1rem;
  }
}

.cases-category__title {
  font-size: clamp(2rem, 1.6538461538rem + 1.5384615385vw, 3rem);
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  color: var(--text);
  margin: 0 0 3rem 0;
  position: relative;
  padding-bottom: 1rem;
}
@media (width <= 63.99875rem) {
  .cases-category__title {
    margin-bottom: 2rem;
    font-size: 1.75rem;
  }
}
@media (width <= 47.99875rem) {
  .cases-category__title {
    margin-bottom: 2rem;
  }
}

.cases-category__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2.5rem;
  height: 0.125rem;
  background-color: var(--accent);
  border-radius: 0.125rem;
}

.case-item {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0rem;
  align-items: start;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
@media (any-hover: hover) {
  .case-item:hover {
    box-shadow: var(--shadow-blue);
  }
}
@media (any-hover: none) {
  .case-item:active {
    box-shadow: var(--shadow-blue);
  }
}
@media (width <= 63.99875rem) {
  .case-item {
    grid-template-columns: 1fr 1.2fr;
    margin-bottom: 1rem;
  }
}
@media (width <= 47.99875rem) {
  .case-item {
    grid-template-columns: 1fr;
    margin-bottom: 0.75rem;
  }
}
.case-item:last-child {
  margin-bottom: 0;
}

.case-item__images {
  position: relative;
}

.case-item__image-wrapper {
  aspect-ratio: 4/3;
}
@media (width <= 63.99875rem) {
  .case-item__image-wrapper {
    aspect-ratio: 4/3;
  }
}

.case-item__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transition: opacity var(--transition);
}

.case-item__image--active {
  opacity: 1;
}

.case-item__toggle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.95);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--shadow-blue);
}
@media (any-hover: hover) {
  .case-item__toggle:hover {
    background-color: #fff;
    box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.16);
    transform: translate(-50%, -50%) scale(1.1);
  }
}
@media (any-hover: none) {
  .case-item__toggle:active {
    background-color: #fff;
    box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.16);
    transform: translate(-50%, -50%) scale(1.1);
  }
}
@media (width <= 47.99875rem) {
  .case-item__toggle {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.case-item__toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}
.case-item__toggle.case-item__toggle--active {
  animation: togglePulse 0.4s ease-out;
}

@keyframes togglePulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.15);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}
.case-item__labels {
  position: absolute;
  top: 0.75rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 0.75rem;
  pointer-events: none;
  z-index: 5;
}

.case-item__label {
  font-size: 0.6875rem;
  font-weight: 600;
  color: #fff;
  background-color: rgba(26, 26, 26, 0.6);
  padding: 0.25rem 0.625rem;
  border-radius: 1rem;
  backdrop-filter: blur(4px);
  letter-spacing: 0.05em;
}

.case-item__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.75rem;
}
@media (width <= 63.99875rem) {
  .case-item__content {
    padding: 0.75rem 0.875rem;
    gap: 0.5rem;
  }
}
@media (width <= 47.99875rem) {
  .case-item__content {
    padding: 1rem;
    gap: 0.75rem;
  }
}

.case-item__title {
  font-size: clamp(1.25rem, 1.0769230769rem + 0.7692307692vw, 1.75rem);
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  color: var(--text);
  margin: 0;
  line-height: 1.2;
}
@media (width <= 63.99875rem) {
  .case-item__title {
    font-size: 1.125rem;
  }
}

.case-item__section {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
@media (width <= 63.99875rem) {
  .case-item__section {
    gap: 0.25rem;
  }
}

.case-item__label-text {
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}
@media (width <= 63.99875rem) {
  .case-item__label-text {
    font-size: 0.75rem;
    line-height: 1.5;
  }
}
@media (width <= 47.99875rem) {
  .case-item__label-text {
    font-size: 0.8125rem;
  }
}
.case-item__label-text strong {
  color: var(--text);
  font-weight: 600;
}

.case-item__meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
@media (width <= 63.99875rem) {
  .case-item__meta {
    gap: 0.75rem;
    margin-top: 0.25rem;
    padding-top: 0.5rem;
  }
}
@media (width <= 47.99875rem) {
  .case-item__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 0;
    padding-top: 0.75rem;
  }
}

.case-item__meta-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: var(--muted);
}
@media (width <= 63.99875rem) {
  .case-item__meta-item {
    font-size: 0.625rem;
  }
}
.case-item__meta-item svg {
  flex-shrink: 0;
  color: var(--accent);
}

.cases-cta {
  padding-block: 1.25rem;
  background: linear-gradient(135deg, rgba(45, 125, 210, 0.04) 0%, rgba(45, 125, 210, 0.01) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: 1.25rem;
}
@media (width <= 63.99875rem) {
  .cases-cta {
    padding-block: 1rem;
    margin-top: 1rem;
  }
}
@media (width <= 47.99875rem) {
  .cases-cta {
    padding-block: 0.75rem;
    margin-top: 0.75rem;
  }
}
.cases-cta .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.cases-cta .container::before, .cases-cta .container::after {
  content: "";
  flex: 1;
  height: 0.0625rem;
  background-color: var(--border);
}

.cases-cta__text {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  max-width: 50rem;
  text-align: center;
}

.cases-cta__btn {
  flex-shrink: 0;
}
@media (width <= 63.99875rem) {
  .cases-cta__btn {
    width: 100%;
  }
}

.case-item__divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  cursor: ew-resize;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.case-item__divider-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 0.125rem;
  background: #fff;
  transform: translateX(-50%);
}

.case-item__divider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-blue);
  color: var(--accent);
}

.case-item__slides {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
}

.case-item__slide {
  display: none;
  width: 100%;
  height: 100%;
}
.case-item__slide--active {
  display: block;
}

.case-item__prev,
.case-item__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--accent);
  box-shadow: var(--shadow-blue);
}

.case-item__prev {
  left: 0.625rem;
}

.case-item__next {
  right: 0.625rem;
}

.case-item__counter {
  position: absolute;
  bottom: 0.625rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6875rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.1875rem 0.625rem;
  border-radius: 100px;
  z-index: 10;
}

.cookies-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: -moz-fit-content;
  width: fit-content;
  max-width: calc(100% - 3rem);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(95, 163, 232, 0.2);
  border-radius: 6.25rem;
  backdrop-filter: blur(12px);
  padding: 0.75rem 1rem;
  box-shadow: 0 0.5rem 2rem rgba(45, 125, 210, 0.12);
  animation: slideUp 0.4s ease-out;
}
@media (width <= 63.99875rem) {
  .cookies-banner {
    border-radius: 1.5rem;
    padding: 0.75rem 1rem;
    max-width: calc(100% - 2rem);
  }
}
@media (width <= 47.99875rem) {
  .cookies-banner {
    border-radius: 1rem;
    bottom: 0.75rem;
    padding: 0.625rem 0.875rem;
    max-width: calc(100% - 1.5rem);
  }
}
@media (width <= 30.06125rem) {
  .cookies-banner {
    padding: 0.5rem 0.625rem;
    max-width: calc(100% - 1rem);
    overflow: visible;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.cookies-banner--hidden {
  animation: slideDown 0.3s ease-out forwards;
}

@keyframes slideDown {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(100%);
    opacity: 0;
  }
}
.cookies-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
@media (width <= 63.99875rem) {
  .cookies-banner__inner {
    gap: 1rem;
  }
}
@media (width <= 47.99875rem) {
  .cookies-banner__inner {
    flex-wrap: nowrap !important;
    align-items: center;
    gap: 0.5rem;
  }
}
@media (width <= 30.06125rem) {
  .cookies-banner__inner {
    gap: 0.375rem;
  }
}

.cookies-banner__icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(95, 163, 232, 0.1) 0%, rgba(95, 163, 232, 0.05) 100%);
}
.cookies-banner__icon img {
  width: 3.875rem;
  height: 3.875rem;
}
@media (width <= 47.99875rem) {
  .cookies-banner__icon {
    display: none;
  }
}
@media (width <= 30.06125rem) {
  .cookies-banner__icon {
    display: none;
  }
}

.cookies-banner__content {
  flex: 1;
  min-width: 17.5rem;
}
@media (width <= 47.99875rem) {
  .cookies-banner__content {
    min-width: 0;
  }
}

.cookies-banner__text {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.5;
  margin: 0;
  white-space: nowrap;
}
@media (width <= 63.99875rem) {
  .cookies-banner__text {
    font-size: 0.875rem;
    white-space: normal;
  }
}
@media (width <= 47.99875rem) {
  .cookies-banner__text {
    font-size: 0.75rem;
    line-height: 1.3;
    white-space: normal;
  }
}
@media (width <= 30.06125rem) {
  .cookies-banner__text {
    font-size: clamp(0.6875rem, 2.5vw, 0.75rem);
    line-height: 1.3;
    white-space: normal;
  }
}

.cookies-banner__link {
  color: #5fa3e8;
  text-decoration: underline;
  cursor: pointer;
  transition: color var(--transition);
}
@media (any-hover: hover) {
  .cookies-banner__link:hover {
    color: #7bb4f0;
  }
}
@media (any-hover: none) {
  .cookies-banner__link:active {
    color: #7bb4f0;
  }
}

.cookies-banner__more {
  flex-shrink: 0;
  font-size: 0.9375rem;
  color: #5fa3e8;
  background: transparent;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
  transition: color var(--transition);
  white-space: nowrap;
}
@media (any-hover: hover) {
  .cookies-banner__more:hover {
    color: #7bb4f0;
  }
}
@media (any-hover: none) {
  .cookies-banner__more:active {
    color: #7bb4f0;
  }
}
@media (width <= 47.99875rem) {
  .cookies-banner__more {
    order: 3;
    width: 100%;
    text-align: left;
    font-size: 0.875rem;
  }
}
@media (width <= 30.06125rem) {
  .cookies-banner__more {
    font-size: clamp(0.5625rem, 2vw, 0.875rem);
  }
}

.cookies-banner__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
@media (width <= 30.06125rem) {
  .cookies-banner__actions {
    flex-shrink: 0;
    width: auto !important;
  }
}

.cookies-banner__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #fff;
  background: #5fa3e8;
  border: none;
  border-radius: 1.5rem;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
@media (any-hover: hover) {
  .cookies-banner__btn:hover {
    background: #7bb4f0;
    box-shadow: 0 0.25rem 0.75rem rgba(95, 163, 232, 0.3);
  }
}
@media (any-hover: none) {
  .cookies-banner__btn:active {
    background: #7bb4f0;
    box-shadow: 0 0.25rem 0.75rem rgba(95, 163, 232, 0.3);
  }
}
.cookies-banner__btn img {
  width: 1.625rem;
  height: 1.625rem;
  transform: scale(2.875);
}
@media (width <= 47.99875rem) {
  .cookies-banner__btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }
}
@media (width <= 30.06125rem) {
  .cookies-banner__btn {
    padding: 0.375rem 0.625rem;
    font-size: clamp(0.5rem, 2vw, 0.875rem);
    flex-shrink: 0;
    white-space: nowrap;
  }
}

.cookies-banner__close {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: all var(--transition);
}
@media (any-hover: hover) {
  .cookies-banner__close:hover {
    background: rgba(95, 163, 232, 0.1);
  }
}
@media (any-hover: none) {
  .cookies-banner__close:active {
    background: rgba(95, 163, 232, 0.1);
  }
}
.cookies-banner__close img {
  width: 1.25rem;
  height: 1.25rem;
  transform: scale(2.875);
}
@media (width <= 47.99875rem) {
  .cookies-banner__close {
    width: 2rem;
    height: 2rem;
  }
  .cookies-banner__close img {
    width: 1rem;
    height: 1rem;
  }
}
@media (width <= 30.06125rem) {
  .cookies-banner__close {
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
  }
}

.privacy__hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding-block: 5rem 3.75rem;
}
@media (width <= 63.99875rem) {
  .privacy__hero {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-block: 3rem 2rem;
  }
}
@media (width <= 47.99875rem) {
  .privacy__hero {
    padding-block: 2rem 1.5rem;
  }
}

.privacy__breadcrumb {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.privacy__title {
  font-size: clamp(2rem, 1.4807692308rem + 2.3076923077vw, 3.5rem);
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.privacy__intro {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1rem;
  max-width: 32.5rem;
}

.privacy__date {
  font-size: 0.8125rem;
  color: var(--muted);
  margin: 0;
}

.privacy__hero-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.privacy__hero-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 20%;
     object-position: center 20%;
}
@media (width <= 63.99875rem) {
  .privacy__hero-image {
    order: -1;
  }
}

.privacy__content {
  display: grid;
  grid-template-columns: 13.75rem 1fr;
  gap: 4rem;
  padding-bottom: 5rem;
  align-items: start;
}
@media (width <= 63.99875rem) {
  .privacy__content {
    grid-template-columns: 11.25rem 1fr;
    gap: 2rem;
  }
}
@media (width <= 47.99875rem) {
  .privacy__content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-bottom: 2rem;
  }
}

.privacy__nav {
  position: sticky;
  top: 6.25rem;
}
@media (width <= 47.99875rem) {
  .privacy__nav {
    display: none;
  }
}

.privacy__nav-title {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.privacy__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.privacy__nav-list a {
  font-size: 0.8125rem;
  color: var(--muted);
  text-decoration: none;
  line-height: 1.5;
  transition: color var(--transition);
}
@media (any-hover: hover) {
  .privacy__nav-list a:hover {
    color: var(--accent);
  }
}
@media (any-hover: none) {
  .privacy__nav-list a:active {
    color: var(--accent);
  }
}

.privacy__text {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.privacy__section {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.privacy__section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text);
  margin: 0;
}

.privacy__section-text {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.privacy__list {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.7;
  padding-left: 1.25rem;
  margin: 0;
}
.privacy__list li {
  margin-bottom: 0.375rem;
}
.privacy__list li:last-child {
  margin-bottom: 0;
}/*# sourceMappingURL=main.css.map */