/* ==========================================
   ENDALA — Main Stylesheet (Figma-matched)
   ========================================== */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  background-color: #1D4358;
}
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  font-family: "Inter", sans-serif;
  color: #ffffff;
  background: #1D4358;
  background: linear-gradient(180deg, #0E1B23 11.93%, #1D4358 103.63%);
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
}

/* iOS Safari overscroll protection — prevents white flash at bottom */
body::after {
  content: '';
  display: block;
  position: fixed;
  bottom: -100px;
  left: 0;
  right: 0;
  height: 100px;
  background: #1D4358;
  z-index: -1;
  pointer-events: none;
}

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

ul {
  list-style: none;
}

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

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

/* ==========================================
   SECTION NUMBERS
   ========================================== */

.section-number {
  font-size: 16.6px;
  font-weight: 500;
  color: #0c3d3d;
  line-height: 28px;
}

.section-total {
  font-size: 16.6px;
  font-weight: 500;
  color: #0c3d3d;
  line-height: 28px;
}

/* ==========================================
   CTA BUTTONS (glassmorphism pill)
   ========================================== */

.section-block__cta-btn,
.sportovci__cta-btn,
.reviews__all-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 24px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(35px);
  -webkit-backdrop-filter: blur(35px);
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  line-height: 30px;
  transition: background 0.3s ease;
  margin-bottom: 24px;
}

.section-block__cta-btn:hover,
.sportovci__cta-btn:hover,
.reviews__all-btn:hover {
  background: rgba(255, 255, 255, 0.25);
}

.cta-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 43px;
  border-radius: 30px;
  background: rgba(82, 228, 141, 0.2);
  backdrop-filter: blur(35px);
  -webkit-backdrop-filter: blur(35px);
}

.cta-arrow-green {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 41px;
  height: 41px;
  border-radius: 30px;
  background: rgba(82, 228, 141, 0.2);
  backdrop-filter: blur(35px);
  -webkit-backdrop-filter: blur(35px);
}

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  pointer-events: none;
}

.header__container {
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__nav {
  flex: 0 0 auto;
}

.header__nav-glass {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(55px);
  -webkit-backdrop-filter: blur(55px);
  border-radius: 50px;
  padding: 8px 8px 8px 20px;
  pointer-events: auto;
}

.header__logo {
  display: flex;
  align-items: center;
  margin-right: 16px;
}

.header__logo-img {
  height: 22px;
  width: auto;
  filter: brightness(0) invert(1);
}

.header__nav-link {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  font-size: 14.9px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  line-height: 24px;
  border-radius: 50px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.header__nav-link:hover {
  color: #ffffff;
  background: rgba(82, 228, 141, 0.45);
}

.header__right {
  position: absolute;
  top: 20px;
  right: 40px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  animation: heroFadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s both;
}

.header__lang {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 4px;
  gap: 0;
}

.header__lang-btn {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 14px;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.5px;
}

.header__lang-btn--active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
}

.header__lang-btn:hover {
  color: #ffffff;
}

.header__lang-sep {
  display: none;
}

.header__cta {
  display: inline-flex;
  align-items: center;
  padding: 16px 36px;
  background: #52E48D;
  color: #0d1b23;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  transition: background 0.3s ease;
  white-space: nowrap;
}

.header__cta:hover {
  background: #9BFFC4;
}

/* Burger & mobile menu — hidden by default, shown in mobile breakpoint */
.burger {
  display: none;
}

.mobile-menu {
  display: none;
}

/* ==========================================
   HERO — entrance animation
   ========================================== */

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

@keyframes heroBarFadeUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* ==========================================
   HERO
   ========================================== */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 800px;
  max-height: 1065px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  background: #0a0a0a;
}

.hero__bg-video::-webkit-media-controls {
  display: none !important;
  -webkit-appearance: none !important;
}

.hero__bg-video::-webkit-media-controls-container {
  display: none !important;
  -webkit-appearance: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

.hero__bg-video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
  position: absolute !important;
  width: 0 !important;
  height: 0 !important;
}

.hero__bg-video::-webkit-media-controls-panel {
  display: none !important;
  -webkit-appearance: none !important;
}

.hero__bg-video::-webkit-media-controls-overlay-play-button {
  display: none !important;
  -webkit-appearance: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
  position: absolute !important;
  width: 0 !important;
  height: 0 !important;
}

.hero__bg-video::-webkit-media-controls-play-button {
  display: none !important;
  -webkit-appearance: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.hero__bg-video::-webkit-media-controls-current-time-display {
  display: none !important;
}

.hero__bg-video::-webkit-media-controls-time-remaining-display {
  display: none !important;
}

.hero__bg-video::-webkit-media-controls-enclosure {
  display: none !important;
}

.hero__bg-video::-moz-media-controls {
  display: none !important;
}

.hero__bg-video::-ms-media-controls {
  display: none !important;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: transparent;
  pointer-events: auto;
}

/* Hero Sound Button */
.hero__sound-btn {
  position: absolute;
  bottom: 120px;
  right: 32px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(14, 27, 35, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(82, 228, 141, 0.25);
  border-radius: 999px;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  cursor: pointer;
  transition: opacity 0.4s ease, transform 0.3s ease;
  outline: none;
}
.hero__sound-btn:hover {
  background: rgba(14, 27, 35, 0.8);
  border-color: rgba(82, 228, 141, 0.5);
}
.hero__sound-btn.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}
.hero__sound-icon {
  width: 16px;
  height: 16px;
  fill: #52E48D;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .hero__sound-btn {
    bottom: 12px;
    right: 16px;
    padding: 6px 10px;
    font-size: 11px;
    gap: 5px;
  }
  .hero__sound-btn .hero__sound-icon {
    width: 13px;
    height: 13px;
  }
}

/* Hero Center Content */
.hero__center {
  position: absolute;
  bottom: 140px;
  left: 80px;
  z-index: 10;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero__badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  opacity: 0;
  animation: heroFadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both;
}

.hero__badge-stars {
  display: flex;
  gap: 2px;
}

.hero__star {
  color: #52E48D;
  font-size: 14px;
}

.hero__badge-text {
  font-size: 14.6px;
  font-weight: 500;
  color: #ffffff;
  line-height: 24px;
}

.hero__title {
  font-size: 107px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  white-space: nowrap;
  text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
  opacity: 0;
  animation: heroFadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s both;
}

.hero__subtitle {
  font-size: 37px;
  font-weight: 500;
  color: #ffffff;
  line-height: 30px;
  margin-bottom: 32px;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 0;
  opacity: 0;
  animation: heroFadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s both;
}

.hero__buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 3px 3px 3px 20px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 500;
  color: #ffffff;
  line-height: 30px;
  transition: background 0.3s ease;
  white-space: nowrap;
  height: 49px;
  box-sizing: border-box;
}

.hero__btn--primary {
  background: rgba(82, 228, 141, 0.3);
  backdrop-filter: blur(17.5px);
  -webkit-backdrop-filter: blur(17.5px);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero__btn--primary:hover {
  background: rgba(82, 228, 141, 0.45);
}

.hero__btn--secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(17.5px);
  font-size: 18.6px;
  -webkit-backdrop-filter: blur(17.5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__btn--secondary:hover {
  background: rgba(82, 228, 141, 0.45);
}

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

.hero__btn-arrow--green {
  background: rgba(35, 35, 35, 0.2);
  backdrop-filter: blur(17.5px);
  -webkit-backdrop-filter: blur(17.5px);
}

.hero__btn-arrow--orange {
  background: rgba(35, 35, 35, 0.2);
  backdrop-filter: blur(17.5px);
  -webkit-backdrop-filter: blur(17.5px);
}

/* Hero Bottom Bar */
.hero__bottom-bar {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: calc(100% - 100px);
  max-width: 1734px;
  opacity: 0;
  animation: heroBarFadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s both;
}

.hero__bottom-bar-glass {
  background: rgba(187, 187, 187, 0.27);
  backdrop-filter: blur(35px);
  -webkit-backdrop-filter: blur(35px);
  border-radius: 30px;
  padding: 15.5px 40px;
}

.hero__bottom-bar-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.hero__bottom-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.6px;
  font-weight: 400;
  color: #ffffff;
  line-height: 24px;
  position: relative;
  padding-right: 24px;
}

.hero__bottom-bar-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.25);
}

.hero__bottom-bar-item:last-child {
  padding-right: 0;
}

.hero__bottom-bar-item:first-child {
  font-weight: 500;
}

.hero__bottom-bar-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

@media (min-width: 1025px) {
  .hero__bottom-bar-item {
    white-space: nowrap;
  }
  .tabs__bar {
    justify-content: center;
  }
}

/* ==========================================
   LOGOS
   ========================================== */

.logos {
  background: transparent;
  padding: 56px 0;
  overflow: hidden;
}

.logos__track {
  display: flex;
  width: max-content;
  animation: logosScroll 20s linear infinite;
}

.logos__slide {
  display: flex;
  align-items: center;
  gap: 80px;
  padding: 0 40px;
  flex-shrink: 0;
}

@keyframes logosScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.logos__item {
  height: 36px;
  width: auto;
  opacity: 1;
  filter: brightness(0) invert(1);
  object-fit: contain;
  flex-shrink: 0;
}

/* Forbes & Vogue PNGs are square canvases — override to show them at proper visual width */
.logos__item[alt="Forbes"],
.logos__item[alt="Vogue"] {
  height: auto;
  width: 120px;
}

.logos__item[alt="Men's Health"] {
  height: 28px;
}

.logos__item[alt="Brain We Are"] {
  height: 22px;
}

/* ==========================================
   MAIN GRADIENT
   ========================================== */

.main-gradient {
  background: transparent;
  position: relative;
  overflow: hidden;
}

/* ==========================================
   SHARED: Section pills & numbers
   ========================================== */

.section-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(35px);
  -webkit-backdrop-filter: blur(35px);
  border-radius: 50px;
  font-size: 16.6px;
  font-weight: 700;
  color: #ffffff;
  line-height: 28px;
  white-space: nowrap;
}

.section-pill em {
  font-family: "Caveat", cursive;
  font-style: italic;
  font-weight: 700;
  font-size: 24px;
  margin-left: 4px;
}

.section-num {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  line-height: 24px;
}

.section-num__current {
  color: #52E48D;
  font-weight: 700;
}

.cta-arrow-sm {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 41px;
  height: 40.72px;
  border-radius: 30px;
  background: rgba(82, 228, 141, 0.2);
  backdrop-filter: blur(17.5px);
  -webkit-backdrop-filter: blur(17.5px);
}

/* ==========================================
   SECTION BLOCKS (shared)
   ========================================== */

.section-block {
  padding: 160px 0;
}

.section-block__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}

.section-block__title--huge {
  font-size: 114px;
  font-weight: 700;
  color: #ffffff;
  line-height: 100px;
  letter-spacing: -2.28px;
  margin-bottom: 48px;
}

.section-block__title--center {
  text-align: center;
}

.section-block__quote-handwritten {
  font-family: "Caveat", cursive;
  font-size: 57px;
  font-weight: 700;
  color: #ffffff;
  line-height: 65px;
  letter-spacing: -1.14px;
  margin-bottom: 8px;
}

.section-block__quote-handwritten--center {
  text-align: center;
}

.section-block__nav-label {
  font-size: 16.6px;
  font-weight: 500;
  color: #ffffff;
  line-height: 28px;
  margin-bottom: 24px;
}

.section-block__body-text {
  font-size: 18.3px;
  font-weight: 500;
  color: #ffffff;
  line-height: 30px;
  max-width: 700px;
  margin-bottom: 32px;
}

/* ==========================================
   SECTION 01 — Vidíme
   ========================================== */

.section-01 {
  padding: 120px 0 160px;
}

.section-01 .section-block__container {
  max-width: 1920px;
  padding: 0 146px;
}

.section-01__header {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 27px;
  justify-content: center;
  margin-right: 158px;
}

.mob-br {
  display: none;
}

.section-03__mobile-quote {
  display: none;
}

.nastroje__scroll-nav {
  display: none;
}

.section-01__title {
  font-family: 'Inter', sans-serif;
  font-size: 114px;
  font-weight: 700;
  color: #ffffff;
  line-height: 100px;
  letter-spacing: -0.02em;
  text-align: left;
  margin-bottom: 30px;
  padding-left: 243px;
}

.section-01__quotes {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 28px;
  position: relative;
}

.section-01__quote-bold {
  font-family: 'Inter', sans-serif;
  font-size: 57px;
  font-weight: 700;
  color: #ffffff;
  line-height: 65px;
  letter-spacing: -0.02em;
  padding-left: 73px;
  position: relative;
  z-index: 1;
}

.section-01__quote-italic {
  font-family: "Caveat", cursive;
  font-size: 75px;
  font-weight: 700;
  font-style: italic;
  color: #ffffff;
  line-height: 65px;
  letter-spacing: -0.02em;
  margin-left: 9px;
  position: relative;
  z-index: 1;
  margin-top: -20px;
}

.section-01__body-area {
  max-width: 655px;
  margin-left: auto;
  margin-right: 140px;
  text-align: left;
}

.section-01__body {
  font-family: 'Inter', sans-serif;
  font-size: 18.3px;
  font-weight: 500;
  color: #ffffff;
  line-height: 30px;
  margin-bottom: 25px;
  text-align: left;
}

.section-01__body-line {
  margin: 0;
}

.section-01__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 8px 8px 24px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(17.5px);
  -webkit-backdrop-filter: blur(17.5px);
  border-radius: 30px;
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  line-height: 30px;
  transition: background 0.3s ease;
}

.section-01__cta .cta-arrow-sm {
  width: 43px;
  height: 42.71px;
  background: rgba(82, 228, 141, 0.2);
  backdrop-filter: blur(17.5px);
  -webkit-backdrop-filter: blur(17.5px);
  border-radius: 30px;
}

.section-01__cta:hover {
  background: rgba(82, 228, 141, 0.45);
}

/* ==========================================
   SECTION 02 — Nejsem nová
   ========================================== */

.section-02 {
  padding: 80px 0 160px;
}

.section-02__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
  position: relative;
}

.section-02__top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 0;
  position: absolute;
  top: 126px;
  left: 118px;
  z-index: 2;
}

.section-02__layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
}

.section-02__left {
  flex: 0.5;
  display: flex;
  justify-content: flex-end;
  padding-right: 0;
  margin-top: -195px;
}

.section-02__center {
  flex: 0 0 auto;
  width: 380px;
  display: flex;
  justify-content: center;
  z-index: 1;
  position: relative;
}

.section-02__circle {
  position: absolute;
  width: 596px;
  height: 596px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(0, 0, 0, 0.1) 0%, rgba(155, 255, 196, 0.1) 99.04%);
  filter: blur(40px);
  pointer-events: none;
}

.section-02__statue {
  width: 100%;
  height: auto;
  max-height: 650px;
  object-fit: contain;
  opacity: 0;
  transform: translateY(80px) scale(0.95);
  transition: opacity 1s ease-out, transform 1s ease-out;
  will-change: opacity, transform;
}

.section-02__statue--visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.section-02__statue--floating {
  animation: statueFloat 3.5s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

@keyframes statueFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-12px) scale(1); }
}

.section-02__right {
  flex: 1;
  padding-left: 0;
  margin-top: 135px;
}

.section-02__title-left {
  font-size: 114px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -2.28px;
  text-align: right;
}

.section-02__title-right {
  font-size: 114px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -2.28px;
  margin-bottom: 32px;
}

.section-02__body {
  font-size: 18.3px;
  font-weight: 500;
  color: #ffffff;
  line-height: 30px;
  margin-bottom: 32px;
  max-width: 655px;
}

.section-02__body em {
  font-style: italic;
  color: #52E48D;
  font-weight: 400;
}

.section-02__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 8px 8px 24px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(17.5px);
  -webkit-backdrop-filter: blur(17.5px);
  border-radius: 30px;
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  line-height: 30px;
  transition: background 0.3s ease;
}

.section-02__cta:hover {
  background: rgba(82, 228, 141, 0.45);
}

.section-block__bold-text {
  font-size: 28.5px;
  font-weight: 700;
  color: #ffffff;
  line-height: 40px;
  letter-spacing: -0.57px;
  max-width: 700px;
  margin-bottom: 24px;
}

.section-block__bottom-quote {
  font-size: 28.5px;
  font-weight: 700;
  color: #ffffff;
  line-height: 42px;
  letter-spacing: -0.57px;
  text-align: center;
  margin-top: 80px;
}

.section-block__bottom-quote em {
  font-family: "Caveat", cursive;
  font-style: italic;
  font-size: 42.75px;
}

.section-block__bottom-quote-2 {
  font-size: 28.5px;
  font-weight: 700;
  color: #ffffff;
  line-height: 42px;
  letter-spacing: -0.57px;
  text-align: center;
  margin-top: 241px;
}

.section-block__bottom-quote-2 em {
  font-family: "Caveat", cursive;
  font-style: italic;
  font-size: 42.75px;
}

.section-block__center-quote {
  font-size: 28.5px;
  font-weight: 700;
  color: #ffffff;
  line-height: 65px;
  letter-spacing: -0.57px;
  text-align: center;
  margin-bottom: 60px;
}

.section-block__quote-block {
  margin-bottom: 40px;
}

/* ---------- SECTION 02 — Tablet ---------- */
@media (max-width: 1024px) and (min-width: 481px) {
  .section-02 {
    padding: 60px 0 80px;
  }
  .section-02__container {
    padding: 0 40px;
  }
  .section-02__top {
    position: relative;
    top: auto;
    left: auto;
    margin-bottom: 16px;
    justify-content: center;
  }
  .section-02__layout {
    flex-direction: column;
    align-items: center;
  }
  .section-02__left {
    flex: none;
    width: 100%;
    margin-top: 0;
    justify-content: center;
  }
  .section-02__title-left {
    font-size: 72px;
    line-height: 72px;
    text-align: center;
  }
  .section-02__center {
    width: 280px;
    order: 0;
  }
  .section-02__statue {
    max-height: 450px;
  }
  .section-02__circle {
    width: 400px;
    height: 400px;
    filter: blur(25px);
  }
  .section-02__right {
    flex: none;
    width: 100%;
    padding-left: 0;
    margin-top: 24px;
    text-align: center;
  }
  .section-02__title-right {
    font-size: 72px;
    line-height: 72px;
    text-align: center;
  }
  .section-02__body {
    font-size: 16px;
    line-height: 26px;
    max-width: 100%;
    text-align: center;
  }
}

/* ==========================================
   SECTION 03 — Kernel Principy
   ========================================== */

.section-03 {
  position: relative;
  overflow: visible;
}

.section-03::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160%;
  height: 120%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(82, 228, 141, 0.22) 0%, rgba(82, 228, 141, 0.10) 35%, rgba(82, 228, 141, 0.03) 60%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.section-03__container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-03__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

/* Section-03 title override per Figma */
.section-03 .section-block__title--center {
  text-align: center;
  color: #ffffff;
}

/* Kernel title green "Kernel" word */
.kernel__title-green {
  color: #9BFFC4;
  font-family: "Inter", sans-serif;
  font-size: 114px;
  font-weight: 700;
  line-height: 100px;
  letter-spacing: -0.02em;
}

/* Kernel subtitle: "Kernel je jádro systému ENDALA." */
.kernel__subtitle {
  font-family: "Inter", sans-serif;
  font-size: 57px;
  font-weight: 700;
  color: #ffffff;
  line-height: 65px;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 24px;
}

.kernel__subtitle em {
  font-family: "Caveat", cursive;
  font-style: italic;
  font-size: 62px;
  text-decoration: none;
}

/* Description text under subtitle */
.kernel__desc {
  font-family: "Inter", sans-serif;
  font-size: 18.3px;
  font-weight: 500;
  color: #ffffff;
  line-height: 30px;
  text-align: center;
  max-width: 843px;
  margin-bottom: 48px;
}

.kernel__desc em {
  font-family: "Caveat", cursive;
  font-style: italic;
  font-size: 24px;
  color: #9BFFC4;
}

.kernel__desc-green {
  color: #9BFFC4;
}

/* Tabs bar wrapper — tabs + avatar side by side */
.tabs__bar-wrapper {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
  width: 100%;
  justify-content: center;
}

/* Tabs scrollbar — hidden on desktop */
.tabs__scrollbar {
  display: none;
}

/* Avatar next to tabs */
.tabs__avatar {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
}

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

/* Kernel card layout inside panel-glass */
.kernel-card {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 1219px;
  min-height: 492px;
  box-sizing: border-box;
  padding: 48px;
}

.kernel-card__content {
  flex: 1;
  min-width: 0;
  padding-left: 20px;
}

.kernel-card__title {
  font-family: "Inter", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 20px;
}

.kernel-card__text {
  font-family: "Inter", sans-serif;
  font-size: 18.3px;
  font-weight: 500;
  color: #ffffff;
  line-height: 30px;
  margin-bottom: 16px;
}

.kernel-card__text--intervention {
  margin-top: 8px;
}

/* Decorative circle image */
.kernel-card__image {
  flex-shrink: 0;
  width: 313px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -50px;
}

.kernel-card__circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(0, 0, 0, 0.1) 0%, rgba(82, 228, 141, 0.1) 99.04%);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(27.5px);
  -webkit-backdrop-filter: blur(27.5px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.kernel-card__icon {
  width: 55%;
  height: 55%;
  opacity: 0.85;
  object-fit: contain;
  filter: url(#glass-effect);
}

/* Figma Glass — chromatic aberration ring at circle edges */
.kernel-card__circle::before,
.kernel-card__circle::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
}

/* Red/warm channel — shifted outward */
.kernel-card__circle::before {
  box-shadow: inset 3px 2px 8px rgba(255, 50, 10, 0.35),
              inset -1px -1px 4px rgba(255, 120, 0, 0.15);
  z-index: 3;
}

/* Blue/cool channel — shifted opposite */
.kernel-card__circle::after {
  box-shadow: inset -3px -2px 8px rgba(30, 80, 255, 0.35),
              inset 1px 1px 4px rgba(100, 0, 255, 0.15);
  z-index: 3;
}

/* Kernel bottom quote */
.kernel__bottom {
  font-family: "Inter", sans-serif;
  font-size: 28.5px;
  font-weight: 700;
  color: #ffffff;
  line-height: 42px;
  letter-spacing: -0.02em;
  text-align: center;
  margin-top: 80px;
  max-width: 1026px;
}

.kernel__bottom-green {
  color: #9BFFC4;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-size: inherit;
}

/* ==========================================
   BRIDGE SECTION (between 03 and 04)
   ========================================== */

.bridge-section {
  position: relative;
  width: 100%;
  height: 891px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 100px;
  overflow: hidden;
}

.bridge-section--mobile {
  display: none;
}

.bridge-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bridge-section__bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* no filter — original video quality */
}

.bridge-section__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  padding: 0;
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1) 70%);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  outline: none;
  box-shadow:
    0 0 30px rgba(255, 255, 255, 0.15),
    0 0 60px rgba(255, 255, 255, 0.05),
    inset 0 0 20px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: bridge-play-pulse 3s ease-in-out infinite, bridge-play-morph 8s ease-in-out infinite;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.bridge-section__play-btn::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    rgba(255, 255, 255, 0.4),
    rgba(255, 255, 255, 0.05) 40%,
    rgba(255, 255, 255, 0.25) 60%,
    rgba(255, 255, 255, 0.05) 80%,
    rgba(255, 255, 255, 0.4)
  );
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #fff calc(100% - 2px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #fff calc(100% - 2px));
  animation: bridge-play-rotate 4s linear infinite;
}

.bridge-section__play-btn:hover {
  box-shadow:
    0 0 40px rgba(255, 255, 255, 0.25),
    0 0 80px rgba(255, 255, 255, 0.1),
    inset 0 0 25px rgba(255, 255, 255, 0.15);
  transform: translate(-50%, -50%) scale(1.08);
}

.bridge-section__play-btn--hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.6);
  transition: all 0.5s ease;
}

.bridge-section__play-icon {
  position: relative;
  z-index: 1;
  width: 28px;
  height: 28px;
  color: #ffffff;
}

.bridge-section__play-icon--play {
  margin-left: 3px;
}

@keyframes bridge-play-morph {
  0%, 100% { border-radius: 50%; }
  25% { border-radius: 47% 53% 52% 48% / 48% 52% 48% 52%; }
  50% { border-radius: 52% 48% 47% 53% / 53% 47% 53% 47%; }
  75% { border-radius: 48% 52% 53% 47% / 47% 53% 47% 53%; }
}

@keyframes bridge-play-pulse {
  0%, 100% { box-shadow: 0 0 30px rgba(255, 255, 255, 0.15), 0 0 60px rgba(255, 255, 255, 0.05), inset 0 0 20px rgba(255, 255, 255, 0.1); }
  50% { box-shadow: 0 0 40px rgba(255, 255, 255, 0.25), 0 0 80px rgba(255, 255, 255, 0.1), inset 0 0 30px rgba(255, 255, 255, 0.15); }
}

@keyframes bridge-play-rotate {
  to { transform: rotate(360deg); }
}

.bridge-section__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(179.94deg, rgba(131, 131, 131, 0) 8.62%, rgba(29, 29, 29, 0.3) 99.95%);
}

.bridge-section__text {
  position: relative;
  z-index: 1;
  font-family: 'Inter', sans-serif;
  font-size: 67px;
  font-weight: 700;
  line-height: 67px;
  text-align: center;
  color: #ffffff;
  letter-spacing: -0.02em;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
  max-width: 1100px;
  padding: 0 40px;
  margin-bottom: 0;
}

.bridge-section__text em {
  font-family: "Caveat", cursive;
  font-style: italic;
  font-size: 67px;
}

.bridge-section__text strong {
  font-weight: 700;
}

.bridge-section__cta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 8px 8px 24px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(17.5px);
  -webkit-backdrop-filter: blur(17.5px);
  border-radius: 30px;
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  line-height: 30px;
  transition: background 0.3s ease;
  margin-top: 48px;
}

.bridge-section__cta:hover {
  background: rgba(82, 228, 141, 0.45);
}

.bridge-section__cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 33px;
  height: 33px;
  background: rgba(82, 228, 141, 0.3);
  border-radius: 50%;
}

@media (max-width: 480px) {
  .bridge-section--desktop {
    display: none;
  }

  .bridge-section--mobile {
    display: flex;
    height: 280px;
    justify-content: flex-end;
    padding-bottom: 20px;
  }

  .bridge-section--mobile .bridge-section__gradient {
    background: linear-gradient(180deg, rgba(102, 102, 102, 0) -92.92%, #000000 115.71%);
  }

  .bridge-section--mobile .bridge-section__text {
    font-size: 28px;
    line-height: 32px;
    padding: 0 20px;
    text-align: left;
  }

  .bridge-section--mobile .bridge-section__cta {
    align-self: flex-start;
    margin-left: 20px;
    margin-top: 32px;
    font-size: 13px;
    padding: 8px 8px 8px 20px;
  }

  .bridge-section--mobile .bridge-section__cta-arrow {
    width: 41px;
    height: 41px;
    background: rgba(82, 228, 141, 0.2);
  }

  .bridge-section--mobile .bridge-section__play-btn {
    width: 56px;
    height: 56px;
  }

  .bridge-section--mobile .bridge-section__play-icon {
    width: 22px;
    height: 22px;
  }

}

@media (max-width: 1024px) and (min-width: 481px) {
  .bridge-section {
    height: 600px;
  }

  .bridge-section__text {
    font-size: 44px;
    line-height: 48px;
    padding: 0 30px;
  }
}

/* ==========================================
   TABS (Rovnováha section)
   ========================================== */

.tabs {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tabs__bar {
  display: inline-flex;
  gap: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), #222F37;
  backdrop-filter: blur(17.5px);
  -webkit-backdrop-filter: blur(17.5px);
  border-radius: 30px;
  padding: 0;
  margin: 0;
  height: 59px;
  align-items: center;
}

.tabs__btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  line-height: 24px;
  transition: all 0.3s ease;
  white-space: nowrap;
  height: 100%;
}

img.tabs__btn-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  display: inline-block;
  object-fit: contain;
  filter: brightness(0) invert(0.9);
}

.tabs__btn:hover {
  background: rgba(82, 228, 141, 0.45);
}

.tabs__btn--active {
  background: rgba(82, 228, 141, 0.25);
  position: relative;
}

.tabs__btn--active::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  padding: 1px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(61, 61, 61, 0.1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.tabs__panels {
  position: relative;
  width: 100%;
}

.tabs__panels::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1100px;
  height: 700px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(82, 228, 141, 0.15) 0%, rgba(82, 228, 141, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.tabs__panel {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease;
}

.tabs__panel--active {
  position: relative;
  left: auto;
  transform: none;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  animation: tabFadeIn 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

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

.tabs__panel-glass {
  background: #222F37;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 0;
  width: 1219px;
  min-height: 423px;
  box-sizing: border-box;
}

@media (min-width: 1025px) {
  .tabs__panel-glass {
    margin: 0 auto;
  }
}

.tabs__panel-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
}

.tabs__panel-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
}

.tabs__panel-heading {
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.8px;
  margin-bottom: 4px;
}

.tabs__panel-subtitle {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
  letter-spacing: -0.44px;
}

.tabs__panel-subtitle em {
  font-family: "Caveat", cursive;
  font-style: italic;
  font-size: 28px;
  margin-right: 4px;
}

.tabs__panel-text {
  font-size: 18.3px;
  font-weight: 500;
  color: #ffffff;
  line-height: 30px;
  max-width: 700px;
}

/* ==========================================
   SECTION 04 — 7 Pilířů
   ========================================== */

.section-04 {
  overflow: visible !important;
  position: relative;
}

.section-04__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.section-04__glow {
  --glow-color: 220, 160, 100;
  position: absolute;
  width: 1400px;
  height: 1400px;
  left: 50%;
  bottom: -400px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(var(--glow-color), 0.55) 0%, rgba(var(--glow-color), 0.35) 20%, rgba(var(--glow-color), 0.18) 40%, rgba(var(--glow-color), 0.06) 60%, transparent 75%);
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
  transition: background 0.6s ease;
}

.section-04__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.section-04__title {
  font-family: "Inter", sans-serif;
  font-size: 114px;
  font-weight: 700;
  color: #ffffff;
  line-height: 114px;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 16px;
}

.section-04__title-num {
  font-family: "Caveat", cursive;
  color: #9BFFC4;
  font-size: 228px;
  line-height: 0.8;
  vertical-align: baseline;
}

.section-04__subtitle-handwritten {
  font-family: "Caveat", cursive;
  font-size: 64px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -1.2px;
  text-align: center;
  margin-bottom: 16px;
}

.section-04__subtitle-bold {
  font-size: 28.5px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
  letter-spacing: -0.57px;
  text-align: center;
  margin-bottom: 48px;
}

/* ==========================================
   7 PILÍŘŮ GRID
   ========================================== */

.pilire__grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  max-width: 1217px;
  margin-left: auto;
  margin-right: auto;
  background: #1B262C;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(17.5px);
  -webkit-backdrop-filter: blur(17.5px);
  border-radius: 30px;
  padding: 0 24px;
  height: 59px;
  box-sizing: border-box;
}

.pilire__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 8px;
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.pilire__item:hover {
  opacity: 0.8;
}

.pilire__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

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

.pilire__name {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  line-height: 24px;
  white-space: nowrap;
}

.pilire__scrollbar {
  display: none;
}

/* ==========================================
   PILLAR DETAIL CARD
   ========================================== */

.pilir-card {
  position: relative;
  width: 100%;
  max-width: 1109px;
  min-height: 750px;
  border-radius: 30px;
  overflow: hidden;
}

@keyframes floatUpDown {
  0%, 100% {
    transform: translate(-50%, calc(-65% - 40px));
  }
  50% {
    transform: translate(-50%, calc(-65% - 55px));
  }
}

/* Floating pillar icon in hand area */
.pilir-card__floating-icon {
  --pillar-glow: 140, 100, 220;
  position: absolute;
  top: 50%;
  left: calc(32% + 8px);
  transform: translate(-50%, calc(-65% - 40px));
  width: 180px;
  height: 180px;
  object-fit: contain;
  z-index: 1;
  animation: floatUpDown 3s ease-in-out infinite;
  transition: opacity 0.4s ease, transform 0.4s ease, filter 0.6s ease;
  filter:
    drop-shadow(0 0 22px rgba(var(--pillar-glow), 0.8))
    drop-shadow(0 0 50px rgba(var(--pillar-glow), 0.55))
    drop-shadow(0 0 100px rgba(var(--pillar-glow), 0.35))
    drop-shadow(0 0 150px rgba(var(--pillar-glow), 0.15));
}

/* Icon exit — slides up and fades (next) */
.pilir-card__floating-icon--exit-left {
  opacity: 0;
  transform: translate(-50%, calc(-65% - 80px));
}

/* Icon exit — slides down and fades (prev) */
.pilir-card__floating-icon--exit-right {
  opacity: 0;
  transform: translate(-50%, calc(-65% + 80px));
}

/* Icon enter — starts from below (next) */
.pilir-card__floating-icon--enter-right {
  opacity: 0;
  transform: translate(-50%, calc(-65% + 80px));
  transition: none;
}

/* Icon enter — starts from above (prev) */
.pilir-card__floating-icon--enter-left {
  opacity: 0;
  transform: translate(-50%, calc(-65% - 80px));
  transition: none;
}

/* Content fade */
.pilir-card__content--fade-out {
  opacity: 0;
  transition: opacity 0.25s ease;
}

.pilir-card__content--fade-in {
  opacity: 1;
  transition: opacity 0.3s ease;
}

/* Active pillar in top grid */
.pilire__item--active {
  background: rgba(var(--item-glow, 0, 0, 0), 0.15);
  border-color: transparent;
  border-radius: 30px;
  box-shadow: 0 0 18px rgba(var(--item-glow, 0, 0, 0), 0.45), 0 0 6px rgba(var(--item-glow, 0, 0, 0), 0.25), inset 0 0 8px rgba(var(--item-glow, 0, 0, 0), 0.1);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.pilir-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Side navigation — positioned near the floating icon */
.pilir-card__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  transition: color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  z-index: 3;
  padding: 4px 10px;
  border-radius: 30px;
  background: rgba(var(--pillar-glow, 255, 255, 255), 0.1);
  box-shadow: 0 0 12px rgba(var(--pillar-glow, 255, 255, 255), 0.25), 0 0 4px rgba(var(--pillar-glow, 255, 255, 255), 0.15);
}

.pilir-card__nav:hover {
  color: #ffffff;
  background: rgba(var(--pillar-glow, 255, 255, 255), 0.2);
  box-shadow: 0 0 20px rgba(var(--pillar-glow, 255, 255, 255), 0.4), 0 0 8px rgba(var(--pillar-glow, 255, 255, 255), 0.25);
}

.pilir-card__nav--prev {
  left: calc(32% - 210px);
  top: calc(50% - 65px);
}

.pilir-card__nav--next {
  left: calc(32% + 131px);
  top: calc(50% - 65px);
}

/* Content overlay */
.pilir-card__content {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  padding: 48px;
  max-width: 560px;
  display: flex;
  flex-direction: column;
}

.pilir-card__title {
  font-family: "Caveat", cursive;
  font-size: 51px;
  font-weight: 700;
  color: #ffffff;
  line-height: 30px;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.pilir-card__subtitle {
  font-size: 28.5px;
  font-weight: 700;
  color: #ffffff;
  line-height: 40px;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.pilir-card__subtitle em {
  font-family: "Caveat", cursive;
  font-style: italic;
  font-size: 40px;
  margin: 0 6px;
}

.pilir-card__text {
  font-size: 14.25px;
  font-weight: 500;
  color: #ffffff;
  line-height: 22px;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.pilir-card__text-small {
  font-size: 13px;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 20px;
  margin-bottom: 6px;
}

.pilir-card__list {
  list-style: disc;
  padding-left: 18px;
  margin-bottom: 12px;
}

.pilir-card__list li {
  font-size: 13px;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 21px;
}

.pilir-card__bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  z-index: 3;
  margin-top: auto;
}

.pilir-card__text-bold {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  line-height: 22px;
  max-width: 100%;
}

.pilir-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 8px 8px 24px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.4;
  letter-spacing: -0.01em;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.pilir-card__cta .cta-arrow-sm {
  width: 36px;
  height: 36px;
  background: var(--cta-arrow-bg, #9172DD) !important;
  border-radius: 50%;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  flex-shrink: 0;
}

.pilir-card__cta:hover {
  background: rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.section-04__bottom-quote {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.5;
  text-align: center;
  margin-top: 60px;
  max-width: 700px;
}

/* ==========================================
   NASTROJE (Section 05)
   ========================================== */

.section-05 {
  position: relative;
  overflow: visible;
}

.section-05::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160%;
  height: 120%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(82, 228, 141, 0.22) 0%, rgba(82, 228, 141, 0.10) 35%, rgba(82, 228, 141, 0.03) 60%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.section-05::after {
  content: '';
  position: absolute;
  top: -300px;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(var(--glow-color, 220, 160, 100), 0.35) 0%, rgba(var(--glow-color, 220, 160, 100), 0.15) 30%, rgba(var(--glow-color, 220, 160, 100), 0.05) 55%, transparent 75%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.section-05 .section-block__title--huge {
  font-family: "Inter", sans-serif;
  color: #9BFFC4;
}

.section-05__container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-05__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.section-05__subtitles {
  text-align: center;
  margin-bottom: 48px;
}

.section-05__subtitle-bold {
  font-size: 57px;
  font-weight: 700;
  color: #ffffff;
  line-height: 65px;
  letter-spacing: -1.14px;
}

.section-05__subtitle-hand {
  font-family: "Caveat", cursive;
  font-size: 99.8px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -2px;
  white-space: nowrap;
}

.nastroje__domains-list {
  display: flex;
  gap: 0;
  background: #1B262C;
  border-radius: 30px;
  padding: 0;
  width: fit-content;
  margin-bottom: 48px;
}

.nastroje__domain {
  display: inline-flex;
  align-items: center;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  line-height: 24px;
  transition: background 0.3s ease;
  border-radius: 30px;
}

.nastroje__domain:hover {
  background: rgba(82, 228, 141, 0.45);
  border-radius: 30px;
}

.nastroje__domain--active {
  background: rgba(82, 228, 141, 0.2);
  border: 1px solid rgba(82, 228, 141, 0.3);
  border-radius: 30px;
}

.nastroje__clinic {
  display: flex;
  gap: 0;
  background: #1B262C;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 30px;
  overflow: hidden;
  width: 100%;
}

.nastroje__clinic-left {
  flex: 1;
  padding: 48px;
}

.nastroje__clinic-right {
  flex: 0 0 45%;
  position: relative;
}

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

.nastroje__clinic-badge {
  display: inline-block;
  padding: 10px 28px;
  background: rgba(82, 228, 141, 0.2);
  border-radius: 50px;
  font-size: 57px;
  font-weight: 700;
  color: #ffffff;
  line-height: 65px;
  letter-spacing: -1.14px;
  margin-bottom: 24px;
}

.nastroje__clinic-bold {
  font-size: 28.5px;
  font-weight: 700;
  color: #ffffff;
  line-height: 40px;
  letter-spacing: -0.57px;
  margin-bottom: 16px;
}

.nastroje__clinic-body-text {
  font-size: 18.3px;
  font-weight: 500;
  color: #ffffff;
  line-height: 30px;
  margin-bottom: 24px;
}

.nastroje__clinic-section-title {
  font-size: 18.3px;
  font-weight: 500;
  color: #ffffff;
  line-height: 30px;
  margin-bottom: 8px;
}

.nastroje__clinic-list {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 24px;
}

.nastroje__clinic-list li {
  font-size: 18.3px;
  font-weight: 500;
  color: #ffffff;
  line-height: 30px;
}

.nastroje__services {
  display: flex;
  flex-direction: column;
}

.nastroje__service-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.nastroje__service-item:last-child {
  border-bottom: none;
}

.nastroje__service-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.nastroje__service-header:hover {
  opacity: 0.8;
}

.nastroje__service-title {
  font-size: 18.3px;
  font-weight: 700;
  color: #ffffff;
  line-height: 28px;
  letter-spacing: -0.02em;
}

.nastroje__service-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 12px;
}

.nastroje__service-item--active .nastroje__service-arrow {
  transform: rotate(180deg);
}

.nastroje__service-desc {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 0 0 20px;
  list-style: disc;
}

.nastroje__service-item--active .nastroje__service-desc {
  max-height: 200px;
  padding: 0 0 14px 20px;
}

.nastroje__service-desc li {
  font-size: 15px;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 26px;
  margin-bottom: 4px;
  list-style: disc;
  display: list-item;
}

/* ==========================================
   TADY QUOTE
   ========================================== */

.tady-quote {
  font-family: "Caveat", cursive;
  font-size: 57px;
  font-weight: 700;
  color: #ffffff;
  line-height: 65px;
  letter-spacing: -1.14px;
  text-align: left;
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 80px 160px;
}

/* ==========================================
   REVIEWS
   ========================================== */

.reviews {
  background: transparent;
  padding: 120px 0;
}

.reviews__title {
  display: none;
}

.reviews__mobile-bottom {
  display: none;
}

.reviews__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.reviews__left {
  flex: 0 0 480px;
}

.reviews__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}

.reviews__star {
  color: #9BFFC4;
  font-size: 20px;
}

.reviews__badge-text {
  display: block;
  font-size: 14.6px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  line-height: 24px;
  margin-bottom: 24px;
}

.reviews__big-quote {
  font-family: 'Inter', sans-serif;
  font-size: 52.4px;
  font-weight: 700;
  color: #ffffff;
  line-height: 56px;
  letter-spacing: -1.68px;
  margin-bottom: 32px;
}

.reviews__all-btn {
  margin-bottom: 0;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.reviews__all-btn:hover {
  background: rgba(82, 228, 141, 0.25);
  border-color: rgba(82, 228, 141, 0.6);
  box-shadow: 0 0 20px rgba(82, 228, 141, 0.3);
}

.reviews__all-btn .cta-arrow {
  background: rgba(82, 228, 141, 0.4);
}

.reviews__all-btn .cta-arrow svg path {
  stroke: #ffffff;
}

.reviews__right {
  display: flex;
  gap: 30px;
  flex: 0 0 auto;
}

.reviews__card {
  flex: 0 0 250px;
  width: 250px;
  display: flex;
  flex-direction: column;
}

.reviews__card-img {
  width: 250px;
  height: 444px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

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

.reviews__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviews__play-btn svg {
  width: 96px;
  height: 96px;
}

.reviews__card-info {
  padding: 12px 4px;
}

.reviews__card-role {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #d9d9d9;
  line-height: 18px;
  margin-bottom: 4px;
}

.reviews__card-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  line-height: 24px;
  margin-bottom: 4px;
}

.reviews__card-name {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #52e48d;
  line-height: 20px;
  letter-spacing: 0;
}

/* ==========================================
   SPORTOVCI
   ========================================== */

.sportovci {
  background: transparent;
  padding: 120px 0;
  overflow: hidden;
}

.sportovci__container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 80px;
}

.sportovci__title {
  font-family: 'Inter', sans-serif;
  font-size: 51.3px;
  font-weight: 700;
  color: #ffffff;
  line-height: 56px;
  letter-spacing: -1.68px;
  margin-bottom: 24px;
}

.sportovci__cta-btn {
  margin-bottom: 48px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.sportovci__cta-btn:hover {
  background: rgba(82, 228, 141, 0.25);
  border-color: rgba(82, 228, 141, 0.6);
  box-shadow: 0 0 20px rgba(82, 228, 141, 0.3);
}

.sportovci__cta-btn .cta-arrow svg path {
  stroke: #ffffff;
}

.sportovci__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}

.sportovci__carousel {
  width: 100%;
  overflow: hidden;
}

.sportovci__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 16px;
}

.sportovci__track::-webkit-scrollbar {
  display: none;
}

.sportovci__card {
  flex: 0 0 400px;
  width: 400px;
  height: 560px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.sportovci__photo {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

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

.sportovci__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0) 24.51%,
    rgba(0, 0, 0, 0) 58.28%,
    rgba(0, 0, 0, 0.3) 74.04%);
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.sportovci__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 25px 24px 0;
  display: flex;
  flex-direction: column;
  z-index: 2;
}

.sportovci__name {
  font-family: 'Inter', sans-serif;
  font-size: 14.4px;
  font-weight: 400;
  color: #ffffff;
  line-height: 26px;
  max-width: 173px;
}

.sportovci__card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14.4px;
  font-weight: 400;
  color: #ffffff;
  line-height: 17px;
  max-width: 173px;
}

.sportovci__card--has-image-text .sportovci__overlay {
  display: none;
}

.sportovci__card--no-name .sportovci__overlay {
  padding-top: 34px;
}

.sportovci__card--no-name .sportovci__name {
  display: none;
}

.sportovci__quote {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 226px;
  background: rgba(40, 40, 40, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin: 0;
  padding: 40px 30px;
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  font-weight: 500;
  line-height: 24px;
  color: #ffffff;
  display: flex;
  align-items: center;
  z-index: 2;
}

.sportovci__mobile-bottom {
  display: none;
}

.sportovci__mobile-rows {
  display: none;
}

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

.faq {
  background: transparent;
  padding: 100px 0;
}

.faq__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.faq__title {
  flex: 0 0 320px;
  font-family: 'Inter', sans-serif;
  font-size: 55.8px;
  font-weight: 700;
  color: #ffffff;
  line-height: 62px;
  letter-spacing: -1.4px;
}

.faq__list {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.faq__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.faq__item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 18.1px;
  font-weight: 700;
  color: #ffffff;
  line-height: 30px;
  text-align: left;
  transition: color 0.3s ease;
}

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

.faq__question span:first-child {
  flex: 1;
  padding-right: 24px;
}

.faq__icon {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  color: #ffffff;
}

.faq__item--open .faq__icon svg line:first-child {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq__icon svg line:first-child {
  transition: opacity 0.3s ease;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq__answer p {
  font-size: 16.7px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  line-height: 28px;
  padding-bottom: 24px;
}

.faq__item--open .faq__answer {
  max-height: 300px;
}

/* ==========================================
   FOOTER (НЕ ТРОГАЕМ — оригинальные стили)
   ========================================== */

.footer {
  background: transparent;
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  margin-bottom: 60px;
}

.footer__brand {
  flex: 0 0 auto;
}

.footer__logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.footer__logo-img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer__logo {
  font-size: 36px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 3px;
  background: linear-gradient(135deg, #ffffff 0%, #9BFFC4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer__tagline {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

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

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

.footer__social-link:hover {
  background: rgba(155, 255, 196, 0.15);
  color: #9BFFC4;
  transform: translateY(-2px);
}

.footer__links {
  display: flex;
  gap: 80px;
}

.footer__col h4 {
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__col a {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer__col a:hover {
  color: #FFFFFF;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
}

.footer__bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  opacity: 0.6;
  text-align: center;
}

/* ==========================================
   COOKIE CONSENT BANNER
   ========================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 20px;
  transform: translateY(100%);
  animation: cookieSlideUp 0.5s ease 0.5s forwards;
}

@keyframes cookieSlideUp {
  to { transform: translateY(0); }
}

.cookie-banner--hidden {
  animation: cookieSlideDown 0.4s ease forwards;
}

@keyframes cookieSlideDown {
  to { transform: translateY(120%); }
}

.cookie-banner__glass {
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(14, 27, 35, 0.85);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 28px 36px;
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.3);
}

.cookie-banner__content {
  display: flex;
  align-items: center;
  gap: 32px;
}

.cookie-banner__text {
  flex: 1;
}

.cookie-banner__title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  line-height: 24px;
  margin-bottom: 6px;
}

.cookie-banner__desc {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  line-height: 22px;
}
.cookie-banner__link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}
.cookie-banner__link:hover {
  color: #fff;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-banner__btn--accept {
  background: #52E48D;
  color: #0d1b23;
}

.cookie-banner__btn--accept:hover {
  background: #9BFFC4;
}

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

.cookie-banner__btn--settings:hover {
  background: rgba(255, 255, 255, 0.2);
}

.cookie-banner__btn--reject {
  background: none;
  color: rgba(255, 255, 255, 0.6);
}

.cookie-banner__btn--reject:hover {
  color: #ffffff;
}

/* ========== PILLAR DETAIL MODAL ========== */
.pillar-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

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

.pillar-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.pillar-modal__container {
  position: relative;
  width: 1415px;
  max-width: 95vw;
  max-height: 90vh;
  background: #1B262C;
  border-radius: 60px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 80px 229px 60px;
  box-sizing: border-box;
  transform: translateY(40px);
  transition: transform 0.4s ease;
}

.pillar-modal--open .pillar-modal__container {
  transform: translateY(0);
}

.pillar-modal__container::-webkit-scrollbar {
  width: 6px;
}
.pillar-modal__container::-webkit-scrollbar-track {
  background: transparent;
}
.pillar-modal__container::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
}

.pillar-modal__glow {
  position: absolute;
  width: 990px;
  height: 990px;
  left: 50%;
  top: 430px;
  transform: translateX(-50%);
  background: linear-gradient(179.14deg, #1B3D50 0.71%, rgba(76, 125, 97, 0.5) 152.65%);
  filter: blur(250px);
  pointer-events: none;
  z-index: 0;
}

.pillar-modal__close {
  position: sticky;
  top: 0;
  float: right;
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.pillar-modal__close:hover {
  background: rgba(255,255,255,0.15);
}

.pillar-modal__header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 40px;
}

.pillar-modal__header-text {
  flex: 1;
}

.pillar-modal__number {
  font-family: 'Mynerve', cursive;
  font-size: 75px;
  line-height: 114px;
  letter-spacing: -0.02em;
  color: #9BFFC4;
  display: block;
}

.pillar-modal__title {
  font-family: 'Mynerve', cursive;
  font-size: 150px;
  font-weight: 400;
  line-height: 114px;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-top: -10px;
}

.pillar-modal__icon {
  width: 169px;
  height: 184px;
  object-fit: contain;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  flex-shrink: 0;
  margin-top: 20px;
}

.pillar-modal__body {
  position: relative;
  z-index: 1;
}

.pillar-modal__glass {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), #1E2529;
  backdrop-filter: blur(17.5px);
  -webkit-backdrop-filter: blur(17.5px);
  border-radius: 30px;
  padding: 40px 36px;
  filter: drop-shadow(1px 5px 35.7px rgba(0, 0, 0, 0.3));
}

.pillar-modal__glass--intro {
  margin-bottom: 32px;
}

.pillar-modal__intro-text {
  font-family: 'Inter', sans-serif;
  font-size: 28.5px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}

.pillar-modal__sections {
  margin-bottom: 32px;
}

.pillar-modal__section {
  margin-bottom: 32px;
}

.pillar-modal__section:last-child {
  margin-bottom: 0;
}

.pillar-modal__section-title {
  font-family: 'Inter', sans-serif;
  font-size: 18.3px;
  font-weight: 700;
  line-height: 30px;
  color: #9BFFC4;
  margin-bottom: 8px;
}

.pillar-modal__section-text {
  font-family: 'Inter', sans-serif;
  font-size: 18.3px;
  font-weight: 500;
  line-height: 30px;
  color: #FFFFFF;
}

.pillar-modal__glass--quote {
  margin-bottom: 40px;
}

.pillar-modal__quote-text {
  font-family: 'Inter', sans-serif;
  font-size: 28.5px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}

.pillar-modal__nav {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 16px;
  padding-bottom: 20px;
}

.pillar-modal__nav-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 24px;
  background: #172024;
  backdrop-filter: blur(17.5px);
  -webkit-backdrop-filter: blur(17.5px);
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 14.25px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  transition: background 0.2s;
  height: 42px;
}

.pillar-modal__nav-btn:hover {
  background: #1f2d33;
}

.pillar-modal__nav-btn--next {
  color: #DBDBDB;
}

@media (max-width: 1024px) {
  .pillar-modal__container {
    padding: 60px 60px 40px;
    border-radius: 40px;
  }
  .pillar-modal__title {
    font-size: 80px;
    line-height: 80px;
  }
  .pillar-modal__number {
    font-size: 50px;
    line-height: 60px;
  }
  .pillar-modal__icon {
    width: 120px;
    height: 130px;
  }
}

@media (max-width: 768px) {
  .pillar-modal__container {
    padding: 40px 24px 30px;
    border-radius: 30px;
    max-height: 95vh;
  }
  .pillar-modal__title {
    font-size: 48px;
    line-height: 52px;
  }
  .pillar-modal__number {
    font-size: 36px;
    line-height: 44px;
  }
  .pillar-modal__icon {
    width: 80px;
    height: 87px;
  }
  .pillar-modal__intro-text,
  .pillar-modal__quote-text {
    font-size: 20px;
    line-height: 32px;
  }
  .pillar-modal__glass {
    padding: 24px 20px;
  }
  .pillar-modal__nav {
    flex-direction: column;
  }
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
}

.cookie-modal--open {
  display: flex;
}

.cookie-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.cookie-modal__glass {
  position: relative;
  z-index: 1;
  width: 480px;
  max-width: 90vw;
  background: rgba(14, 27, 35, 0.95);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 36px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.cookie-modal__title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.cookie-modal__desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 22px;
  margin-bottom: 28px;
}

.cookie-modal__options {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 28px;
}

.cookie-modal__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.cookie-modal__option:last-child {
  border-bottom: none;
}

.cookie-modal__option input {
  display: none;
}

.cookie-modal__option-info {
  flex: 1;
}

.cookie-modal__option-name {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  line-height: 20px;
  margin-bottom: 2px;
}

.cookie-modal__option-desc {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  line-height: 18px;
}

.cookie-modal__toggle {
  width: 48px;
  height: 28px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.15);
  position: relative;
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.cookie-modal__toggle::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

.cookie-modal__option input:checked + .cookie-modal__toggle {
  background: #52E48D;
}

.cookie-modal__option input:checked + .cookie-modal__toggle::after {
  left: 23px;
  background: #ffffff;
}

.cookie-modal__toggle--locked {
  background: #52E48D;
  opacity: 0.6;
}

.cookie-modal__toggle--locked::after {
  left: 23px;
  background: #ffffff;
}

.cookie-modal__actions {
  display: flex;
  gap: 10px;
}

/* ==========================================
   PRIVACY MODAL
   ========================================== */

.privacy-modal {
  position: fixed;
  inset: 0;
  z-index: 10002;
  display: none;
  align-items: center;
  justify-content: center;
}

.privacy-modal--open {
  display: flex;
}

.privacy-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.privacy-modal__glass {
  position: relative;
  z-index: 1;
  width: 600px;
  max-width: 90vw;
  max-height: 80vh;
  overflow-y: auto;
  background: rgba(14, 27, 35, 0.95);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.privacy-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.privacy-modal__close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.privacy-modal__title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
}

.privacy-modal__content h4 {
  font-size: 16px;
  font-weight: 700;
  color: #52E48D;
  margin: 24px 0 12px;
}

.privacy-modal__content h4:first-child {
  margin-top: 0;
}

.privacy-modal__content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 22px;
  margin-bottom: 12px;
}

.privacy-modal__content p strong {
  color: #ffffff;
  font-weight: 600;
}

.privacy-modal__content a {
  color: #52E48D;
  text-decoration: none;
}

.privacy-modal__content a:hover {
  text-decoration: underline;
}

.privacy-modal__content ul {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}

.privacy-modal__content ul li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 22px;
  padding: 6px 0 6px 20px;
  position: relative;
}

.privacy-modal__content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #52E48D;
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 1440px) {
  .hero {
    height: 90vh;
    min-height: 700px;
  }

  .section-01 .section-block__container {
    padding: 0 80px;
  }

  .section-01__title {
    font-size: 80px;
    line-height: 80px;
    padding-left: 120px;
  }

  .section-01__quote-bold {
    font-size: 40px;
    line-height: 50px;
    padding-left: 40px;
  }

  .section-01__quote-italic {
    font-size: 53px;
    line-height: 61px;
    padding-right: 80px;
  }

  .section-01__body-area {
    margin-right: 80px;
  }

  .section-02__top {
    position: relative;
    top: auto;
    left: auto;
    margin-bottom: 32px;
  }

  .section-02__layout {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .section-02__left {
    margin-top: 0;
    justify-content: center;
  }

  .section-02__title-left,
  .section-02__title-right {
    font-size: 80px;
    text-align: center;
  }

  .section-02__center {
    width: 300px;
  }

  .section-02__right {
    margin-top: 0;
    text-align: center;
  }

  .section-02__body {
    max-width: 100%;
  }

  .section-02__cta {
    margin: 0 auto;
  }

  .section-block__title--huge {
    font-size: 80px;
    line-height: 80px;
  }

  .section-03 .section-block__title--huge {
    font-size: 80px;
    line-height: 80px;
    letter-spacing: -1.6px;
  }

  .section-03 .kernel__title-green {
    font-size: 80px;
    line-height: 80px;
  }

  .section-03 .kernel__subtitle {
    font-size: 42px;
    line-height: 50px;
    letter-spacing: -0.84px;
  }

  .section-block__quote-handwritten {
    font-size: 42px;
    line-height: 50px;
  }

  .reviews__container {
    flex-direction: column;
  }

  .reviews__left {
    flex: 0 0 auto;
  }

  .reviews__big-quote {
    font-size: 42px;
    line-height: 48px;
  }

  .reviews__right {
    flex-wrap: wrap;
    justify-content: center;
  }

  .reviews__card {
    flex: 0 0 220px;
    width: 220px;
  }

  .reviews__card-img {
    width: 100%;
    height: 360px;
  }

  .sportovci__card {
    flex: 0 0 320px;
    width: 320px;
    height: 450px;
  }
}

/* ---------- iPad Pro tabs fix (1024–1200px) ---------- */
@media (max-width: 1200px) and (min-width: 1025px) {
  .tabs__bar {
    height: 50px;
    padding: 0 4px;
    gap: 0;
  }

  .tabs__btn {
    padding: 0 14px;
    font-size: 12px;
    gap: 5px;
  }

  img.tabs__btn-icon {
    width: 18px;
    height: 18px;
  }

}


@media (max-width: 1024px) {
  .header {
    padding: 16px 24px;
  }

  .header__nav-glass {
    padding: 6px 6px 6px 16px;
    gap: 4px;
  }

  .header__nav-link {
    padding: 8px 14px;
    font-size: 13px;
  }

  .header__cta {
    padding: 12px 24px;
    font-size: 14px;
  }

  .hero__title {
    font-size: 42px;
    line-height: 50px;
  }

  .hero__buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero__btn {
    font-size: 15px;
  }

  .hero__bottom-bar-items {
    flex-wrap: wrap;
    gap: 16px;
  }

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

  .section-01 .section-block__container {
    padding: 0 40px;
  }

  .section-01__title {
    font-size: 64px;
    line-height: 64px;
    padding-left: 0;
  }

  .section-01__quote-bold {
    font-size: 32px;
    line-height: 40px;
    padding-left: 0;
  }

  .section-01__quote-italic {
    font-size: 32px;
    line-height: 40px;
    padding-right: 0;
    margin-top: -10px;
  }

  .section-01__body-area {
    margin-right: 0;
    max-width: 100%;
  }

  .section-02__top {
    justify-content: center;
    width: 100%;
  }

  .section-02__layout {
    flex-direction: column;
    gap: 32px;
  }

  .section-02__left {
    justify-content: center;
  }

  .section-02__title-left,
  .section-02__title-right {
    font-size: 64px;
    text-align: center;
  }

  .section-02__center {
    width: 280px;
  }

  .section-02__right {
    text-align: center;
  }

  .section-02__body {
    max-width: 100%;
  }

  .section-02__cta {
    margin: 0 auto;
  }

  .section-block__title--huge {
    font-size: 64px;
    line-height: 64px;
  }

  .section-block__quote-handwritten {
    font-size: 36px;
    line-height: 42px;
  }

  .hero__center {
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 80px);
    text-align: center;
    align-items: center;
  }

  .hero__actions {
    padding-left: 0;
    align-items: center;
  }

  .tabs__panel-glass {
    padding: 32px;
    width: 100%;
  }

  .tabs__panel-heading {
    font-size: 34px;
    line-height: 1.2;
  }

  .nastroje__clinic {
    flex-direction: column;
  }

  .nastroje__clinic-left {
    padding: 32px;
  }

  .nastroje__clinic-right {
    flex: 0 0 300px;
  }

  .nastroje__domains-list {
    flex-wrap: wrap;
  }

  .reviews__right {
    width: 100%;
    justify-content: center;
  }

  .reviews__card {
    flex: 0 0 220px;
    width: 220px;
  }

  .reviews__card-img {
    width: 100%;
    height: 340px;
  }

  .sportovci__card {
    flex: 0 0 280px;
    width: 280px;
    height: 400px;
  }

  .sportovci__title {
    font-size: 40px;
    line-height: 44px;
  }

  .footer__top {
    gap: 48px;
  }

  .footer__links {
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 12px 16px;
  }

  .header__nav-glass {
    padding: 4px 4px 4px 12px;
  }

  .header__nav-link:nth-child(n+4) {
    display: none;
  }

  .header__cta {
    padding: 10px 20px;
    font-size: 13px;
  }

  .hero {
    height: 100vh;
    height: 100dvh;
    min-height: 600px;
  }

  .hero__title {
    font-size: 32px;
    line-height: 38px;
  }

  .hero__subtitle {
    font-size: 15px;
  }

  .hero__badge-text {
    font-size: 12px;
  }

  .hero__center {
    bottom: 90px;
    width: calc(100% - 40px);
    text-align: center;
    align-items: center;
  }

  .hero__actions {
    padding-left: 0;
    align-items: center;
  }

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

  .hero__btn {
    font-size: 14px;
    padding: 8px 10px 8px 18px;
    height: auto;
  }

  .hero__btn-arrow {
    width: 36px;
    height: 36px;
  }

  .hero__bottom-bar {
    bottom: 16px;
    width: calc(100% - 32px);
  }

  .hero__bottom-bar-glass {
    padding: 12px 20px;
  }

  .hero__bottom-bar-items {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .hero__bottom-bar-item {
    font-size: 13px;
  }

  .logos__slide {
    gap: 40px;
    padding: 0 20px;
  }

  .logos__item {
    height: 28px;
  }

  .section-block {
    padding: 80px 0;
  }

  .section-block__container {
    padding: 0 30px;
  }

  .section-01 {
    padding: 80px 0;
  }

  .section-01 .section-block__container {
    padding: 0 20px;
  }

  .section-01__title {
    font-size: 42px;
    line-height: 44px;
    padding-left: 0;
  }

  .section-01__quotes {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    min-height: auto;
  }

  .section-01__quote-bold {
    font-size: 24px;
    line-height: 32px;
    padding-left: 0;
  }

  .section-01__quote-italic {
    font-size: 24px;
    line-height: 32px;
    padding-right: 0;
    margin-left: 0;
    margin-top: 0;
    align-self: flex-end;
  }

  .section-01__body-area {
    margin-right: 0;
    max-width: 100%;
  }

  .section-02 {
    padding: 60px 0;
  }

  .section-02__container {
    padding: 0 30px;
  }

  .section-02__title-left,
  .section-02__title-right {
    font-size: 48px;
  }

  .section-02__center {
    width: 220px;
  }

  .section-block__title--huge {
    font-size: 48px;
    line-height: 48px;
  }

  .section-block__quote-handwritten {
    font-size: 28px;
    line-height: 34px;
  }

  .section-block__body-text {
    font-size: 16px;
    line-height: 26px;
  }

  .section-block__bold-text {
    font-size: 22px;
    line-height: 32px;
  }

  .section-block__bottom-quote,
  .section-block__bottom-quote-2 {
    font-size: 22px;
    line-height: 32px;
  }

  .section-block__center-quote {
    font-size: 22px;
    line-height: 32px;
  }

  .kernel__title-green {
    font-size: 48px;
    line-height: 48px;
  }

  .kernel__subtitle {
    font-size: 28px;
    line-height: 36px;
  }

  .kernel__subtitle em {
    font-size: 32px;
  }

  .kernel__desc {
    font-size: 16px;
    line-height: 26px;
  }

  .kernel-card {
    width: 100%;
    min-height: auto;
    padding: 36px;
    gap: 24px;
  }

  .kernel-card__image {
    width: 200px;
  }

  .kernel-card__circle {
    width: 200px;
    height: 200px;
  }

  .kernel__bottom {
    font-size: 22px;
    line-height: 32px;
  }

  .tabs__bar {
    flex-wrap: nowrap;
    width: 100%;
    overflow: hidden;
    justify-content: center;
    height: 48px;
    padding: 0 8px;
  }

  .tabs__btn {
    padding: 8px 12px;
    font-size: 12px;
    gap: 4px;
    flex-shrink: 1;
    white-space: nowrap;
  }

  img.tabs__btn-icon {
    width: 16px;
    height: 16px;
  }

  .section-04__title {
    font-size: 64px;
  }

  .section-04__subtitle-handwritten {
    font-size: 36px;
  }

  .section-04__subtitle-bold {
    font-size: 22px;
  }

  .pilire__grid {
    gap: 12px;
  }

  .pilire__name {
    font-size: 14px;
  }

  .pilir-card {
    min-height: 500px;
  }

  .pilir-card__content {
    padding: 32px;
    padding-top: 280px;
    max-width: 100%;
  }

  .pilir-card__title {
    font-size: 36px;
  }

  .pilir-card__nav {
    font-size: 12px;
  }

  .pilir-card__nav--prev {
    left: 12px;
  }

  .pilir-card__nav--next {
    right: 12px;
  }

  .pilir-card__floating-icon {
    width: 120px;
    height: 120px;
    left: 30%;
    transform: translate(-50%, -60%);
  }

  .pilir-card__floating-icon--exit-left {
    transform: translate(-50%, calc(-60% - 60px));
  }
  .pilir-card__floating-icon--exit-right {
    transform: translate(-50%, calc(-60% + 60px));
  }
  .pilir-card__floating-icon--enter-right {
    transform: translate(-50%, calc(-60% + 60px));
  }
  .pilir-card__floating-icon--enter-left {
    transform: translate(-50%, calc(-60% - 60px));
  }

  .nastroje__domains-list {
    flex-wrap: wrap;
    border-radius: 16px;
  }

  .nastroje__domain {
    padding: 10px 16px;
    font-size: 14px;
  }

  .nastroje__clinic {
    flex-direction: column;
  }

  .nastroje__clinic-left {
    padding: 24px;
  }

  .nastroje__clinic-right {
    flex: 0 0 250px;
  }

  .nastroje__clinic-badge {
    font-size: 22px;
    padding: 8px 20px;
  }

  .section-05__subtitle-hand {
    font-size: 32px;
  }

  .section-05__subtitle-bold {
    font-size: 22px;
  }

  .tady-quote {
    font-size: 36px;
    line-height: 42px;
    padding: 60px 30px 100px;
  }

  .reviews {
    padding: 80px 0;
  }

  .reviews__container {
    padding: 0 30px;
    flex-direction: column;
    align-items: center;
  }

  .reviews__left {
    flex: 0 0 auto;
    width: 100%;
  }

  .reviews__big-quote {
    font-size: 32px;
    line-height: 36px;
  }

  .reviews__right {
    overflow-x: hidden;
    flex-wrap: nowrap;
    gap: 16px;
    width: 100%;
    justify-content: center;
  }

  .reviews__card {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
  }

  .reviews__card-img {
    width: 100%;
    height: 340px;
  }

  .faq__container {
    flex-direction: column;
    gap: 32px;
  }

  .faq__title {
    flex: 0 0 auto;
    font-size: 32px;
    line-height: 38px;
  }

  .sportovci {
    padding: 80px 0;
  }

  .sportovci__container {
    padding: 0 30px;
  }

  .sportovci__title {
    font-size: 32px;
    line-height: 36px;
  }

  .sportovci__card {
    flex: 0 0 260px;
    width: 260px;
    height: 380px;
  }

  .faq {
    padding: 80px 0;
  }

  .faq__container {
    padding: 0 30px;
  }

  .faq__title {
    font-size: 36px;
    line-height: 40px;
  }

  .faq__question {
    font-size: 16px;
    padding: 20px 0;
  }

  .faq__answer p {
    font-size: 15px;
  }

  .footer {
    padding: 60px 0 30px;
  }

  .footer__container {
    padding: 0 30px;
  }

  .footer__top {
    flex-direction: column;
    gap: 40px;
  }

  .footer__links {
    gap: 32px;
    flex-wrap: wrap;
  }

  .footer__col {
    flex: 0 0 calc(50% - 16px);
  }

  /* Cookie banner responsive */
  .cookie-banner__content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .cookie-banner__actions {
    flex-direction: column;
    width: 100%;
  }

  .cookie-banner__btn {
    width: 100%;
  }

  .cookie-banner__glass {
    padding: 24px 20px;
  }

  .reviews__big-quote {
    font-size: 32px;
    line-height: 38px;
  }

  /* ---------- TABS BAR (scrollable) ---------- */
  .tabs__bar-wrapper {
    margin-bottom: 24px;
    justify-content: flex-start;
    overflow: visible;
  }

  .tabs__avatar {
    display: none;
  }

  .tabs__bar {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    background: linear-gradient(135deg, rgba(40, 52, 52, 0.65) 0%, rgba(65, 80, 75, 0.45) 50%, rgba(85, 100, 95, 0.35) 100%);
    backdrop-filter: blur(17.5px);
    -webkit-backdrop-filter: blur(17.5px);
    border-radius: 28px 0 0 28px;
    padding: 0 12px 0 24px;
    margin: 0;
    gap: 0;
    align-items: center;
    justify-content: flex-start;
    width: calc(100vw - 28px);
    min-width: calc(100vw - 28px);
    flex-shrink: 0;
    box-sizing: border-box;
    height: 52px;
    position: relative;
    left: 0;
  }

  .tabs__bar::-webkit-scrollbar {
    display: none;
  }

  .tabs__btn {
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 700;
    line-height: 24px;
    border-radius: 30px;
    gap: 6px;
    flex: none;
    flex-shrink: 0;
    justify-content: center;
    height: auto;
    min-width: auto;
    white-space: nowrap;
    color: #FFFFFF;
  }

  .tabs__btn--active {
    background: rgba(82, 228, 141, 0.25);
    border-radius: 30px;
  }

  img.tabs__btn-icon {
    width: 20px;
    height: 20px;
  }

  /* Tabs scrollbar */
  .tabs__scrollbar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    margin-top: 12px;
    padding: 0;
    width: calc(100vw - 56px);
    max-width: calc(100vw - 56px);
    box-sizing: border-box;
  }

  .tabs__scrollbar-arrows {
    display: flex;
    gap: 6px;
    align-items: center;
  }

  .tabs__scrollbar-arrow {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .tabs__scrollbar-track {
    flex: 1;
    height: 4px;
    background: rgba(255, 253, 253, 0.1);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
  }

  .tabs__scrollbar-thumb {
    width: 32px;
    height: 4px;
    background: #ffffff;
    border-radius: 10px;
    position: absolute;
    left: 0;
    top: 0;
    transition: left 0.2s ease;
  }

  .tabs {
    position: relative;
    max-width: calc(100vw - 28px);
  }

  .tabs__panels {
    position: relative;
    width: 100%;
  }
}

/* ---------- TABS iPad fix (481–768px) ---------- */
@media (max-width: 768px) and (min-width: 481px) {
  .tabs__bar {
    padding: 0 6px;
    height: 44px;
    left: 0;
  }

  .tabs__btn {
    padding: 6px 10px;
    font-size: 11px;
    gap: 3px;
  }

  img.tabs__btn-icon {
    width: 16px;
    height: 16px;
  }
}

/* ==========================================
   MOBILE — max-width: 480px (Figma 402px)
   ========================================== */

@media (max-width: 480px) {

  /* ---------- HEADER ---------- */
  .header {
    position: absolute;
    padding: 10px 12px;
  }

  .header__nav-glass {
    padding: 4px 4px 4px 10px;
    gap: 4px;
  }

  .header__logo-img {
    height: 18px;
  }

  .header__logo {
    margin-right: 8px;
  }

  .header__nav-link {
    display: none;
  }

  .header__right {
    position: absolute;
    top: 11px;
    left: 114px;
    right: auto;
    display: flex;
    align-items: center;
    z-index: 101;
  }

  .header__cta {
    display: none;
  }

  .header__lang {
    padding: 2px;
  }

  .header__lang-btn {
    font-size: 9px;
    padding: 4px 8px;
    letter-spacing: 0.3px;
  }

  /* ---------- BURGER MENU ---------- */
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    width: 26px;
    height: 26px;
    padding: 6px 5px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    cursor: pointer;
    position: absolute;
    top: 11px;
    right: 12px;
    z-index: 102;
    pointer-events: auto;
  }

  .burger__line {
    display: block;
    width: 100%;
    height: 1.5px;
    background: #ffffff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .burger--active .burger__line:nth-child(1) {
    transform: translateY(4.5px) rotate(45deg);
  }

  .burger--active .burger__line:nth-child(2) {
    opacity: 0;
  }

  .burger--active .burger__line:nth-child(3) {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .mobile-menu {
    display: flex;
    position: fixed;
    inset: 0;
    background: rgba(13, 27, 35, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 99;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .mobile-menu--open {
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu__nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }

  .mobile-menu__link {
    font-family: "Inter", sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .mobile-menu__link:hover {
    color: #52E48D;
  }

  .mobile-menu__cta {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    background: #52E48D;
    color: #0d1b23;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 12px;
  }

  /* ---------- HERO ---------- */
  .hero {
    height: auto;
    min-height: auto;
    max-height: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0;
    aspect-ratio: 402 / 699;
  }

  .hero__bg-video {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero__center {
    position: relative;
    bottom: auto;
    left: auto;
    z-index: 10;
    width: 100%;
    padding: 0 28px;
    text-align: left;
    align-items: flex-start;
    margin-top: auto;
    padding-bottom: 16px;
    transform: none !important;
  }

  .hero__badge {
    display: none;
  }

  .hero__title {
    font-size: 27px;
    line-height: 27px;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
  }

  .hero__subtitle {
    font-size: 17px;
    line-height: 20px;
    margin-bottom: 20px;
  }

  .hero__actions {
    padding-left: 0;
    width: 100%;
    align-items: flex-start;
  }

  .hero__buttons {
    flex-direction: column;
    gap: 8px;
    width: 100%;
    align-items: flex-start;
  }

  .hero__btn {
    font-size: 13px;
    line-height: 30px;
    padding: 3px 3px 3px 16px;
    height: 41px;
    width: auto;
    justify-content: space-between;
    letter-spacing: -0.02em;
  }

  .hero__btn:first-child {
    align-self: flex-start;
  }

  .hero__btn--secondary {
    background: rgba(52, 52, 52, 0.3);
    backdrop-filter: blur(17.5px);
    -webkit-backdrop-filter: blur(17.5px);
    border: 1px solid rgba(255, 255, 255, 0.25);
  }

  .hero__btn-arrow {
    width: 31px;
    height: 31px;
  }

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

  .hero__bottom-bar {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    width: 100%;
    padding: 16px 28px 24px;
    animation: none;
    opacity: 1;
  }

  .hero__bottom-bar-glass {
    padding: 0;
    border-radius: 0;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
  }

  .hero__bottom-bar-items {
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
  }

  .hero__bottom-bar-item {
    font-size: 12px;
    line-height: 18px;
    padding-right: 0;
    font-weight: 500;
  }

  .hero__bottom-bar-item:not(:last-child)::after {
    display: none;
  }

  .hero__bottom-bar-icon {
    width: 24px;
    height: 24px;
  }

  /* ---------- LOGOS ---------- */
  .logos {
    padding: 40px 0;
    overflow: hidden;
  }

  .logos__slide {
    gap: 50px;
    padding: 0 25px;
  }

  .logos__item {
    height: 50px;
    width: auto;
    flex-shrink: 0;
  }

  .logos__item[alt="Forbes"],
  .logos__item[alt="Vogue"] {
    width: 160px;
    height: auto;
  }

  .logos__item[alt="ELLE"] {
    height: 45px;
  }

  .logos__item[alt="DVTV"] {
    height: 55px;
  }

  .logos__item[alt="Men's Health"] {
    height: 40px;
  }

  .logos__item[alt="Brain We Are"] {
    height: 35px;
  }

  /* ---------- SECTION BLOCK (shared) ---------- */
  .section-block {
    padding: 40px 0;
    overflow: hidden;
  }

  .section-block.section-04 {
    overflow: visible;
  }

  .section-04__glow {
    width: 600px;
    height: 600px;
    bottom: -200px;
    filter: blur(60px);
    background: radial-gradient(circle, rgba(var(--glow-color), 0.30) 0%, rgba(var(--glow-color), 0.12) 30%, rgba(var(--glow-color), 0.04) 55%, transparent 75%);
  }

  .section-05::after {
    display: none;
  }

  .section-block__container {
    padding: 0 28px;
  }

  .section-block__title--huge {
    font-size: 27px;
    line-height: 27px;
    letter-spacing: -0.54px;
    margin-bottom: 24px;
  }

  .section-block__quote-handwritten {
    font-size: 22px;
    line-height: 28px;
  }

  .section-block__body-text {
    font-size: 11px;
    line-height: 20px;
  }

  .section-block__bold-text {
    font-size: 15px;
    line-height: 22px;
  }

  .section-block__bottom-quote,
  .section-block__bottom-quote-2 {
    font-size: 27px;
    line-height: 30px;
    margin-top: 40px;
  }

  .section-block__bottom-quote em,
  .section-block__bottom-quote-2 em {
    font-size: 40px;
  }

  .section-block__bottom-quote-2 {
    display: none;
  }

  .section-block__center-quote {
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 32px;
  }

  .section-block__nav-label {
    font-size: 11px;
    line-height: 20px;
  }

  /* Shared CTA buttons */
  .section-block__cta-btn,
  .sportovci__cta-btn,
  .reviews__all-btn {
    font-size: 13px;
    line-height: 24px;
    padding: 6px 6px 6px 18px;
    gap: 8px;
  }

  .cta-arrow {
    width: 33px;
    height: 33px;
  }

  .cta-arrow-green {
    width: 33px;
    height: 33px;
  }

  /* Section pill & num */
  .section-pill {
    font-size: 11px;
    line-height: 20px;
    padding: 6px 14px;
    position: relative;
    background: rgba(53, 53, 53, 0.8);
    backdrop-filter: blur(27.5px);
    -webkit-backdrop-filter: blur(27.5px);
  }

  .section-pill::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 1px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(61, 61, 61, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
  }

  .section-pill em {
    font-size: 16px;
  }

  .section-num {
    font-size: 11px;
    line-height: 20px;
    order: -1;
    width: 79px;
    height: 27px;
    box-sizing: border-box;
    backdrop-filter: blur(27.5px);
    -webkit-backdrop-filter: blur(27.5px);
    border-radius: 30px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .section-num::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 1px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(61, 61, 61, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
  }

  /* ---------- SECTION 01 — Vidíme ---------- */
  .section-01 {
    padding: 40px 0;
  }

  .section-01 .section-block__container {
    padding: 0 28px;
  }

  .section-01__header {
    justify-content: flex-start;
    margin-right: 0;
    gap: 8px;
    margin-bottom: 20px;
  }

  .mob-br {
    display: block;
  }

  .section-01__title {
    font-size: 27px;
    line-height: 27px;
    padding-left: 0;
    margin-bottom: 10px;
  }

  .section-01__quotes {
    flex-direction: column;
    gap: 2px;
    min-height: auto;
    margin-bottom: 12px;
  }

  .section-01__quote-bold {
    font-size: 18px;
    line-height: 24px;
    padding-left: 0;
  }

  .section-01__quote-italic {
    font-size: 24px;
    line-height: 28px;
    margin-left: 0;
    margin-top: 0;
    align-self: flex-start;
  }

  .section-01__body-area {
    margin-right: 0;
    max-width: 100%;
  }

  .section-01__body {
    font-size: 11px;
    line-height: 20px;
    margin-bottom: 20px;
  }

  .section-01__cta {
    font-size: 13px;
    letter-spacing: -0.02em;
    padding: 5px 5px 5px 18px;
    position: relative;
    background: rgba(52, 52, 52, 0.3);
    backdrop-filter: blur(17.5px);
    -webkit-backdrop-filter: blur(17.5px);
    border: 1px solid rgba(82, 228, 141, 0.15);
  }

  .section-01__cta::before {
    display: none;
  }

  .section-01__cta .cta-arrow-sm {
    width: 31px;
    height: 31px;
  }

  .cta-arrow-sm,
  .cta-arrow {
    background: rgba(82, 228, 141, 0.2) !important;
    backdrop-filter: blur(17.5px) !important;
    -webkit-backdrop-filter: blur(17.5px) !important;
  }

  .cta-arrow-sm svg path,
  .cta-arrow svg path {
    stroke: #52E48D !important;
  }

  /* ---------- SECTION 02 — Nejsem nová ---------- */
  .section-02 {
    padding: 60px 0 40px;
    overflow: visible;
  }

  .section-02__container {
    padding: 0 24px;
    position: relative;
    min-height: auto;
  }

  .section-02__top {
    position: relative;
    top: auto;
    left: auto;
    margin-bottom: 12px;
    gap: 8px;
    flex-direction: column;
    align-items: flex-start;
    z-index: 2;
  }

  .section-02__layout {
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .section-02__left {
    flex: none;
    width: 50%;
    margin-top: 0;
    padding-right: 0;
    justify-content: flex-start;
    order: 1;
    z-index: 2;
  }

  .section-02__title-left {
    font-size: 56px;
    line-height: 56px;
    text-align: left;
  }

  .section-02__center {
    position: absolute;
    right: -41px;
    top: -135px;
    width: 210px;
    order: 0;
    margin: 0;
    z-index: 1;
  }

  .section-02__circle {
    width: 290px;
    height: 290px;
    filter: blur(15px);
    opacity: 1;
    background: radial-gradient(50% 50% at 50% 50%, rgba(82, 228, 141, 0.15) 0%, rgba(82, 228, 141, 0.08) 60%, transparent 100%);
  }

  .section-02__statue {
    opacity: 1;
    transform: none;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
  }

  .section-02__right {
    flex: none;
    width: 55%;
    padding-left: 0;
    margin-top: 0;
    order: 2;
    z-index: 2;
    text-align: left;
  }

  .section-02__title-right {
    font-size: 56px;
    line-height: 56px;
    margin-bottom: 16px;
    text-align: left;
  }

  .section-02__body {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 11px;
    line-height: 20px;
    margin-bottom: 28px;
    max-width: 175px;
    text-align: left;
    color: #ffffff;
  }

  .section-02__body em {
    color: #52E48D;
  }

  .section-02__cta {
    font-size: 13px;
    letter-spacing: -0.02em;
    padding: 5px 5px 5px 18px;
    z-index: 2;
    position: relative;
    background: rgba(52, 52, 52, 0.3);
    backdrop-filter: blur(17.5px);
    -webkit-backdrop-filter: blur(17.5px);
    border: 1px solid rgba(82, 228, 141, 0.15);
  }

  .section-02__cta::before {
    display: none;
  }

  .section-02__cta .cta-arrow-sm {
    width: 31px;
    height: 31px;
  }

  /* ---------- SECTION 03 — Kernel / Tabs ---------- */
  .section-03__container {
    align-items: flex-start;
  }

  .section-03__header {
    gap: 8px;
    margin-bottom: 20px;
  }

  .section-03 .section-block__title--center {
    text-align: left;
    margin-bottom: 8px;
  }

  .section-03 .section-block__title--huge {
    font-size: 27px;
    line-height: 27px;
    letter-spacing: -0.54px;
  }

  .section-03 .kernel__title-green,
  .kernel__title-green {
    font-size: 28px;
    line-height: 28px;
  }

  .section-03 .kernel__subtitle {
    font-size: 28px;
    line-height: 38px;
    text-align: left;
    margin-bottom: 16px;
  }

  .section-03 .kernel__subtitle em {
    font-size: 34px;
  }

  .kernel__desc {
    font-size: 15px;
    line-height: 24px;
    text-align: left;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
  }

  .kernel__desc em {
    font-size: 20px;
  }

  .kernel-card {
    flex-direction: column;
    width: 100%;
    min-height: auto;
    padding: 24px;
  }

  .kernel-card__image {
    width: 100%;
    justify-content: center;
  }

  .kernel-card__circle {
    width: 200px;
    height: 200px;
  }

  .kernel-card__title {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .kernel-card__text {
    font-size: 12px;
    line-height: 20px;
  }

  .tabs__panel-glass {
    width: 100%;
    margin-left: 0;
    padding: 24px 24px 24px 18px;
    border-radius: 28px;
    min-height: auto;
    background: #222F37;
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
    transform: translateX(1px);
  }

  .tabs__panel-glass::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 1px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(61, 61, 61, 0.05));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
  }

  .tabs__panel-glass::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 80px;
    background: linear-gradient(to left, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.08) 35%, transparent 100%);
    pointer-events: none;
    z-index: 1;
    border-radius: 0 28px 28px 0;
  }

  .kernel__bottom {
    font-size: 18px;
    line-height: 28px;
    text-align: left;
    margin-top: 40px;
  }

  /* ---------- SECTION 04 — 7 Pilířů ---------- */
  .section-04__container {
    align-items: flex-start;
  }

  .section-04__title {
    font-size: 48px;
    line-height: 48px;
    text-align: left;
  }

  .section-04__subtitle-handwritten {
    font-size: 28px;
    line-height: 1.15;
    text-align: left;
  }

  .section-04__subtitle-bold {
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 24px;
    text-align: left;
  }

  .pilire__grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 6px;
    padding: 0 4px;
    margin-bottom: 24px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: flex-start;
    width: calc(100vw - 16px);
    margin-left: 8px;
    background: linear-gradient(135deg, rgba(40, 52, 52, 0.65) 0%, rgba(65, 80, 75, 0.45) 50%, rgba(85, 100, 95, 0.35) 100%);
    backdrop-filter: blur(17.5px);
    -webkit-backdrop-filter: blur(17.5px);
    border-radius: 24px;
    height: 52px;
    align-items: center;
    position: relative;
    box-sizing: border-box;
  }

  .pilire__grid::-webkit-scrollbar {
    display: none;
  }

  .pilire__grid::after {
    display: none !important;
  }

  .pilire__item {
    flex: 0 0 calc((100% - 12px) / 3);
    padding: 0 8px 0 2px;
    gap: 4px;
    height: 48px;
    align-items: center;
    box-sizing: border-box;
  }

  .pilire__item--active {
    background: rgba(var(--item-glow, 0, 0, 0), 0.15);
    backdrop-filter: blur(17.5px);
    -webkit-backdrop-filter: blur(17.5px);
    border-radius: 30px;
    padding: 0 14px 0 4px;
    box-shadow: 0 0 18px rgba(var(--item-glow, 0, 0, 0), 0.45), 0 0 6px rgba(var(--item-glow, 0, 0, 0), 0.25), inset 0 0 8px rgba(var(--item-glow, 0, 0, 0), 0.1);
    transition: box-shadow 0.3s ease, background 0.3s ease;
  }

  .pilire__icon {
    width: 44px;
    height: 44px;
  }

  .pilire__name {
    font-size: 11px;
    font-weight: 700;
    line-height: 24px;
  }

  /* Pillar grid scrollbar */
  .pilire__scrollbar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding: 0;
    width: 100%;
    align-self: stretch;
  }

  .pilire__scrollbar-arrows {
    display: flex;
    gap: 6px;
    align-items: center;
  }

  .pilire__scrollbar-arrow {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pilire__scrollbar-track {
    flex: 1;
    height: 4px;
    background: rgba(255, 253, 253, 0.1);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
  }

  .pilire__scrollbar-thumb {
    width: 32px;
    height: 4px;
    background: #ffffff;
    border-radius: 10px;
    position: absolute;
    left: 0;
    top: 0;
    transition: left 0.2s ease;
  }

  .pilir-card {
    width: 348px;
    height: auto;
    min-height: 437px;
    border-radius: 23px;
    margin-left: -14px;
    margin-right: -14px;
    overflow: hidden;
    align-self: center;
  }

  .pilir-card__floating-icon {
    width: 170px;
    height: 170px;
    top: auto;
    bottom: -30px;
    right: -44px;
    left: auto;
    transform: none;
    z-index: 3;
  }

  .pilir-card__bg {
    object-position: -34% calc(100% + 133px);
    transform: scale(1.6);
    transform-origin: right bottom;
  }

  .pilir-card__nav {
    display: none;
  }

  .pilir-card__title {
    font-size: 22px;
    line-height: 22px;
    margin-bottom: 2px;
  }

  .pilir-card__subtitle {
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 8px;
  }

  .pilir-card__subtitle em {
    font-size: 18px;
    margin: 0 2px;
  }

  .pilir-card__content {
    padding: 16px 20px 20px;
    padding-top: 40px;
    z-index: 4;
    max-width: 100%;
    margin-left: 0;
    height: auto;
  }

  .pilir-card__text {
    font-size: 10px;
    line-height: 15px;
    margin-bottom: 3px;
    max-width: 50%;
  }

  .pilir-card__text-small {
    font-size: 9px;
    line-height: 14px;
    color: #FFFFFF;
    max-width: 50%;
    max-height: 120px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .pilir-card__list {
    max-width: 48%;
  }

  .pilir-card__list li {
    font-size: 9px;
    line-height: 14px;
    color: #FFFFFF;
  }

  .pilir-card__text-bold {
    font-size: 9px;
    line-height: 13px;
    max-width: 45%;
  }

  .pilir-card__bottom {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .pilir-card__cta {
    display: flex;
    font-size: 12px;
    padding: 4px 4px 4px 14px;
    max-width: 100%;
    width: 100%;
    white-space: normal;
    line-height: 18px;
    box-sizing: border-box;
  }

  .pilir-card__bottom {
    width: 100%;
  }

  .pilir-card__cta .cta-arrow-sm {
    width: 28px;
    height: 26px;
    background: var(--cta-arrow-bg, #9172DD) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .pilir-card__cta .cta-arrow-sm svg path {
    stroke: #FFFFFF !important;
  }

  .section-04__bottom-quote {
    font-size: 15px;
    line-height: 1.4;
    margin-top: 32px;
  }

  /* ---------- SECTION 05 — Naše nástroje ---------- */
  .section-05__container {
    align-items: flex-start;
  }

  .section-05 .section-block__title--huge {
    text-align: left;
  }

  .section-05__subtitle-bold {
    font-size: 22px;
    line-height: 28px;
  }

  .section-05__subtitle-hand {
    font-size: 28px;
    line-height: 1.15;
  }

  .section-05__subtitles {
    margin-bottom: 24px;
    text-align: left;
  }

  .nastroje__domains-list {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    width: calc(100vw - 10px);
    margin-left: 10px;
    height: 55px;
    border-radius: 28px;
    padding: 0 16px;
    margin-bottom: 24px;
    gap: 0;
    justify-content: flex-start;
    align-items: center;
    background: linear-gradient(135deg, rgba(40, 52, 52, 0.65) 0%, rgba(65, 80, 75, 0.45) 50%, rgba(85, 100, 95, 0.35) 100%);
    backdrop-filter: blur(17.5px);
    -webkit-backdrop-filter: blur(17.5px);
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: relative;
    box-sizing: border-box;
  }

  .nastroje__domains-list::-webkit-scrollbar {
    display: none;
  }

  .nastroje__domains-list::after {
    display: none !important;
  }

  .nastroje__scroll-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 36px;
    width: 100%;
    margin-bottom: 16px;
  }

  .nastroje__nav-arrow {
    background: none;
    border: none;
    padding: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nastroje__scrollbar-track {
    flex: 1;
    height: 4px;
    background: rgba(255, 253, 253, 0.1);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
  }

  .nastroje__scrollbar-thumb {
    width: 32px;
    height: 4px;
    background: #FFFFFF;
    border-radius: 10px;
    position: absolute;
    left: 0;
    top: 0;
  }

  .nastroje__domain {
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 700;
    line-height: 24px;
    border-radius: 30px;
    white-space: nowrap;
    flex-shrink: 0;
    color: #FFFFFF;
  }

  .nastroje__domain--active {
    background: rgba(82, 228, 141, 0.2);
    backdrop-filter: blur(17.5px);
    -webkit-backdrop-filter: blur(17.5px);
  }

  .nastroje__clinic {
    position: relative;
    flex-direction: column;
    border-radius: 30px;
    background: #1B262C;
    border: 1px solid rgba(255, 255, 255, 0.5);
    min-height: auto;
    overflow: hidden;
    width: calc(100vw - 14px);
    margin-left: -14px;
    box-sizing: border-box;
    padding-bottom: 0;
  }

  .nastroje__clinic-left {
    padding: 24px 20px;
    padding-bottom: 40px;
    order: 1;
    position: relative;
    z-index: 3;
  }

  .nastroje__clinic-right {
    position: absolute;
    top: auto;
    bottom: 0;
    right: -40px;
    left: auto;
    flex: none;
    width: 257px;
    height: 400px;
    order: 2;
    z-index: 10;
    align-self: auto;
    max-height: none;
    pointer-events: none;
  }

  .nastroje__clinic-right img {
    border-radius: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left bottom;
    transform: scaleX(1);
  }

  .nastroje__clinic-badge {
    font-size: 27px;
    line-height: 32px;
    padding: 6px 18px;
    margin-bottom: 16px;
  }

  .nastroje__clinic-bold {
    font-size: 13px;
    line-height: 19px;
    margin-bottom: 10px;
  }

  .nastroje__clinic-body-text {
    font-size: 11px;
    line-height: 18px;
    margin-bottom: 14px;
  }

  .nastroje__clinic-section-title {
    font-size: 11px;
    line-height: 18px;
  }

  .nastroje__clinic-list li {
    font-size: 10px;
    line-height: 16px;
  }

  .nastroje__services {
    max-width: 55%;
  }

  .nastroje__service-item {
    border-bottom-color: rgba(255, 255, 255, 0.15);
  }

  .nastroje__service-header {
    padding: 12px 0;
  }

  .nastroje__service-title {
    font-size: 12px;
    line-height: 16px;
    font-weight: 700;
  }

  .nastroje__service-arrow {
    display: none;
  }

  .nastroje__service-desc li {
    font-size: 13px;
    line-height: 20px;
  }

  /* Tady quote */
  .tady-quote {
    font-size: 22px;
    line-height: 28px;
    padding: 40px 28px 60px;
  }

  /* ---------- REVIEWS ---------- */
  .reviews {
    padding: 40px 0;
  }

  .reviews__title {
    display: block;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 47px;
    line-height: 47px;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    text-shadow: 0px 1px 1.8px rgba(0, 0, 0, 0.5);
    padding: 0 28px;
    margin-bottom: 24px;
    text-align: left;
  }

  .reviews__container {
    flex-direction: column;
    padding: 24px 20px;
    gap: 32px;
    background: linear-gradient(135deg, rgba(40, 52, 52, 0.65) 0%, rgba(65, 80, 75, 0.45) 50%, rgba(85, 100, 95, 0.35) 100%);
    backdrop-filter: blur(17.5px);
    -webkit-backdrop-filter: blur(17.5px);
    border-radius: 28px;
    margin: 0 0 0 14px;
    width: calc(100vw - 14px);
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
  }

  .reviews__left {
    flex: none;
    width: 100%;
  }

  .reviews__star {
    font-size: 16px;
  }

  .reviews__badge-text {
    font-size: 10px;
    line-height: 16px;
  }

  .reviews__big-quote {
    font-size: 27px;
    line-height: 32px;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
  }

  .reviews__right {
    flex: none;
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 16px;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    justify-content: flex-start;
    flex-wrap: nowrap;
  }

  .reviews__card {
    scroll-snap-align: start;
  }

  .reviews__right::-webkit-scrollbar {
    display: none;
  }

  .reviews__card {
    flex: 0 0 200px;
    width: 200px;
  }

  .reviews__card-img {
    width: 200px;
    height: 356px;
  }

  .reviews__play-btn svg {
    width: 64px;
    height: 64px;
  }

  .reviews__card-role {
    font-size: 10px;
    line-height: 14px;
  }

  .reviews__card-title {
    font-size: 14px;
    line-height: 20px;
  }

  .reviews__card-name {
    font-size: 11px;
    line-height: 16px;
  }

  /* Hide desktop button on mobile */
  .reviews__all-btn {
    display: none;
  }

  /* Mobile bottom area */
  .reviews__mobile-bottom {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  .reviews__scroll-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 36px;
  }

  .reviews__nav-arrow {
    background: none;
    border: none;
    padding: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .reviews__scrollbar-track {
    flex: 1;
    height: 4px;
    background: rgba(255, 253, 253, 0.1);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
  }

  .reviews__scrollbar-thumb {
    width: 32px;
    height: 4px;
    background: #FFFFFF;
    border-radius: 10px;
    position: absolute;
    left: 0;
    top: 0;
    transition: left 0.3s ease;
  }

  .reviews__mobile-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 196px;
    height: 49px;
    padding: 0 6px 0 18px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(17.5px);
    -webkit-backdrop-filter: blur(17.5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 13px;
    line-height: 30px;
    color: #FFFFFF;
    text-decoration: none;
    justify-content: space-between;
  }

  .reviews__mobile-btn .cta-arrow {
    width: 41px;
    height: 41px;
    flex-shrink: 0;
    background: rgba(82, 228, 141, 0.2) !important;
    backdrop-filter: blur(17.5px) !important;
    -webkit-backdrop-filter: blur(17.5px) !important;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .reviews__mobile-btn .cta-arrow svg path {
    stroke: #52E48D !important;
  }

  /* ---------- SPORTOVCI ---------- */
  .sportovci {
    padding: 40px 0;
  }

  .sportovci__container {
    padding: 0 0 0 14px;
  }

  .sportovci__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding: 0 14px 0 14px;
  }

  .sportovci__cta-btn {
    display: none;
  }

  .sportovci__title {
    font-size: 27px;
    line-height: 27px;
    letter-spacing: -1.68px;
  }

  /* Hide desktop carousel on mobile */
  .sportovci__carousel--desktop {
    display: none;
  }

  /* Show mobile rows */
  .sportovci__mobile-rows {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .sportovci__mob-row {
    display: flex;
    flex-direction: column;
  }

  .sportovci__mob-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 0;
  }

  .sportovci__mob-track::-webkit-scrollbar {
    display: none;
  }

  .sportovci__mob-track .sportovci__card {
    flex: 0 0 100%;
    width: 100%;
    height: 560px;
    border-radius: 8px;
    box-shadow: 0px 18px 48px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.002);
    scroll-snap-align: start;
  }

  .sportovci__card--no-name .sportovci__overlay {
    display: flex;
  }

  .sportovci__card--no-name .sportovci__name {
    display: block;
  }

  .sportovci__name {
    font-size: 14.4px;
    line-height: 26px;
  }

  .sportovci__card-desc {
    font-size: 14.4px;
    line-height: 17px;
  }

  .sportovci__quote {
    height: auto;
    min-height: 226px;
    padding: 40px 30px;
    font-size: 14.5px;
    font-weight: 500;
    line-height: 24px;
    background: rgba(40, 40, 40, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  /* Sportovci mobile bottom — no longer used, keep for compat */
  .sportovci__mobile-bottom {
    display: none;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    padding: 0 14px;
    margin-top: 8px;
  }

  .sportovci__scroll-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 36px;
  }

  .sportovci__nav-arrow {
    background: none;
    border: none;
    padding: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .sportovci__scrollbar-track {
    flex: 1;
    height: 4px;
    background: rgba(255, 253, 253, 0.1);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
  }

  .sportovci__scrollbar-thumb {
    width: 116px;
    height: 4px;
    background: #FFFFFF;
    border-radius: 10px;
    position: absolute;
    left: 0;
    top: 0;
    transition: left 0.3s ease;
  }

  .sportovci__mobile-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 201px;
    height: 49px;
    padding: 0 4px 0 18px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(17.5px);
    -webkit-backdrop-filter: blur(17.5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 13px;
    line-height: 30px;
    color: #FFFFFF;
    text-decoration: none;
    justify-content: space-between;
  }

  .sportovci__mobile-btn .cta-arrow {
    width: 41px;
    height: 41px;
    flex-shrink: 0;
    background: rgba(82, 228, 141, 0.2) !important;
    backdrop-filter: blur(17.5px) !important;
    -webkit-backdrop-filter: blur(17.5px) !important;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .sportovci__mobile-btn .cta-arrow svg path {
    stroke: #52E48D !important;
  }

  /* ---------- FAQ ---------- */
  .faq {
    padding: 40px 0;
  }

  .faq__container {
    flex-direction: column;
    padding: 0 28px;
    gap: 24px;
  }

  .faq__title {
    flex: none;
    font-size: 27px;
    line-height: 32px;
    letter-spacing: -0.5px;
  }

  .faq__question {
    font-size: 11px;
    line-height: 30px;
    padding: 16px 0;
  }

  .faq__icon {
    width: 18px;
    height: 18px;
  }

  .faq__icon svg {
    width: 18px;
    height: 18px;
  }

  .faq__answer p {
    font-size: 11px;
    line-height: 20px;
    padding-bottom: 16px;
  }

  /* ---------- FOOTER ---------- */
  .footer {
    padding: 48px 0 24px;
  }

  .footer__container {
    padding: 0 28px;
  }

  .footer__top {
    flex-direction: column;
    gap: 32px;
    margin-bottom: 32px;
  }

  .footer__logo-wrap {
    gap: 8px;
    margin-bottom: 8px;
  }

  .footer__logo-img {
    height: 28px;
  }

  .footer__logo {
    font-size: 24px;
    letter-spacing: 2px;
  }

  .footer__tagline {
    font-size: 12px;
    margin-bottom: 16px;
  }

  .footer__links {
    gap: 24px;
    flex-wrap: wrap;
  }

  .footer__col {
    flex: 0 0 calc(50% - 12px);
  }

  .footer__col h4 {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .footer__col a {
    font-size: 12px;
  }

  .footer__col ul {
    gap: 8px;
  }

  .footer__bottom {
    padding-top: 16px;
  }

  .footer__bottom p {
    font-size: 11px;
  }

  /* ---------- COOKIE BANNER ---------- */
  .cookie-banner__glass {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .cookie-banner__content {
    flex-direction: column;
    gap: 16px;
  }

  .cookie-banner__title {
    font-size: 14px;
  }

  .cookie-banner__desc {
    font-size: 11px;
    line-height: 18px;
  }

  .cookie-banner__actions {
    flex-direction: column;
    width: 100%;
  }

  .cookie-banner__btn {
    width: 100%;
    font-size: 12px;
    padding: 10px 20px;
  }
}

/* ==========================================
   ACCESSIBILITY — reduced motion
   ========================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero__badge,
  .hero__title,
  .hero__actions,
  .hero__bottom-bar {
    opacity: 1;
    transform: none;
  }

  .hero__bottom-bar {
    transform: translateX(-50%);
  }
}

/* Right glow for bars - mobile */
@media (max-width: 480px) {
  .tabs__panel-glass::after,
  .pilire__grid::after,
  .nastroje__domains-list::after,
  .reviews__container::after,
  .nastroje__clinic::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 80px;
    background: linear-gradient(to left, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.09) 40%, transparent 100%);
    pointer-events: none;
    z-index: 1;
    border-radius: 0 28px 28px 0;
  }
}

/* ==========================================
   PRINT STYLES
   ========================================== */
@media print {
  .header,
  .cookie-banner,
  .cookie-modal,
  .privacy-modal,
  .pillar-modal,
  .mobile-menu,
  .hero__bg-video,
  .bridge-section,
  .sound-toggle,
  footer .social-links {
    display: none !important;
  }
  body {
    background: #fff !important;
    color: #000 !important;
  }
  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    color: #555;
  }
  a[href^="#"]::after,
  a[href^="javascript"]::after {
    content: "";
  }
}
