

  /* ═══════════════════════════════════════════
   fitnes-klub.css — стилі сторінки CRM для фітнес-клубу
   Підключається після style.css
   ═══════════════════════════════════════════ */

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  list-style: none;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 5vw 0;
  font-size: 13px;
  color: var(--muted);
}
.breadcrumb a {
  color: var(--accent, #A78BFA);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--text); }
.breadcrumb-sep { color: var(--border); }

/* ── HERO STATS ── */
.hero-sub {
  font-size: clamp(16px, 2.2vw, 20px);
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 4vw, 48px);
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  margin-top: 16px;
  width: 100%;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.hero-stat-num {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  background: linear-gradient(135deg, #A78BFA, #EC4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.hero-stat-label {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

/* ── PROBLEMS GRID ── */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.problem-card {
  background: var(--bg2, #111118);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.2s;
}
.problem-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.problem-card:hover { border-color: rgba(168,85,247,0.4); }

.problem-icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
}
.problem-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.problem-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 0;
}
.problem-arrow {
  font-size: 20px;
  color: rgba(168,85,247,0.5);
  margin: 12px 0 8px;
}
.problem-solution {
  font-size: 13px;
  color: #4ADE80;
  font-weight: 600;
  line-height: 1.5;
}

/* ── FEAT CARDS (overrides) ── */
.feat-card {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.2s;
}
.feat-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── WHO GRID ── */
.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
.who-card {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.2s, transform 0.2s;
}
.who-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.who-card:hover { transform: translateY(-4px); }

/* ── AUTOMATION LIST ── */
.automation-list {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.automation-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.automation-item:last-child { border-bottom: none; }
.automation-item.visible {
  opacity: 1;
  transform: translateX(0);
}
.automation-step {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--c1, #6C3EF4), var(--c3, #EC4899));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  box-shadow: 0 0 20px rgba(108,62,244,0.3);
}
.automation-body h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}
.automation-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── COMPARE TABLE ── */
.compare-wrap {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid var(--border);
  margin-bottom: 24px;
}
.compare-scroll-hint {
  display: none;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  padding: 8px;
  background: var(--bg2);
}
@media (max-width: 640px) {
  .compare-scroll-hint { display: block; }
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 480px;
}
.compare-table th {
  padding: 16px;
  text-align: center;
  font-weight: 700;
  background: var(--bg2, #111118);
  border: 1px solid var(--border);
  font-size: 15px;
}
.compare-table th:first-child { text-align: left; }
.compare-table th.ours {
  background: linear-gradient(135deg, rgba(108,62,244,0.3), rgba(236,72,153,0.2));
  color: #fff;
}
.compare-table td {
  padding: 13px 16px;
  border: 1px solid rgba(255,255,255,0.05);
  text-align: center;
  color: var(--muted, #9B9AAA);
}
.compare-table td:first-child {
  text-align: left;
  color: var(--text);
  font-weight: 500;
}
.compare-table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.compare-table td.highlight-col { background: rgba(108,62,244,0.06); }
.check { color: #4ADE80; font-weight: 700; }
.cross { color: #F87171; font-weight: 700; }

/* ── SAVING BANNER ── */
.saving-banner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(74,222,128,0.1), rgba(34,197,94,0.05));
  border: 1px solid rgba(74,222,128,0.25);
  border-radius: 16px;
  flex-wrap: wrap;
}
.saving-icon { font-size: 48px; flex-shrink: 0; }
.saving-num {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 800;
  color: #4ADE80;
  display: block;
  margin-bottom: 4px;
}
.saving-note {
  font-size: 14px;
  color: var(--muted);
}

/* ── SECURITY GRID ── */
.security-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 640px) {
  .security-grid { grid-template-columns: 1fr; }
}
.security-card {
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--border);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.security-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.security-bad {
  background: rgba(248,113,113,0.06);
  border-color: rgba(248,113,113,0.2);
}
.security-good {
  background: linear-gradient(135deg, rgba(74,222,128,0.08), rgba(34,197,94,0.04));
  border-color: rgba(74,222,128,0.25);
}
.security-card-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.security-bad .security-card-label { color: #F87171; }
.security-good .security-card-label { color: #4ADE80; }
.security-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
}
.security-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── MID CTA ── */
.mid-cta {
  text-align: center;
  padding: 56px 5vw;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2, #111118);
}
.mid-cta-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--c2, #A855F7);
  font-weight: 700;
  margin-bottom: 12px;
}
.mid-cta h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  margin-bottom: 12px;
}
.mid-cta p {
  color: var(--muted);
  font-size: 15px;
  max-width: 540px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

/* ── CTA BOTTOM ── */
.cta-label {
  font-size: 14px;
  color: var(--c2, #A855F7);
  margin-bottom: 16px;
  font-weight: 600;
}
.btn-cta-text {
  background: none;
  border: none;
  font-size: 14px;
  color: var(--muted);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.btn-cta-text:hover { color: var(--text); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .problems-grid {
    grid-template-columns: 1fr;
  }
  .who-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .automation-item {
    flex-direction: column;
    gap: 12px;
  }
  .saving-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    gap: 20px;
  }
  .who-grid {
    grid-template-columns: 1fr;
  }
  .breadcrumb {
    padding-top: 72px;
  }
}

/* ── TRIAL PAGE EXTRA STYLES ── */

/* NAV LINKS */
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 6px 14px; border-radius: 20px; font-size: 14px;
  color: var(--muted); text-decoration: none; transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--text); background: rgba(255,255,255,0.06); }
.nav-link.active { color: var(--text); background: rgba(108,62,244,0.15); }
@media (max-width: 680px) { .nav-links { display: none; } }



/* PAGE HERO */
.page-hero {
  padding: 140px 5vw 80px;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(236,72,153,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 18px; border-radius: 20px; font-size: 13px;
  border: 1px solid rgba(236,72,153,0.35); background: rgba(236,72,153,0.08);
  color: #F9A8D4; margin-bottom: 28px;
}
.page-hero h1 {
  font-size: clamp(32px, 6vw, 64px); font-weight: 900;
  line-height: 1.08; letter-spacing: -2px; margin-bottom: 20px;
}
.page-hero p {
  font-size: clamp(16px,2vw,20px); color: var(--muted);
  max-width: 600px; margin: 0 auto;
}

/* STEPS TIMELINE */
.timeline { position: relative; max-width: 760px; margin: 0 auto; padding: 0 0 40px; }
.timeline::before {
  content: ''; position: absolute; left: 28px; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(180deg, var(--c1), var(--c3), transparent);
}
.timeline-item {
  display: flex; gap: 28px; margin-bottom: 40px;
  opacity: 0; transform: translateX(-24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.timeline-item.visible { opacity: 1; transform: translateX(0); }
.timeline-dot {
  width: 58px; height: 58px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 900; z-index: 1;
  background: linear-gradient(135deg, var(--c1), var(--c3));
  box-shadow: 0 0 24px rgba(108,62,244,0.4);
}
.timeline-body {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 16px; padding: 24px 28px; flex: 1;
  transition: border-color 0.3s;
}
.timeline-body:hover { border-color: rgba(168,85,247,0.5); }
.timeline-body h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.timeline-body p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.timeline-tag {
  display: inline-block; margin-top: 12px; padding: 3px 12px;
  border-radius: 20px; font-size: 11px; font-weight: 700;
  background: rgba(108,62,244,0.15); color: #A78BFA;
}

/* PRICE CHART */
.price-chart-wrap {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 20px; padding: 40px; overflow: hidden;
}
.price-chart-title { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.price-chart-sub { font-size: 14px; color: var(--muted); margin-bottom: 32px; }
.price-chart { display: flex; align-items: flex-end; gap: 12px; height: 200px; }
.price-bar-wrap { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.price-bar {
  width: 100%; border-radius: 10px 10px 0 0;
  background: linear-gradient(180deg, var(--c1), var(--c3));
  transition: height 1s cubic-bezier(0.34,1.56,0.64,1);
  position: relative; cursor: pointer;
}
.price-bar:hover { filter: brightness(1.2); }
.price-bar-tooltip {
  position: absolute; top: -40px; left: 50%; transform: translateX(-50%);
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 8px; padding: 4px 10px; font-size: 12px; font-weight: 700;
  white-space: nowrap; pointer-events: none; opacity: 0; transition: opacity 0.2s;
}
.price-bar:hover .price-bar-tooltip { opacity: 1; }
.price-bar-label { font-size: 12px; color: var(--muted); text-align: center; }
.price-bar-val { font-size: 13px; font-weight: 700; color: var(--text); }

/* COMPARISON TABLE */
.comp-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
@media (max-width: 640px) { .comp-grid { grid-template-columns: 1fr; } }
.comp-card {
  border-radius: 20px; padding: 32px;
  border: 1px solid var(--border);
}
.comp-card.ours {
  background: linear-gradient(135deg, rgba(108,62,244,0.12), rgba(236,72,153,0.08));
  border-color: rgba(168,85,247,0.4);
}
.comp-card.theirs { background: var(--bg2); }
.comp-card-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 12px;
}
.comp-card.ours .comp-card-label { color: #A78BFA; }
.comp-card.theirs .comp-card-label { color: var(--muted); }
.comp-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 20px; }
.comp-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 14px; gap: 12px;
}
.comp-row:last-child { border-bottom: none; }
.comp-row-label { color: var(--muted); }
.comp-row-val { font-weight: 600; text-align: right; }
.comp-row-val.green { color: #4ADE80; }
.comp-row-val.red { color: #F87171; }
.comp-total {
  margin-top: 20px; padding: 16px; border-radius: 12px;
  background: rgba(255,255,255,0.05); text-align: center;
}
.comp-total-num { font-size: 32px; font-weight: 900; }
.comp-total-label { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* CLUB CARD */
.club-card {
  background: linear-gradient(135deg, rgba(108,62,244,0.15), rgba(236,72,153,0.1));
  border: 1px solid rgba(168,85,247,0.35);
  border-radius: 24px; padding: 48px 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
@media (max-width: 680px) { .club-card { grid-template-columns: 1fr; padding: 32px 24px; } }
.club-badge {
  display: inline-block; padding: 5px 16px; border-radius: 20px; font-size: 12px;
  font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
  background: rgba(168,85,247,0.2); color: #C084FC; margin-bottom: 16px;
}
.club-card h3 { font-size: clamp(22px,3vw,30px); font-weight: 800; margin-bottom: 12px; }
.club-card p { color: var(--muted); font-size: 15px; line-height: 1.7; margin-bottom: 20px; }
.club-perks { display: flex; flex-direction: column; gap: 10px; }
.club-perk {
  display: flex; align-items: center; gap: 10px; font-size: 14px;
}
.club-perk-icon { font-size: 16px; }
.club-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.club-stat {
  background: rgba(255,255,255,0.05); border-radius: 14px; padding: 20px;
  text-align: center;
}
.club-stat-num {
  font-size: 32px; font-weight: 900;
  background: linear-gradient(135deg,#A78BFA,#EC4899);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
}
.club-stat-label { font-size: 12px; color: var(--muted); margin-top: 4px; }

/* VPS INFO */
.vps-row {
  display: flex; align-items: center; gap: 20px; padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.vps-row:last-child { border-bottom: none; }
.vps-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
  background: rgba(108,62,244,0.15);
}
.vps-text h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.vps-text p { font-size: 13px; color: var(--muted); }

/* FLOATING PARTICLES */
@keyframes float-up {
  0% { transform: translateY(0) rotate(0deg); opacity: 0.6; }
  100% { transform: translateY(-120px) rotate(360deg); opacity: 0; }
}
.particle {
  position: absolute; width: 4px; height: 4px; border-radius: 50%;
  background: var(--c1); animation: float-up 4s infinite ease-in;
  pointer-events: none;
}

/* ANIMATED COUNTER */
.counter-num {
  font-size: clamp(36px,6vw,64px); font-weight: 900;
  background: linear-gradient(135deg,#A78BFA,#EC4899);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  display: inline-block;
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}
.faq-q {
  width: 100%; background: none; border: none; color: var(--text);
  text-align: left; padding: 20px 0; font-size: 16px; font-weight: 600;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.faq-icon { font-size: 20px; color: var(--c2); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
  font-size: 14px; color: var(--muted); line-height: 1.8;
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner { padding: 0 0 20px; }