/* JergonLab v4 — Premium White, Hormozi Style */

:root {
  --color-primary: #1A1A1A;
  --color-accent: #C9A64A;
  --color-accent-hover: #A8873A;
  --color-bg: #FFFFFF;
  --color-bg-alt: #FAFAF8;
  --color-bg-warm: #F5F4F0;
  --color-text: #1A1A1A;
  --color-text-secondary: #78716C;
  --color-text-muted: #A09C94;
  --color-border: #F0EDE7;
  --color-border-strong: #EDEAE4;
  --color-surface: #D6D3CC;
  --color-danger: #EF4444;
  --color-success: #22C55E;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
}

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

/* Skip to content — accessibility */
.skip-to-content {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  padding: 12px 24px;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  transition: left 0.15s;
}
.skip-to-content:focus {
  left: 50%;
  transform: translateX(-50%);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  overscroll-behavior-y: none;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1A1A1A;
  background: #FFFFFF;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Scrollbar: hide on mobile, subtle on desktop */
@media (max-width: 768px) {
  ::-webkit-scrollbar { display: none; }
  body { scrollbar-width: none; }
}
@media (min-width: 769px) {
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: transparent; }
  ::-webkit-scrollbar-thumb { background: #D6D3CC; border-radius: 3px; }
  ::-webkit-scrollbar-thumb:hover { background: #A09C94; }
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 28px; }
.container--sm { max-width: 720px; }

/* =============================================
   NAV — glass effect
   ============================================= */

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.nav__inner { max-width: 1120px; margin: 0 auto; padding: 0 28px; height: 64px; display: flex; align-items: center; justify-content: space-between; }
.nav__logo { font-size: 13px; font-weight: 800; letter-spacing: 4px; color: #1A1A1A; }
.nav__cta {
  font-size: 14px; font-weight: 600; color: #1A1A1A;
  padding: 10px 22px; border-radius: 100px;
  background: #1A1A1A; color: #fff;
  transition: all .25s cubic-bezier(.16,1,.3,1);
}
.nav__cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,.15); }
.nav__cta:active { transform: scale(.97); }

/* =============================================
   BUTTONS
   ============================================= */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: inherit; font-weight: 700; border: none; cursor: pointer;
  border-radius: 16px; transition: all .25s cubic-bezier(.16,1,.3,1); text-decoration: none;
}
.btn:active { transform: scale(.97); }
.btn--primary {
  background: #1A1A1A; color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
}
.btn--primary:hover { box-shadow: 0 8px 32px rgba(0,0,0,.15); transform: translateY(-2px); }
.btn--lg { font-size: 17px; padding: 18px 36px; }
.btn--full { width: 100%; }

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

.hero {
  padding: 120px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(34,197,94,.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,0,0,.03) 0%, transparent 70%);
  pointer-events: none;
}

/* Hero glow effect */
.hero__glow {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none; z-index: 0;
  transition: background .3s ease;
}
.hero .container { position: relative; z-index: 1; }

.hero__badge {
  display: inline-block;
  font-size: 13px; font-weight: 600; color: #78716C;
  padding: 8px 20px; border-radius: 100px;
  border: 1px solid #E5E2DC;
  margin-bottom: 36px;
  letter-spacing: .3px;
}

.hero__title {
  font-size: clamp(44px, 7.5vw, 78px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 28px;
  color: #1A1A1A;
}

.hero__accent { background: linear-gradient(135deg, #C9A64A, #E0C868); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.hero__sub {
  font-size: 19px; color: #78716C;
  max-width: 540px; margin: 0 auto 44px;
  line-height: 1.7; font-weight: 400;
}

.hero__guarantee {
  margin-top: 18px; font-size: 14px; color: #A09C94; font-weight: 500;
}

/* =============================================
   PROOF BAR
   ============================================= */

.proof {
  border-top: 1px solid #F0EDE7; border-bottom: 1px solid #F0EDE7;
  padding: 48px 0; background: #FAFAF8;
}
.proof__inner { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.proof__item { text-align: center; }
.proof__num { font-size: 40px; font-weight: 900; color: #1A1A1A; letter-spacing: -1.5px; font-variant-numeric: tabular-nums; }
.proof__label { font-size: 13px; color: #A09C94; font-weight: 500; max-width: 200px; margin-top: 6px; line-height: 1.4; }
.proof__divider { width: 1px; height: 52px; background: #E5E2DC; }

/* =============================================
   DASHBOARD VISUAL
   ============================================= */

.visual { padding: 80px 0 100px; }

.visual__card {
  border-radius: 24px; overflow: hidden;
  box-shadow:
    0 2px 4px rgba(0,0,0,.02),
    0 8px 24px rgba(0,0,0,.04),
    0 24px 64px rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.06);
  transition: box-shadow .4s;
}
.visual__card:hover {
  box-shadow:
    0 2px 4px rgba(0,0,0,.02),
    0 12px 32px rgba(0,0,0,.06),
    0 32px 80px rgba(0,0,0,.08);
}

.dash__header {
  display: flex; align-items: center; gap: 7px;
  padding: 16px 22px;
  background: #F8F7F4; border-bottom: 1px solid #EDEAE4;
}
.dash__dot { width: 11px; height: 11px; border-radius: 50%; }
.dash__dot--r { background: #EF4444; }
.dash__dot--y { background: #EAB308; }
.dash__dot--g { background: #C9A64A; }
.dash__url { margin-left: 14px; font-size: 12px; color: #A09C94; font-weight: 500; }

.dash__body { padding: 28px; background: #fff; }

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

.dash__stat {
  background: #FAFAF8; border-radius: 16px; padding: 22px;
  border: 1px solid #F0EDE7;
  transition: all .2s;
}
.dash__stat:hover { border-color: #D6D3CC; transform: translateY(-1px); }

.dash__stat-label { font-size: 12px; color: #A09C94; font-weight: 600; margin-bottom: 6px; text-transform: uppercase; letter-spacing: .5px; }
.dash__stat-num { font-size: 32px; font-weight: 900; color: #1A1A1A; letter-spacing: -1.5px; line-height: 1; }
.dash__stat-change { display: inline-flex; align-items: center; gap: 3px; font-size: 13px; font-weight: 700; margin-top: 8px; }
.dash__stat-change--up { color: #C9A64A; }
.dash__stat-change--down { color: #C9A64A; }

.dash__chart-label { font-size: 13px; font-weight: 700; color: #78716C; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .5px; }

.dash__scroll-chart { display: flex; flex-direction: column; gap: 6px; margin-bottom: 32px; }
.dash__scroll-bar {
  height: 36px; background: #1A1A1A; border-radius: 10px;
  display: flex; align-items: center; padding: 0 14px;
  transition: width 1.2s cubic-bezier(.16,1,.3,1);
}
.dash__scroll-bar span { font-size: 12px; font-weight: 700; color: #fff; white-space: nowrap; }
.dash__scroll-bar--warn { background: #EF4444; }

.dash__time-chart { background: #FAFAF8; border-radius: 16px; padding: 20px; border: 1px solid #F0EDE7; }
.dash__svg { width: 100%; height: auto; display: block; }
.dash__time-labels { display: flex; justify-content: space-between; padding: 10px 8px 0; font-size: 12px; color: #A09C94; font-weight: 600; }
.dash__chart-dot { transition: opacity .4s .8s; }

/* DONUT CHARTS */
.dash__donuts { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 32px; flex-wrap: wrap; }
.dash__donut-item { display: flex; flex-direction: column; align-items: center; gap: 8px; flex: 1; min-width: 80px; }
.dash__donut-label { font-size: 12px; font-weight: 600; color: #78716C; text-align: center; }

/* TIME BARS */
.dash__time-bars { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.dash__time-bar-item { display: flex; align-items: center; gap: 12px; }
.dash__time-bar-label { font-size: 12px; font-weight: 600; color: #78716C; width: 120px; flex-shrink: 0; }
.dash__time-bar-track { flex: 1; height: 8px; background: #F0EDE7; border-radius: 4px; overflow: hidden; }
.dash__time-bar-fill { height: 100%; background: #C9A64A; border-radius: 4px; transition: width 1s cubic-bezier(.16,1,.3,1); }
.dash__time-bar-fill--warn { background: #EF4444; }
.dash__time-bar-val { font-size: 14px; font-weight: 800; color: #1A1A1A; width: 40px; text-align: right; }

/* =============================================
   LP SUCCESS CHART (new)
   ============================================= */

.lp-chart { display: flex; flex-direction: column; gap: 14px; }
.lp-chart__row { display: flex; align-items: center; gap: 14px; }
.lp-chart__label { font-size: 13px; font-weight: 600; color: #78716C; width: 180px; flex-shrink: 0; }
.lp-chart__track { flex: 1; height: 28px; background: #F0EDE7; border-radius: 8px; overflow: hidden; }
.lp-chart__fill { height: 100%; border-radius: 8px; transition: width 1.2s cubic-bezier(.16,1,.3,1); }
.lp-chart__fill--gold { background: linear-gradient(90deg, #C9A64A, #E0C868); }
.lp-chart__fill--dark { background: #1A1A1A; }
.lp-chart__val { font-size: 16px; font-weight: 900; color: #1A1A1A; width: 50px; text-align: right; letter-spacing: -0.5px; }

/* =============================================
   SECTIONS
   ============================================= */

.section { padding: 100px 0; }
.section--alt { background: #FAFAF8; }

.section__title {
  font-size: clamp(30px, 4.5vw, 44px);
  font-weight: 900; letter-spacing: -1px;
  line-height: 1.15; margin-bottom: 20px;
}

.section__subtitle { font-size: 18px; color: #C9A64A; font-weight: 700; margin-bottom: 56px; }
.section__text { font-size: 18px; color: #78716C; line-height: 1.7; margin-bottom: 16px; }

/* =============================================
   LP EXPLAINER (Vstupní stránky section)
   ============================================= */

.lp-explainer { margin-top: 56px; }
.lp-explainer__main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lp-explainer__block {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 28px 28px 32px;
  border: 1px solid #EDEAE4;
  transition: transform .4s cubic-bezier(.16,1,.3,1),
              border-color .3s,
              box-shadow .3s;
  overflow: hidden;
  isolation: isolate;
}
.lp-explainer__block::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #C9A64A, #E0C868);
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s cubic-bezier(.16,1,.3,1);
  z-index: 2;
}
.lp-explainer__block:hover {
  border-color: rgba(201, 166, 74, 0.4);
  box-shadow: 0 16px 40px rgba(201, 166, 74, 0.1);
  transform: translateY(-4px);
}
.lp-explainer__block:hover::before { transform: scaleX(1); }

/* Step number — bold, top-right corner */
.lp-explainer__num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -2px;
  color: rgba(201, 166, 74, 0.08);
  line-height: 1;
  font-feature-settings: 'tnum' 1;
  pointer-events: none;
  transition: color .4s;
  z-index: 0;
}
.lp-explainer__block:hover .lp-explainer__num {
  color: rgba(201, 166, 74, 0.14);
}

/* Visual — animated SVG illustration */
.lp-explainer__visual {
  position: relative;
  width: 100%;
  aspect-ratio: 200 / 140;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #FAFAF8 0%, #F5F4F0 100%);
  border-radius: 14px;
  border: 1px solid #EDEAE4;
  overflow: hidden;
}
.lp-explainer__visual svg {
  width: 100%;
  height: 100%;
  display: block;
}

.lp-explainer__title {
  position: relative;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
  color: var(--color-text);
  z-index: 1;
}
.lp-explainer__text {
  position: relative;
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  z-index: 1;
}

/* ───── SVG Visual Animations ───── */

/* Block 1: arrow draws in, CTA pulses, target rotates */
.lpv-1__arrow { opacity: 0; transform-origin: 170px 70px; }
.lp-explainer__block.is-visible .lpv-1__arrow {
  animation: lpv1Arrow .8s cubic-bezier(.22,1,.36,1) .3s forwards;
}
@keyframes lpv1Arrow {
  0% { opacity: 0; transform: translateX(12px) translateY(-6px); }
  100% { opacity: 1; transform: none; }
}
.lpv-1__cta {
  transform-origin: 100px 100px;
  transform-box: fill-box;
  animation: lpv1Pulse 2.4s ease-in-out infinite;
}
@keyframes lpv1Pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.04); }
}
.lpv-1__target {
  transform-origin: 100px 100px;
  transform-box: fill-box;
  animation: lpv1Spin 8s linear infinite;
}
@keyframes lpv1Spin {
  to { transform: rotate(360deg); }
}
.lp-explainer__block:hover .lpv-1__cta { animation-duration: 1.2s; }

/* Block 2: sources light up alternately, pages reveal */
.lpv-2__page { opacity: 0; transform: translateX(12px); }
.lp-explainer__block.is-visible .lpv-2__page--1 {
  animation: lpv2Reveal .5s cubic-bezier(.22,1,.36,1) .2s forwards;
}
.lp-explainer__block.is-visible .lpv-2__page--2 {
  animation: lpv2Reveal .5s cubic-bezier(.22,1,.36,1) .5s forwards;
}
@keyframes lpv2Reveal {
  to { opacity: 1; transform: none; }
}
.lpv-2__line { stroke-dasharray: 3 3; animation: lpv2Dash 1.6s linear infinite; }
@keyframes lpv2Dash {
  to { stroke-dashoffset: -12; }
}
.lpv-2__src--1 { animation: lpv2Highlight1 4s ease-in-out infinite; transform-origin: 28px 32px; transform-box: fill-box; }
.lpv-2__src--2 { animation: lpv2Highlight2 4s ease-in-out infinite; transform-origin: 28px 94px; transform-box: fill-box; }
@keyframes lpv2Highlight1 {
  0%, 40%, 100% { transform: scale(1); filter: brightness(1); }
  20% { transform: scale(1.08); filter: brightness(1.1); }
}
@keyframes lpv2Highlight2 {
  0%, 40%, 100% { transform: scale(1); filter: brightness(1); }
  70% { transform: scale(1.08); filter: brightness(1.1); }
}

/* Block 3: winner appears, A pulses as winner */
.lpv-3__winner { opacity: 0; transform: scale(0.5); transform-origin: 52px 22px; transform-box: fill-box; }
.lp-explainer__block.is-visible .lpv-3__winner {
  animation: lpv3Win .6s cubic-bezier(.22,1.5,.36,1) .8s forwards;
}
@keyframes lpv3Win {
  0%   { opacity: 0; transform: scale(0); }
  60%  { opacity: 1; transform: scale(1.2); }
  100% { opacity: 1; transform: scale(1); }
}
.lpv-3__page--a {
  transform-origin: 52px 60px;
  transform-box: fill-box;
  animation: lpv3WinnerPulse 3s ease-in-out infinite 1.5s;
}
@keyframes lpv3WinnerPulse {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-2px); }
}
.lpv-3__vs {
  transform-origin: 100px 60px;
  transform-box: fill-box;
  animation: lpv3VsSpin 12s linear infinite;
}
@keyframes lpv3VsSpin {
  to { transform: rotate(360deg); }
}
.lpv-3__pct--a rect, .lpv-3__pct--a text { transform-origin: center; transform-box: fill-box; }
.lpv-3__pct--a { animation: lpv3PctA 2.8s ease-in-out infinite 1.5s; transform-origin: 52px 108px; transform-box: fill-box; }
@keyframes lpv3PctA {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.05); }
}

@media (prefers-reduced-motion: reduce) {
  .lpv-1__arrow, .lpv-1__cta, .lpv-1__target,
  .lpv-2__page, .lpv-2__line, .lpv-2__src--1, .lpv-2__src--2,
  .lpv-3__winner, .lpv-3__page--a, .lpv-3__vs, .lpv-3__pct--a {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 900px) {
  .lp-explainer__main { grid-template-columns: 1fr; gap: 18px; max-width: 520px; margin: 0 auto; }
  .lp-explainer__block { padding: 24px 22px 28px; }
  .lp-explainer__num { font-size: 44px; top: 12px; right: 16px; }
}

/* =============================================
   SERVICES GRID
   ============================================= */

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

.service-card {
  background: #fff; border-radius: 20px; padding: 28px;
  border: 1px solid #EDEAE4;
  transition: all .3s cubic-bezier(.16,1,.3,1);
}
.service-card:hover { border-color: #C9A64A; box-shadow: 0 8px 30px rgba(201,166,74,.08); transform: translateY(-3px); }

.service-card__icon {
  width: 64px; height: 64px; border-radius: 14px;
  background: #FAF7F0; display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.service-card__title { font-size: 17px; font-weight: 800; margin-bottom: 6px; }
.service-card__text { font-size: 14px; color: #78716C; line-height: 1.6; }

/* =============================================
   FEATURES
   ============================================= */

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

.feature {
  background: #fff; border-radius: 20px; padding: 32px;
  border: 1px solid #EDEAE4;
  transition: all .3s cubic-bezier(.16,1,.3,1);
  position: relative; overflow: hidden;
  position: relative; overflow: hidden;
}
.feature::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: #1A1A1A; transform: scaleX(0); transform-origin: left;
  transition: transform .3s cubic-bezier(.16,1,.3,1);
}
.feature:hover::before { transform: scaleX(1); }
.feature:hover { border-color: #D6D3CC; box-shadow: 0 8px 30px rgba(0,0,0,.05); transform: translateY(-3px); }

.feature__icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: #F5F3EE; display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; color: #1A1A1A;
}

.feature__title { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.feature__text { font-size: 15px; color: #78716C; line-height: 1.6; }

/* =============================================
   STEPS
   ============================================= */

.steps { display: flex; flex-direction: column; gap: 0; margin-top: 48px; position: relative; }
.steps::before {
  content: ''; position: absolute; left: 23px; top: 48px; bottom: 48px;
  width: 2px; background: #E5E2DC;
}

.step { display: flex; align-items: flex-start; gap: 24px; padding: 20px 0; position: relative; }

.step__num {
  width: 48px; height: 48px; border-radius: 50%;
  background: #1A1A1A; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 900; flex-shrink: 0;
  position: relative; z-index: 1;
}

.step__title { font-size: 19px; font-weight: 800; margin-bottom: 6px; }
.step__text { font-size: 16px; color: #78716C; line-height: 1.6; }

/* =============================================
   PRICE
   ============================================= */

.price-card {
  background: #fff; border-radius: 28px; padding: 56px 44px;
  border: 2px solid #EDEAE4; margin-top: 40px; text-align: center;
  position: relative; overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.04);
}
.price-card__label { font-size: 13px; font-weight: 700; color: #A09C94; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; }
.price-card__amount { font-size: 56px; font-weight: 900; color: #1A1A1A; letter-spacing: -3px; }
.price-card__period { font-size: 20px; font-weight: 500; color: #A09C94; letter-spacing: 0; }
.price-card__setup { font-size: 15px; color: #78716C; margin-top: 8px; margin-bottom: 36px; }
.price-card__list { text-align: left; max-width: 340px; margin: 0 auto 36px; display: flex; flex-direction: column; gap: 14px; }
.price-card__list li { display: flex; align-items: center; gap: 12px; font-size: 16px; font-weight: 500; color: #1A1A1A; }
.price-card__note { margin-top: 16px; font-size: 14px; color: #A09C94; font-weight: 500; }

/* =============================================
   AUDIENCE
   ============================================= */

.audience { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.audience__item { background: #fff; border-radius: 20px; padding: 32px 24px; border: 1px solid #EDEAE4; text-align: center; transition: all .3s cubic-bezier(.16,1,.3,1); }
.audience__item:hover { border-color: #C9A64A; box-shadow: 0 8px 30px rgba(201,166,74,.08); transform: translateY(-3px); }
.audience__icon { width: 72px; height: 72px; border-radius: 16px; background: #FAF7F0; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.audience__title { font-size: 17px; font-weight: 800; margin-bottom: 6px; }
.audience__text { font-size: 14px; color: #78716C; line-height: 1.5; }

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

.faq { margin-top: 40px; }
.faq__item { border-bottom: 1px solid #F0EDE7; }
.faq__q {
  padding: 22px 0; font-size: 17px; font-weight: 700; cursor: pointer;
  list-style: none; display: flex; align-items: center; justify-content: space-between;
  transition: color .2s;
}
.faq__q:hover { color: #C9A64A; }
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after { content: '+'; font-size: 22px; color: #C4C0B8; font-weight: 300; transition: transform .2s; }
details[open] .faq__q::after { content: '\2212'; color: #C9A64A; }
.faq__a { padding: 0 0 22px; font-size: 16px; color: #78716C; line-height: 1.7; }

/* =============================================
   FORM
   ============================================= */

.form { text-align: left; max-width: 520px; margin: 0 auto; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form__field { margin-bottom: 16px; }
.form__label { display: block; font-size: 14px; font-weight: 600; color: #78716C; margin-bottom: 8px; }
.form__input {
  width: 100%; padding: 16px 18px;
  border: 1.5px solid #EDEAE4; border-radius: 14px;
  font-size: 16px; font-family: inherit; color: #1A1A1A;
  background: #FAFAF8; outline: none;
  transition: all .25s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.form__input:focus { border-color: #1A1A1A; background: #fff; box-shadow: 0 0 0 3px rgba(26,26,26,.06); }

/* Form success animation */
.form-msg { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 24px; border-radius: 16px; font-size: 16px; font-weight: 600; }
.form-msg--ok { background: #F0FDF4; color: #166534; border: 1.5px solid #BBF7D0; }
.form-msg--err { background: #FEF2F2; color: #991B1B; border: 1.5px solid #FECACA; }

.form-msg--animated {
  flex-direction: column; gap: 16px; padding: 48px 32px;
  animation: formFadeIn .6s cubic-bezier(.16,1,.3,1);
}
.form-msg__check { animation: formBounce .6s .2s cubic-bezier(.16,1,.3,1) both; }
.form-msg__title { font-size: 28px; font-weight: 900; color: #1A1A1A; animation: formFadeIn .5s .4s both; }
.form-msg__sub { font-size: 17px; color: #78716C; font-weight: 500; animation: formFadeIn .5s .6s both; }

.form-msg__circle {
  stroke-dasharray: 138;
  stroke-dashoffset: 138;
  animation: formCircle .8s .3s cubic-bezier(.16,1,.3,1) forwards;
}
.form-msg__tick {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: formTick .4s .8s cubic-bezier(.16,1,.3,1) forwards;
}

@keyframes formFadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes formBounce { from { opacity: 0; transform: scale(.5); } to { opacity: 1; transform: scale(1); } }
@keyframes formCircle { to { stroke-dashoffset: 0; } }
@keyframes formTick { to { stroke-dashoffset: 0; } }

/* =============================================
   WHATSAPP
   ============================================= */

.whatsapp { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-top: 32px; padding-top: 32px; border-top: 1px solid #F0EDE7; }
.whatsapp__text { font-size: 15px; color: #A09C94; font-weight: 500; }
.whatsapp__btn { display: inline-flex; align-items: center; gap: 10px; font-size: 17px; font-weight: 700; color: #25D366; padding: 14px 28px; border-radius: 16px; background: #F0FDF4; border: 1.5px solid #BBF7D0; transition: all .2s; }
.whatsapp__btn:hover { background: #DCFCE7; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(37,211,102,.12); }

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

.cookie-bar {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  z-index: 9999;
  background: #fff;
  border: 1px solid #EDEAE4;
  border-radius: 18px;
  padding: 16px 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,.1), 0 2px 8px rgba(0,0,0,.04);
  display: flex; align-items: center; gap: 16px;
  max-width: 560px; width: calc(100% - 32px);
  animation: cookieSlideUp .5s cubic-bezier(.16,1,.3,1);
  backdrop-filter: blur(12px);
}

.cookie-bar[hidden] { display: none; }

.cookie-bar__text { font-size: 13px; color: #78716C; line-height: 1.5; flex: 1; }
.cookie-bar__text strong { color: #1A1A1A; font-weight: 700; }

.cookie-bar__actions { display: flex; gap: 8px; flex-shrink: 0; }

.cookie-bar__btn {
  font-family: inherit; font-size: 13px; font-weight: 700;
  padding: 10px 18px; border-radius: 12px;
  cursor: pointer; border: none;
  transition: all .2s cubic-bezier(.16,1,.3,1);
}
.cookie-bar__btn--accept {
  background: #1A1A1A; color: #fff;
}
.cookie-bar__btn--accept:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,.15); }
.cookie-bar__btn--settings {
  background: #F5F3EE; color: #78716C;
}
.cookie-bar__btn--settings:hover { background: #EDEAE4; color: #1A1A1A; }
.cookie-bar__btn--reject {
  background: transparent; color: #A09C94;
  padding: 10px 12px;
}
.cookie-bar__btn--reject:hover { color: #1A1A1A; }

/* Cookie settings panel */
.cookie-settings {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  z-index: 10000;
  background: #fff;
  border: 1px solid #EDEAE4;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12), 0 2px 8px rgba(0,0,0,.04);
  max-width: 420px; width: calc(100% - 32px);
  animation: cookieSlideUp .4s cubic-bezier(.16,1,.3,1);
}
.cookie-settings[hidden] { display: none; }

.cookie-settings__title { font-size: 17px; font-weight: 800; margin-bottom: 4px; }
.cookie-settings__desc { font-size: 13px; color: #78716C; margin-bottom: 20px; line-height: 1.5; }

.cookie-settings__row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
  border-top: 1px solid #F0EDE7;
}
.cookie-settings__label { font-size: 14px; font-weight: 700; }
.cookie-settings__sub { font-size: 12px; color: #A09C94; font-weight: 400; }

/* Toggle switch */
.cookie-toggle { position: relative; width: 44px; height: 24px; flex-shrink: 0; }
.cookie-toggle input { opacity: 0; width: 0; height: 0; position: absolute; }
.cookie-toggle__track {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: #E5E2DC; border-radius: 12px;
  transition: background .2s;
  cursor: pointer;
}
.cookie-toggle__track::after {
  content: ''; position: absolute;
  width: 18px; height: 18px; border-radius: 50%;
  background: #fff; top: 3px; left: 3px;
  transition: transform .2s cubic-bezier(.16,1,.3,1);
  box-shadow: 0 1px 3px rgba(0,0,0,.15);
}
.cookie-toggle input:checked + .cookie-toggle__track { background: #1A1A1A; }
.cookie-toggle input:checked + .cookie-toggle__track::after { transform: translateX(20px); }
.cookie-toggle input:disabled + .cookie-toggle__track { opacity: .5; cursor: default; }

.cookie-settings__actions { display: flex; gap: 8px; margin-top: 20px; }
.cookie-settings__actions .cookie-bar__btn { flex: 1; text-align: center; }

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

/* =============================================
   DAXLYZE INTRO
   ============================================= */

/* Daxlyze intro */
.daxlyze-intro {
  text-align: center;
  margin-bottom: 48px;
}

.daxlyze-intro__overline {
  font-size: 13px;
  font-weight: 700;
  color: #C9A64A;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.daxlyze-intro__title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.15;
  color: #1A1A1A;
  margin-bottom: 16px;
}

.daxlyze-intro__text {
  font-size: 18px;
  color: #78716C;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 20px;
}

.daxlyze-intro__link {
  font-size: 15px;
  font-weight: 700;
  color: #C9A64A;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .2s;
}

.daxlyze-intro__link:hover {
  color: #A8873A;
}

/* =============================================
   DAXLYZE PILLS
   ============================================= */

/* Daxlyze pills */
.daxlyze-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.daxlyze-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(201, 166, 74, 0.08);
  border: 1px solid rgba(201, 166, 74, 0.18);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: #78716C;
}

.daxlyze-pill svg {
  flex-shrink: 0;
}

/* =============================================
   THANK YOU PAGE
   ============================================= */

/* Thank you page */
.thankyou {
  padding: 160px 0 100px;
  text-align: center;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.thankyou__icon {
  margin-bottom: 32px;
}

.thankyou__title {
  font-size: clamp(30px, 5vw, 44px);
  font-weight: 900;
  letter-spacing: -1px;
  color: #1A1A1A;
  margin-bottom: 12px;
}

.thankyou__sub {
  font-size: 20px;
  color: #78716C;
  margin-bottom: 36px;
  line-height: 1.7;
}

.thankyou__note {
  font-size: 15px;
  color: #A09C94;
  margin-top: 24px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

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

.footer { padding: 40px 0; border-top: 1px solid #F0EDE7; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer__logo { font-size: 12px; font-weight: 800; letter-spacing: 4px; color: #78716C; }
.footer__copy { font-size: 13px; color: #57534E; }
.footer__link { color: #57534E; text-decoration: underline; text-decoration-color: rgba(87,83,78,.3); text-underline-offset: 3px; transition: color .2s, text-decoration-color .2s; }
.footer__link:hover { color: var(--color-accent); text-decoration-color: var(--color-accent); }

/* Language switcher — crawlable links (critical for multilingual SEO) */
.footer__lang {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__lang-label {
  font-size: 13px;
  color: #57534E;
  font-weight: 500;
}
.footer__lang-list {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer__lang-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  padding: 6px 10px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #78716C;
  background: transparent;
  border: 1px solid transparent;
  text-decoration: none;
  transition: color .2s, background .2s, border-color .2s;
}
.footer__lang-link:hover,
.footer__lang-link:focus-visible {
  color: var(--color-accent);
  border-color: rgba(201,166,74,.3);
  background: rgba(201,166,74,.06);
  outline: none;
}
.footer__lang-link.is-current {
  color: var(--color-accent);
  background: rgba(201,166,74,.1);
  border-color: rgba(201,166,74,.25);
  cursor: default;
}
.footer__lang-link.is-current:hover { background: rgba(201,166,74,.1); }

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

@media (max-width: 768px) {
  .hero { padding: 130px 0 70px; }
  .hero__title { font-size: 40px; letter-spacing: -1px; }
  .hero__sub { font-size: 17px; }
  .proof__inner { flex-direction: column; gap: 28px; }
  .proof__divider { width: 48px; height: 1px; }
  .proof__num { font-size: 32px; }
  .dash__row { grid-template-columns: 1fr; gap: 12px; }
  .dash__stat-num { font-size: 24px; }
  .dash__body { padding: 20px; }
  .features { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .audience { grid-template-columns: 1fr 1fr; }
  .dash__donuts { gap: 12px; }
  .dash__time-bar-label { width: 90px; font-size: 11px; }
  .lp-chart__label { width: 120px; font-size: 11px; }
  .lp-chart__track { height: 20px; }
  .form__row { grid-template-columns: 1fr; gap: 0; }
  .section { padding: 72px 0; }
  .price-card { padding: 36px 28px; }
  .price-card__amount { font-size: 40px; }
  .footer__inner { flex-direction: column; gap: 8px; text-align: center; }
  .steps::before { display: none; }
  .cookie-bar { flex-direction: column; text-align: center; gap: 12px; bottom: 12px; }
  .cookie-bar__actions { width: 100%; justify-content: center; }
  .daxlyze-intro__text { font-size: 16px; }
  .daxlyze-pills { gap: 8px; }
  .daxlyze-pill { padding: 8px 16px; font-size: 13px; }
  .thankyou { padding: 130px 0 70px; min-height: 60vh; }
  .thankyou__sub { font-size: 18px; }
}

@media (max-width: 480px) {
  .hero { padding: 110px 0 60px; }
  .hero__title { font-size: 34px; letter-spacing: -.8px; }
  .audience { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .hero__sub { font-size: 16px; }
  .btn--lg { font-size: 16px; padding: 16px 28px; }
  .nav__inner { height: 56px; }
  .nav__logo { font-size: 11px; letter-spacing: 3px; }
  .section__title { font-size: 26px; }
  .lp-chart__row { flex-wrap: wrap; }
  .lp-chart__label { width: 100%; }
  .daxlyze-intro__title { font-size: 24px; }
  .daxlyze-pills { flex-direction: column; align-items: center; }
  .thankyou { padding: 110px 0 60px; }
  .thankyou__title { font-size: 28px; }
  .thankyou__sub { font-size: 16px; }
  .footer__lang { flex-wrap: wrap; justify-content: center; }
}

/* =============================================
   GLASSMORPHISM & MODERN EFFECTS
   ============================================= */

/* Hero gradient mesh background */
.hero {
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(201,166,74,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 90% 20%, rgba(201,166,74,0.04) 0%, transparent 50%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(201,166,74,0.03) 0%, transparent 50%);
}

/* Glass hero badge */
.hero__badge {
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: rgba(201,166,74,0.2);
  box-shadow: 0 4px 24px rgba(0,0,0,0.03), inset 0 1px 0 rgba(255,255,255,0.6);
}

/* Section alt gradient background */
.section--alt {
  background:
    radial-gradient(ellipse 60% 50% at 0% 0%, rgba(201,166,74,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 100% 100%, rgba(201,166,74,0.03) 0%, transparent 50%),
    #FAFAF8;
}

/* Glass proof bar */
.proof {
  background: rgba(250,250,248,0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  position: relative;
}
.proof::before,
.proof::after {
  content: '';
  position: absolute;
  left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,166,74,0.25), transparent);
}
.proof::before { top: 0; }
.proof::after { bottom: 0; }

/* Glass dashboard card */
.visual__card {
  border-color: rgba(201,166,74,0.12);
  box-shadow:
    0 2px 4px rgba(0,0,0,.02),
    0 8px 24px rgba(0,0,0,.04),
    0 24px 64px rgba(0,0,0,.06),
    0 0 0 1px rgba(201,166,74,0.05);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.visual__card:hover {
  box-shadow:
    0 2px 4px rgba(0,0,0,.02),
    0 12px 32px rgba(201,166,74,.06),
    0 32px 80px rgba(0,0,0,.08),
    0 0 0 1px rgba(201,166,74,0.1);
}

/* Glass dashboard stats */
.dash__stat {
  background: rgba(250,250,248,0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: rgba(201,166,74,0.08);
}
.dash__stat:hover { border-color: rgba(201,166,74,0.2); }

.dash__time-chart {
  background: rgba(250,250,248,0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: rgba(201,166,74,0.08);
}

/* Glass feature cards */
.feature {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: rgba(237,234,228,0.8);
  box-shadow: 0 2px 8px rgba(0,0,0,0.02), 0 8px 32px rgba(0,0,0,0.03);
}
.feature:hover {
  background: rgba(255,255,255,0.9);
  border-color: rgba(201,166,74,0.2);
  box-shadow: 0 4px 16px rgba(201,166,74,0.06), 0 16px 48px rgba(0,0,0,0.06);
}

/* Glass service cards */
.service-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: rgba(237,234,228,0.8);
  box-shadow: 0 2px 8px rgba(0,0,0,0.02), 0 8px 32px rgba(0,0,0,0.03);
}
.service-card:hover {
  background: rgba(255,255,255,0.9);
  border-color: rgba(201,166,74,0.3);
  box-shadow: 0 4px 16px rgba(201,166,74,0.08), 0 16px 48px rgba(0,0,0,0.06);
}

/* Glass explainer blocks */
.lp-explainer__block {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: rgba(237,234,228,0.8);
  box-shadow: 0 2px 8px rgba(0,0,0,0.02), 0 8px 32px rgba(0,0,0,0.03);
}
.lp-explainer__block:hover {
  background: rgba(255,255,255,0.9);
  box-shadow: 0 4px 16px rgba(201,166,74,0.06), 0 16px 48px rgba(0,0,0,0.06);
}

/* Glass audience cards */
.audience__item {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: rgba(237,234,228,0.8);
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}
.audience__item:hover {
  background: rgba(255,255,255,0.9);
  border-color: rgba(201,166,74,0.3);
  box-shadow: 0 4px 16px rgba(201,166,74,0.08), 0 16px 48px rgba(0,0,0,0.06);
}

/* Glass price card */
.price-card {
  background: rgba(255,255,255,0.7);
  border-color: rgba(201,166,74,0.18);
  box-shadow: 0 0 0 1px rgba(201,166,74,0.05), 0 4px 16px rgba(201,166,74,0.06), 0 16px 64px rgba(0,0,0,0.06);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

/* Glass step numbers */
.step__num {
  background: rgba(26,26,26,0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* Glass icon backgrounds */
.feature__icon {
  background: rgba(245,243,238,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(201,166,74,0.1);
}
.service-card__icon {
  background: rgba(250,247,240,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(201,166,74,0.1);
}
.lp-explainer__icon {
  background: rgba(250,247,240,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(201,166,74,0.1);
}
.audience__icon {
  background: rgba(250,247,240,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(201,166,74,0.1);
}

/* Glass nav enhancement */
.nav {
  background: rgba(255,255,255,0.65);
  border-bottom-color: rgba(201,166,74,0.08);
}

/* Glass form inputs */
.form__input {
  background: rgba(250,250,248,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-color: rgba(237,234,228,0.8);
}
.form__input:focus {
  box-shadow: 0 0 0 3px rgba(201,166,74,0.08), 0 4px 16px rgba(0,0,0,0.04);
}

/* Glass cookie bar */
.cookie-bar {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-color: rgba(201,166,74,0.1);
}

/* Glass FAQ borders */
.faq__item { border-bottom-color: rgba(201,166,74,0.1); }

/* Button shimmer effect */
.btn--primary {
  position: relative;
  overflow: hidden;
}
.btn--primary::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(255,255,255,0.08) 45%,
    rgba(255,255,255,0.15) 50%,
    rgba(255,255,255,0.08) 55%,
    transparent 100%
  );
  transform: rotate(25deg) translateX(-150%);
  transition: transform 0.65s cubic-bezier(.16,1,.3,1);
  pointer-events: none;
}
.btn--primary:hover::after {
  transform: rotate(25deg) translateX(50%);
}
.btn--primary:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.15), 0 0 60px rgba(201,166,74,0.06);
}

/* Floating gradient orbs in hero */
.hero .container::before {
  content: '';
  position: absolute;
  top: -120px; left: -180px;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(201,166,74,0.08) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  animation: floatOrb 18s ease-in-out infinite;
}
.hero .container::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -150px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(201,166,74,0.06) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  animation: floatOrb 22s ease-in-out infinite reverse;
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -25px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

/* Disable floating orbs on mobile for performance */
@media (max-width: 768px) {
  .hero .container::before,
  .hero .container::after {
    display: none;
  }
}

/* ═══════════════════════════════════════════
   ANIMACE — scroll reveal + looping ikony
   ═══════════════════════════════════════════ */

/* ─── Scroll reveal ─── */
.jl-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.jl-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delay pro child elementy */
.jl-stagger > .jl-reveal:nth-child(1) { transition-delay: 0.05s; }
.jl-stagger > .jl-reveal:nth-child(2) { transition-delay: 0.12s; }
.jl-stagger > .jl-reveal:nth-child(3) { transition-delay: 0.19s; }
.jl-stagger > .jl-reveal:nth-child(4) { transition-delay: 0.26s; }
.jl-stagger > .jl-reveal:nth-child(5) { transition-delay: 0.33s; }
.jl-stagger > .jl-reveal:nth-child(6) { transition-delay: 0.40s; }
.jl-stagger > .jl-reveal:nth-child(7) { transition-delay: 0.47s; }
.jl-stagger > .jl-reveal:nth-child(8) { transition-delay: 0.54s; }

/* ─── SVG preview v kartach ─── */
.service-card__preview,
.feature__preview {
  margin-bottom: 16px;
  border-radius: 10px;
  overflow: hidden;
}

.sp-svg { width: 100%; height: auto; display: block; }

/* Service 1: Landing pages -- bloky fade in */
.sp-block { opacity: 0; }
.sp-b1 { animation: spFadeIn 0.6s ease 0.3s both, spFloat 4s ease 1s infinite; }
.sp-b2 { animation: spFadeIn 0.6s ease 0.6s both, spFloat 4.5s ease 1.3s infinite; }

/* Service 2: Community -- pulzujici propojeni */
.sp-person { animation: spPulse 3s ease-in-out infinite; }
.sp-p2 { animation-delay: 0.5s; }
.sp-p3 { animation-delay: 1s; }
.sp-conn { animation: spConnPulse 2.5s ease-in-out infinite; }
.sp-c2 { animation-delay: 0.4s; }
.sp-c3 { animation-delay: 0.8s; }
.sp-pulse-ring { animation: spRingPulse 3s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }

/* Service 3: Payments -- checkmark draw */
.sp-checkmark { stroke-dasharray: 30; stroke-dashoffset: 30; animation: spDraw 0.8s ease 0.5s both, spCheckLoop 4s ease 2s infinite; }
.sp-check-circle { animation: spPulse 3s ease-in-out 1s infinite; }

/* Service 4: CRM -- karty slide */
.sp-crm-card { animation: spSlide 3.5s ease-in-out infinite; }
.sp-crm2 { animation-delay: 0.3s; }
.sp-crm3 { animation-delay: 0.6s; }

/* Service 5: Analytics -- chart draw */
.sp-chart-line { stroke-dasharray: 200; stroke-dashoffset: 200; animation: spDraw 2s ease 0.5s both, spDrawLoop 5s ease 3s infinite; }
.sp-chart-area { opacity: 0; animation: spFadeIn 1s ease 2s both; }
.sp-chart-dot { opacity: 0; animation: spFadeIn 0.3s ease 2s both, spDotPulse 2s ease 2.5s infinite; transform-origin: center; transform-box: fill-box; }

/* Service 6: Email -- obalky letici */
.sp-envelope { animation: spFloat 3.5s ease-in-out infinite; }
.sp-notif { animation: spPulse 2s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }

/* Feature 1: Cursor click */
.sp-cursor-move { animation: spCursorMove 4s ease-in-out infinite; }
.sp-click-ring { animation: spClickRing 4s ease infinite; transform-origin: center; transform-box: fill-box; }
.sp-cta-btn { animation: spPulse 3s ease-in-out infinite; }

/* Feature 3: Pencil edit */
.sp-pencil { animation: spPencilMove 4s ease-in-out infinite; }
.sp-edit-highlight { animation: spPulse 3s ease-in-out 0.5s infinite; }

/* Feature 4: A/B test */
.sp-ab-a { animation: spAbFade 3s ease-in-out infinite; }
.sp-ab-b { animation: spAbFade 3s ease-in-out 1.5s infinite; }
.sp-ab-dot { animation: spAbSwitch 3s ease-in-out infinite; }

/* Feature 5: Phone float */
.sp-phone { animation: spFloat 4s ease-in-out infinite; }

/* Feature 6: Mails float */
.sp-mail1 { animation: spFloat 3.5s ease-in-out infinite; }
.sp-mail2 { animation: spFloat 4s ease-in-out 0.5s infinite; }
.sp-mail3 { animation: spFloat 4.5s ease-in-out 1s infinite; }

/* Feature 7: Lock + server */
.sp-lock-shackle { animation: spLockBounce 4s ease-in-out infinite; transform-origin: center top; transform-box: fill-box; }
.sp-shield-pulse { animation: spRingPulse 3s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
.sp-server-light { animation: spBlink 2s ease-in-out infinite; }

/* Feature 8: Donut + bars */
.sp-donut { animation: spDonutFill 2s ease 0.5s both, spDonutLoop 5s ease 3s infinite; }
.sp-bar { transform-origin: bottom; transform-box: fill-box; }
.sp-bar1 { animation: spBarGrow 0.5s ease 0.8s both, spBarBreathe 4s ease 2s infinite; }
.sp-bar2 { animation: spBarGrow 0.5s ease 1.1s both, spBarBreathe 4s ease 2.3s infinite; }
.sp-bar3 { animation: spBarGrow 0.5s ease 1.4s both, spBarBreathe 4s ease 2.6s infinite; }

/* ─── SVG animace keyframes ─── */
@keyframes spFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes spFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
@keyframes spPulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.7; transform: scale(1.06); } }
@keyframes spDraw { to { stroke-dashoffset: 0; } }
@keyframes spDrawLoop { 0%, 100% { stroke-dashoffset: 0; } 45% { stroke-dashoffset: -200; } 55% { stroke-dashoffset: 200; } }
@keyframes spCheckLoop { 0%, 100% { stroke-dashoffset: 0; } 40% { stroke-dashoffset: -30; } 50% { stroke-dashoffset: 30; } }
@keyframes spRingPulse { 0%, 100% { opacity: 0.2; transform: scale(1); } 50% { opacity: 0; transform: scale(1.6); } }
@keyframes spConnPulse { 0%, 100% { opacity: 0.2; } 50% { opacity: 0.5; } }
@keyframes spSlide { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(4px); } }
@keyframes spDotPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.4); opacity: 0.6; } }
@keyframes spCursorMove { 0%, 100% { transform: translate(0, 0); } 30% { transform: translate(-25px, 8px); } 60% { transform: translate(10px, -5px); } }
@keyframes spClickRing { 0%, 70%, 100% { transform: scale(1); opacity: 0; } 30% { transform: scale(1); opacity: 1; } 45% { transform: scale(2.5); opacity: 0; } }
@keyframes spPencilMove { 0%, 100% { transform: translate(0, 0); } 25% { transform: translate(-8px, 6px); } 50% { transform: translate(-14px, 10px); } 75% { transform: translate(-6px, 4px); } }
@keyframes spAbFade { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
@keyframes spAbSwitch { 0%, 45% { transform: translateX(-8px); fill: #C9A64A; } 55%, 100% { transform: translateX(8px); fill: #22C55E; } }
@keyframes spLockBounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }
@keyframes spBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
@keyframes spDonutFill { from { stroke-dasharray: 0 999; } to { stroke-dasharray: 110 999; } }
@keyframes spDonutLoop { 0%, 100% { stroke-dasharray: 110 999; } 50% { stroke-dasharray: 90 999; } }
@keyframes spBarGrow { from { transform: scaleY(0); } to { transform: scaleY(1); } }
@keyframes spBarBreathe { 0%, 100% { transform: scaleY(1); } 50% { transform: scaleY(0.9); } }

/* ─── Ikony KRESLENI pri scrollu ─── */
@keyframes jlGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,166,74,0); }
  50% { box-shadow: 0 0 24px 6px rgba(201,166,74,0.15); }
}

/* SVG ikony -- stroke draw animace */
.jl-draw-icon svg path,
.jl-draw-icon svg line,
.jl-draw-icon svg polyline,
.jl-draw-icon svg rect,
.jl-draw-icon svg circle {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  transition: stroke-dashoffset 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.jl-draw-icon.is-drawn svg path,
.jl-draw-icon.is-drawn svg line,
.jl-draw-icon.is-drawn svg polyline,
.jl-draw-icon.is-drawn svg rect,
.jl-draw-icon.is-drawn svg circle {
  stroke-dashoffset: 0;
}

/* Stagger delay pro ikony v kartach */
.jl-stagger .jl-draw-icon:nth-child(1) svg * { transition-delay: 0.1s; }
.jl-stagger .jl-reveal:nth-child(2) .jl-draw-icon svg * { transition-delay: 0.2s; }
.jl-stagger .jl-reveal:nth-child(3) .jl-draw-icon svg * { transition-delay: 0.3s; }
.jl-stagger .jl-reveal:nth-child(4) .jl-draw-icon svg * { transition-delay: 0.4s; }
.jl-stagger .jl-reveal:nth-child(5) .jl-draw-icon svg * { transition-delay: 0.5s; }
.jl-stagger .jl-reveal:nth-child(6) .jl-draw-icon svg * { transition-delay: 0.6s; }
.jl-stagger .jl-reveal:nth-child(7) .jl-draw-icon svg * { transition-delay: 0.7s; }
.jl-stagger .jl-reveal:nth-child(8) .jl-draw-icon svg * { transition-delay: 0.8s; }

/* Po nakresleni -- jemne plovani (looping) */
.jl-draw-icon.is-drawn svg {
  animation: jlIconFloat 4s ease-in-out 1.5s infinite;
}

@keyframes jlIconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* Step cisla -- glow pulse */
.step__num {
  animation: jlGlow 3s ease-in-out infinite;
}
.step:nth-child(2) .step__num { animation-delay: 0.5s; }
.step:nth-child(3) .step__num { animation-delay: 1s; }

/* Feature karty -- gradient glow na hover */
.feature::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(201,166,74,0.15), rgba(201,166,74,0.05), transparent 60%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.feature:hover::after { opacity: 1; }

/* Service karty -- gradient glow na hover */
.service-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(201,166,74,0.12), transparent 50%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.service-card { position: relative; }
.service-card:hover::after { opacity: 1; }

/* Audience karty -- glow */
.audience__item::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(201,166,74,0.12), transparent 50%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.audience__item { position: relative; }
.audience__item:hover::after { opacity: 1; }

/* Pricing karta -- shine efekt */
.price-card {
  position: relative;
  overflow: hidden;
}

.price-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(201,166,74,0.04) 45%,
    rgba(201,166,74,0.08) 50%,
    rgba(201,166,74,0.04) 55%,
    transparent 100%
  );
  transform: rotate(30deg) translateX(-100%);
  animation: jlShine 6s ease-in-out 2s infinite;
  pointer-events: none;
}

@keyframes jlShine {
  0%, 100% { transform: rotate(30deg) translateX(-100%); }
  40% { transform: rotate(30deg) translateX(100%); }
  41% { transform: rotate(30deg) translateX(-100%); }
}

/* Daxlyze pills -- jemne plovani */
.daxlyze-pill { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.daxlyze-pill:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(201,166,74,0.12); }
.daxlyze-pill:nth-child(1) { animation: jlFloat 4s ease-in-out infinite; }
.daxlyze-pill:nth-child(2) { animation: jlFloat 4.5s ease-in-out 0.3s infinite; }
.daxlyze-pill:nth-child(3) { animation: jlFloat 3.5s ease-in-out 0.6s infinite; }
.daxlyze-pill:nth-child(4) { animation: jlFloat 4s ease-in-out 0.9s infinite; }

/* Proof cisla -- jemne pulzovani po countup */
.proof__num { transition: transform 0.3s ease; }
.proof__item:hover .proof__num { transform: scale(1.05); }

/* WhatsApp button -- bounce */
.whatsapp__btn svg { animation: jlBounce 3s ease-in-out infinite; }

/* FAQ -- jemny slide na otevreni */
.faq__a {
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
}

/* ─── Reduced motion ─── */
@media (prefers-reduced-motion: reduce) {
  .jl-reveal { opacity: 1; transform: none; transition: none; }
  .jl-draw-icon svg path,
  .jl-draw-icon svg line,
  .jl-draw-icon svg polyline,
  .jl-draw-icon svg rect,
  .jl-draw-icon svg circle { stroke-dashoffset: 0 !important; transition: none !important; }
  .jl-draw-icon.is-drawn svg,
  .daxlyze-pill,
  .whatsapp__btn svg,
  .step__num,
  .price-card::after,
  .sp-svg * { animation: none !important; }
  .sp-block, .sp-chart-area, .sp-chart-dot, .sp-donut { opacity: 1 !important; stroke-dashoffset: 0 !important; }
  .sp-bar { transform: scaleY(1) !important; }
}

/* Focus visible — keyboard accessibility */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}
:focus:not(:focus-visible) {
  outline: none;
}
.btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(201, 166, 74, 0.2);
}
.nav__cta:focus-visible,
.nav__logo:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
  border-radius: 4px;
}
.form__input:focus-visible {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(201, 166, 74, 0.15);
}
.footer__lang-select:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* ─── LP Compare: A/B example cards ─── */
.lp-compare {
  margin-top: 64px;
  text-align: center;
}
.lp-compare__title {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--color-primary);
  margin-bottom: 8px;
}
.lp-compare__text {
  font-size: 15px;
  color: var(--color-text-secondary);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.lp-compare__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 780px;
  margin: 0 auto;
}
.lp-compare__card {
  background: var(--color-bg);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 0;
  cursor: pointer;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s, border-color 0.25s;
  font-family: inherit;
  display: flex;
  flex-direction: column;
}
.lp-compare__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}
.lp-compare__card--good:hover {
  border-color: var(--color-accent);
}
.lp-compare__card--bad:hover {
  border-color: var(--color-danger);
}
.lp-compare__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.lp-compare__badge--good {
  background: var(--color-accent);
  color: #fff;
}
.lp-compare__badge--bad {
  background: var(--color-danger);
  color: #fff;
}
.lp-compare__preview {
  width: 100%;
  padding: 20px 16px 12px;
  display: flex;
  justify-content: center;
}
.lp-compare__preview svg {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.lp-compare__info {
  padding: 0 20px 8px;
  flex: 1;
}
.lp-compare__card-title {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 4px;
}
.lp-compare__card-title--good {
  color: var(--color-accent);
}
.lp-compare__card-title--bad {
  color: var(--color-danger);
}
.lp-compare__card-text {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.5;
}
.lp-compare__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 12px 20px 20px;
  padding: 10px 0;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 700;
  transition: background 0.2s, color 0.2s;
}
.lp-compare__btn--good {
  background: rgba(201, 166, 74, 0.1);
  color: var(--color-accent);
}
.lp-compare__card--good:hover .lp-compare__btn--good {
  background: var(--color-accent);
  color: #fff;
}
.lp-compare__btn--bad {
  background: rgba(239, 68, 68, 0.08);
  color: var(--color-danger);
}
.lp-compare__card--bad:hover .lp-compare__btn--bad {
  background: var(--color-danger);
  color: #fff;
}
.lp-compare__note {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 20px;
}

@media (max-width: 600px) {
  .lp-compare__cards {
    grid-template-columns: 1fr;
    max-width: 380px;
  }
}

/* ─── Example Overlay (fullscreen slide-up) ─── */
.example-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.example-overlay.is-open {
  transform: translateY(0);
}
.example-overlay__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-bottom: 1px solid var(--color-border);
  flex-shrink: 0;
  background: var(--color-bg);
}
.example-overlay--good .example-overlay__header {
  border-bottom-color: var(--color-accent);
}
.example-overlay--bad .example-overlay__header {
  border-bottom-color: var(--color-danger);
}
.example-overlay__label {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
}
.example-overlay__close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  cursor: pointer;
  color: var(--color-text-secondary);
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.example-overlay__close:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.example-overlay__frame {
  flex: 1;
  width: 100%;
  border: none;
}

/* =============================================
   TRUST SECTION — e-commerce authority
   ============================================= */
.trust { text-align: center; }
.trust__overline {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 6px 14px;
  background: rgba(201, 166, 74, 0.08);
  border-radius: 999px;
  border: 1px solid rgba(201, 166, 74, 0.2);
}
.trust__title {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
}
.trust__text {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.trust__text + .trust__text { margin-top: 14px; }
.trust__stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 56px;
  margin-top: 48px;
  flex-wrap: wrap;
  text-align: center;
}
.trust__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 200px;
  flex: 0 1 auto;
}
.trust__stat-num {
  font-size: 56px;
  font-weight: 900;
  color: var(--color-accent);
  letter-spacing: -1.8px;
  line-height: 1;
  font-feature-settings: 'tnum' 1;
  text-align: center;
  white-space: nowrap;
}
.trust__stat-label {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-top: 12px;
  max-width: 240px;
  line-height: 1.4;
  text-align: center;
}
.trust__divider {
  width: 1px;
  height: 56px;
  background: var(--color-border-strong);
  flex-shrink: 0;
}
@media (max-width: 680px) {
  .trust__stats { gap: 28px 40px; }
  .trust__stat { min-width: 0; width: 100%; }
  .trust__stat-num { font-size: 44px; letter-spacing: -1.2px; }
  .trust__stat-label { font-size: 13px; max-width: 260px; }
  /* Horizontal divider between stacked stats */
  .trust__divider {
    width: 80px;
    height: 1px;
    margin: 0 auto;
  }
}

/* =============================================
   TRUST COUNTRIES — clean flag row, no boxes
   ============================================= */
.trust-countries {
  margin: 40px auto 0;
  max-width: 560px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px 24px;
}
.trust-country {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: default;
  opacity: 0;
  transform: translateY(8px);
  animation: tcFadeIn .5s cubic-bezier(.22,1,.36,1) forwards;
  animation-delay: calc(var(--i, 0) * 60ms + 100ms);
}
@keyframes tcFadeIn {
  to { opacity: 1; transform: translateY(0); }
}
.trust-country__flag {
  font-size: 32px;
  line-height: 1;
  display: inline-block;
  transition: transform .3s cubic-bezier(.22,1,.36,1);
  animation: tcFlagFloat 4s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 400ms);
  filter: grayscale(0.15);
}
@keyframes tcFlagFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-3px); }
}
.trust-country:hover .trust-country__flag {
  transform: scale(1.2) translateY(-2px);
  filter: grayscale(0);
}

/* HQ — jemný zlatý glow pod vlajkou, pulzující */
.trust-country.is-hq::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,166,74,0.22) 0%, rgba(201,166,74,0) 70%);
  animation: tcHqPulse 2.8s ease-in-out infinite;
  z-index: -1;
}
.trust-country.is-hq .trust-country__flag {
  filter: grayscale(0);
  animation: tcHqFloat 2.8s ease-in-out infinite;
}
@keyframes tcHqPulse {
  0%, 100% { transform: scale(1);   opacity: 0.6; }
  50%      { transform: scale(1.3); opacity: 1; }
}
@keyframes tcHqFloat {
  0%, 100% { transform: translateY(0)    scale(1); }
  50%      { transform: translateY(-4px) scale(1.05); }
}

@media (max-width: 520px) {
  .trust-countries { gap: 14px 18px; max-width: 360px; }
  .trust-country__flag { font-size: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  .trust-country,
  .trust-country__flag,
  .trust-country.is-hq::before {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
