/* ============================================
   BANTY_FIT — Premium Fitness Website
   ============================================ */

:root {
  --bg-primary: #08080c;
  --bg-secondary: #0f0f14;
  --bg-card: #141419;
  --bg-card-hover: #1a1a22;
  --text-primary: #f5f5f7;
  --text-secondary: #a0a0b0;
  --text-muted: #6b6b7b;
  --accent: #56CCF2;
  --accent-dim: rgba(86, 204, 242, 0.15);
  --accent-glow: rgba(86, 204, 242, 0.35);
  --accent-secondary: #FF8C42;
  --accent-secondary-dim: rgba(255, 140, 66, 0.15);
  --accent-secondary-glow: rgba(255, 140, 66, 0.4);
  --gradient-accent: linear-gradient(135deg, #56CCF2 0%, #38bdf8 100%);
  --gradient-secondary: linear-gradient(135deg, #FF8C42 0%, #f97316 100%);
  --gradient-dark: linear-gradient(180deg, #08080c 0%, #0f0f14 100%);
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 40px rgba(86, 204, 242, 0.15);
  --shadow-glow-secondary: 0 0 40px rgba(255, 140, 66, 0.2);
  --font-heading: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --duration-fast: 0.35s;
  --duration-mid: 0.65s;
  --duration-slow: 0.9s;
  --header-height: 72px;
}

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

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

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

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Typography ---- */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 560px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition:
    transform var(--duration-mid) var(--ease-smooth),
    box-shadow var(--duration-mid) var(--ease-smooth),
    background var(--duration-fast) ease,
    border-color var(--duration-fast) ease,
    color var(--duration-fast) ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.18) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease-smooth);
  pointer-events: none;
}

.btn:hover::after {
  transform: translateX(120%);
}

.btn-primary {
  background: var(--gradient-secondary);
  color: #08080c;
  box-shadow: 0 4px 20px rgba(255, 140, 66, 0.28);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 32px rgba(255, 140, 66, 0.42);
}

.btn-primary:active {
  transform: translateY(-1px) scale(0.99);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-hover);
}

.btn-outline:hover {
  border-color: var(--accent-secondary);
  color: var(--accent-secondary);
  background: var(--accent-secondary-dim);
  transform: translateY(-2px);
}

.btn-outline:active {
  transform: translateY(0);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-hover);
}

/* ---- Header ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(8, 8, 12, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.logo span {
  color: var(--accent);
}

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

.nav__link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: var(--text-primary);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

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

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
  border-radius: 2px;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---- Hero ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero__bg {
    position:absolute;
    inset:0;
    overflow:hidden;
    background:
    radial-gradient(circle at 20% 20%, rgba(86,204,242,.18), transparent 35%),
    radial-gradient(circle at 80% 70%, rgba(255,140,66,.15), transparent 35%),
    linear-gradient(180deg,#050507,#0b0b12);
  }

.hero__glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  z-index: -1;
  animation: pulse-glow 14s var(--ease-soft) infinite;
}

.hero__glow--left {
  top: auto;
  bottom: -300px;
  left: -200px;
  right: auto;
  width: 500px;
  height: 500px;
  animation-delay: -4s;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.35; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(1.06); }
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: -1;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero__content {
  max-width: 720px;
}

.hero__content > * {
  opacity: 0;
  animation: hero-enter var(--duration-slow) var(--ease-smooth) forwards;
}

.hero__badge { animation-delay: 0.08s; }
.hero__title { animation-delay: 0.2s; }
.hero__subtitle { animation-delay: 0.34s; }
.hero__actions { animation-delay: 0.48s; }
.hero__stats { animation-delay: 0.62s; }

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.hero__title .highlight {
  #rotating-word{
    display:inline-block;
    min-width:260px;
    text-align:left;
  }
  display: inline-block;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: hero-highlight 1.1s var(--ease-smooth) 0.55s both;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--accent-dim);
  border: 1px solid rgba(86, 204, 242, 0.25);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

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

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 64px;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
}

.hero__stat-value {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  padding: calc(var(--header-height) + 80px) 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, var(--accent-dim) 0%, transparent 60%);
  z-index: -1;
}

.page-hero .section-subtitle {
  margin: 0 auto;
}

/* ---- Sections ---- */
.section {
  padding: 100px 0;
}

.section--dark {
  background: var(--bg-secondary);
}

.section__header {
  text-align: center;
  margin-bottom: 64px;
}

.section__header .section-subtitle {
  margin: 0 auto;
}

/* ---- Benefits / Features ---- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.benefit-card {
  position: relative;
overflow: hidden;
  position: relative;
overflow: hidden;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  .benefit-card::before{
    content:"";
  
    position:absolute;
  
    width:300px;
    height:300px;
  
    left:var(--mouse-x);
    top:var(--mouse-y);
  
    transform:translate(-50%,-50%);
  
    background:radial-gradient(
      circle,
      rgba(86,204,242,.18),
      transparent 70%
    );
  
    opacity:0;
  
    transition:opacity .3s ease;
  
    pointer-events:none;
  }
}.benefit-card::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(86,204,242,.15),
    transparent 70%
  );
  top: var(--mouse-y, -999px);
  left: var(--mouse-x, -999px);
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s ease;
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.benefit-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border-radius: var(--radius-md);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.benefit-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.benefit-card__text {
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

/* ---- Stats Bar ---- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}

.stat-item {
  text-align: center;
}

.stat-item__value {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-item__suffix {
  font-size: 0.6em;
}

.stat-item__label {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ---- About ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a22 0%, #2a2a35 100%);
}

.about-image__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--text-muted);
}

.about-image__placeholder svg {
  width: 64px;
  height: 64px;
  opacity: 0.4;
}

.about-image__frame {
  position: absolute;
  inset: -2px;
  border: 2px solid var(--accent);
  border-radius: var(--radius-xl);
  opacity: 0.3;
  transform: translate(12px, 12px);
  z-index: -1;
}

.about-content p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 1.0625rem;
}

.about-lead {
  font-size: clamp(1.375rem, 3vw, 1.75rem) !important;
  line-height: 1.35;
  color: var(--text-primary);
  margin-bottom: 24px !important;
}

.about-closing {
  font-size: 1.125rem;
  color: var(--text-primary);
  margin-top: 8px;
}

.about-closing strong {
  color: var(--accent-secondary);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.value-item:hover {
  border-color: rgba(86, 204, 242, 0.35);
  background: var(--accent-dim);
}

.value-item__icon {
  font-size: 1.25rem;
}

.value-item__text {
  font-weight: 600;
  font-size: 0.9375rem;
}

/* ---- Services ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.service-card {
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition:
    transform var(--duration-mid) var(--ease-smooth),
    box-shadow var(--duration-mid) var(--ease-smooth),
    border-color var(--duration-fast) ease,
    background var(--duration-fast) ease;
  display: flex;
  flex-direction: column;
}

.service-card.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity var(--duration-slow) var(--ease-smooth),
    transform var(--duration-slow) var(--ease-smooth),
    box-shadow var(--duration-mid) var(--ease-smooth),
    border-color var(--duration-fast) ease,
    background var(--duration-fast) ease;
}

.service-card.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  border-color: rgba(86, 204, 242, 0.35);
  box-shadow: var(--shadow-glow);
  transform: translateY(-6px);
}

.service-card.reveal.visible:hover {
  transform: translateY(-6px);
}

.service-card.featured {
  border-color: rgba(255, 140, 66, 0.45);
  background: linear-gradient(135deg, rgba(255, 140, 66, 0.08) 0%, var(--bg-card) 100%);
  position: relative;
}

.service-card__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 4px 12px;
  background: var(--gradient-secondary);
  color: #08080c;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 100px;
}

.service-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border-radius: var(--radius-md);
  font-size: 1.75rem;
  margin-bottom: 24px;
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card__desc {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-card__features {
  margin-bottom: 24px;
}

.service-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.service-card__features li::before {
  content: '✓';
  color: var(--accent-secondary);
  font-weight: 700;
  flex-shrink: 0;
}

.service-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.service-card__price-value{
  font-family: Inter, Arial, sans-serif;
}

.service-card__price-period {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ---- Reviews ---- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.review-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition:
    transform var(--duration-mid) var(--ease-smooth),
    box-shadow var(--duration-mid) var(--ease-smooth),
    border-color var(--duration-fast) ease;
  position: relative;
}

.review-card.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity var(--duration-slow) var(--ease-smooth),
    transform var(--duration-slow) var(--ease-smooth),
    box-shadow var(--duration-mid) var(--ease-smooth),
    border-color var(--duration-fast) ease;
}

.review-card.reveal.visible{
  opacity:1;
  transform:translateY(0) scale(1);
}

.review-card.reveal{
  opacity:0;
  transform:translateY(80px) scale(.92);
}

.review-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.review-card.reveal.visible:hover {
  transform: translateY(-5px);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.review-card.featured {
  border-color: rgba(255, 140, 66, 0.45);
  background: linear-gradient(135deg, rgba(255, 140, 66, 0.08) 0%, var(--bg-card) 100%);
  position: relative;
}

.review-card__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 4px 12px;
  background: var(--gradient-secondary);
  color: #08080c;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 100px;
}

.review-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a2a35, #3a3a48);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--accent);
  flex-shrink: 0;
  overflow: hidden;
}

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

.review-card__info h4 {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 2px;
}

.review-card__info span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.review-card__stars {
  color: var(--accent-secondary);
  font-size: 0.875rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-card__text {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.review-card__result {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--accent-secondary-dim);
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
}

.review-card__result-label {
  color: var(--text-muted);
}

.review-card__result-value {
  font-weight: 700;
  color: var(--accent-secondary);
}

/* ---- Before/After ---- */
.before-after {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.ba-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.ba-card__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.ba-card__image {
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  background: var(--bg-secondary);
}

.ba-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.ba-card__image--before img[src*="alexey-before"] {
  object-position: center top;
}

.ba-card__image:not(:has(img)) {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-muted);
}

.ba-card__image--after:not(:has(img)) {
  color: var(--accent);
}

.ba-card__label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 4px 10px;
  background: rgba(8, 8, 12, 0.75);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  z-index: 1;
}

.ba-card__image--after .ba-card__label {
  color: var(--accent);
  border: 1px solid rgba(86, 204, 242, 0.3);
}

.ba-card__image--before {
  background: linear-gradient(135deg, #1a1a22, #252530);
}

.ba-card__image--after {
  background: linear-gradient(135deg, #1a1822, #1e2a35);
}

.ba-card__image svg {
  width: 40px;
  height: 40px;
  opacity: 0.3;
}

.ba-card__info {
  padding: 16px 20px;
  background: var(--bg-card);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ba-card__name {
  font-weight: 600;
  font-size: 0.9375rem;
}

.ba-card__period {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ---- FAQ ---- */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

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

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}

.faq-item__question:hover {
  color: var(--accent);
}

.faq-item__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
  transition: var(--transition);
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  background: var(--text-secondary);
  transition: var(--transition);
}

.faq-item__icon::before {
  width: 14px;
  height: 2px;
  top: 11px;
  left: 5px;
}

.faq-item__icon::after {
  width: 2px;
  height: 14px;
  top: 5px;
  left: 11px;
}

.faq-item.active .faq-item__icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-item__answer {
  max-height: 300px;
  padding-bottom: 24px;
}

.faq-item__answer p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ---- CTA Banner ---- */
.cta-banner {
  padding: 80px 48px;
  background: linear-gradient(135deg, rgba(86, 204, 242, 0.1) 0%, var(--bg-card) 50%, rgba(255, 140, 66, 0.08) 100%);
  border: 1px solid rgba(86, 204, 242, 0.2);
  border-radius: var(--radius-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  opacity: 0.35;
}

.cta-banner::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--accent-secondary-glow) 0%, transparent 70%);
  bottom: -150px;
  left: -80px;
  opacity: 0.25;
}

.cta-banner__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
}

.cta-banner__text {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  max-width: 480px;
  margin: 0 auto 32px;
  position: relative;
}

.cta-banner .btn {
  position: relative;
}

/* ---- Contacts ---- */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.contact-method:hover {
  border-color: rgba(86, 204, 242, 0.35);
  background: var(--bg-card-hover);
  transform: translateX(4px);
}

.contact-method__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border-radius: var(--radius-sm);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-method__label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-method__value {
  font-weight: 600;
  font-size: 0.9375rem;
}

/* ---- Form ---- */
.form {
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.form__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.form__subtitle {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-secondary);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-secondary);
  box-shadow: 0 0 0 3px var(--accent-secondary-dim);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23a0a0b0' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form .btn {
  width: 100%;
  margin-top: 8px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px;
}

.form-success.visible {
  display: block;
}

.form-success__icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.form-success p {
  color: var(--text-secondary);
}

.form.hidden {
  display: none;
}

/* ---- Footer ---- */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin-top: 16px;
  max-width: 280px;
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.footer__links li {
  margin-bottom: 12px;
}

.footer__links a {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  transition: var(--transition);
}

.footer__links a:hover {
  color: var(--accent);
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  transition: var(--transition);
}

.footer__social a:hover {
  border-color: var(--accent-secondary);
  background: var(--accent-secondary-dim);
  color: var(--accent-secondary);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ---- Motion (hero, buttons, service & review cards only) ---- */
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  .hero__content > *,
  .hero__title .highlight {
    animation: none;
    opacity: 1;
    transform: none;
    filter: none;
  }

  .service-card.reveal,
  .review-card.reveal {
    opacity: 1;
    transform: none;
  }

  .btn::after {
    display: none;
  }

  .btn:hover,
  .btn-primary:hover,
  .btn-outline:hover,
  .service-card:hover,
  .review-card:hover {
    transform: none;
  }

  .hero__glow {
    animation: none;
  }
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contacts-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    background: rgba(8, 8, 12, 0.98);
    backdrop-filter: blur(20px);
    transform: translateX(100%);
    transition: var(--transition);
    padding: 40px;
  }

  .nav.open {
    transform: translateX(0);
  }

  .nav__link {
    font-size: 1.25rem;
  }

  .burger {
    display: flex;
  }

  .header__cta .btn-outline {
    display: none;
  }

  .hero__stats {
    gap: 32px;
  }

  .stats-bar {
    grid-template-columns: 1fr 1fr;
    padding: 32px 24px;
    gap: 24px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

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

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .cta-banner {
    padding: 48px 24px;
  }

  .services-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .stats-bar {
    grid-template-columns: 1fr;
  }
}
.energy-orb{
  position:absolute;
  border-radius:50%;
  filter:blur(90px);
  pointer-events:none;
}

.energy-orb.one{
  width:400px;
  height:400px;
  background:rgba(86,204,242,.18);
  top:10%;
  right:10%;
  animation:floatA 10s ease-in-out infinite;
}

.energy-orb.two{
  width:350px;
  height:350px;
  background:rgba(255,140,66,.15);
  bottom:10%;
  left:5%;
  animation:floatB 14s ease-in-out infinite;
}

@keyframes floatA{
  50%{
    transform:translateY(-80px);
  }
}

@keyframes floatB{
  50%{
    transform:translateY(60px);
  }
}
#rotating-word{
  transition:
    opacity .3s ease,
    transform .3s ease;
}
#rotating-word{
  display:inline-block;
  transition: all .5s ease;
  min-width:260px;
  text-align:left;
}
#rotating-word{
  display:inline-block;
  color:#56CCF2;
  text-shadow:
    0 0 15px rgba(86,204,242,.5),
    0 0 30px rgba(86,204,242,.3);

  transition:all .6s ease;
}

.word-hide{
  opacity:0;
  transform:translateY(-30px);
  filter:blur(15px);
}

.word-show{
  animation:premiumWord .7s ease;
}
.hero-bg-text{
  position:absolute;

  top:50%;
  left:50%;

  transform:translate(-50%,-50%);
  will-change: transform;
  font-size:14vw;
  font-weight:900;
  font-family:'Syne',sans-serif;

  color:rgba(255,255,255,.025);

  letter-spacing:-8px;
  white-space:nowrap;

  pointer-events:none;
  user-select:none;

  z-index:1;
}
/* ===== ENERGY LINES ===== */

.energy-line{
  position:absolute;
  width:500px;
  height:2px;

  background:linear-gradient(
    90deg,
    transparent,
    rgba(86,204,242,.9),
    transparent
  );

  filter:blur(1px);

  opacity:.4;

  animation:energyMove 12s linear infinite;

  z-index:0;
}

.energy-line-1{
  top:20%;
  left:-30%;
}

.energy-line-2{
  top:50%;
  right:-30%;

  animation-duration:16s;
}

.energy-line-3{
  bottom:20%;
  left:-20%;

  animation-duration:20s;
}

@keyframes energyMove{

  from{
    transform:translateX(0) rotate(-10deg);
  }

  to{
    transform:translateX(150vw) rotate(-10deg);
  }

}/* ===== REVEAL ANIMATION ===== */

.reveal-section{
  opacity:0;
  transform:translateY(80px);
  filter:blur(10px);

  transition:
  opacity 1s ease,
  transform 1s ease,
  filter 1s ease;
}

.reveal-section.visible{
  opacity:1;
  transform:translateY(0);
  filter:blur(0);
}/* ===== PREMIUM LOADER ===== */

.loader{
  position:fixed;
  inset:0;

  background:#050505;

  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;

  z-index:99999;

  transition:opacity .8s ease,
  visibility .8s ease;
}

.loader.hidden{
  opacity:0;
  visibility:hidden;
}

.loader-logo{

  font-family:'Syne',sans-serif;
  font-size:48px;
  font-weight:900;
  letter-spacing:4px;

  color:white;

  opacity:0;

  animation:logoAppear 1.2s ease forwards;
}

.loader-logo span{
  color:#56CCF2;
}

.loader-line{

  margin-top:25px;

  width:0;
  height:2px;

  background:#56CCF2;

  box-shadow:
  0 0 20px #56CCF2,
  0 0 40px #56CCF2;

  animation:lineGrow 1.5s ease forwards;
}

@keyframes logoAppear{

  from{
    opacity:0;
    transform:translateY(20px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }

}

@keyframes lineGrow{

  from{
    width:0;
  }

  to{
    width:220px;
  }

}
.review-card{
  position:relative;
  overflow:hidden;
}

.review-card::before{

  content:'';

  position:absolute;

  width:300px;
  height:300px;

  background:
  radial-gradient(
    circle,
    rgba(255,140,66,.18),
    transparent 70%
  );

  left:var(--mouse-x);
  top:var(--mouse-y);

  transform:translate(-50%,-50%);

  opacity:0;

  transition:.3s;

  pointer-events:none;
}

.review-card:hover::before{
  opacity:1;
}
/* ===== REVIEWS WOW UPGRADE ===== */

.reviews-grid{
  perspective:1200px;
}

.review-card{
  transform-style:preserve-3d;
  will-change:transform, opacity, filter;
}

.review-card.reveal{
  opacity:0;
  transform:translateY(90px) rotateX(10deg) scale(.92);
  filter:blur(14px);
}

.review-card.reveal.visible{
  opacity:1;
  transform:translateY(0) rotateX(0) scale(1);
  filter:blur(0);
}

.review-card:nth-child(1){ transition-delay:.05s; }
.review-card:nth-child(2){ transition-delay:.14s; }
.review-card:nth-child(3){ transition-delay:.23s; }
.review-card:nth-child(4){ transition-delay:.32s; }
.review-card:nth-child(5){ transition-delay:.41s; }
.review-card:nth-child(6){ transition-delay:.50s; }

.review-card:hover{
  transform:translateY(-14px) scale(1.03) rotateX(3deg);
  border-color:rgba(255,140,66,.45);
  box-shadow:
    0 30px 80px rgba(0,0,0,.45),
    0 0 50px rgba(255,140,66,.16);
}

.review-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    135deg,
    rgba(255,255,255,.10),
    transparent 35%,
    transparent 70%,
    rgba(86,204,242,.06)
  );
  opacity:0;
  transition:.4s ease;
  pointer-events:none;
}

.review-card:hover::after{
  opacity:1;
}/* ===== REVIEWS WOW UPGRADE ===== */

.reviews-grid{
  perspective:1200px;
}

.review-card{
  transform-style:preserve-3d;
  will-change:transform, opacity, filter;
}

.review-card.reveal{
  opacity:0;
  transform:translateY(90px) rotateX(10deg) scale(.92);
  filter:blur(14px);
}

.review-card.reveal.visible{
  opacity:1;
  transform:translateY(0) rotateX(0) scale(1);
  filter:blur(0);
}

.review-card:nth-child(1){ transition-delay:.05s; }
.review-card:nth-child(2){ transition-delay:.14s; }
.review-card:nth-child(3){ transition-delay:.23s; }
.review-card:nth-child(4){ transition-delay:.32s; }
.review-card:nth-child(5){ transition-delay:.41s; }
.review-card:nth-child(6){ transition-delay:.50s; }

.review-card:hover{
  transform:translateY(-14px) scale(1.03) rotateX(3deg);
  border-color:rgba(255,140,66,.45);
  box-shadow:
    0 30px 80px rgba(0,0,0,.45),
    0 0 50px rgba(255,140,66,.16);
}

.review-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    135deg,
    rgba(255,255,255,.10),
    transparent 35%,
    transparent 70%,
    rgba(86,204,242,.06)
  );
  opacity:0;
  transition:.4s ease;
  pointer-events:none;
}

.review-card:hover::after{
  opacity:1;
}/* ===== REVIEWS TICKER ===== */

.reviews-ticker{
  overflow:hidden;
  margin-bottom:48px;
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.reviews-ticker__track{
  white-space:nowrap;
  padding:22px 0;
  font-family:'Syne',sans-serif;
  font-size:clamp(2rem, 6vw, 5rem);
  font-weight:900;
  letter-spacing:-3px;
  color:rgba(255,255,255,.055);
  animation:reviewsTicker 18s linear infinite;
}

@keyframes reviewsTicker{
  from{
    transform:translateX(0);
  }

  to{
    transform:translateX(-50%);
  }
}/* ===== REVIEW CASE NUMBERS ===== */

.review-card{
  counter-increment: reviewCase;
}

.reviews-grid{
  counter-reset: reviewCase;
}

.review-card::after{
  content:"0" counter(reviewCase);
  position:absolute;
  top:18px;
  right:24px;

  font-family:'Syne',sans-serif;
  font-size:52px;
  font-weight:900;

  color:rgba(255,255,255,.035);

  pointer-events:none;
  z-index:0;
}/* ===== SERVICES PREMIUM HOVER ===== */

.service-card{
  position:relative;
  overflow:hidden;
  transform-style:preserve-3d;
  will-change:transform;
}

.service-card::before{
  content:"";
  position:absolute;
  width:360px;
  height:360px;
  left:var(--mouse-x, -999px);
  top:var(--mouse-y, -999px);
  transform:translate(-50%,-50%);
  background:radial-gradient(
    circle,
    rgba(86,204,242,.18),
    transparent 70%
  );
  opacity:0;
  transition:opacity .3s ease;
  pointer-events:none;
}

.service-card:hover::before{
  opacity:1;
}

.service-card:hover{
  transform:
  translateY(-14px)
  scale(1.03);

box-shadow:
  0 30px 80px rgba(0,0,0,.45),
  0 0 50px rgba(255,140,66,.15);
  transform:perspective(1000px) rotateX(4deg) rotateY(-4deg) translateY(-12px) scale(1.02);
  border-color:rgba(86,204,242,.42);
  box-shadow:
    0 35px 90px rgba(0,0,0,.45),
    0 0 55px rgba(86,204,242,.16);
}

.service-card__price-value{
  transition:.35s ease;
}

.service-card:hover .service-card__price-value{
  text-shadow:
    0 0 20px rgba(255,140,66,.5),
    0 0 45px rgba(255,140,66,.25);
}/* ===== SERVICES SCROLL REVEAL ===== */

.service-card{
  opacity:0;
  filter:blur(12px);

  transition:
    opacity 1s ease,
    transform 1s ease,
    filter 1s ease;
}

.service-card:nth-child(odd){
  transform:translateX(-120px);
}

.service-card:nth-child(even){
  transform:translateX(120px);
}

.service-card.visible{
  opacity:1;
  transform:translateX(0);
  filter:blur(0);
}

.service-card:nth-child(1){ transition-delay:.05s; }
.service-card:nth-child(2){ transition-delay:.16s; }
.service-card:nth-child(3){ transition-delay:.27s; }
.service-card:nth-child(4){ transition-delay:.38s; }
.service-card:nth-child(5){ transition-delay:.49s; }
/* ===== 3D DUMBBELL SCENE ===== */
/* ===== FIXED PREMIUM DUMBBELL ===== */

.dumbbell-scene{
  position:relative;
  width:100%;
  height:280px;
  margin:0 auto 64px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  border-radius:32px;
  background:
    radial-gradient(circle at 50% 50%, rgba(86,204,242,.16), transparent 38%),
    rgba(255,255,255,.025);
  border:1px solid rgba(255,255,255,.08);
}

.dumbbell{
  position:relative;
  width:420px;
  height:110px;
  z-index:3;
  transform:rotateX(18deg) rotateY(-16deg);
  animation:dumbbellFloat 5s ease-in-out infinite;
}

.bar{
  position:absolute;
  top:50%;
  left:16%;
  width:68%;
  height:18px;
  transform:translateY(-50%);
  border-radius:999px;
  background:linear-gradient(180deg,#fff,#7b7b7b,#111,#e7e7e7);
}

.plate{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  border-radius:20px;
  background:linear-gradient(135deg,#fff,#8a8a8a,#111,#e5e5e5);
  box-shadow:0 25px 60px rgba(0,0,0,.45);
}

.plate-big{
  width:60px;
  height:110px;
}

.plate-small{
  width:42px;
  height:88px;
}

.plate-left.plate-big{ left:0; }
.plate-left.plate-small{ left:68px; }
.plate-right.plate-small{ right:68px; }
.plate-right.plate-big{ right:0; }

.dumbbell-label{
  position:absolute;
  bottom:22px;
  font-family:'Syne',sans-serif;
  font-size:.75rem;
  font-weight:900;
  letter-spacing:.18em;
  color:rgba(255,255,255,.35);
}

@keyframes dumbbellFloat{
  0%,100%{
    transform:rotateX(18deg) rotateY(-16deg) translateY(0);
  }
  50%{
    transform:rotateX(22deg) rotateY(-8deg) translateY(-16px);
  }
}

.dumbbell-particles span{
  position:absolute;
  width:5px;
  height:5px;
  border-radius:50%;
  background:#56CCF2;
  box-shadow:0 0 18px #56CCF2;
  animation:particleFloat 4s ease-in-out infinite;
}

.dumbbell-particles span:nth-child(1){ top:25%; left:18%; animation-delay:.1s; }
.dumbbell-particles span:nth-child(2){ top:70%; left:22%; animation-delay:.4s; }
.dumbbell-particles span:nth-child(3){ top:32%; left:78%; animation-delay:.7s; }
.dumbbell-particles span:nth-child(4){ top:65%; left:75%; animation-delay:1s; }
.dumbbell-particles span:nth-child(5){ top:18%; left:50%; animation-delay:1.2s; }
.dumbbell-particles span:nth-child(6){ top:78%; left:55%; animation-delay:1.5s; }

@keyframes particleFloat{
  0%,100%{
    transform:translateY(0) scale(.7);
    opacity:.25;
  }
  50%{
    transform:translateY(-30px) scale(1.4);
    opacity:1;
  }
}/* ===== DUMBBELL LAYOUT FIX ===== */

.dumbbell-scene{
  height:360px !important;
  margin:40px auto 120px !important;
  z-index:2 !important;
}

.services-grid{
  position:relative;
  z-index:3;
  margin-top:80px;
}.dumbbell-scene{
  grid-column: 1 / -1 !important;
  width: 100% !important;
  height: 320px !important;
  margin: 0 0 48px 0 !important;
}

.services-grid{
  align-items: stretch !important;
}.dumbbell-scene::after{
  content:"";
  position:absolute;
  bottom:40px;
  left:50%;
  width:420px;
  height:60px;
  transform:translateX(-50%);
  background:radial-gradient(
    ellipse,
    rgba(86,204,242,.25),
    transparent 70%
  );
  filter:blur(20px);
}

.dumbbell{
  animation:
    dumbbellFloat 5s ease-in-out infinite,
    dumbbellRotate 10s ease-in-out infinite;
}

@keyframes dumbbellRotate{
  0%,100%{
    transform:
      rotateX(22deg)
      rotateY(-18deg)
      rotateZ(0deg);
  }

  50%{
    transform:
      rotateX(30deg)
      rotateY(8deg)
      rotateZ(-2deg);
  }
  }/* ===== PREMIUM STATS ===== */

.premium-stats{
  width:min(1100px, calc(100% - 48px));
  margin:0 auto 90px;

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

.premium-stat{
  position:relative;

  padding:42px;

  text-align:center;

  border-radius:28px;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,.05),
      rgba(255,255,255,.015)
    );

  border:1px solid rgba(255,255,255,.08);

  backdrop-filter:blur(20px);

  overflow:hidden;

  transition:.45s;
}

.premium-stat::before{
  content:"";

  position:absolute;
  inset:-2px;

  background:
    linear-gradient(
      135deg,
      rgba(86,204,242,.3),
      transparent,
      rgba(255,140,66,.2)
    );

  opacity:0;

  transition:.45s;
}

.premium-stat:hover{
  transform:
    translateY(-10px)
    scale(1.03);

  box-shadow:
    0 25px 80px rgba(0,0,0,.45);
}

.premium-stat:hover::before{
  opacity:1;
}

.premium-stat-number{
  position:relative;

  font-family:'Syne',sans-serif;

  font-size:4rem;
  font-weight:900;

  line-height:1;

  background:
    linear-gradient(
      135deg,
      #56CCF2,
      #ffffff
    );
    background-clip:text;
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.premium-stat-label{
  margin-top:12px;

  letter-spacing:.25em;

  font-size:.8rem;

  color:rgba(255,255,255,.55);
}

@media(max-width:768px){
  .premium-stats{
    grid-template-columns:1fr;
  }
}/* ===== DUMBBELL POLISH ===== */

.dumbbell-scene{
  overflow:hidden;
}

.dumbbell{
  position:absolute;
  left:-20px;
  top:50%;
  transform:translateY(-50%) rotateX(22deg) rotateY(-18deg); scale:.85;
  opacity:.75;
  filter:drop-shadow(0 30px 45px rgba(0,0,0,.6));
}

.dumbbell::after{
  content:"";
  position:absolute;
  inset:-80px;
  background:radial-gradient(circle, rgba(86,204,242,.18), transparent 65%);
  filter:blur(35px);
  z-index:-1;
}

.premium-stats{
  position:relative;
  z-index:5;
}
/* ===== SERVICE CARD 3D POLISH ===== */

.service-card{
  transform-style:preserve-3d;
  will-change:transform;
}

.service-card:hover{
  transform:
    perspective(1000px)
    rotateX(4deg)
    rotateY(-4deg)
    translateY(-14px)
    scale(1.025);

  box-shadow:
    0 35px 90px rgba(0,0,0,.5),
    0 0 60px rgba(255,140,66,.16);
}

.service-card__icon,
.service-card__title,
.service-card__price{
  position:relative;
  z-index:2;
  transform:translateZ(28px);
}/* ===== SERVICES FOCUS MODE ===== */

.services-grid:hover .service-card{
  opacity:.55;
  filter:saturate(.7);
}

.services-grid .service-card:hover{
  opacity:1;
  filter:saturate(1);
}

.service-card__price{
  transition:.35s ease;
}

.service-card:hover .service-card__price{
  transform:translateY(-4px);
}

.service-card:hover .service-card__price-value{
  color:#FF8C42;
  text-shadow:
    0 0 25px rgba(255,140,66,.45),
    0 0 60px rgba(255,140,66,.22);
}/* ===== SERVICE CARDS PRESENTATION REVEAL ===== */

.service-card{
  opacity:0;
  filter:blur(14px);
  transition:
    opacity 1s ease,
    transform 1s ease,
    filter 1s ease,
    box-shadow .35s ease,
    border-color .35s ease;
}

.service-card:nth-child(1){
  transform:translateX(-140px) scale(.94);
}

.service-card:nth-child(2){
  transform:translateX(140px) scale(.94);
}

.service-card:nth-child(3){
  transform:translateY(120px) scale(.94);
}

.service-card:nth-child(4){
  transform:scale(.78);
}

.service-card.visible{
  opacity:1;
  transform:translate(0,0) scale(1);
  filter:blur(0);
}

.service-card:nth-child(1){ transition-delay:.05s; }
.service-card:nth-child(2){ transition-delay:.18s; }
.service-card:nth-child(3){ transition-delay:.31s; }
.service-card:nth-child(4){ transition-delay:.44s; }
/* ===== SERVICES SCROLL 3D CINEMATIC ===== */

.services-grid{
  perspective:1400px;
}

.service-card{
  will-change:transform, opacity, filter;
  transform-style:preserve-3d;
}.page-hero{
  padding-bottom:40px !important;
}

.dumbbell-scene{
  margin-top:20px !important;
  margin-bottom:50px !important;
}

.services-grid{
  margin-top:20px !important;
}
@media(max-width:768px){
  .dumbbell-scene{
    height:220px !important;
    margin-bottom:32px !important;
  }

  .dumbbell{
    transform:translateY(-50%) scale(.55) rotateX(22deg) rotateY(-18deg) !important;
    left:-70px !important;
  }

  .premium-stats{
    margin-bottom:40px !important;
  }
}/* ===== MOBILE SERVICES FIX ===== */

@media(max-width:768px){

  .dumbbell-scene{
    display:none !important;
  }

  .premium-stats{
    width:calc(100% - 32px) !important;
    margin:32px auto 48px !important;
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:16px !important;
  }

  .premium-stat{
    padding:28px 20px !important;
    border-radius:22px !important;
  }

  .premium-stat-number{
    font-size:3rem !important;
  }

  .services-grid{
    width:calc(100% - 32px) !important;
    margin:0 auto !important;
    grid-template-columns:1fr !important;
  }

  .service-card{
    transform:none !important;
    opacity:1 !important;
    filter:none !important;
  }
}@media(max-width:768px){

  .service-card{
    padding:28px 22px !important;
    border-radius:24px !important;
  }

  .service-card__title{
    font-size:1.2rem !important;
  }

  .service-card__desc{
    font-size:.92rem !important;
  }

  .service-card__features li{
    font-size:.88rem !important;
  }

  .service-card__price-value{
    font-size:1.8rem !important;
  }

  .service-card__icon{
    width:48px !important;
    height:48px !important;
    font-size:1.35rem !important;
  }
}.service-card__icon svg{
  width:28px;
  height:28px;
}

.service-card__icon{
  color:#56CCF2;
}
/* ===== BANTY_FIT CINEMATIC LOADER ===== */

.bf-loader{
  position:fixed;
  inset:0;
  z-index:999999;
  background:
    radial-gradient(circle at 50% 45%, rgba(86,204,242,.14), transparent 35%),
    #050507;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  transition:opacity .9s ease, visibility .9s ease;
}

.bf-loader.hidden{
  opacity:0;
  visibility:hidden;
}

.bf-loader__dumbbell{
  position:relative;
  width:420px;
  height:120px;
  transform-style:preserve-3d;
  animation:loaderDumbbell 2.4s ease forwards;
  filter:drop-shadow(0 0 45px rgba(86,204,242,.25));
}

.bf-loader__bar{
  position:absolute;
  top:50%;
  left:16%;
  width:68%;
  height:18px;
  transform:translateY(-50%) scaleX(0);
  transform-origin:center;
  border-radius:999px;
  background:linear-gradient(180deg,#fff,#777,#111,#eee);
  animation:loaderBar 1.1s ease .7s forwards;
}

.bf-loader__plate{
  position:absolute;
  top:50%;
  border-radius:22px;
  background:linear-gradient(135deg,#fff,#9a9a9a,#111,#eee);
  box-shadow:
    inset 10px 10px 22px rgba(255,255,255,.18),
    inset -14px -14px 28px rgba(0,0,0,.65),
    0 25px 60px rgba(0,0,0,.6);
  opacity:0;
  filter:blur(18px);
  animation:loaderPlate 1s ease forwards;
}

.left-big{ width:62px; height:120px; left:0; transform:translate(-160px,-50%) rotate(-20deg); animation-delay:.15s; }
.left-small{ width:44px; height:92px; left:72px; transform:translate(-120px,-50%) rotate(-15deg); animation-delay:.3s; }
.right-small{ width:44px; height:92px; right:72px; transform:translate(120px,-50%) rotate(15deg); animation-delay:.45s; }
.right-big{ width:62px; height:120px; right:0; transform:translate(160px,-50%) rotate(20deg); animation-delay:.6s; }

@keyframes loaderPlate{
  to{
    opacity:1;
    filter:blur(0);
    transform:translate(0,-50%) rotate(0);
  }
}

@keyframes loaderBar{
  to{
    transform:translateY(-50%) scaleX(1);
  }
}

@keyframes loaderDumbbell{
  0%{
    transform:scale(.85) rotateX(35deg) rotateY(-25deg);
  }
  100%{
    transform:scale(1) rotateX(18deg) rotateY(-12deg);
  }
}

.bf-loader__logo{
  position:absolute;
  bottom:26%;
  font-family:'Syne',sans-serif;
  font-weight:900;
  font-size:clamp(2rem, 5vw, 4rem);
  letter-spacing:.18em;
  opacity:0;
  transform:translateY(20px);
  animation:loaderLogo 1s ease 1.25s forwards;
}

.bf-loader__logo span{
  color:#56CCF2;
}

.bf-loader__scan{
  position:absolute;
  top:24%;
  font-family:'Syne',sans-serif;
  font-size:.72rem;
  font-weight:900;
  letter-spacing:.25em;
  color:rgba(86,204,242,.75);
  opacity:0;
  animation:loaderScan 1.4s ease .5s forwards;
}

@keyframes loaderLogo{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes loaderScan{
  0%{ opacity:0; transform:translateY(15px); }
  40%,80%{ opacity:1; }
  100%{ opacity:.4; transform:translateY(0); }
}

.bf-loader__particles span{
  position:absolute;
  width:4px;
  height:4px;
  border-radius:50%;
  background:#56CCF2;
  box-shadow:0 0 18px #56CCF2;
  animation:loaderParticle 2.2s ease forwards;
}

.bf-loader__particles span:nth-child(1){ top:20%; left:18%; }
.bf-loader__particles span:nth-child(2){ top:35%; left:25%; }
.bf-loader__particles span:nth-child(3){ top:65%; left:20%; }
.bf-loader__particles span:nth-child(4){ top:75%; left:32%; }
.bf-loader__particles span:nth-child(5){ top:18%; left:70%; }
.bf-loader__particles span:nth-child(6){ top:38%; left:82%; }
.bf-loader__particles span:nth-child(7){ top:65%; left:78%; }
.bf-loader__particles span:nth-child(8){ top:80%; left:65%; }
.bf-loader__particles span:nth-child(9){ top:50%; left:10%; }
.bf-loader__particles span:nth-child(10){ top:52%; left:90%; }
.bf-loader__particles span:nth-child(11){ top:28%; left:48%; }
.bf-loader__particles span:nth-child(12){ top:72%; left:52%; }
.bf-loader__particles span:nth-child(13){ top:44%; left:40%; }
.bf-loader__particles span:nth-child(14){ top:58%; left:60%; }
.bf-loader__particles span:nth-child(15){ top:15%; left:50%; }

@keyframes loaderParticle{
  0%{
    opacity:0;
    transform:scale(.4);
  }
  35%{
    opacity:1;
    transform:scale(1.4);
  }
  100%{
    opacity:0;
    transform:scale(.2) translateY(-40px);
  }
}

@media(max-width:768px){
  .bf-loader__dumbbell{
    width:300px;
    transform:scale(.75);
  }

  .bf-loader__logo{
    font-size:1.8rem;
  }
}
/* ===== GLOBAL PREMIUM SCROLL REVEAL ===== */

.scroll-reveal{
  opacity:0;
  transform:translateY(70px) scale(.96);
  filter:blur(14px);
  transition:
    opacity 1s ease,
    transform 1s ease,
    filter 1s ease;
}

.scroll-reveal.revealed{
  opacity:1;
  transform:translateY(0) scale(1);
  filter:blur(0);
}

.scroll-reveal.delay-1{ transition-delay:.12s; }
.scroll-reveal.delay-2{ transition-delay:.24s; }
.scroll-reveal.delay-3{ transition-delay:.36s; }

@media(max-width:768px){
  .scroll-reveal{
    opacity:1;
    transform:none;
    filter:none;
  }
}/* ===== EARTH INTRO ===== */

.intro-video{
  position:fixed;
  inset:0;
  z-index:99999;
  background:#000;
  overflow:hidden;
}

.intro-video video{
  width:100%;
  height:100%;
  object-fit:cover;
}

.intro-video.hidden{
  opacity:0 !important;
  visibility:hidden !important;
  pointer-events:none !important;
}

.intro-flash{
  position:absolute;
  inset:0;
  background:#fff;
  opacity:0;
  pointer-events:none;
}body.intro-playing .header,
body.intro-playing .hero{
  opacity:0;
  transform:scale(1.08);
}

.header,
.hero{
  transition:
    opacity 1s ease,
    transform 1.2s ease;
}

body.intro-finished .header,
body.intro-finished .hero{
  opacity:1;
  transform:scale(1);
}
body.intro-playing .header,
body.intro-playing .hero{
  opacity:0;
  transform:scale(1.08);
}

body.intro-finished .header,
body.intro-finished .hero{
  opacity:1;
  transform:scale(1);
}

.header,
.hero{
  transition:
    opacity 1s ease,
    transform 1.2s ease;
}.about-image{
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

.about-image__photo{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 24px;
}@media(max-width:768px){
  .intro-video{
    display:none !important;
  }

  body.intro-playing .header,
  body.intro-playing .hero{
    opacity:1 !important;
    transform:none !important;
  }
}