/* ============================================
   BUSINESS DEUTSCH - Main Styles
   Pixel-perfect: 375 / 768 / 1024 / 1440 / 1920
   ============================================ */

:root {
  /* Grid: jedna siatka dla headera + wszystkich bloków, pixel-perfect */
  --grid-max: 1696px;
  --grid-gutter: 32px;
  /* Colors - German-inspired palette */
  --color-red: #E64237;
  --color-yellow: #FFDD55;
  --color-dark: #1A1A1A;
  --color-black: #111111;
  --color-white: #FFFFFF;
  /* Typography */
  --text-xs: 0.75rem;     /* 12px */
  --text-sm: 0.875rem;    /* 14px */
  --text-base: 1rem;      /* 16px */
  --text-lg: 1.125rem;    /* 18px */
  --text-xl: 1.25rem;     /* 20px */
  --text-2xl: 1.5rem;     /* 24px */
  --text-3xl: 2rem;       /* 32px */
  --text-4xl: 2.5rem;     /* 40px */
  --text-5xl: 3rem;       /* 48px */
  --text-6xl: 4rem;       /* 64px */
  --text-7xl: 5rem;       /* 80px */
  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  /* Container */
  --container-x: 16px;
  --container-y: 48px;
}

@media (max-width: 1023px) {
  :root {
    --grid-gutter: 24px;
  }
}

@media (max-width: 767px) {
  :root {
    --grid-gutter: 16px;
  }
}

/* Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Floating UI (language chip + scroll-to-top) */
:root {
  --floating-bottom: 40px;
  /* How much to raise controls near footer (102 - 40). */
  --floating-raise-amount: 62px;
  --floating-raise: 0px;
}

body {
  font-family: Helvetica, Arial, sans-serif;
  font-size: var(--text-base);
  line-height: 1.6;
  color: #1A1A1A;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

ul, ol {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
}

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

/* ============================================
   HEADER
   ============================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px var(--grid-gutter);
  background: transparent;
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(26, 26, 26, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header__container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  max-width: var(--grid-max);
  width: 100%;
  margin: 0 auto;
}

.header__logo {
  text-decoration: none;
}

.header__logo-image {
  display: block;
  width: 140px;
  height: auto;
  filter: brightness(0) invert(1);
}

.header__nav {
  display: none;
  justify-self: center;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.header__nav--hidden {
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
}

@media (min-width: 1024px) {
  .header__nav {
    display: block;
  }
}

.header__menu-group {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 40px;
}

.header__menu {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  height: 100%;
}

.header__menu li {
  margin: 0;
}

.header__menu a {
  display: flex;
  align-items: center;
  padding: 0;
  height: 100%;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  background: transparent;
  border: none;
  border-radius: 0;
  transition: color 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.header__menu a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.header__cabinet-desktop {
  display: none;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  padding: 0;
  color: #1A1A1A;
  border-radius: 9999px;
  border: none;
  background: #ffffff;
  transition: background 0.3s ease, transform 0.3s ease;
}

.header__cabinet-desktop svg {
  flex-shrink: 0;
}

.header__cabinet-desktop:hover {
  background: #f5f5f5;
  transform: translateY(-1px);
}

@media (min-width: 768px) {
  .header__cabinet-desktop {
    display: inline-flex;
  }
}

.header__right {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-self: end;
}

.header__action-group {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.header__lang {
  display: none;
  align-items: center;
  gap: 0;
  padding: 0 6px 0 4px;
}

.header__lang-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  padding: 4px 8px;
  color: rgba(255, 255, 255, 0.46);
  /* font-size: 0 hides DOM text that TranslatePress may overwrite */
  font-size: 0;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: color 0.2s ease;
}

/* Render label from data-alexa-lang — CSS content is never touched by TranslatePress */
.header__lang-item[data-alexa-lang="uk"]::after { content: "UA"; font-size: 13px; }
.header__lang-item[data-alexa-lang="en"]::after { content: "EN"; font-size: 13px; }
.header__lang-item[data-alexa-lang="pl"]::after { content: "PL"; font-size: 13px; }

.header__lang-item:hover {
  color: rgba(255, 255, 255, 0.76);
}

.header__lang-item.is-active {
  color: #ffffff;
}

.header__lang-sep {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.28);
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .header__lang {
    display: flex;
  }
}

.header__cta-btn {
  display: none;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 500;
  color: #1A1A1A;
  background: #ffffff;
  border: none;
  border-radius: 9999px;
  transition: background 0.3s ease;
  white-space: nowrap;
  line-height: 1;
  align-items: center;
  justify-content: center;
  height: 50px;
  box-sizing: border-box;
}

.header__cta-btn:hover {
  background: #f0f0f0;
}

@media (min-width: 768px) {
  .header__cta-btn {
    display: inline-flex;
  }
}


@media (min-width: 768px) and (max-width: 1023px) {
  .header__cta-btn {
    padding: 12px 20px;
    font-size: 13px;
  }
}

.header__burger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  background: #ffffff;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: background 0.3s ease;
  position: relative;
}

.header__burger:hover {
  background: #f5f5f5;
}

/* Пропорційна іконка: 3 однакові лінії, рівні проміжки */
.header__burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #1a1a1a;
  border-radius: 1px;
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.2s ease;
  position: absolute;
  left: 50%;
  margin-left: -10px;
}

.header__burger span:nth-child(1) {
  top: 11px;
}

.header__burger span:nth-child(2) {
  top: 50%;
  margin-top: -1px;
}

.header__burger span:nth-child(3) {
  top: 27px;
}

.header__burger.is-active span:nth-child(1) {
  top: 50%;
  margin-top: -1px;
  transform: rotate(45deg);
}

.header__burger.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.header__burger.is-active span:nth-child(3) {
  top: 50%;
  margin-top: -1px;
  transform: rotate(-45deg);
}

@media (min-width: 1024px) {
  .header__burger {
    display: none;
  }
}

@media (max-width: 1023px) {
  .header {
    padding: 16px var(--grid-gutter);
  }
  .header__container {
    gap: 12px;
  }
  .header__logo-image {
    width: 120px;
  }
}

@media (max-width: 767px) {
  .header {
    padding: 12px var(--grid-gutter);
  }
  .header__container {
    gap: 12px;
  }
  .header__logo-image {
    width: 120px;
  }
  .header__cta-btn {
    display: none !important;
  }
  .header__cabinet-desktop {
    display: none !important;
  }
  .header__action-group {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    padding: 0;
    gap: 0;
  }
}

/* Slide-out Menu */
.header__slide-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 998;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.header__slide-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.header__slide-menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.header__slide-menu-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: #1A1A1A;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.header__slide-menu.is-open .header__slide-menu-content {
  transform: translateX(0);
}

.header__slide-menu-close {
  align-self: flex-end;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 12px;
  position: relative;
  flex-shrink: 0;
}

.header__slide-menu-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.header__slide-menu-close span {
  position: absolute;
  width: 14px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 1px;
}

.header__slide-menu-close span:nth-child(1) {
  transform: rotate(45deg);
}

.header__slide-menu-close span:nth-child(2) {
  transform: rotate(-45deg);
}

.header__slide-nav {
  flex: 1;
  overflow: visible;
  min-height: 0;
}

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

.header__slide-menu-list li {
  margin-bottom: 2px;
}

.header__slide-menu-list a {
  display: block;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 400;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
}

.header__slide-menu-list a:hover {
  color: #ffffff;
  padding-left: 12px;
}

.header__slide-menu-lang {
  margin: 12px 0 20px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* Горизонтальна лінія вибору мови (як у hero, але в ряд) */
.header__slide-menu-lang-list {
  display: flex;
  align-items: center;
  gap: 0;
}

.header__slide-menu-lang-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  font-size: 0;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  padding: 4px 8px;
  transition: none;
}

.header__slide-menu-lang-item[data-alexa-lang="uk"]::after { content: "UA"; font-size: 13px; }
.header__slide-menu-lang-item[data-alexa-lang="en"]::after { content: "EN"; font-size: 13px; }
.header__slide-menu-lang-item[data-alexa-lang="pl"]::after { content: "PL"; font-size: 13px; }

.header__slide-menu-lang-item:hover {
  color: rgba(255, 255, 255, 0.45);
}

.header__slide-menu-lang-item.is-active {
  color: #ffffff;
}

/* Hide TranslatePress duplicate switchers inside our custom language rows */
.header__slide-menu-lang-list .trp-language-switcher,
.header__lang .trp-language-switcher,
.hero__lang-list .trp-language-switcher,
.lang-chip__inline .trp-language-switcher,
#lang-chip-menu .trp-language-switcher {
  display: none !important;
}

.header__slide-menu-lang-sep {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
}

.header__slide-menu-lang-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.header__slide-menu-lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__slide-menu-lang-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.2s ease;
}

.header__slide-menu-lang-btn:hover {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.header__slide-menu-lang-btn.active {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

.header__slide-menu-lang-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.2);
}

.header__slide-menu-cta {
  margin-top: auto;
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.header__slide-menu-btn {
  display: block;
  width: 100%;
  padding: 14px 24px;
  background: #ffffff;
  color: #1A1A1A;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}


.header__slide-menu-contacts {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.header__slide-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.header__slide-contact-item svg {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.5);
}

.header__slide-contact-item a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.header__slide-contact-item a:hover {
  color: #ffffff;
}

.header__slide-menu-btn:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Cabinet */
.cabinet {
  padding: 110px 0 80px;
  background: #0f0f0f;
  color: #ffffff;
}

.cabinet__container {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 var(--grid-gutter);
}

.cabinet__layout {
  display: grid;
  grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
  gap: 28px;
}

.cabinet__sidebar {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: fit-content;
}

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

.cabinet__label,
.cabinet__status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cabinet__status {
  background: rgba(255, 255, 255, 0.16);
}

.cabinet__nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cabinet__nav-item {
  padding: 10px 12px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s ease, color 0.2s ease;
}

.cabinet__nav-item:hover,
.cabinet__nav-item--active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.cabinet__sidebar-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cabinet__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cabinet__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.cabinet__title {
  margin: 0 0 8px;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
}

.cabinet__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.cabinet__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.cabinet-stat {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.cabinet-stat strong {
  color: #ffffff;
  font-size: 14px;
}

.cabinet__grid {
  display: grid;
  gap: 20px;
}

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

.cabinet-panel {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cabinet-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cabinet-panel__head h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.cabinet-panel--compact {
  gap: 14px;
}

.cabinet__link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 13px;
}

.cabinet-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cabinet-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.25);
}

.cabinet-item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
}

.cabinet-item span {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.cabinet-metric {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.25);
}

.cabinet-metric strong {
  font-size: 16px;
}

.cabinet-metric span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.cabinet__pill {
  border-radius: 9999px;
  background: #ffffff;
  color: #1a1a1a;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.cabinet__pill--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cabinet__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 9999px;
  background: #ffffff;
  color: #1a1a1a;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cabinet__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.cabinet__btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 1023px) {
  .cabinet__layout {
    grid-template-columns: 1fr;
  }
  .cabinet__header {
    flex-direction: column;
    align-items: flex-start;
  }
  .cabinet__stats {
    width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
  .cabinet__grid--side {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .cabinet {
    padding: 96px 0 70px;
  }
  .cabinet__stats {
    grid-template-columns: 1fr;
  }
  .cabinet-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .cabinet__pill {
    width: 100%;
    text-align: center;
  }
}


/* Mobile bottom nav */
.mobile-nav {
  position: fixed;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%) translateY(20px);
  width: calc(100% - 24px);
  max-width: 420px;
  display: none;
  gap: 8px;
  padding: 8px;
  background: rgba(18, 18, 18, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9999px;
  z-index: 999;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.mobile-nav.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.lang-chip {
  position: fixed;
  left: 24px;
  right: auto;
  bottom: var(--floating-bottom);
  z-index: 900;
  display: none;
  opacity: 0;
  transform: translateY(calc(20px - var(--floating-raise))) scale(0.9);
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.lang-chip.is-visible {
  opacity: 1;
  transform: translateY(calc(0px - var(--floating-raise))) scale(1);
  pointer-events: auto;
}

.lang-chip__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  padding: 0 16px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(18, 18, 18, 0.75);
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lang-chip__code {
  font-weight: 700;
  letter-spacing: 0.08em;
}

.lang-chip__menu {
  position: absolute;
  left: 0;
  right: auto;
  bottom: 56px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(18, 18, 18, 0.9);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.lang-chip.is-open .lang-chip__menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.lang-chip__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  padding: 8px 10px;
  border-radius: 10px;
  color: #ffffff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.lang-chip__item:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

/* TranslatePress language switcher styling */
.header__slide-menu-lang .trp-language-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__slide-menu-lang .trp-language-switcher a,
.header__slide-menu-lang .trp-language-switcher span {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.header__slide-menu-lang .trp-language-switcher a:hover,
.header__slide-menu-lang .trp-language-switcher span:hover {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.header__slide-menu-lang .trp-ls-shortcode-current-language {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

/* Hero: вертикальна біла лінія з трьома мовами — повне перевизначення шорткода */
.hero__lang .trp-language-switcher,
.hero__lang [class*="trp-ls"],
.hero__lang [class*="trp-language"] {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  gap: 0 !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: none !important;
  min-width: 0 !important;
  position: static !important;
}

.hero__lang .trp-language-switcher li,
.hero__lang [class*="trp-ls"] li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Приховати тільки шеврон/іконку, не чіпати ::after для ліній */
.hero__lang .trp-language-switcher svg,
.hero__lang .trp-language-switcher .trp-ls-chevron,
.hero__lang .trp-language-switcher [class*="arrow"] {
  display: none !important;
}

/* У hero завжди показувати всі мови списком, не dropdown */
.hero__lang .trp-language-switcher [class*="dropdown-menu"],
.hero__lang .trp-language-switcher [class*="trp-ls-menu"],
.hero__lang .trp-language-switcher ul {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  position: static !important;
  opacity: 1 !important;
  visibility: visible !important;
  border: none !important;
  background: none !important;
  box-shadow: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Підтримка shortcodes без ul/li (TranslatePress) */
.hero__lang .trp-language-switcher.trp-language-switcher-shortcode,
.hero__lang .trp-shortcode-switcher__wrapper,
.hero__lang .trp-shortcode-switcher {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 0 !important;
  position: static !important;
}

/* Примусово тримати dropdown відкритим (TranslatePress hover dropdown) */
.hero__lang .trp-language-switcher.trp-ls-dropdown,
.hero__lang .trp-language-switcher .trp-ls-dropdown,
.hero__lang .trp-open-on-hover,
.hero__lang .trp-open-on-hover.trp-open {
  position: static !important;
}

.hero__lang .trp-language-switcher .trp-shortcode-overlay {
  display: none !important;
}

.hero__lang .trp-language-switcher .trp-ls-shortcode-language,
.hero__lang .trp-language-switcher .trp-ls-shortcode-current-language,
.hero__lang .trp-language-switcher .trp-ls-shortcode-language a,
.hero__lang .trp-language-switcher .trp-ls-shortcode-language span {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  max-height: none !important;
  pointer-events: auto !important;
}

/* Завжди як без ховера: неактивні — сірі, активна — біла. Ховер не змінює вигляд */
.hero__lang .trp-language-switcher a,
.hero__lang .trp-language-switcher span,
.hero__lang .trp-language-switcher .trp-ls-shortcode-language,
.hero__lang .trp-current-language-item__wrapper {
  display: block !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.45) !important;
  padding: 4px !important;
  transition: none !important;
  text-decoration: none !important;
  cursor: pointer !important;
  border: none !important;
  background: none !important;
  box-shadow: none !important;
  opacity: 1 !important;
}

.hero__lang .trp-language-switcher a:hover,
.hero__lang .trp-language-switcher span:hover,
.hero__lang .trp-language-switcher .trp-ls-shortcode-language:hover {
  color: rgba(255, 255, 255, 0.45) !important;
}

/* Активна мова — завжди біла */
.hero__lang .trp-ls-shortcode-current-language,
.hero__lang .trp-current-language-item__wrapper {
  color: #ffffff !important;
  opacity: 1 !important;
}

/* Дві черточки між трьома пунктами (PL | EN | UK) */
.hero__lang .trp-language-switcher > *:not(:last-child)::after,
.hero__lang .trp-language-switcher > * > *:not(:last-child)::after,
.hero__lang .trp-language-switcher a:not(:last-of-type)::after,
.hero__lang .trp-language-switcher .trp-ls-shortcode-language:not(:last-of-type)::after,
.hero__lang .trp-language-switcher li:not(:last-child)::after,
.hero__lang .trp-shortcode-switcher__wrapper > *:not(:last-child)::after,
.hero__lang .trp-shortcode-switcher > *:not(:last-child)::after,
.hero__lang .trp-current-language-item__wrapper:not(:last-child)::after {
  content: '';
  display: block !important;
  width: 14px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  margin: 6px auto 0;
}

.hero__lang .trp-ls-shortcode-language {
  display: block !important;
}

/* Hide TranslatePress output in hero (use custom list instead) */
.hero__lang .trp-language-switcher,
.hero__lang .trp-shortcode-switcher__wrapper,
.hero__lang .trp-shortcode-switcher {
  display: none !important;
}

.hero__lang [class*="trp-"] {
  display: none !important;
}

/* Hero custom language list: неактивні сірі, активна (.is-active) завжди біла */
.hero__lang .hero__lang-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero__lang .hero__lang-item {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  padding: 4px;
  text-decoration: none;
  transition: none;
}

.hero__lang .hero__lang-item:hover {
  color: rgba(255, 255, 255, 0.45);
}

.hero__lang .hero__lang-item.is-active {
  color: #ffffff !important;
}

.hero__lang .hero__lang-item.is-active:hover {
  color: #ffffff !important;
}

/* Дві черточки між пунктами */
.hero__lang .hero__lang-item:not(:last-child)::after {
  content: '';
  display: block;
  width: 14px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  margin: 6px auto 0;
}

.lang-chip__inline .trp-language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 42px;
  height: 30px;
  padding: 0 10px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(18, 18, 18, 0.75);
  color: #ffffff;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lang-chip__inline .trp-language-switcher a,
.lang-chip__inline .trp-language-switcher span {
  color: #ffffff;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lang-chip__inline .trp-ls-shortcode-current-language {
  opacity: 1;
}

@media (min-width: 1024px) {
  .lang-chip {
    display: block;
  }
}

.mobile-nav__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 6px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 9999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.mobile-nav__item svg {
  flex-shrink: 0;
}

.mobile-nav__item--primary {
  background: #ffffff;
  color: #1a1a1a;
}

.mobile-nav__item:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 767px) {
  .mobile-nav {
    display: flex;
  }
  body {
    padding-bottom: 84px;
  }
}


/* Mobile - Menu from bottom */
@media (max-width: 1023px) {
  .header__slide-menu-content {
    max-width: 100%;
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    height: auto;
    max-height: none;
    transform: translateY(100%);
    border-radius: 20px 20px 0 0;
    background: #1A1A1A;
    padding: 20px;
    overflow-y: visible;
  }

  .header__slide-menu.is-open .header__slide-menu-content {
    transform: translateY(0);
  }

  .header__slide-nav {
    flex: 0 0 auto;
    overflow: hidden;
  }

  .header__slide-menu-close {
    width: 32px;
    height: 32px;
    margin-bottom: 12px;
  }

  .header__slide-menu-close span {
    width: 14px;
    height: 1.5px;
  }

  .header__slide-menu-list {
    margin-bottom: 4px;
  }

  .header__slide-menu-list li {
    margin-bottom: 2px;
  }

  .header__slide-menu-list a {
    padding: 8px 0;
    font-size: 14px;
  }

  .header__slide-menu-lang {
    margin: 8px 0 16px;
    padding: 14px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .header__slide-menu-lang-label {
    font-size: 12px;
  }

  .header__slide-menu-lang-switcher {
    width: 100%;
    justify-content: flex-start;
  }

  .header__slide-menu-lang-btn {
    padding: 8px 14px;
    font-size: 13px;
  }

  .header__slide-menu-cta {
    padding-top: 16px;
    gap: 6px;
  }

  .header__slide-menu-btn {
    padding: 12px 24px;
    font-size: 15px;
  }

  .header__slide-menu-contacts {
    margin-top: 16px;
    padding-top: 16px;
    gap: 12px;
  }

  .header__slide-contact-item {
    font-size: 13px;
    gap: 10px;
  }

  .header__slide-contact-item svg {
    width: 14px;
    height: 14px;
  }
}


/* ============================================
   HERO - ONE HOME STYLE
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #FAEDEC;
}

.hero__container {
  width: 100%;
  max-width: var(--grid-max);
  margin: 0 auto;
  padding: 0 var(--grid-gutter);
  box-sizing: border-box;
}

.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, 
    rgba(0, 0, 0, 0.4) 0%, 
    rgba(0, 0, 0, 0.3) 60%, 
    rgba(17, 17, 17, 0.8) 85%, 
    #111111 100%
  );
  z-index: 2;
}

/* Top Bar */
.hero__topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 24px 0;
  padding-top: 80px;
}

.hero__location {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  margin-left: auto;
}

.hero__time {
  color: rgba(255, 255, 255, 0.9);
}

/* Main Content */
.hero__main {
  position: relative;
  z-index: 5;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0 160px;
  width: 100%;
  min-height: 420px;
}

.hero__main .hero__container {
  padding-left: var(--grid-gutter);
  padding-right: var(--grid-gutter);
}



@media (max-width: 768px) {
  .hero__main {
    order: 2;
  }
}

.hero__title {
  font-size: 42px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-white);
  margin: 0 0 16px;
  padding: 0;
}

.hero__title-flag {
  display: inline-block;
  vertical-align: middle;
  font-size: 0.88em;
  margin-left: 0.08em;
  line-height: 1;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.4)) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
}

@media (min-width: 1024px) {
  .hero__title-flag {
    font-size: 0.96em;
  }
}

@media (min-width: 768px) {
  .hero__title {
    font-size: 60px;
  }
}

@media (min-width: 1024px) {
  .hero__title {
    font-size: 77px;
  }
}

@media (min-width: 1440px) {
  .hero__title {
    font-size: 85px;
  }
}

@media (min-width: 1920px) {
  .hero__title {
    font-size: 95px;
  }
}

.hero__description {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  max-width: 480px;
  margin: 0;
  margin-left: 4px;
}

.hero__description strong {
  font-weight: 600;
  color: var(--color-white);
}

/* Hero Actions */
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  margin-top: 24px;
  margin-left: 0;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.hero__btn--primary {
  background: var(--color-white);
  color: var(--color-dark);
}

.hero__btn--primary:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.hero__btn--secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
}

.hero__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

/* Language Switcher */
.hero__lang-wrapper {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center; /* Center the container wrapper */
}

/* Inner container that matches grid */
.hero__lang-wrapper .hero__container {
  width: 100%;
  max-width: var(--grid-max);
  margin: 0 auto;
  padding: 0 var(--grid-gutter);
  display: flex;
  justify-content: flex-end; /* Push content to right */
  height: 100%;
  align-items: center;
}

.hero__lang {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  pointer-events: auto;
  /* margin-left: auto; Removed, handled by flex container */
}

.hero__lang-btn {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  padding: 4px;
  transition: color 0.3s ease;
}

.hero__lang-btn:hover {
  color: rgba(255, 255, 255, 0.9);
}

.hero__lang-btn.active {
  color: rgba(255, 255, 255, 0.95);
}

.hero__lang-divider {
  width: 16px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}

/* Tags */
.hero__tags {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 6;
  padding: 40px 0 16px;
  pointer-events: none;
}

.hero__tags-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  pointer-events: auto;
  max-width: 420px;
}

@media (min-width: 1440px) {
  .hero__tags-grid {
    max-width: 460px;
    gap: 8px;
  }
}

@media (min-width: 1920px) {
  .hero__tags-grid {
    max-width: 480px;
  }
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 11px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 9999px;
  pointer-events: auto;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.hero__tag:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.hero__tag-bullet {
  width: 5px;
  height: 5px;
  background: var(--color-yellow);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero__tag-text {
  font-size: 12px;
  font-weight: 400;
  color: var(--color-white);
  white-space: nowrap;
}

@media (min-width: 1024px) {
  .hero__tag-text {
    font-size: 13px;
  }
}

/* Swiper – extends beyond container to viewport edge */
.hero__swiper-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 6;
  pointer-events: none;
  padding-bottom: 48px;
  overflow: visible;
}

.hero__swiper-wrapper .hero__container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  max-width: var(--grid-max);
  margin: 0 auto;
  padding-left: var(--grid-gutter);
  padding-right: 0; /* No padding - swiper extends to viewport edge */
  pointer-events: auto;
  overflow: visible;
}

.hero__swiper {
  width: 100%;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: auto;
  overflow: visible;
}

.hero__swiper-container {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  pointer-events: auto;
  /* 
   * Extend to right edge of viewport:
   * Use max(0, ...) to prevent negative values on small screens
   */
  --swiper-overflow: max(0px, calc((100vw - var(--grid-max)) / 2));
  width: calc(100% + var(--swiper-overflow));
  margin-right: calc(-1 * var(--swiper-overflow));
  padding-right: 24px;
}

.hero__swiper-container::-webkit-scrollbar {
  display: none;
}

.hero__swiper-arrows {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 8px;
  pointer-events: auto;
  /* Keep arrows within grid bounds */
  padding-right: var(--grid-gutter);
}

.hero__swiper-arrow {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.hero__swiper-arrow:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  transform: scale(1.05);
}

.hero__swiper-arrow:active {
  transform: scale(0.95);
}

.hero__swiper-arrow svg {
  width: 14px;
  height: 14px;
}

.hero__swiper-track {
  display: flex;
  gap: 12px;
  padding-right: 40px; /* Extra space after last card */
}

.hero__swiper-card {
  flex: 0 0 auto;
  width: 300px;
  display: flex;
  gap: 12px;
  padding: 16px;
  background: rgba(74, 74, 74, 0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.hero__swiper-card:hover {
  background: rgba(74, 74, 74, 0.9);
  border-color: rgba(255, 255, 255, 0.3);
}

.hero__swiper-image {
  flex: 0 0 auto;
  width: 100px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
}

.hero__swiper-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__swiper-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.hero__swiper-title {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.3;
  margin: 0 0 4px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero__swiper-subtitle {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.4;
}


/* Watermark */
.hero__watermark {
  position: absolute;
  bottom: 5%;
  left: 0;
  right: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

.hero__watermark span {
  display: block;
  font-size: 120px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: -0.02em;
  line-height: 0.85;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (min-width: 1440px) {
  .hero__watermark span {
    font-size: 140px;
  }
}

@media (min-width: 1920px) {
  .hero__watermark span {
    font-size: 160px;
  }
}

/* Hero + mobile: 768 (tablet) */
@media (max-width: 1023px) {
  .hero__topbar {
    padding: 20px 0;
    padding-top: 72px;
  }

  .hero__location {
    gap: 10px;
    font-size: 13px;
  }

  .hero__main {
    padding: 64px 0 140px;
    min-height: 380px;
  }

  .hero__title {
    font-size: 60px;
    margin-bottom: 14px;
    line-height: 1.1;
  }

  .hero__description {
    font-size: 14px;
    max-width: 420px;
  }

  .hero__actions {
    gap: 12px;
    margin-top: 20px;
  }

  .hero__btn {
    padding: 14px 24px;
    font-size: 15px;
  }

  .hero__lang {
    right: var(--grid-gutter);
    gap: 6px;
  }

  .hero__tags {
    padding: 24px 0;
  }

  .hero__tags-grid {
    gap: 4px;
    max-width: 360px;
  }

  .hero__tag {
    padding: 5px 9px;
  }

  .hero__tag-text {
    font-size: 11px;
  }

  .hero__tag-bullet {
    width: 4px;
    height: 4px;
  }

  .hero__watermark span {
    font-size: 96px;
  }

  .hero__swiper-wrapper {
    padding-bottom: 24px;
  }

  .hero__swiper {
    max-width: 100%;
    padding-right: var(--grid-gutter);
  }

  .hero__swiper-container {
    /* Full viewport width on tablet */
    width: 100vw;
    margin-right: calc(-1 * var(--grid-gutter));
  }
}

/* Hero + mobile: 375 */
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }

  .header__menu-group {
    padding: 4px;
    min-height: 32px;
    gap: 4px;
  }

  .header__menu {
    gap: 8px;
    padding: 0 8px;
  }

  .header__menu a {
    font-size: 11px;
  }

  .header__right {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header__action-group {
    gap: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    justify-content: center;
  }

  .header__cta-btn {
    padding: 6px 12px;
    font-size: 11px;
  }

  .hero__topbar {
    padding: 12px 0;
    padding-top: 70px;
  }

  .hero__location {
    gap: 8px;
    font-size: 12px;
  }

  .hero__main {
    padding: 100px 0 220px;
    min-height: 360px;
  }

  .hero__title {
    font-size: 42px;
    margin-top: 12px;
    margin-bottom: 8px;
  }

  .hero__description {
    font-size: 12px;
    max-width: 100%;
    margin-top: 0;
    line-height: 1.6;
  }

  .hero__lang-wrapper {
    display: none;
  }

  .hero__actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
    margin-left: 0;
  }

  .hero__btn {
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    justify-content: center;
    width: 100%;
  }


  .hero__tags {
    display: none;
  }

  .hero__watermark span {
    font-size: 72px;
  }

  .hero__swiper-wrapper {
    padding-bottom: 24px;
  }

  .hero__swiper-wrapper .hero__container {
    align-items: stretch;
    padding-right: 0;
  }

  .hero__swiper {
    max-width: 100%;
    padding-right: var(--grid-gutter);
  }

  .hero__swiper-container {
    /* Full viewport width on mobile */
    width: 100vw;
    margin-right: calc(-1 * var(--grid-gutter));
  }

  .hero__swiper-track {
    gap: 10px;
    padding-right: 60px; /* Extra space for last slide */
  }

  .hero__swiper-card {
    width: 260px;
    min-width: 260px;
    padding: 12px;
    gap: 10px;
  }

  .hero__swiper-image {
    width: 78px;
    height: 78px;
  }

  .hero__swiper-title {
    font-size: 13px;
  }

  .hero__swiper-subtitle {
    font-size: 11px;
  }
}

/* ============================================
   PHILOSOPHY SECTION
   ============================================ */

.philosophy {
  position: relative;
  padding: 96px var(--grid-gutter);
  background: #1A1A1A;
  overflow: hidden;
}

.philosophy::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(180deg, transparent 0%, rgba(17, 17, 17, 0.5) 40%, rgba(17, 17, 17, 0.9) 80%, #111 100%);
  pointer-events: none;
  z-index: 1;
}

.philosophy__container {
  max-width: var(--grid-max);
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.philosophy__label {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-red);
  margin-bottom: 12px;
}

.philosophy__title {
  font-size: 48px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0 0 24px 0;
}

.philosophy__title--outline {
  display: block;
  -webkit-text-stroke: 1px #ffffff;
  -webkit-text-fill-color: transparent;
}

.philosophy__text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.7;
}

.philosophy__text p {
  margin: 0 0 16px 0;
}

.philosophy__text strong {
  color: #fff;
}

.philosophy__quote {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  font-style: italic;
  margin-bottom: 20px !important;
  position: relative;
}

.philosophy__quote-mark {
  font-size: 40px;
  color: rgba(255, 255, 255, 0.2);
  font-family: Georgia, serif;
  position: absolute;
  top: -8px;
  left: -12px;
}

.philosophy__visual {
  display: flex;
  justify-content: center;
}

.philosophy__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.philosophy__stat {
  text-align: center;
  padding: 24px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.philosophy__stat-value {
  display: block;
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.philosophy__stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   FEATURES SECTION - 3D Flip Cards
   ============================================ */

.features {
  position: relative;
  padding: 96px var(--grid-gutter);
  background: #111;
}

.features__container {
  max-width: var(--grid-max);
  width: 100%;
  margin: 0 auto;
}

.features__header {
  text-align: center;
  margin-bottom: 48px;
}

.features__label {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-red);
  margin-bottom: 12px;
}

.features__title {
  font-size: 48px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0;
}

.features__title--outline {
  display: block;
  -webkit-text-stroke: 1px #ffffff;
  -webkit-text-fill-color: transparent;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.features__card {
  perspective: 1000px;
  height: 260px;
  cursor: pointer;
}

.features__card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.features__card:hover .features__card-inner,
.features__card.is-flipped .features__card-inner {
  transform: rotateY(180deg);
}

.features__card-front,
.features__card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.features__card-front {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  justify-content: center;
  align-items: center;
  text-align: center;
}

.features__card-back {
  background: linear-gradient(135deg, rgba(230, 66, 55, 0.1), rgba(26, 26, 26, 0.95));
  border: 1px solid rgba(230, 66, 55, 0.25);
  transform: rotateY(180deg);
  justify-content: center;
  align-items: center;
  text-align: center;
}

.features__card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(230, 66, 55, 0.12);
  border-radius: 50%;
  margin-bottom: 16px;
  color: var(--color-red);
  border: 1px solid rgba(230, 66, 55, 0.3);
}

/* Alternate colors for variety */
.features__card:nth-child(2) .features__card-icon {
  background: rgba(255, 221, 85, 0.12);
  color: var(--color-yellow);
  border-color: rgba(255, 221, 85, 0.3);
}

.features__card:nth-child(3) .features__card-icon {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.features__card:nth-child(4) .features__card-icon {
  background: rgba(255, 221, 85, 0.12);
  color: var(--color-yellow);
  border-color: rgba(255, 221, 85, 0.3);
}

.features__card:nth-child(5) .features__card-icon {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.features__card:nth-child(6) .features__card-icon {
  background: rgba(230, 66, 55, 0.12);
  color: var(--color-red);
  border-color: rgba(230, 66, 55, 0.3);
}

.features__card-title {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 12px 0;
}

.features__card-hint {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: auto;
}

.features__card-back p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   LESSON FLOW SECTION - Clean Intuitive Design
   ============================================ */

.lesson-flow {
  position: relative;
  padding: 100px var(--grid-gutter) 100px;
  background: linear-gradient(180deg, #0f0f0f 0%, #1A1A1A 100%);
  overflow: hidden;
}

.lesson-flow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse 60% 40% at 30% 20%, rgba(230, 66, 55, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 50% 30% at 70% 80%, rgba(255, 221, 85, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.lesson-flow__container {
  position: relative;
  z-index: 1;
  max-width: var(--grid-max);
  width: 100%;
  margin: 0 auto;
}

/* Header */
.lesson-flow__header {
  text-align: center;
  margin-bottom: 72px;
}

.lesson-flow__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-red);
  margin-bottom: 20px;
  padding: 8px 16px;
  background: rgba(230, 66, 55, 0.1);
  border: 1px solid rgba(230, 66, 55, 0.2);
  border-radius: 100px;
}

.lesson-flow__title {
  font-size: 52px;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 0 0 20px;
  line-height: 1.1;
}

.lesson-flow__subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 auto;
  line-height: 1.7;
  max-width: 520px;
}

/* Steps Grid - 5 columns */
.lesson-flow__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-bottom: 72px;
  position: relative;
}

/* Progress line - hidden on desktop */
.lesson-flow__progress {
  display: none;
}

.lesson-flow__step {
  position: relative;
  padding: 0 24px;
}

.lesson-flow__step-header {
  display: flex;
  align-items: center;
  margin-bottom: 28px;
  position: relative;
}

.lesson-flow__step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(230, 66, 55, 0.15);
  border: 1px solid rgba(230, 66, 55, 0.3);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-red);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.lesson-flow__step-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(230, 66, 55, 0.4) 0%, rgba(255, 255, 255, 0.1) 100%);
  margin-left: 16px;
}

.lesson-flow__step--last .lesson-flow__step-line {
  display: none;
}

.lesson-flow__step-content {
  padding-right: 16px;
}

.lesson-flow__step-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.lesson-flow__step:hover .lesson-flow__step-icon {
  background: rgba(230, 66, 55, 0.1);
  border-color: rgba(230, 66, 55, 0.2);
  color: var(--color-red);
  transform: translateY(-4px);
}

/* Active state for scroll-triggered highlighting (mobile) */
.lesson-flow__step.is-active .lesson-flow__step-number {
  background: var(--color-red);
  border-color: var(--color-red);
  color: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(230, 66, 55, 0.4);
}

.lesson-flow__step.is-active .lesson-flow__step-line {
  background: linear-gradient(90deg, var(--color-red) 0%, var(--color-yellow) 100%);
  height: 2px;
}

.lesson-flow__step.is-active .lesson-flow__step-icon {
  background: rgba(230, 66, 55, 0.15);
  border-color: rgba(230, 66, 55, 0.3);
  color: var(--color-red);
  transform: translateY(-4px);
}

.lesson-flow__step.is-active .lesson-flow__step-title {
  color: var(--color-red);
}

.lesson-flow__step.is-active .lesson-flow__step-text {
  color: rgba(255, 255, 255, 0.7);
}

.lesson-flow__step-title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 10px;
  line-height: 1.3;
}

.lesson-flow__step-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
  margin: 0;
}

/* Bottom: Info + CTA */
.lesson-flow__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 32px 40px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
}

.lesson-flow__info {
  display: flex;
  gap: 48px;
}

.lesson-flow__info-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lesson-flow__info-icon {
  font-size: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
}

.lesson-flow__info-icon svg {
  width: 22px;
  height: 22px;
}

.lesson-flow__info-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lesson-flow__info-item strong {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

.lesson-flow__info-item span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.lesson-flow__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  font-size: 15px;
  font-weight: 600;
  color: #1A1A1A;
  background: #ffffff;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.lesson-flow__cta:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.lesson-flow__cta svg {
  transition: transform 0.3s ease;
}

.lesson-flow__cta:hover svg {
  transform: translateX(4px);
}

/* Tablet */
@media (max-width: 1200px) {
  .lesson-flow__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 0;
  }

  .lesson-flow__step:nth-child(3) .lesson-flow__step-line,
  .lesson-flow__step:nth-child(5) .lesson-flow__step-line {
    display: none;
  }

  .lesson-flow__step:nth-child(4),
  .lesson-flow__step:nth-child(5) {
    grid-column: span 1;
  }

  .lesson-flow__bottom {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }

  .lesson-flow__info {
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
  }
}

/* Tablet Small */
@media (max-width: 900px) {
  .lesson-flow__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }

  .lesson-flow__step-line {
    display: none;
  }

  .lesson-flow__title {
    font-size: 40px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .lesson-flow {
    padding: 72px var(--grid-gutter) 72px;
  }

  .lesson-flow__header {
    margin-bottom: 48px;
  }

  .lesson-flow__title {
    font-size: 32px;
  }

  .lesson-flow__subtitle {
    font-size: 15px;
  }

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

  .lesson-flow__step {
    padding: 0;
    display: flex;
    gap: 20px;
  }

  .lesson-flow__step-header {
    flex-direction: column;
    margin-bottom: 0;
  }

  .lesson-flow__step-number {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }

  .lesson-flow__step-content {
    padding-right: 0;
    flex: 1;
  }

  .lesson-flow__step-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
  }

  .lesson-flow__step-icon svg {
    width: 24px;
    height: 24px;
  }

  .lesson-flow__step-title {
    font-size: 16px;
  }

  .lesson-flow__step-text {
    font-size: 13px;
  }

  .lesson-flow__bottom {
    padding: 24px;
    border-radius: 12px;
  }

  .lesson-flow__info {
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }

  .lesson-flow__info-item {
    justify-content: flex-start;
    text-align: left;
  }

  .lesson-flow__cta {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
  }

  /* Vertical Progress Line - static, full height */
  .lesson-flow__progress {
    display: block;
    position: absolute;
    left: 18px;
    top: 0;
    bottom: 0;
    width: 2px;
    z-index: 1;
  }

  .lesson-flow__progress-track {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
  }

  .lesson-flow__progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--color-red) 0%, var(--color-yellow) 100%);
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(230, 66, 55, 0.4);
    transform-origin: top;
    transform: scaleY(0.2);
    will-change: transform;
    transition: transform 0.4s ease-out;
  }

  .lesson-flow__grid {
    position: relative;
    padding-left: 32px;
  }

  .lesson-flow__step {
    position: relative;
    z-index: 2;
  }
}



/* ============================================
   FAQ SECTION
   ============================================ */

.faq {
  position: relative;
  padding: 24px var(--grid-gutter) 96px;
  background: #ffffff;
  margin-top: -40px;
}

.faq__container {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.faq__header {
  text-align: center;
  margin-bottom: 48px;
}

.faq__label {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #b91c1c;
  margin-bottom: 12px;
}

.faq__title {
  font-size: 48px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #000000;
  margin: 0;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq__item {
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.faq__item:hover {
  border-color: rgba(0, 0, 0, 0.2);
}

.faq__item.is-open {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.2);
}

.faq__question {
  width: 100%;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq__question span {
  font-size: 15px;
  font-weight: 500;
  color: #000;
  line-height: 1.4;
}

.faq__icon {
  flex-shrink: 0;
  color: rgba(0, 0, 0, 0.5);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__item.is-open .faq__icon {
  transform: rotate(45deg);
  color: #000;
}

.faq__answer {
  overflow: hidden;
  height: 0;
  opacity: 0;
  visibility: hidden;
  box-sizing: border-box;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, visibility 0.3s ease;
  will-change: height;
}

.faq__item.is-open .faq__answer {
  opacity: 1;
  visibility: visible;
}

.faq__answer p {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.7;
  margin: 0 0 12px 0;
  padding: 0 24px;
}

.faq__answer p:first-child {
  padding-top: 4px;
}

.faq__answer p:last-child {
  margin-bottom: 0;
  padding-bottom: 18px;
}

.faq__answer strong {
  color: #000;
}

/* ============================================
   MODAL / POPUP
   ============================================ */

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              visibility 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal.is-open .modal__overlay {
  opacity: 1;
}

.modal__container {
  position: relative;
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  background: #1A1A1A;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow-y: auto;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal.is-open .modal__container {
  transform: translateY(0) scale(1);
}

.modal__container--small {
  max-width: 400px;
}

.modal__container--payment-contact {
  max-width: 400px;
}

@media (min-width: 769px) {
  .modal__container--payment-contact {
    max-width: 560px;
  }

  #payment-contact-modal .modal__content {
    padding: 44px 48px;
  }

  #payment-contact-modal .modal__header {
    margin-bottom: 28px;
  }

  #payment-contact-modal .modal__title {
    font-size: 32px;
    margin-bottom: 12px;
  }

  #payment-contact-modal .modal__subtitle {
    font-size: 16px;
    line-height: 1.5;
  }

  #payment-contact-modal .modal__actions-row {
    gap: 20px;
    margin-top: 24px;
  }

  #payment-contact-modal .modal__submit,
  #payment-contact-modal .modal__secondary {
    padding: 16px 28px;
    font-size: 15px;
    border-radius: 12px;
  }
}

.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.modal__close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.modal__content {
  padding: 32px;
}

.modal__content--center {
  text-align: center;
}

.modal__header {
  margin-bottom: 20px;
}

.modal__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
}

.modal__title {
  font-size: 28px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 10px 0;
}

.modal__subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Modal Form */
.modal__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.modal__form-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
  width: 100%;
}

.modal__form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: stretch;
}

.modal__form-group--contact-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: stretch;
  width: 100%;
  flex: 1;
}

#contact-field-wrapper {
  width: 100%;
}

#contact-field-input {
  width: 100%;
}

.modal__form-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  min-height: 18px;
  display: flex;
  align-items: center;
  margin: 0;
  line-height: 1.2;
}

.modal__form-input {
  padding: 12px 14px;
  font-size: 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  outline: none;
  transition: all 0.2s ease;
  min-height: 44px;
  box-sizing: border-box;
  width: 100%;
}

.modal__form-textarea {
  padding: 11px 14px;
  font-size: 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  outline: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
  min-height: 44px;
  height: 44px;
  resize: none;
  line-height: 22px;
  overflow: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.modal__form-textarea::-webkit-scrollbar {
  display: none;
}

.modal__form-input:focus,
.modal__form-textarea:focus {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.modal__form-input:invalid:not(:placeholder-shown),
.modal__form-textarea:invalid:not(:placeholder-shown),
.modal__form-input.is-invalid,
.modal__form-textarea.is-invalid {
  border-color: #ff4444;
  background: rgba(255, 68, 68, 0.1);
}

.modal__form-input:invalid:not(:placeholder-shown):focus,
.modal__form-textarea:invalid:not(:placeholder-shown):focus,
.modal__form-input.is-invalid:focus,
.modal__form-textarea.is-invalid:focus {
  border-color: #ff6666;
  background: rgba(255, 68, 68, 0.15);
}

.modal__form-input::placeholder,
.modal__form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

/* Contact Methods */
.modal__contact-methods {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
}

.modal__radio {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.modal__radio input {
  display: none;
}

.modal__radio-mark {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  position: relative;
  transition: all 0.2s ease;
}

.modal__radio input:checked + .modal__radio-mark {
  border-color: #fff;
}

.modal__radio input:checked + .modal__radio-mark::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
}

/* Consents */
.modal__consents {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 8px;
}

.modal__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  min-height: 24px;
}

.modal__checkbox span:not(.modal__checkbox-mark) {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  padding-top: 2px;
}

.modal__checkbox input {
  display: none;
}

.modal__checkbox-mark {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 5px;
  position: relative;
  transition: all 0.2s ease;
  background: rgba(255, 255, 255, 0.05);
  margin-top: 2px;
}

.modal__checkbox input:checked + .modal__checkbox-mark {
  background: #10b981;
  border-color: #10b981;
}

.modal__checkbox input:checked + .modal__checkbox-mark::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.modal__checkbox.is-invalid .modal__checkbox-mark {
  border-color: #ff4444;
  background: rgba(255, 68, 68, 0.1);
}

.modal__checkbox a {
  color: #818cf8;
  text-decoration: underline;
}

/* Submit Button */
.modal__actions-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 10px;
}

.modal__form-error {
  grid-column: 1 / -1;
  font-size: 13px;
  color: #ff6b6b;
  margin: 0 0 4px;
  display: none;
}

.modal__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #1A1A1A;
  background: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.modal__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.modal__secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal__secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.6);
}

.modal__note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
  justify-content: flex-end;
}

/* Success Modal */
.modal__success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.15);
  border-radius: 50%;
  color: #10b981;
  opacity: 0;
  transform: scale(0.5);
  animation: successIconAppear 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.modal.is-open .modal__success-icon {
  animation: successIconAppear 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

@keyframes successIconAppear {
  0% {
    opacity: 0;
    transform: scale(0.5) rotate(-180deg);
  }
  50% {
    transform: scale(1.1) rotate(10deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

.modal__success-title {
  font-size: 28px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 12px 0;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.modal.is-open .modal__success-title {
  animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.modal__success-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0 0 25px 0;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.modal.is-open .modal__success-text {
  animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal__success-text strong {
  color: #fff;
}

.modal__success-btn {
  display: inline-flex;
  padding: 14px 40px;
  font-size: 15px;
  font-weight: 600;
  color: #1A1A1A;
  background: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

/* ============================================
   BENEFITS SECTION
   ============================================ */

.benefits {
  position: relative;
  padding: 96px var(--grid-gutter);
  background: #f8f8f8;
  overflow: hidden;
}

.benefits__container {
  max-width: var(--grid-max);
  width: 100%;
  margin: 0 auto;
}

.benefits__header {
  margin-bottom: 48px;
}

.benefits__label {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #b91c1c;
  margin-bottom: 12px;
}

.benefits__title {
  font-size: 48px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #1A1A1A;
  margin: 0;
}

.benefits__title--outline {
  display: block;
  -webkit-text-stroke: 1px #1A1A1A;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.benefits__card {
  position: relative;
  padding: 20px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(26, 26, 26, 0.08);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.benefits__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-red) 0%, var(--color-yellow) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.benefits__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(230, 66, 55, 0.12);
}

.benefits__card:hover::before {
  transform: scaleX(1);
}

.benefits__card:hover .benefits__card-icon {
  background: rgba(255, 221, 85, 0.2);
  color: var(--color-dark);
}

.benefits__card:hover .benefits__card-list li::before {
  background: var(--color-red);
}

.benefits__card--wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.benefits__card-number {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 10px;
  font-weight: 500;
  color: rgba(26, 26, 26, 0.25);
  letter-spacing: 0.1em;
}

.benefits__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #f8f8f8;
  border-radius: 8px;
  margin-bottom: 12px;
  color: var(--color-dark);
  transition: background 0.35s ease, color 0.35s ease;
}

.benefits__card-icon svg {
  width: 20px;
  height: 20px;
}

.benefits__card-title {
  font-size: 17px;
  font-weight: 500;
  color: #1A1A1A;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.benefits__card-text {
  font-size: 14px;
  color: rgba(26, 26, 26, 0.7);
  line-height: 1.5;
  margin: 0 0 12px 0;
}

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

.benefits__card-list li {
  position: relative;
  padding-left: 12px;
  font-size: 13px;
  color: rgba(26, 26, 26, 0.6);
  margin-bottom: 6px;
  line-height: 1.4;
}

.benefits__card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 4px;
  height: 4px;
  background: var(--color-dark);
  border-radius: 50%;
  transition: background 0.35s ease;
}

.benefits__card-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefits__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.benefits__stat-value {
  font-size: 28px;
  font-weight: 500;
  color: #1A1A1A;
  line-height: 1;
}

.benefits__stat-label {
  font-size: 11px;
  color: rgba(26, 26, 26, 0.7);
}

/* ============================================
   BOOKING SECTION - Wizard Style
   ============================================ */

.booking {
  position: relative;
  padding: 80px var(--grid-gutter);
  background: #1A1A1A;
  overflow: hidden;
}

.booking__container {
  max-width: var(--grid-max);
  width: 100%;
  margin: 0 auto;
}

.booking__header {
  text-align: center;
  margin-bottom: 32px;
}

.booking__label {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #ff9aa2;
  margin-bottom: 12px;
}

.booking__title {
  font-size: 36px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0 0 12px 0;
}

.booking__title--outline {
  display: block;
  -webkit-text-stroke: 1px #ffffff;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.booking__subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Progress Steps */
.booking__progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 32px;
  padding: 0;
}

.booking__progress-step {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
  transition: all 0.3s ease;
}

.booking__progress-step--active {
  opacity: 1;
}

.booking__progress-step--completed {
  opacity: 0.7;
}

.booking__progress-number {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

.booking__progress-step--active .booking__progress-number {
  background: #fff;
  color: #1A1A1A;
  border-color: #fff;
}

.booking__progress-step--completed .booking__progress-number {
  background: #10b981;
  border-color: #10b981;
}

.booking__progress-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}

.booking__progress-line {
  width: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 16px;
}

/* Wizard Steps */
.booking__wizard {
  position: relative;
}

.booking__alert {
  width: 100%;
  max-width: 720px;
  margin: 0 auto 16px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(230, 66, 55, 0.35);
  background: rgba(230, 66, 55, 0.08);
  color: #ffffff !important;
  font-size: 13px;
  line-height: 1.4;
}

.cabinet .booking__alert {
  color: #ffffff !important;
}

.booking.is-logged-in .booking__auth-tabs,
.booking.is-logged-in .booking__social-login,
.booking.is-logged-in .booking__auth-divider,
.booking.is-logged-in #register-form,
.booking.is-logged-in #login-form,
.booking.is-logged-in .booking__forgot-link {
  display: none !important;
}

.booking.is-logged-in .booking__auth::before {
  content: 'Jesteś zalogowany(-a). Możesz przejść dalej.';
  display: block;
  padding: 12px 14px;
  margin: 0 0 12px 0;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
}

.booking__step {
  display: none;
  animation: fadeIn 0.4s ease;
}

.booking__step--active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Lesson Types */
.booking__types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.booking__type {
  position: relative;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.booking__type:hover {
  border-color: rgba(255, 255, 255, 0.3);
}

.booking__type--selected {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.booking__type-radio {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking__type--selected .booking__type-radio {
  border-color: #fff;
}

.booking__type-radio-dot {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.booking__type--selected .booking__type-radio-dot {
  opacity: 1;
}

.booking__type-header {
  margin-bottom: 12px;
}

.booking__type-badge {
  display: inline-block;
  padding: 4px 10px;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-radius: 9999px;
  margin-bottom: 10px;
}

.booking__type-badge--secondary {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
}

.booking__type-badge--accent {
  background: rgba(99, 102, 241, 0.15);
  color: #818cf8;
}

.booking__type-title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.booking__type-description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  margin: 0;
}

.booking__type-features {
  margin-bottom: 12px;
}

.booking__feature {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 0;
}

.booking__feature svg {
  flex-shrink: 0;
  color: #10b981;
  width: 14px;
  height: 14px;
}

.booking__feature span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.booking__type-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.booking__type-price--custom {
  border-top: none;
  padding-top: 0;
}

.booking__price-from {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

.booking__price-value {
  font-size: 28px;
  font-weight: 600;
  color: #ffffff;
}

.booking__price-currency {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.booking__price-period {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.72);
  margin-left: 4px;
}

.booking__price-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
}

.booking__price-note {
  width: 100%;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

/* Packages Section */
.booking__packages-section {
  margin-top: 24px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.booking__packages-title {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 12px 0;
}

.booking__packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.booking__package {
  padding: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.booking__package:hover {
  border-color: rgba(255, 255, 255, 0.3);
}

.booking__package--selected {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.booking__package--popular {
  position: relative;
}

.booking__package--popular::before {
  content: 'Popularny';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  padding: 2px 8px;
  background: var(--color-red);
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 9999px;
}

.booking__package-name {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 4px;
  display: block;
}

.booking__package-price {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  display: block;
}

.booking__package-save {
  display: inline-block;
  margin-top: 4px;
  padding: 2px 6px;
  font-size: 9px;
  font-weight: 600;
  color: #10b981;
  background: rgba(16, 185, 129, 0.15);
  border-radius: 9999px;
}

/* Step Actions */
.booking__step-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  padding-bottom: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.booking__step-actions:has(.booking__btn--back) {
  justify-content: space-between;
}

.booking__pay-hint {
  flex-basis: 100%;
  margin: 4px 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  order: 3;
}

.booking__secure-note {
  flex-basis: 100%;
  margin: 8px 0 0;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  order: 4;
}

.booking__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.booking__btn--next {
  background: #fff;
  color: #1A1A1A;
}

.booking__btn--next:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255,255,255,0.2);
}

.booking__btn--next:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.booking__btn--back {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.booking__btn--back:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.booking__btn--pay {
  background: #10b981;
  color: #fff;
  margin-left: auto;
}

.booking__btn--pay:hover {
  background: #059669;
}

.booking__btn--primary {
  background: #fff;
  color: #1A1A1A;
  text-decoration: none;
}

.booking__btn--secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Calendar Wrapper */
.booking__calendar-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* Calendar */
.booking__calendar {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
}

.booking__calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.booking__calendar-title {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  margin: 0;
}

.booking__calendar-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.booking__calendar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.booking__calendar-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.booking__calendar-month {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  min-width: 100px;
  text-align: center;
}

.booking__calendar-grid {
  margin-bottom: 12px;
}

.booking__calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 4px;
}

.booking__calendar-weekdays span {
  text-align: center;
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  padding: 6px;
}

.booking__calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.booking__calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.booking__calendar-day:hover:not(.booking__calendar-day--empty):not(.booking__calendar-day--past) {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.booking__calendar-day--empty {
  background: transparent;
  cursor: default;
}

.booking__calendar-day--today {
  border-color: rgba(255, 255, 255, 0.3);
  font-weight: 600;
}

.booking__calendar-day--selected {
  background: #ffffff !important;
  color: #1A1A1A;
  font-weight: 600;
}

.booking__calendar-day--available::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: #10b981;
  border-radius: 50%;
}

.booking__calendar-day--few::after {
  background: #f59e0b;
}

.booking__calendar-day--past {
  color: rgba(255, 255, 255, 0.2);
  cursor: not-allowed;
}

.booking__calendar-info {
  margin-top: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.booking__calendar-note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin: 0;
}

.booking__calendar-note strong {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.booking__calendar-legend {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 12px;
}

.booking__legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
}

.booking__legend-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.booking__legend-dot--available { background: #10b981; }
.booking__legend-dot--few { background: #f59e0b; }

/* Time Selection */
.booking__time-selection {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
}

.booking__time-title {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 12px 0;
}

.booking__time-slots {
  min-height: 200px;
}

.booking__time-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  padding: 40px;
}

.booking__time-placeholder p {
  font-size: 14px;
  margin: 0;
}

.booking__time-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.booking__time-slot {
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 14px;
  color: #ffffff;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.booking__time-slot:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.booking__time-slot--selected {
  background: #ffffff;
  color: #1A1A1A;
  border-color: #ffffff;
  font-weight: 600;
}

/* Summary */
.booking__summary {
  display: flex;
  gap: 24px;
  padding: 16px 20px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 10px;
  margin-top: 20px;
}

.booking__summary-item {
  display: flex;
  gap: 8px;
}

.booking__summary-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.booking__summary-value {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

/* Auth Section */
.booking__auth {
  max-width: 500px;
  margin: 0 auto;
}

.booking__auth-tabs {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 4px;
  margin-bottom: 24px;
}

.booking__auth-tab {
  flex: 1;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  background: transparent;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.booking__auth-tab--active {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.booking__auth-panel {
  display: none;
}

.booking__auth-panel--active {
  display: block;
}

.booking__social-login {
  margin-bottom: 20px;
}

.booking__social-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px;
  font-size: 15px;
  font-weight: 500;
  background: #fff;
  color: #1A1A1A;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.booking__social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.booking__auth-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 20px 0;
}

.booking__auth-divider::before,
.booking__auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.booking__auth-divider span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

/* Forms */
.booking__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.booking__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.booking__form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.booking__form-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.booking__form-input,
.booking__form-select,
.booking__form-textarea {
  padding: 12px 16px;
  font-size: 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  outline: none;
  transition: all 0.2s ease;
}

.booking__form-input:focus,
.booking__form-select:focus,
.booking__form-textarea:focus {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.booking__form-input::placeholder,
.booking__form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.booking__form-select {
  cursor: pointer;
}

.booking__form-select option {
  background: #1A1A1A;
  color: #fff;
}

.booking__form-textarea {
  min-height: 80px;
  resize: vertical;
}

.booking__form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.booking__form-checkbox input {
  margin-top: 2px;
  accent-color: #10b981;
}

.booking__form-checkbox label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.booking__form-checkbox a {
  color: #818cf8;
  text-decoration: underline;
}

.booking__forgot-link {
  font-size: 12px;
  color: #818cf8;
  text-align: right;
  margin-top: 8px;
}

/* Payment Section */
.booking__payment {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 24px;
}

@media (min-width: 1024px) {
  .booking__payment {
    display: flex;
    flex-direction: column;
    max-width: 780px;
    margin: 0 auto;
    gap: 0;
  }

  .booking__payment-summary {
    margin-bottom: 32px;
  }

  .booking__payment-options {
    margin-bottom: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .booking__payment-methods {
    margin-bottom: 24px;
  }

  .booking__contact-payment {
    margin-bottom: 24px;
    padding: 20px 24px;
  }
}

.booking__payment-summary {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  height: fit-content;
}

@media (min-width: 1024px) {
  .booking__payment-summary {
    padding: 24px 28px;
    border-radius: 16px;
  }

  .booking__payment-options .booking__payment-title,
  .booking__payment-methods .booking__payment-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
  }

  .booking__payment-variants {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .booking__payment-variant {
    padding: 20px;
    border-radius: 12px;
    min-height: 72px;
  }

  .booking__payment-variant-title {
    font-size: 15px;
  }

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

  .booking__methods-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
  }

  .booking__method {
    padding: 20px 12px;
    border-radius: 12px;
    gap: 10px;
    min-height: 88px;
    min-width: 0;
  }

  .booking__method-name {
    font-size: 13px;
    line-height: 1.3;
  }

  .booking__order-details {
    margin-bottom: 16px;
    padding-bottom: 16px;
  }

  .booking__order-name,
  .booking__order-price {
    font-size: 15px;
  }

  .booking__order-total {
    font-size: 18px;
    padding-top: 12px;
  }

  .booking__order-total-price {
    font-size: 22px;
    font-weight: 700;
  }

  .booking__payment-title {
    font-size: 15px;
    margin-bottom: 14px;
  }

  .booking__step[data-step="3"] .booking__step-actions {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .booking__step[data-step="4"] .booking__step-actions {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    padding-top: 28px;
    padding-bottom: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .booking__step[data-step="4"] .booking__pay-hint {
    margin-top: 10px;
    font-size: 12px;
  }

  .booking__step[data-step="4"] .booking__secure-note {
    margin-top: 10px;
    font-size: 11px;
  }

  .booking__step[data-step="4"] .booking__btn--pay {
    padding: 16px 32px;
    font-size: 15px;
    min-width: 180px;
  }

  .booking__step[data-step="4"] .booking__btn--back {
    padding: 16px 24px;
    font-size: 14px;
  }
}

.booking__payment-title {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 12px 0;
}

.booking__order-details {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.booking__order-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.booking__order-item--small {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.booking__order-name {
  font-size: 14px;
  color: #fff;
}

.booking__order-price {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.booking__order-total {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.booking__order-total-price {
  color: #10b981;
}

/* Payment Options */
.booking__payment-options {
  margin-bottom: 20px;
}

.booking__payment-variants {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.booking__payment-variant {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.booking__payment-variant:hover {
  border-color: rgba(255, 255, 255, 0.25);
}

.booking__payment-variant--active {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.booking__payment-variant input {
  display: none;
}

.booking__payment-variant-content {
  flex: 1;
}

.booking__payment-variant-title {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}

.booking__payment-variant-price {
  font-size: 16px;
  font-weight: 600;
  color: #10b981;
}

.booking__payment-variant-badge {
  padding: 4px 10px;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border-radius: 9999px;
}

.booking__payment-variant-note {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

/* Payment Methods */
.booking__payment-methods {
  margin-bottom: 20px;
}

.booking__methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 12px;
}

.booking__method {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.booking__method:hover {
  border-color: rgba(255, 255, 255, 0.25);
}

.booking__method--active {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.booking__method input {
  display: none;
}

.booking__method-icon {
  color: rgba(255, 255, 255, 0.7);
}

.booking__method-name {
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  line-height: 1.25;
  word-break: break-word;
}

.booking__method-icons {
  display: flex;
  gap: 6px;
  margin-top: 4px;
}

.booking__method-icons img {
  height: 12px;
  opacity: 0.7;
}

.booking__method-note {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
}

/* Contact-for-payment block (Osobiście — dane do przelewu) */
.booking__contact-payment {
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  margin-bottom: 16px;
}

.booking__contact-payment-text {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* Success */
.booking__success {
  text-align: center;
  padding: 48px;
}

.booking__success-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.15);
  border-radius: 50%;
  color: #10b981;
}

.booking__success-title {
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 12px 0;
}

.booking__success-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 32px 0;
}

.booking__success-details {
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px 32px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  margin-bottom: 32px;
  text-align: left;
}

.booking__success-item {
  display: flex;
  gap: 12px;
}

.booking__success-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.booking__success-value {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

.booking__success-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* ============================================
   CTA BLOCK SECTION
   ============================================ */

.cta-block {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.cta-block__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.cta-block__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-block__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 60%, rgba(10, 10, 10, 0.95) 85%, #0a0a0a 100%);
}

.cta-block__container {
  position: relative;
  z-index: 2;
  max-width: var(--grid-max);
  width: 100%;
  margin: 0 auto;
  padding: 96px var(--grid-gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.cta-block__label {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-red);
  margin-bottom: 12px;
}

.cta-block__title {
  font-size: 48px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0 0 20px 0;
}

.cta-block__title--accent {
  color: rgba(255, 255, 255, 0.4);
}

.cta-block__description {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin: 0 0 24px 0;
  max-width: 480px;
}

.cta-block__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.cta-block__feature {
  display: flex;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.cta-block__feature:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.cta-block__feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #ffffff;
}

.cta-block__feature-icon svg {
  width: 18px;
  height: 18px;
}

.cta-block__feature-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cta-block__feature-text strong {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

.cta-block__feature-text span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.cta-block__actions {
  display: flex;
  gap: 16px;
}

.cta-block__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 9999px;
  transition: all 0.3s ease;
}

.cta-block__btn--primary {
  background: #ffffff;
  color: #1A1A1A;
}

.cta-block__btn--primary:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
}

.cta-block__btn--secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-block__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Mockup */
.cta-block__visual {
  display: flex;
  justify-content: center;
}

.cta-block__mockup {
  width: 100%;
  max-width: 380px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.cta-block__mockup-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-block__mockup-dots {
  display: flex;
  gap: 6px;
}

.cta-block__mockup-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.cta-block__mockup-dots span:nth-child(1) {
  background: #ef4444;
}

.cta-block__mockup-dots span:nth-child(2) {
  background: #f59e0b;
}

.cta-block__mockup-dots span:nth-child(3) {
  background: #10b981;
}

.cta-block__mockup-title {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.cta-block__mockup-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-block__mockup-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  flex-wrap: wrap;
}

.cta-block__mockup-icon {
  font-size: 18px;
}

.cta-block__mockup-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.cta-block__mockup-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cta-block__mockup-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.cta-block__mockup-value {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
}

.cta-block__mockup-status {
  font-size: 12px;
  font-weight: 500;
  color: #10b981;
}

.cta-block__mockup-progress {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  margin-top: 8px;
}

.cta-block__mockup-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--color-red) 0%, #E85A4F 100%);
  border-radius: 2px;
}

.cta-block__mockup-item--skill .cta-block__mockup-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
  border-radius: 50%;
  font-size: 11px;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: #0a0a0a;
  color: #ffffff;
  padding: 80px var(--grid-gutter) 40px;
}

.footer__container {
  max-width: var(--grid-max);
  width: 100%;
  margin: 0 auto;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand {
  max-width: 280px;
}

.footer__logo {
  display: inline-block;
  margin-bottom: 20px;
}

.footer__logo-image {
  height: 48px;
  width: auto;
}

.footer__tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  margin: 0 0 20px 0;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer__social-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  transform: translateY(-2px);
}

.footer__social-link svg {
  width: 18px;
  height: 18px;
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.footer__nav-title {
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 12px 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

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

.footer__nav-list li {
  margin-bottom: 8px;
}

.footer__nav-list a,
.footer__nav-list span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.3s ease;
}

.footer__nav-list a {
  text-decoration: none;
}

.footer__nav-list a:hover {
  color: #ffffff;
}

.footer__nav-list--contacts li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__nav-list--contacts svg {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.55);
}

/* Footer CTA */
.footer__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  margin: 48px 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.footer__cta-title {
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 4px 0;
}

.footer__cta-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

.footer__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 600;
  background: #ffffff;
  color: #1A1A1A;
  text-decoration: none;
  border-radius: 9999px;
  transition: all 0.3s ease;
}

.footer__cta-btn:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
}

/* Footer Bottom */
.footer__bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 32px;
  gap: 24px;
}

.footer__bottom-left,
.footer__bottom-right {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__bottom-right {
  align-items: flex-end;
}

.footer__copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.footer__vat {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.footer__credit {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.footer__credit a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__credit a:hover {
  color: #fff;
}

.footer__credit-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  vertical-align: middle;
}

.footer__credit-logo {
  height: 11px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.footer__credit-link:hover .footer__credit-logo {
  opacity: 1;
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__legal a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   SCROLL TO TOP
   ============================================ */

.scroll-to-top {
  position: fixed;
  bottom: var(--floating-bottom);
  right: 24px;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
  background: rgba(26, 26, 26, 0.85);
  color: var(--color-white);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(calc(8px - var(--floating-raise)));
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  text-decoration: none;
}

.scroll-to-top:hover {
  color: var(--color-yellow);
  border-color: rgba(255, 221, 85, 0.5);
  background: rgba(26, 26, 26, 0.95);
}

.scroll-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(calc(0px - var(--floating-raise)));
}

.scroll-to-top svg {
  display: block;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .scroll-to-top {
    bottom: 94px;
    right: 20px;
    width: 44px;
    height: 44px;
    /* Use JS to control visibility on mobile too */
  }

  .scroll-to-top svg {
    width: 18px;
    height: 18px;
  }
}

/* Near footer, raise floating controls smoothly on desktop/tablet */
@media (min-width: 768px) {
  body.is-floats-raised {
    --floating-raise: var(--floating-raise-amount);
  }
}


/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

.philosophy,
.features,
.benefits,
.booking,
.cta-block,
.faq,
.footer {
  opacity: 1;
  transform: translateY(0);
}

.benefits__card,
.booking__type,
.cta-block__feature,
.features__card,
.faq__item {
  opacity: 1;
  transform: translateY(0);
}

/* Booking slots header style */
.booking__slots-header {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.booking__slots-date {
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  text-transform: capitalize;
}

@media (max-width: 1023px) {
  .booking__slots-header {
    margin-bottom: 12px;
    padding-bottom: 10px;
  }

  .booking__slots-date {
    font-size: 14px;
  }
}

/* ============================================
   LENIS SMOOTH SCROLL
   ============================================ */

html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/* ============================================
   MOBILE RESPONSIVE - BENEFITS
   ============================================ */

@media (max-width: 1023px) {
  .benefits {
    padding: 60px var(--grid-gutter);
  }

  .benefits__header {
    margin-bottom: 32px;
  }

  .benefits__label {
    font-size: 10px;
    margin-bottom: 12px;
  }

  .benefits__title {
    font-size: clamp(2rem, 2.5rem, 3rem);
  }

  .benefits__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .benefits__card {
    padding: 20px;
    border-radius: 12px;
  }

  .benefits__card--wide {
    grid-column: span 1;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .benefits__card-number {
    font-size: 10px;
    top: 16px;
    right: 16px;
  }

  .benefits__card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    border-radius: 8px;
  }

  .benefits__card-icon svg {
    width: 20px;
    height: 20px;
  }

  .benefits__card-title {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .benefits__card-text {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .benefits__card-list li {
    font-size: 13px;
    padding-left: 12px;
    margin-bottom: 6px;
  }

  .benefits__card-list li::before {
    top: 7px;
    width: 3px;
    height: 3px;
  }

  .benefits__card-stats {
    gap: 16px;
    flex-direction: row;
    justify-content: space-around;
  }

  .benefits__stat-value {
    font-size: 28px;
  }

  .benefits__stat-label {
    font-size: 11px;
  }
}

/* ============================================
   MOBILE RESPONSIVE - BOOKING WIZARD
   ============================================ */

@media (max-width: 1023px) {
  .booking {
    padding: 48px var(--grid-gutter);
  }

  .booking__header {
    margin-bottom: 24px;
  }

  .booking__label {
    font-size: 10px;
    margin-bottom: 10px;
  }

  .booking__title {
    font-size: clamp(1.8rem, 2.2rem, 2.5rem);
    margin-bottom: 12px;
  }

  .booking__subtitle {
    font-size: 14px;
  }

  /* Progress */
  .booking__progress {
    margin-bottom: 24px;
    padding: 0;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .booking__progress-step {
    flex-shrink: 0;
  }

  .booking__progress-number {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .booking__progress-label {
    font-size: 11px;
    display: none;
  }

  .booking__progress-step--active .booking__progress-label {
    display: block;
  }

  .booking__progress-line {
    width: 24px;
    margin: 0 8px;
  }

  /* Types */
  .booking__types {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .booking__type {
    padding: 16px;
    border-radius: 12px;
  }

  .booking__type-radio {
    top: 16px;
    right: 16px;
    width: 20px;
    height: 20px;
  }

  .booking__type-badge {
    font-size: 9px;
    padding: 4px 8px;
    margin-bottom: 8px;
  }

  .booking__type-title {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .booking__type-description {
    font-size: 13px;
  }

  .booking__feature {
    padding: 6px 0;
  }

  .booking__feature span {
    font-size: 12px;
  }

  .booking__type-price {
    padding-top: 12px;
  }

  .booking__price-value {
    font-size: 28px;
  }

  .booking__price-currency {
    font-size: 16px;
  }

  /* Packages */
  .booking__packages-section {
    margin-top: 16px;
    padding: 16px;
  }

  .booking__packages-title {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .booking__packages {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .booking__package {
    padding: 14px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .booking__package-name {
    font-size: 14px;
  }

  .booking__package-price {
    font-size: 16px;
  }

  /* Step Actions */
  .booking__step-actions {
    margin-top: 20px;
    padding-top: 16px;
    padding-bottom: 32px;
    gap: 12px;
  }

  .booking__btn {
    padding: 14px 20px;
    font-size: 14px;
  }

  /* Calendar Wrapper */
  .booking__calendar-wrapper {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .booking__calendar {
    padding: 16px;
    border-radius: 12px;
  }

  .booking__calendar-header {
    flex-direction: row;
    margin-bottom: 16px;
  }

  .booking__calendar-title {
    font-size: 16px;
  }

  .booking__calendar-btn {
    width: 32px;
    height: 32px;
  }

  .booking__calendar-month {
    font-size: 13px;
    min-width: 90px;
  }

  .booking__calendar-weekdays span {
    font-size: 10px;
    padding: 6px 2px;
  }

  .booking__calendar-day {
    font-size: 13px;
    border-radius: 6px;
  }

  .booking__calendar-info {
    margin-top: 12px;
    padding: 12px;
    border-radius: 8px;
  }

  .booking__calendar-note {
    font-size: 11px;
    line-height: 1.5;
  }

  .booking__calendar-legend {
    gap: 12px;
    margin-top: 12px;
  }

  .booking__legend-item {
    font-size: 10px;
  }

  /* Time Selection */
  .booking__time-selection {
    padding: 16px;
    border-radius: 12px;
  }

  .booking__time-title {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .booking__time-slots {
    min-height: 120px;
  }

  .booking__time-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .booking__time-slot {
    padding: 12px 8px;
    font-size: 14px;
    border-radius: 8px;
  }

  /* Summary */
  .booking__summary {
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 16px;
    margin-top: 16px;
  }

  .booking__summary-item {
    gap: 6px;
  }

  .booking__summary-label,
  .booking__summary-value {
    font-size: 12px;
  }

  /* Auth */
  .booking__auth {
    max-width: 100%;
  }

  .booking__auth-tabs {
    margin-bottom: 20px;
  }

  .booking__auth-tab {
    padding: 12px;
    font-size: 14px;
  }

  .booking__social-btn {
    padding: 14px;
    font-size: 14px;
  }

  .booking__auth-divider {
    margin: 20px 0;
  }

  .booking__auth-divider span {
    font-size: 12px;
  }

  .booking__form {
    gap: 14px;
  }

  .booking__form-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .booking__form-label {
    font-size: 12px;
  }

  .booking__form-input,
  .booking__form-select,
  .booking__form-textarea {
    padding: 14px;
    font-size: 14px;
    border-radius: 8px;
  }

  .booking__form-checkbox label {
    font-size: 11px;
  }

  /* Payment */
  .booking__payment {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .booking__payment-summary,
  .booking__payment-options,
  .booking__payment-methods,
  .booking__contact-payment {
    grid-column: auto;
    grid-row: auto;
    position: static;
  }

  .booking__payment-summary {
    padding: 16px;
    border-radius: 12px;
  }

  .booking__payment-title {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .booking__order-item {
    margin-bottom: 8px;
  }

  .booking__order-name,
  .booking__order-price {
    font-size: 14px;
  }

  .booking__order-item--small {
    font-size: 12px;
  }

  .booking__order-total {
    font-size: 16px;
  }

  .booking__payment-variants {
    gap: 10px;
  }

  .booking__payment-variant {
    padding: 14px;
    border-radius: 10px;
  }

  .booking__payment-variant-title {
    font-size: 14px;
  }

  .booking__payment-variant-price {
    font-size: 16px;
  }

  .booking__payment-variant-badge {
    font-size: 9px;
    padding: 3px 8px;
  }

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

  .booking__method {
    padding: 14px 10px;
    border-radius: 10px;
  }

  .booking__method-name {
    font-size: 12px;
  }

  .booking__contact-payment {
    padding: 16px;
    border-radius: 10px;
  }

  .booking__contact-payment-text {
    font-size: 13px;
  }

  .booking__secure-note {
    font-size: 10px;
    margin-top: 6px;
  }

  /* Success */
  .booking__success {
    padding: 32px 16px;
  }

  .booking__success-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }

  .booking__success-title {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .booking__success-text {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .booking__success-details {
    padding: 16px 20px;
    margin-bottom: 24px;
  }

  .booking__success-label,
  .booking__success-value {
    font-size: 13px;
  }

  .booking__success-actions {
    flex-direction: column;
    gap: 12px;
  }

  .booking__success-actions .booking__btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   MOBILE RESPONSIVE - CTA BLOCK
   ============================================ */

@media (max-width: 1023px) {
  .cta-block__container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 80px var(--grid-gutter);
  }

  .cta-block__label {
    font-size: 10px;
    margin-bottom: 12px;
  }

  .cta-block__title {
    font-size: clamp(2rem, 2.5rem, 3rem);
    margin-bottom: 16px;
  }

  .cta-block__description {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .cta-block__features {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 24px;
  }

  .cta-block__feature {
    padding: 16px;
    gap: 12px;
    border-radius: 12px;
  }

  .cta-block__feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }

  .cta-block__feature-icon svg {
    width: 18px;
    height: 18px;
  }

  .cta-block__feature-text strong {
    font-size: 14px;
  }

  .cta-block__feature-text span {
    font-size: 12px;
  }

  .cta-block__actions {
    flex-direction: column;
    gap: 12px;
  }

  .cta-block__btn {
    justify-content: center;
    padding: 16px 24px;
    font-size: 14px;
  }

  .cta-block__mockup {
    max-width: 100%;
    border-radius: 20px;
  }

  .cta-block__mockup-header {
    padding: 14px 16px;
    gap: 10px;
  }

  .cta-block__mockup-dots {
    gap: 5px;
  }

  .cta-block__mockup-dots span {
    width: 8px;
    height: 8px;
  }

  .cta-block__mockup-title {
    font-size: 13px;
  }

  .cta-block__mockup-content {
    padding: 16px;
    gap: 12px;
  }

  .cta-block__mockup-item {
    padding: 14px;
    gap: 10px;
    border-radius: 12px;
  }

  .cta-block__mockup-icon {
    font-size: 18px;
  }

  .cta-block__mockup-label {
    font-size: 11px;
  }

  .cta-block__mockup-value {
    font-size: 15px;
  }

  .cta-block__mockup-status {
    font-size: 11px;
  }

  .cta-block__mockup-item--skill .cta-block__mockup-icon {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }
}

/* ============================================
   MOBILE RESPONSIVE - FOOTER
   ============================================ */

@media (max-width: 1023px) {
  .footer {
    padding: 48px var(--grid-gutter) 24px;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 32px;
  }

  .footer__brand {
    max-width: 100%;
    text-align: center;
  }

  .footer__logo {
    margin-bottom: 16px;
  }

  .footer__logo-image {
    height: 44px;
  }

  .footer__tagline {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .footer__social {
    justify-content: center;
    gap: 12px;
  }

  .footer__social-link {
    width: 44px;
    height: 44px;
  }

  .footer__social-link svg {
    width: 18px;
    height: 18px;
  }

  .footer__nav {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .footer__nav-group:last-child {
    grid-column: span 2;
  }

  .footer__nav-title {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .footer__nav-list li {
    margin-bottom: 8px;
  }

  .footer__nav-list a,
  .footer__nav-list span {
    font-size: 14px;
  }

  .footer__nav-list--contacts li {
    gap: 8px;
  }

  .footer__cta {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 24px;
    margin: 32px 0;
    border-radius: 16px;
  }

  .footer__cta-title {
    font-size: 18px;
  }

  .footer__cta-text {
    font-size: 14px;
  }

  .footer__cta-btn {
    padding: 14px 24px;
    font-size: 14px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding-top: 24px;
  }

  .footer__bottom-left,
  .footer__bottom-right {
    align-items: center;
  }

  .footer__copyright {
    font-size: 12px;
  }

  .footer__vat {
    font-size: 10px;
    text-align: center;
  }

  .footer__credit {
    font-size: 11px;
  }

  .footer__legal {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer__legal a {
    font-size: 12px;
  }
}

/* ============================================
   MOBILE RESPONSIVE - PHILOSOPHY
   ============================================ */

@media (max-width: 1023px) {
  .philosophy {
    padding: 60px var(--grid-gutter);
  }

  .philosophy__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .philosophy__label {
    font-size: 10px;
  }

  .philosophy__title {
    font-size: clamp(1.8rem, 2.2rem, 2.5rem);
    margin-bottom: 20px;
  }

  .philosophy__text {
    font-size: 15px;
  }

  .philosophy__quote {
    font-size: 20px;
    margin-bottom: 20px !important;
  }

  .philosophy__quote-mark {
    font-size: 40px;
    top: -10px;
    left: -10px;
  }

  .philosophy__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .philosophy__stat {
    padding: 20px 12px;
    border-radius: 12px;
  }

  .philosophy__stat-value {
    font-size: 28px;
    margin-bottom: 4px;
  }

  .philosophy__stat-label {
    font-size: 11px;
  }
}

/* ============================================
   MOBILE RESPONSIVE - FEATURES (3D Flip)
   ============================================ */

@media (max-width: 1023px) {
  .features {
    padding: 60px var(--grid-gutter);
  }

  .features__header {
    margin-bottom: 32px;
  }

  .features__label {
    font-size: 10px;
  }

  .features__title {
    font-size: clamp(1.8rem, 2.2rem, 2.5rem);
  }

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

  .features__card {
    height: 200px;
  }

  .features__card-front,
  .features__card-back {
    padding: 20px;
    border-radius: 12px;
  }

  .features__card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
  }

  .features__card-icon svg {
    width: 24px;
    height: 24px;
  }

  .features__card-title {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .features__card-hint {
    font-size: 10px;
  }

  .features__card-back p {
    font-size: 13px;
  }
}

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

  .features__card {
    height: 180px;
  }
}

/* ============================================
   MOBILE RESPONSIVE - FAQ
   ============================================ */

@media (max-width: 1023px) {
  .faq {
    padding: 24px var(--grid-gutter) 60px;
    margin-top: -40px;
  }

  .faq__header {
    margin-bottom: 32px;
  }

  .faq__label {
    font-size: 10px;
  }

  .faq__title {
    font-size: clamp(1.8rem, 2.2rem, 2.5rem);
  }

  .faq__list {
    gap: 10px;
  }

  .faq__item {
    border-radius: 12px;
  }

  .faq__question {
    padding: 18px 20px;
  }

  .faq__question span {
    font-size: 14px;
  }

  .faq__icon {
    width: 20px;
    height: 20px;
  }

  .faq__answer {
    padding: 0;
  }

  .faq__answer p {
    padding-left: 20px;
    padding-right: 20px;
  }

  .faq__answer p:last-child {
    padding-bottom: 18px;
  }

  .faq__answer p {
    font-size: 14px;
  }
}

/* ============================================
   MOBILE RESPONSIVE - MODAL
   ============================================ */

@media (max-width: 768px) {
  .modal {
    padding: 16px;
    align-items: center;
  }

  .modal__container {
    max-width: calc(100% - 32px);
    width: 100%;
    max-height: calc(100vh - 32px);
    border-radius: 20px;
    margin: 0;
  }

  .modal.is-open .modal__container {
    transform: translateY(0);
  }

  .modal__close {
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
  }

  .modal__content {
    padding: 24px 20px 30px;
  }

  .modal__header {
    margin-bottom: 24px;
  }

  .modal__title {
    font-size: 22px;
  }

  .modal__subtitle {
    font-size: 14px;
  }

  .modal__form-row {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .modal__form-input,
  .modal__form-textarea {
    padding: 11px 14px;
    font-size: 16px;
    line-height: 22px;
  }

  .modal__contact-methods {
    flex-wrap: nowrap;
    gap: 12px;
  }

  .modal__actions-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .modal__note {
    justify-content: center;
    font-size: 11px;
  }

  .modal__submit {
    padding: 14px 20px;
    font-size: 14px;
    width: 100%;
  }

  .modal__success-icon {
    width: 70px;
    height: 70px;
  }

  .modal__success-title {
    font-size: 24px;
  }

  .modal__success-text {
    font-size: 14px;
  }
}

/* ============================================
   REVIEWS SECTION
   ============================================ */

.reviews {
  position: relative;
  padding: 96px var(--grid-gutter);
  background: #111111;
  overflow: hidden;
}

.reviews__container {
  max-width: var(--grid-max);
  width: 100%;
  margin: 0 auto;
}

.reviews__header {
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.reviews__label {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-red);
}

.reviews__title {
  font-size: 48px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0;
}

.reviews__title--outline {
  display: block;
  -webkit-text-stroke: 1px #ffffff;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Slider */
.reviews__slider {
  position: relative;
}

.reviews__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 32px;
  padding-top: 16px; /* Space for hover transform */
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

.reviews__track::-webkit-scrollbar {
  display: none;
}

.reviews__card {
  flex: 0 0 380px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px;
  scroll-snap-align: start;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.reviews__card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.reviews__card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.reviews__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #E0E7FF;
  color: #4f46e5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  flex-shrink: 0;
  overflow: hidden;
}

.reviews__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviews__info {
  flex: 1;
  min-width: 0;
}

.reviews__name {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 4px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.reviews__role {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.reviews__rating {
  font-size: 14px;
  color: #f59e0b;
  letter-spacing: 2px;
}

.reviews__content {
  flex: 1;
  margin-bottom: 24px;
}

.reviews__content p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-style: italic;
}

.reviews__tag {
  display: inline-flex;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 9999px;
  align-self: flex-start;
}

.reviews__tag span {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.02em;
}

/* Controls */

.formats {
  padding: 90px 0 100px;
  background: #0f0f0f;
  color: #ffffff;
}

.formats__container {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 var(--grid-gutter);
}

.formats__header {
  text-align: center;
  margin-bottom: 40px;
}

.formats__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.formats__title {
  margin: 16px 0 12px;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  line-height: 1.1;
}

.formats__title--outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
}

.formats__subtitle {
  max-width: 620px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}

.formats__grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.formats__card {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.formats__card--accent {
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
  border-color: rgba(255, 255, 255, 0.22);
}

.formats__card-title {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.formats__card-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
}

.formats__card-meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.02em;
}

.formats__card-list {
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.6;
}

.formats__card-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 9999px;
  background: #ffffff;
  color: #1a1a1a;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.formats__card-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.formats__note {
  margin-top: 24px;
  padding: 16px 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

@media (max-width: 1023px) {
  .formats__grid {
    grid-template-columns: 1fr;
  }
  .formats__header {
    text-align: left;
  }
  .formats__subtitle {
    margin: 0;
  }
}

/* Accessibility - subtle link and focus styles */
.reviews__content a,
.philosophy__text a,
.teacher__bio a,
.formats__card-text a,
.cta-block__description a {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
}

:focus-visible {
  outline: 2px solid #ffd54f;
  outline-offset: 3px;
}


.reviews__controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: -1px; /* Align with border above if needed, but track has padding */
}

.reviews__arrow {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.reviews__arrow:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

/* Mobile */
@media (max-width: 768px) {
  .reviews {
    padding: 64px var(--grid-gutter);
  }

  .reviews__title {
    font-size: 32px;
  }

  .reviews__track {
    gap: 16px;
  }

  .reviews__card {
    flex: 0 0 300px;
    padding: 24px;
  }

  .reviews__controls {
    justify-content: center;
  }
}

/* ============================================
   TEACHER SECTION
   ============================================ */

/* ============================================
   TEACHER SECTION
   ============================================ */

.teacher {
  padding: 120px var(--grid-gutter);
  background: #111;
  position: relative;
  overflow: hidden;
  z-index: 5; /* Ensure it stays above if needed */
}

/* ... existing teacher styles ... */

/* ============================================
   PHILOSOPHY SECTION
   ============================================ */

.philosophy {
  position: relative;
  padding: 120px var(--grid-gutter);
  background: #111; /* Match Teacher section for seamless look */
  overflow: hidden;
  z-index: 4;
}

/* Remove overlay which might cause dirty look */
.philosophy::after {
  content: none;
}

.teacher__container {
  max-width: var(--grid-max);
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Text Content */
.teacher__content {
  display: flex;
  flex-direction: column;
}

.teacher__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #ff9aa2;
  margin-bottom: 20px;
}

.teacher__title {
  font-size: 56px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0 0 32px 0;
}

.teacher__title-outline {
  -webkit-text-stroke: 1px #ffffff;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: block;
  /* font-size:0 hides any text TranslatePress injects into the DOM */
  font-size: 0;
}

/* Render surname from data-name — CSS content is never translated by TranslatePress */
.teacher__title-outline[data-name]::after {
  content: attr(data-name);
  font-size: 56px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

@media (max-width: 1023px) {
  .teacher__title-outline[data-name]::after { font-size: 40px; }
}

@media (max-width: 767px) {
  .teacher__title-outline[data-name]::after { font-size: 32px; }
}

.teacher__bio {
  margin-bottom: 40px;
}

.teacher__bio p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  max-width: 540px;
}

.teacher__bio strong {
  color: #fff;
  font-weight: 500;
}

/* Stats */
.teacher__stats {
  display: flex;
  gap: 48px;
  margin-bottom: 48px;
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.teacher__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.teacher__stat-value {
  font-size: 32px;
  font-weight: 300;
  color: #fff;
  line-height: 1;
}

.teacher__stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
}

/* Quote */
.teacher__quote {
  position: relative;
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  color: #fff;
  line-height: 1.5;
  padding-left: 24px;
  border-left: 2px solid var(--color-red);
}

/* Visual / Video */
.teacher__visual {
  position: relative;
}

.teacher__video-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.teacher__video-poster {
  position: relative;
  aspect-ratio: 4/5;
  background: #222;
  cursor: pointer;
}

.teacher__video-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.teacher__video-poster:hover img {
  transform: scale(1.05);
}

.teacher__video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
}

/* Play Button */
.teacher__play-btn {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 9999px;
  padding: 10px 22px 10px 12px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.teacher__play-btn:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08));
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.teacher__play-icon {
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  transition: transform 0.25s ease;
}

.teacher__play-btn:hover .teacher__play-icon {
  transform: scale(1.1);
}

.teacher__play-icon svg {
  width: 18px;
  height: 18px;
  margin-left: 2px; /* optical center */
}

.teacher__play-text {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* Badge */
.teacher__badge {
  position: absolute;
  top: 40px;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  z-index: 2;
  border: 1px solid rgba(255, 221, 85, 0.3);
}

.teacher__badge-icon {
  width: 16px;
  height: 16px;
  background: var(--color-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--color-dark);
  font-weight: 700;
}

/* Video Modal */
.teacher__modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--grid-gutter);
}

.teacher__modal.is-active {
  opacity: 1;
  visibility: visible;
}

.teacher__modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
}

.teacher__modal-content {
  width: 100%;
  max-width: 1000px;
  position: relative;
  z-index: 2;
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.teacher__modal.is-active .teacher__modal-content {
  transform: scale(1);
}

.teacher__video-container {
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.teacher__video-container video {
  width: 100%;
  height: 100%;
  display: block;
}

.teacher__modal-close {
  position: absolute;
  top: -60px;
  right: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
}

.teacher__modal-close:hover {
  background: #fff;
  color: #000;
}

/* Tablet / Mobile */
@media (max-width: 1023px) {
  .teacher {
    padding: 80px var(--grid-gutter);
  }

  .teacher__container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .teacher__title {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .teacher {
    padding: 64px var(--grid-gutter);
  }

  .teacher__title {
    font-size: 32px;
  }

  .teacher__stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  .teacher__video-poster {
    aspect-ratio: 4/5; /* Keep vertical ratio on mobile */
  }

  .teacher__play-btn {
    bottom: 20px;
    left: 20px;
    right: 20px;
    justify-content: center;
    padding: 10px 16px;
    gap: 10px;
  }

  .teacher__play-icon {
    width: 38px;
    height: 38px;
  }

  .teacher__play-text {
    font-size: 12px;
  }

  .teacher__badge {
    top: 20px;
    right: 20px;
  }
}

/* ============================================
   404 ERROR PAGE
   ============================================ */

.error-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px var(--grid-gutter);
  background: #0f0f0f;
}

.error-404__container {
  max-width: 560px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.error-404__code {
  font-size: clamp(100px, 20vw, 180px);
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.error-404__title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 12px;
}

.error-404__text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin: 0 0 32px;
}

.error-404__actions {
  display: flex;
  justify-content: center;
}

.error-404__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 9999px;
  background: #ffffff;
  color: #1a1a1a;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.error-404__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

@media (max-width: 767px) {
  .error-404 {
    padding: 100px var(--grid-gutter);
  }

  .error-404__btn {
    width: 100%;
    justify-content: center;
  }
}

/* Formats & Packages */
.formats {
  padding: 90px 0 100px;
  background: #0f0f0f;
  color: #ffffff;
}

.formats__container {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 var(--grid-gutter);
}

.formats__header {
  text-align: center;
  margin-bottom: 40px;
}

.formats__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.formats__title {
  margin: 16px 0 12px;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  line-height: 1.1;
}

.formats__title--outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
}

.formats__subtitle {
  max-width: 620px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

.formats__grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.formats__card {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.formats__card--accent {
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
  border-color: rgba(255, 255, 255, 0.22);
}

.formats__card-title {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.formats__card-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
}

.formats__card-meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.02em;
}

.formats__card-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 9999px;
  background: #ffffff;
  color: #1a1a1a;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.formats__card-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.formats__note {
  margin-top: 24px;
  padding: 16px 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

@media (max-width: 1023px) {
  .formats__grid {
    grid-template-columns: 1fr;
  }
  .formats__header {
    text-align: left;
  }
  .formats__subtitle {
    margin: 0;
  }
}
