/* ============================================================
   MADCORE ADS — Design System
   ============================================================ */

:root {
  --bg:        #0A0711;
  --bg-elev:   #120C1F;
  --bg-elev-2: #1A1130;
  --brand:     #6B19DD;
  --brand-br:  #8B3DFF;
  --text:      #F4F1FA;
  --muted:     #A79FB8;
  --line:      rgba(255,255,255,0.08);

  --radius:    16px;
  --radius-sm: 10px;
  --radius-lg: 24px;

  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-serif:   'Instrument Serif', Georgia, serif;

  --max-w: 1200px;
  --nav-h: 72px;

  --ease: cubic-bezier(0.25, 0, 0.15, 1);
  --t:    0.15s;
  --t-md: 0.35s;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

img  { max-width: 100%; height: auto; display: block; }
ul   { list-style: none; }
a    { color: inherit; text-decoration: none; }
button { background: none; border: none; cursor: pointer; font: inherit; color: inherit; }

::selection { background: var(--brand); color: #fff; }

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--brand), var(--brand-br));
  z-index: 300;
  pointer-events: none;
}

/* ============================================================
   Ambientní třpýtky
   ============================================================ */
.sparkles {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.sparkle {
  position: absolute;
  border-radius: 50%;
  background: var(--brand-br);
  box-shadow: 0 0 6px 1px rgba(139,61,255,0.8);
  opacity: 0;
  animation-name: sparkleFloat;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
@keyframes sparkleFloat {
  0%   { opacity: 0;   transform: translateY(0) scale(0.8); }
  10%  { opacity: 0.8; }
  50%  { opacity: 0.3; transform: translateY(-40px) scale(1.1); }
  90%  { opacity: 0.7; }
  100% { opacity: 0;   transform: translateY(-80px) scale(0.8); }
}
@media (prefers-reduced-motion: reduce) {
  .sparkles { display: none; }
}

/* ============================================================
   Layout
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 600px)  { .container { padding: 0 32px; } }
@media (min-width: 1024px) { .container { padding: 0 48px; } }

.section { padding: 80px 0; }
@media (min-width: 768px) { .section { padding: 120px 0; } }

/* ============================================================
   Typography tokens
   ============================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-br);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  width: 5px;
  height: 5px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--brand-br);
  box-shadow: 0 0 6px rgba(139,61,255,0.8);
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(26px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 48px;
}

/* Gradient text — left saturated purple → right lighter */
.text-brand-grad {
  background: linear-gradient(90deg, #6B19DD 0%, #B57BFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: background var(--t), border-color var(--t), transform var(--t), box-shadow var(--t);
  cursor: pointer;
}
.btn-primary, .btn--primary {
  background: var(--brand);
  color: #fff;
  border: 1.5px solid var(--brand);
}
.btn-primary:hover, .btn-primary:focus-visible,
.btn--primary:hover, .btn--primary:focus-visible {
  background: var(--brand-br);
  border-color: var(--brand-br);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(107,25,221,0.45);
}
.btn-ghost, .btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover, .btn-ghost:focus-visible,
.btn--ghost:hover, .btn--ghost:focus-visible {
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.05);
}
.btn:active { transform: scale(0.96); }
.btn-lg { padding: 17px 40px; font-size: 17px; }
.btn-arrow { display: inline-block; transition: transform var(--t); }
.btn:hover .btn-arrow { transform: translate(2px, -2px); }

:focus-visible {
  outline: 2px solid var(--brand-br);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   Navigation
   ============================================================ */
.nav-wrap {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(10,7,17,0.82);
  border-bottom: 1px solid var(--line);
  transition: background var(--t);
}
.nav-wrap.is-scrolled { background: rgba(10,7,17,0.96); }

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; z-index: 1; }
.nav-logo-img { width: 34px; height: 34px; object-fit: contain; }
.nav-wordmark {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

/* Plovoucí "pilulka" s odkazy, vycentrovaná nezávisle na logu/CTA */
.nav-links { display: none; align-items: center; gap: 2px; }
@media (min-width: 900px) {
  .nav-links {
    display: flex !important;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 6px;
  }
}

.nav-link {
  padding: 8px 13px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  border-radius: var(--radius-sm);
  transition: color var(--t), background var(--t);
}
@media (min-width: 900px) { .nav-link { border-radius: 999px; } }
.nav-link:hover { color: var(--text); background: rgba(255,255,255,0.06); }

.nav-actions { display: flex; align-items: center; gap: 14px; z-index: 1; }
.nav-cta, .nav-cta:hover { padding: 9px 18px; font-size: 14px; color: #fff; }
.nav-lang {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
  transition: color var(--t), border-color var(--t), background var(--t);
}
.nav-lang:hover { color: var(--text); border-color: rgba(139,61,255,0.4); background: rgba(255,255,255,0.05); }

.nav-hamburger { display: flex; flex-direction: column; gap: 5px; padding: 8px; border-radius: 8px; }
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--text); border-radius: 2px; transition: transform var(--t), opacity var(--t); }
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
@media (min-width: 900px) { .nav-hamburger { display: none; } }

.nav-links.is-open {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  transform: none;
  background: var(--bg-elev);
  border: none;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 12px 20px 20px;
  gap: 2px;
}
.nav-links.is-open .nav-link { padding: 13px 16px; font-size: 16px; border-radius: var(--radius-sm); }

/* ============================================================
   Jazykový picker — první volba při vstupu na web
   ============================================================ */
.lang-picker {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  transition: opacity 0.5s var(--ease), visibility 0.5s var(--ease);
}
.lang-picker.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.lang-picker__inner { text-align: center; }
.lang-picker__logo { width: 56px; height: 56px; object-fit: contain; margin: 0 auto 24px; opacity: 0.9; }
.lang-picker__label {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}
.lang-picker__options { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.lang-picker__btn {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  background: var(--bg-elev);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 32px;
  cursor: pointer;
  transition: border-color var(--t), background var(--t), transform var(--t);
}
.lang-picker__btn:hover {
  border-color: var(--brand-br);
  background: var(--bg-elev-2);
  transform: translateY(-2px);
}

/* ============================================================
   Intro flash — jednorázový „start" efekt při načtení stránky
   Animace čekají "zapauzované", než padne volba jazyka (viz .lang-ready)
   ============================================================ */
.intro-flash {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  background: var(--bg);
  animation: introFade 0.85s cubic-bezier(0.65,0,0.35,1) forwards;
  animation-play-state: paused;
}
.intro-flash__line {
  width: 0;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--brand-br) 25%, #fff 50%, var(--brand-br) 75%, transparent);
  box-shadow: 0 0 24px rgba(139,61,255,0.85);
  animation: introLine 0.38s cubic-bezier(0.16,1,0.3,1) forwards;
  animation-play-state: paused;
}
html.lang-ready .intro-flash,
html.lang-ready .intro-flash__line {
  animation-play-state: running;
}
@keyframes introLine {
  0%   { width: 0; }
  100% { width: min(360px, 60vw); }
}
@keyframes introFade {
  0%, 42% { opacity: 1; }
  100%    { opacity: 0; visibility: hidden; }
}
@media (prefers-reduced-motion: reduce) {
  .intro-flash { display: none; }
}

/* ============================================================
   Hero — rámovaný panel (odsazený od okraje, zaoblené rohy)
   ============================================================ */
.hero-frame-wrap {
  background: #000;
  padding: 14px;
}
.hero {
  position: relative;
  min-height: calc(100svh - 28px);
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.09);
}
.hero::before {
  content: '';
  position: absolute;
  top: -15%; right: -5%;
  width: 700px; height: 700px;
  background: radial-gradient(ellipse, rgba(107,25,221,0.2) 0%, transparent 68%);
  pointer-events: none;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.hero__orb--a {
  width: 420px; height: 420px;
  top: 8%; left: -10%;
  background: radial-gradient(circle, rgba(139,61,255,0.35) 0%, transparent 70%);
  animation: orbFloatA 14s ease-in-out infinite;
}
.hero__orb--b {
  width: 320px; height: 320px;
  bottom: -8%; right: 4%;
  background: radial-gradient(circle, rgba(107,25,221,0.3) 0%, transparent 70%);
  animation: orbFloatB 18s ease-in-out infinite;
}
@keyframes orbFloatA {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(30px, 22px) scale(1.12); }
}
@keyframes orbFloatB {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(-24px, -18px) scale(1.08); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__orb { animation: none; }
}

.hero__logo-float {
  position: absolute;
  top: 46%;
  right: -8%;
  width: min(560px, 55vw);
  height: min(560px, 55vw);
  transform: translateY(-50%);
  z-index: 0;
  opacity: 0.24;
  pointer-events: none;
  perspective: 900px;
}
.hero__logo-float__main { position: relative; width: 100%; height: 100%; }
.hero__logo-float__reflection { width: 100%; height: 100%; }
.hero__logo-float__main img,
.hero__logo-float__reflection img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 4px rgba(0,0,0,0.5)) drop-shadow(0 40px 70px rgba(107,25,221,0.55));
  animation: logoFloat3D 16s ease-in-out infinite;
}
/* Zdvojená rozmazaná kopie posazená za a pod logem — dodává mu iluzi tloušťky/hloubky */
.hero__logo-float__main::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/img/logo-mark.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(14px, 20px) scale(0.98);
  filter: blur(7px) brightness(0);
  opacity: 0.55;
  z-index: -1;
  animation: logoFloat3D 16s ease-in-out infinite;
}
/* Diagonální "nasvícení" ořezané do siluety loga — světlo vlevo nahoře, stín vpravo dole */
.hero__logo-float__sheen {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.55) 0%, transparent 42%, transparent 58%, rgba(0,0,0,0.45) 100%);
  -webkit-mask-image: url('assets/img/logo-mark.png');
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url('assets/img/logo-mark.png');
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  mix-blend-mode: overlay;
  pointer-events: none;
}
/* "Vodní hladina" — jemná odrazová linka a zrcadlená kopie loga pod ním */
.hero__logo-float::after {
  content: '';
  position: absolute;
  left: 12%; right: 12%; top: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(139,61,255,0.7), transparent);
  filter: blur(0.5px);
}
.hero__logo-float__reflection {
  position: absolute;
  top: 100%;
  left: 0;
  height: 65%;
  overflow: hidden;
  opacity: 0.32;
  transform: scaleY(-1);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.65), transparent 78%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.65), transparent 78%);
}
@keyframes logoFloat3D {
  0%, 100% { transform: translateY(0)     rotateY(0deg)   rotateX(0deg); }
  25%      { transform: translateY(-26px) rotateY(14deg)  rotateX(7deg); }
  50%      { transform: translateY(8px)   rotateY(-6deg)  rotateX(-8deg); }
  75%      { transform: translateY(-16px) rotateY(-14deg) rotateX(4deg); }
}
@media (max-width: 900px) {
  .hero__logo-float { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__logo-float__main img,
  .hero__logo-float__main::before,
  .hero__logo-float__reflection img { animation: none; }
}

.hero__inner {
  padding-top: 72px;
  padding-bottom: 72px;
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero__signal-row {
  position: absolute;
  left: 0; right: 0; bottom: 22px;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 32px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.55;
}
.hero__signal-row__center { display: none; }
@media (min-width: 700px) { .hero__signal-row__center { display: inline; } }

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 7vw, 68px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin: 0 0 24px;
  color: var(--text);
  opacity: 0;
  filter: blur(14px);
  transform: scale(1.05);
  animation: heroTitleReveal 0.65s cubic-bezier(0.16,1,0.3,1) 0.42s forwards;
  animation-play-state: paused;
}
@keyframes heroTitleReveal {
  0%   { opacity: 0; filter: blur(14px); transform: scale(1.06); }
  100% { opacity: 1; filter: blur(0);    transform: scale(1); }
}
.hero__title-accent {
  font-weight: 800;
  background: linear-gradient(90deg, #8B3DFF 0%, #B57BFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__subtitle {
  font-size: clamp(15px, 2.2vw, 18px);
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(16px);
  animation: heroFadeUp 0.55s var(--ease) 0.68s forwards;
  animation-play-state: paused;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(16px);
  animation: heroFadeUp 0.55s var(--ease) 0.8s forwards;
  animation-play-state: paused;
}
.hero__chip {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  opacity: 0;
  transform: translateY(16px);
  animation: heroFadeUp 0.55s var(--ease) 0.92s forwards;
  animation-play-state: paused;
}
.hero__chip-sep { color: var(--brand-br); opacity: 0.7; }
@keyframes heroFadeUp { to { opacity: 1; transform: none; } }
html.lang-ready .hero__title,
html.lang-ready .hero__subtitle,
html.lang-ready .hero__cta,
html.lang-ready .hero__chip {
  animation-play-state: running;
}
@media (prefers-reduced-motion: reduce) {
  .hero__title, .hero__subtitle, .hero__cta, .hero__chip {
    animation: none; opacity: 1; transform: none; filter: none;
  }
}

/* ============================================================
   Marquee
   ============================================================ */
.marquee-section {
  background: var(--bg-elev);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  overflow: hidden;
}
.marquee-track { overflow: hidden; }
.marquee-inner {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}

.marquee-inner span {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
  padding: 0 14px;
  transition: color var(--t);
}
.marquee-inner span:hover { color: var(--text); }
.marquee-dot {
  color: var(--brand-br) !important;
  padding: 0 2px !important;
  font-weight: 700;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   Problém — trojúhelník
   ============================================================ */
.problems { position: relative; overflow: hidden; }
.problems::after {
  content: '';
  position: absolute;
  bottom: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(139,61,255,0.25), transparent);
  pointer-events: none;
}

/* Jeden souřadný systém pro trojúhelník i šipky — šipky vychází přesně z okraje
   svého patra a míří na text, který je napozicovaný na stejných souřadnicích. */
.triangle2 {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  aspect-ratio: 1000 / 460;
}
.triangle2-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.triangle2-svg polygon {
  filter: drop-shadow(0 12px 30px rgba(107,25,221,0.5));
  animation: triangleGlowPulse 3.6s ease-in-out infinite;
  transform-origin: 500px 280px;
}
@keyframes triangleGlowPulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.015); }
}
.triangle2-num-svg {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
  fill: rgba(255,255,255,0.92);
  text-anchor: middle;
}
.triangle2-arrow-line {
  fill: none;
  stroke: #B57BFF;
  stroke-width: 2.5;
  stroke-linecap: round;
}

.triangle2-text {
  position: absolute;
  max-width: 250px;
}
.triangle2-text--1 { right: 70%;   top: 16.3%; transform: translateY(-55%); text-align: right; }
.triangle2-text--2 { left: 76%;    top: 51.7%; transform: translateY(-50%); text-align: left; }
.triangle2-text--3 { right: 74.5%; top: 84.8%; transform: translateY(-45%); text-align: right; }

.triangle-point__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 30px;
  padding: 0 4px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  color: var(--brand-br);
  letter-spacing: 0.04em;
  background: rgba(107,25,221,0.12);
  border: 1px solid rgba(139,61,255,0.3);
  border-radius: 50%;
  margin-bottom: 14px;
}
.triangle-point__heading {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
}
.triangle-point__text { font-size: 14px; color: var(--muted); line-height: 1.7; }

@media (max-width: 720px) {
  .triangle2 {
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    max-width: 360px;
  }
  .triangle2-svg {
    position: static;
    width: 100%;
    height: auto;
    order: 2;
  }
  .triangle2-svg .triangle2-arrow-line { display: none; }
  .triangle2-text--1 { order: 1; }
  .triangle2-text--2 { order: 3; }
  .triangle2-text--3 { order: 4; }
  .triangle2-text {
    position: static;
    max-width: 340px;
    text-align: center;
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .triangle2-svg polygon { animation: none; }
}

/* ============================================================
   Služby
   ============================================================ */
.services { background: var(--bg-elev); position: relative; }
.services::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(139,61,255,0.2), transparent);
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 560px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: background var(--t), border-color var(--t), transform var(--t), box-shadow var(--t);
}
.service-card:hover, .service-card:focus-visible {
  background: var(--bg-elev-2);
  border-color: rgba(139,61,255,0.35);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(107,25,221,0.14);
}
.service-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(107,25,221,0.1);
  border: 1px solid rgba(107,25,221,0.22);
  border-radius: var(--radius-sm);
  color: var(--brand-br);
  margin-bottom: 20px;
}
.service-heading { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.service-text { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ============================================================
   Proces — timeline
   ============================================================ */
.process { position: relative; overflow: hidden; }
.process::after {
  content: '';
  position: absolute;
  top: 0; right: 5%;
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--brand) 30%, var(--brand-br) 70%, transparent);
  opacity: 0.08;
  pointer-events: none;
}

.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 48px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0 24px;
  padding-bottom: 40px;
}
.timeline-item:last-child { padding-bottom: 0; }

.timeline-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.timeline-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--brand-br);
  letter-spacing: -0.04em;
  line-height: 1;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(107,25,221,0.1);
  border: 1px solid rgba(107,25,221,0.25);
  border-radius: 50%;
  flex-shrink: 0;
}
.timeline-line {
  flex: 1;
  width: 1px;
  background: linear-gradient(to bottom, var(--brand), transparent);
  margin-top: 12px;
  opacity: 0.3;
}

.timeline-body { padding-top: 10px; }
.timeline-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-br);
  background: rgba(107,25,221,0.1);
  border: 1px solid rgba(107,25,221,0.2);
  border-radius: 100px;
  padding: 3px 10px;
  margin-bottom: 10px;
}
.timeline-heading {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.timeline-text { font-size: 15px; color: var(--muted); line-height: 1.75; }

/* ============================================================
   Garance → přerámovaná jako „náš model"
   ============================================================ */
.guarantee {
  position: relative;
  overflow: hidden;
  text-align: center;
}
.guarantee-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(107,25,221,0.2) 0%, transparent 100%);
  pointer-events: none;
}
.guarantee-inner { position: relative; z-index: 1; max-width: 800px; }

.guarantee-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 50px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.guarantee-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 52px;
  line-height: 1.75;
}

/* Editorní číslovaný seznam — záměrně bez karet, pro odlišení od Služeb */
.guarantee-list {
  display: flex;
  flex-direction: column;
  text-align: left;
  max-width: 620px;
  margin: 0 auto 48px;
}
.guarantee-row {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  padding: 22px 4px;
  border-bottom: 1px solid var(--line);
  transition: background var(--t);
}
.guarantee-row:first-child { border-top: 1px solid var(--line); }
.guarantee-row:hover { background: rgba(107,25,221,0.05); }
.guarantee-row__num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: rgba(139,61,255,0.35);
  letter-spacing: -0.03em;
  line-height: 1.4;
}
.guarantee-row__heading { font-family: var(--font-display); font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.guarantee-row__text { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ============================================================
   O mně — překopáno
   ============================================================ */
.about { background: var(--bg-elev); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 52px;
  align-items: center;
}
@media (min-width: 768px) { .about-inner { grid-template-columns: 400px 1fr; gap: 80px; } }

.about-image-wrap { position: relative; }
.about-image-frame {
  position: relative;
}
.about-image-frame::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-br) 50%, transparent 100%);
  opacity: 0.45;
  z-index: 0;
}
.founder-photo {
  border-radius: 20px;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
  position: relative;
  z-index: 1;
}
.about-image-card {
  position: absolute;
  bottom: -20px;
  right: -16px;
  background: var(--bg-elev-2);
  border: 1px solid rgba(107,25,221,0.3);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  z-index: 2;
  backdrop-filter: blur(12px);
}
.about-image-card-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-br);
}
.about-image-card-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.about-image-card-role { font-size: 12px; color: var(--muted); }

.about-content .section-heading { margin-bottom: 20px; }
.about-text { font-size: 16px; color: var(--muted); line-height: 1.75; margin-bottom: 20px; }
.about-text:last-of-type { margin-bottom: 32px; }

.about-values { display: flex; flex-direction: column; margin: 24px 0 28px; }
.about-value {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
  transition: transform var(--t), background var(--t);
}
.about-value:first-child { border-top: 1px solid var(--line); }
.about-value:hover { transform: translateX(6px); background: rgba(107,25,221,0.05); }
.about-value-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(107,25,221,0.3), rgba(139,61,255,0.05));
  border: 1px solid rgba(139,61,255,0.35);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  color: var(--brand-br);
}
.about-value-text { font-size: 15px; font-weight: 500; color: var(--text); line-height: 1.5; }

/* ============================================================
   Portfolio / Ukázky
   ============================================================ */
.section-lead {
  max-width: 560px;
  margin: -32px 0 40px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 640px) { .portfolio__grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }

.portfolio__item {
  position: relative;
  display: block;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-elev);
  cursor: pointer;
  aspect-ratio: 1 / 1;
  transition: transform var(--t-md) var(--ease), border-color var(--t-md), box-shadow var(--t-md);
}
.portfolio__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}
.portfolio__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(107,25,221,0.28) 100%);
  opacity: 0;
  transition: opacity var(--t-md);
  pointer-events: none;
}
.portfolio__item:hover, .portfolio__item:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(139,61,255,0.4);
  box-shadow: 0 18px 50px -20px rgba(107,25,221,0.6);
  outline: none;
}
.portfolio__item:hover img, .portfolio__item:focus-visible img { transform: scale(1.05); }
.portfolio__item:hover::after, .portfolio__item:focus-visible::after { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4vw;
  background: rgba(6,4,12,0.9);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 14px;
  box-shadow: 0 30px 90px -20px rgba(107,25,221,0.7);
  transform: scale(0.96);
  transition: transform 0.3s var(--ease);
}
.lightbox.is-open .lightbox__img { transform: scale(1); }
.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: background var(--t), border-color var(--t);
}
.lightbox__close:hover { background: var(--brand); border-color: var(--brand); }

@media (prefers-reduced-motion: reduce) {
  .portfolio__item, .portfolio__item img, .lightbox, .lightbox__img { transition: none; }
}

/* ============================================================
   Proč my
   ============================================================ */
.diff-list { display: flex; flex-direction: column; margin-top: 8px; max-width: 720px; }
.diff-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 4px;
  border-bottom: 1px solid var(--line);
  transition: background var(--t);
}
.diff-row:first-child { border-top: 1px solid var(--line); }
.diff-row:hover { background: rgba(107,25,221,0.05); }

.diff-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(107,25,221,0.1);
  border: 1px solid rgba(107,25,221,0.22);
  border-radius: var(--radius-sm);
  color: var(--brand-br);
  transition: background var(--t), border-color var(--t);
}
.diff-row:hover .diff-icon { background: rgba(107,25,221,0.18); border-color: rgba(139,61,255,0.4); }

.diff-heading { font-family: var(--font-display); font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.diff-text { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { position: relative; }
.faq-wrap { max-width: 720px; }
.faq-list { display: flex; flex-direction: column; }

.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 0;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  gap: 16px;
  transition: color var(--t);
}
.faq-question:hover { color: var(--brand-br); }

.faq-icon { flex-shrink: 0; width: 20px; height: 20px; position: relative; }
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}
.faq-icon::before { width: 12px; height: 1.5px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-icon::after  { width: 1.5px; height: 12px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-question[aria-expanded="true"] .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.faq-answer { padding-bottom: 22px; font-size: 15px; color: var(--muted); line-height: 1.75; }
.faq-answer[hidden] { display: none; }

/* ============================================================
   Final CTA
   ============================================================ */
.final-cta { position: relative; text-align: center; background: var(--bg-elev); overflow: hidden; }
.final-cta-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(107,25,221,0.14) 0%, transparent 100%);
  pointer-events: none;
}
.final-cta-inner { position: relative; z-index: 1; max-width: 640px; }
.final-cta .section-heading { margin-bottom: 20px; }
.final-cta-sub { font-size: 16px; color: var(--muted); margin-bottom: 40px; line-height: 1.7; }

/* ============================================================
   Kontakt
   ============================================================ */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;
}
@media (min-width: 768px) { .contact-inner { grid-template-columns: 360px 1fr; gap: 80px; } }

.contact-info .section-heading { margin-bottom: 16px; }
.contact-sub { font-size: 15px; color: var(--muted); margin-bottom: 36px; line-height: 1.7; }
.contact-table {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.contact-table__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--line);
  transition: background var(--t);
}
.contact-table__row:hover { background: rgba(107,25,221,0.05); }
.contact-table__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}
.contact-table__value {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  text-align: right;
  transition: color var(--t);
}
.contact-table__value:hover { color: var(--brand-br); }

/* Booking card — nahrazuje formulář, vede rovnou na Calendly */
.contact-book {
  position: relative;
  background: var(--bg-elev);
  border: 1px solid rgba(107,25,221,0.3);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  overflow: hidden;
}
.contact-book__glow {
  position: absolute;
  inset: -40% -20% auto -20%;
  height: 220px;
  background: radial-gradient(ellipse, rgba(139,61,255,0.35), transparent 70%);
  pointer-events: none;
}
.contact-book__eyebrow {
  position: relative;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-br);
  margin-bottom: 14px;
}
.contact-book__heading {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  margin-bottom: 12px;
}
.contact-book__text {
  position: relative;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 420px;
}
.contact-book__btn { position: relative; }
.contact-book__points {
  position: relative;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}
.contact-book__points li {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-book__points li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
}

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--bg-elev); border-top: 1px solid var(--line); padding-top: 56px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
@media (min-width: 720px) { .footer-inner { grid-template-columns: 1fr auto auto; align-items: start; gap: 60px; } }

.footer-tagline { font-size: 13px; color: var(--muted); margin-top: 12px; max-width: 220px; line-height: 1.6; }
.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-size: 14px; color: var(--muted); transition: color var(--t); }
.footer-nav a:hover { color: var(--brand-br); }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }

.footer-link { font-size: 14px; color: var(--muted); transition: color var(--t); }
.footer-link:hover { color: var(--brand-br); }
.footer-link-icn { display: flex; align-items: center; gap: 10px; }
.footer-icon {
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-elev-2);
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--brand-br);
  flex-shrink: 0;
  transition: border-color var(--t), background var(--t);
}
.footer-link:hover .footer-icon { border-color: rgba(139,61,255,0.4); background: rgba(107,25,221,0.1); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 18px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.footer-bottom p { font-size: 12px; color: var(--muted); text-align: center; }
.footer-legal {
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.7;
}
.footer-legal a { color: var(--muted); transition: color var(--t); }
.footer-legal a:hover { color: var(--brand-br); }
.footer-legal span { color: var(--line); }

/* ============================================================
   Cookie lišta
   ============================================================ */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 400;
  background: var(--bg-elev-2);
  border-top: 1px solid rgba(107,25,221,0.3);
  padding: 16px 20px;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.35);
  animation: cookieSlideUp 0.4s var(--ease) forwards;
}
.cookie-banner[hidden] { display: none; }
@keyframes cookieSlideUp {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}
.cookie-banner__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.cookie-banner__text { font-size: 13px; color: var(--muted); line-height: 1.6; max-width: 640px; }
.cookie-banner__text a { color: var(--brand-br); text-decoration: underline; }
.cookie-banner__btn { flex-shrink: 0; padding: 10px 22px; font-size: 14px; }

/* ============================================================
   Pricing (EN-only) — single flat-fee card
   ============================================================ */
.pricing-lead { font-size: 16px; color: var(--muted); margin: -32px 0 40px; max-width: 480px; }

.pricing-card {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
  background: var(--bg-elev);
  border: 1px solid rgba(107,25,221,0.35);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  overflow: hidden;
  text-align: center;
}
.pricing-card__glow {
  position: absolute;
  inset: -30% -10% auto -10%;
  height: 240px;
  background: radial-gradient(ellipse, rgba(139,61,255,0.4), transparent 70%);
  pointer-events: none;
}
.pricing-card__tag {
  position: relative;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-br);
  margin-bottom: 20px;
}
.pricing-card__price {
  position: relative;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 8px;
}
.pricing-card__amount {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 64px);
  font-weight: 800;
  background: linear-gradient(90deg, #8B3DFF 0%, #B57BFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pricing-card__period { font-size: 16px; color: var(--muted); font-weight: 600; }
.pricing-card__sub { position: relative; font-size: 14px; color: var(--muted); margin-bottom: 32px; }

.pricing-card__features {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
  margin-bottom: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}
.pricing-card__features li::before {
  content: '';
  width: 18px; height: 18px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: rgba(74,222,128,0.15);
  border: 1px solid rgba(74,222,128,0.4);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='%234ade80' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}
.pricing-card__btn { position: relative; width: 100%; justify-content: center; }

/* ============================================================
   Pro koho to dává smysl — fit / no-fit
   ============================================================ */
.fit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 720px) { .fit-grid { grid-template-columns: repeat(2, 1fr); } }

.fit-card {
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid var(--line);
  background: var(--bg-elev);
  transition: transform var(--t), border-color var(--t);
}
.fit-card:hover { transform: translateY(-2px); }
.fit-card--yes {
  border-color: rgba(74,222,128,0.3);
  background: linear-gradient(160deg, rgba(74,222,128,0.08) 0%, var(--bg-elev) 55%);
}
.fit-card--yes:hover { border-color: rgba(74,222,128,0.5); }
.fit-card--no {
  border-color: rgba(248,113,113,0.25);
  background: linear-gradient(160deg, rgba(248,113,113,0.06) 0%, var(--bg-elev) 55%);
}
.fit-card--no:hover { border-color: rgba(248,113,113,0.45); }

.fit-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 22px;
}
.fit-card--yes .fit-card__icon { background: rgba(74,222,128,0.12); border: 1px solid rgba(74,222,128,0.35); color: #4ade80; }
.fit-card--no  .fit-card__icon { background: rgba(248,113,113,0.12); border: 1px solid rgba(248,113,113,0.3); color: #f87171; }

.fit-card__heading { font-family: var(--font-display); font-size: 20px; font-weight: 800; margin-bottom: 22px; }

.fit-card__list { display: flex; flex-direction: column; gap: 14px; }
.fit-card__list li { position: relative; padding-left: 18px; font-size: 15px; color: var(--text); line-height: 1.55; }
.fit-card__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
}
.fit-card--yes .fit-card__list li::before { background: #4ade80; }
.fit-card--no  .fit-card__list li::before { background: #f87171; }

/* ============================================================
   Scrollbar
   ============================================================ */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(107,25,221,0.4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--brand); }
