:root {
  --bg: #0a0e17;
  --bg2: #0f1520;
  --card: #131a28;
  --card2: #182035;
  --border: #1e2a42;
  --fg: #e8edf5;
  --fg2: #94a3bf;
  --muted: #5a6a88;
  --accent: #00e5a0;
  --accent2: #00c8ff;
  --accent3: #ff6b4a;
  --glow: rgba(0, 229, 160, 0.15);
  --glow2: rgba(0, 200, 255, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--bg);
  color: var(--fg);
  overflow-x: hidden;
  line-height: 1.6;
}

::selection {
  background: var(--accent);
  color: var(--bg);
}

/* ========== BACKGROUND EFFECTS ========== */
.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(30, 42, 66, 0.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 42, 66, 0.25) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
  pointer-events: none;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.orb1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 229, 160, 0.1), transparent 70%);
  top: -200px;
  right: -150px;
  animation: orbFloat 15s ease-in-out infinite;
}

.orb2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 200, 255, 0.07), transparent 70%);
  bottom: -100px;
  left: -100px;
  animation: orbFloat 18s ease-in-out infinite reverse;
}

.orb3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 107, 74, 0.05), transparent 70%);
  top: 40%;
  left: 30%;
  animation: orbFloat 12s ease-in-out infinite 3s;
}

@keyframes orbFloat {
  0%, 100% {
    transform: translate(0, 0);
  }
  33% {
    transform: translate(40px, -30px);
  }
  66% {
    transform: translate(-25px, 20px);
  }
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 14, 23, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--fg);
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  color: var(--bg);
  transition: box-shadow 0.3s;
  overflow: hidden;
}

.nav-logo:hover .nav-logo-icon {
  box-shadow: 0 0 25px rgba(0, 229, 160, 0.4);
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.18));
}

.nav-logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--fg2);
  font-size: 14px;
  font-weight: 400;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--fg);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px;
  background: var(--accent);
  color: var(--bg) !important;
  border-radius: 8px;
  font-weight: 600 !important;
  font-size: 13px !important;
  transition: all 0.3s !important;
  letter-spacing: 0.5px;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  box-shadow: 0 0 30px rgba(0, 229, 160, 0.3);
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--fg);
  width: 42px;
  height: 42px;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 40px 80px;
}

.hero-content {
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 40px;
  background: rgba(0, 229, 160, 0.04);
}

.hero-badge i {
  font-size: 10px;
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 28px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 18px;
  color: var(--fg2);
  max-width: 600px;
  margin: 0 auto 48px;
  font-weight: 300;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-primary:hover {
  box-shadow: 0 0 40px rgba(0, 229, 160, 0.35);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--glow);
}

.hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.hero-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stat-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-indicator i {
  font-size: 16px;
}

@keyframes scrollBounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ========== SECTIONS ========== */
section {
  position: relative;
  z-index: 1;
  padding: 120px 40px;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.section-desc {
  font-size: 17px;
  color: var(--fg2);
  line-height: 1.8;
  max-width: 650px;
  font-weight: 300;
}

.section-header {
  margin-bottom: 64px;
}

.section-header.center {
  text-align: center;
}

.section-header.center .section-desc {
  margin: 0 auto;
}

/* ========== ABOUT ========== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-card-main {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.about-card-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}

.about-big-number {
  font-family: 'Outfit', sans-serif;
  font-size: 96px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.about-big-label {
  font-size: 16px;
  color: var(--fg2);
  font-weight: 400;
}

.about-float-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-float-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(0, 229, 160, 0.12);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.about-float-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
}

.about-float-text span {
  font-size: 12px;
  color: var(--muted);
}

.about-text p {
  font-size: 16px;
  color: var(--fg2);
  line-height: 1.8;
  margin-bottom: 24px;
  font-weight: 300;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.pillar-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s;
}

.pillar-item:hover {
  border-color: rgba(0, 229, 160, 0.3);
  transform: translateX(4px);
}

.pillar-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.pillar-dot.g {
  background: var(--accent);
  box-shadow: 0 0 10px rgba(0, 229, 160, 0.4);
}

.pillar-dot.b {
  background: var(--accent2);
  box-shadow: 0 0 10px rgba(0, 200, 255, 0.4);
}

.pillar-dot.o {
  background: var(--accent3);
  box-shadow: 0 0 10px rgba(255, 107, 74, 0.4);
}

.pillar-item span {
  font-size: 15px;
  font-weight: 500;
}

/* ========== SERVICES ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 32px;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover {
  border-color: rgba(0, 229, 160, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
}

.service-icon.green {
  background: rgba(0, 229, 160, 0.1);
  color: var(--accent);
}

.service-icon.blue {
  background: rgba(0, 200, 255, 0.1);
  color: var(--accent2);
}

.service-icon.orange {
  background: rgba(255, 107, 74, 0.1);
  color: var(--accent3);
}

.service-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: var(--fg2);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 20px;
}

.service-link {
  font-size: 13px;
  color: var(--accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  transition: gap 0.3s;
}

.service-link:hover {
  gap: 10px;
}

/* ========== PRODUCTS ========== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}

.product-card:hover {
  border-color: rgba(0, 229, 160, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
}

.product-card.featured {
  border-color: rgba(0, 229, 160, 0.4);
  background: linear-gradient(160deg, rgba(0, 229, 160, 0.06), var(--card) 60%);
}

.product-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.product-badge.live {
  background: var(--accent);
  color: var(--bg);
}

.product-badge.dev {
  background: rgba(0, 200, 255, 0.15);
  color: var(--accent2);
}

.product-badge.planned {
  background: rgba(255, 107, 74, 0.15);
  color: var(--accent3);
}

.product-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.product-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.product-card .desc {
  font-size: 14px;
  color: var(--fg2);
  line-height: 1.8;
  margin-bottom: 20px;
  font-weight: 300;
}

.product-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.status-dot.live {
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: statusPulse 2s ease-in-out infinite;
}

.status-dot.dev {
  background: var(--accent2);
}

.status-dot.planned {
  background: var(--accent3);
}

@keyframes statusPulse {
  0%, 100% {
    box-shadow: 0 0 10px var(--accent);
  }
  50% {
    box-shadow: 0 0 20px var(--accent);
  }
}

/* ========== CASE STUDY (GYMANYWHERE) ========== */
.case-study {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.case-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}

.case-content p {
  font-size: 15px;
  color: var(--fg2);
  line-height: 1.8;
  margin-bottom: 16px;
  font-weight: 300;
}

.case-highlight {
  padding: 20px 24px;
  background: rgba(0, 229, 160, 0.06);
  border: 1px solid rgba(0, 229, 160, 0.15);
  border-radius: 12px;
  margin: 24px 0;
}

.case-highlight strong {
  color: var(--accent);
  font-weight: 700;
}

.gym-partners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.gym-partner-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.3s;
}

.gym-partner-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.gym-partner-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 20px;
  color: var(--bg);
}

.gym-partner-card h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.gym-partner-card span {
  font-size: 12px;
  color: var(--muted);
}

.case-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.case-stat {
  text-align: center;
  padding: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.case-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
}

.case-stat-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ========== OUTSOURCING ========== */
.outsource-table-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 40px;
}

.outsource-table {
  width: 100%;
  border-collapse: collapse;
}

.outsource-table thead {
  background: var(--card2);
}

.outsource-table th {
  text-align: left;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  padding: 18px 28px;
  font-weight: 500;
}

.outsource-table td {
  padding: 20px 28px;
  font-size: 15px;
  border-top: 1px solid var(--border);
}

.outsource-table tr {
  transition: background 0.3s;
}

.outsource-table tbody tr:hover {
  background: rgba(0, 229, 160, 0.03);
}

.badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
}

.badge.green {
  background: rgba(0, 229, 160, 0.1);
  color: var(--accent);
}

.outsource-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.outsource-stat-card {
  text-align: center;
  padding: 32px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.3s;
}

.outsource-stat-card:hover {
  border-color: rgba(0, 200, 255, 0.3);
  transform: translateY(-4px);
}

.outsource-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 40px;
  font-weight: 900;
  color: var(--accent2);
  line-height: 1;
  margin-bottom: 8px;
}

.outsource-stat-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ========== SERVICING PROJECTS ========== */
.servicing-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.servicing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  transition: all 0.4s;
}

.servicing-card:hover {
  border-color: rgba(0, 229, 160, 0.3);
  transform: translateX(6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.servicing-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.servicing-icon.green {
  background: rgba(0, 229, 160, 0.1);
  color: var(--accent);
}

.servicing-icon.blue {
  background: rgba(0, 200, 255, 0.1);
  color: var(--accent2);
}

.servicing-icon.orange {
  background: rgba(255, 107, 74, 0.1);
  color: var(--accent3);
}

.servicing-info h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.servicing-info p {
  font-size: 14px;
  color: var(--fg2);
  line-height: 1.8;
  margin-bottom: 14px;
  font-weight: 300;
}

.tag-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 500;
}

.tag.green {
  background: rgba(0, 229, 160, 0.08);
  color: var(--accent);
  border: 1px solid rgba(0, 229, 160, 0.15);
}

.tag.blue {
  background: rgba(0, 200, 255, 0.08);
  color: var(--accent2);
  border: 1px solid rgba(0, 200, 255, 0.15);
}

.tag.orange {
  background: rgba(255, 107, 74, 0.08);
  color: var(--accent3);
  border: 1px solid rgba(255, 107, 74, 0.15);
}

/* ========== FINANCIAL ========== */
.financial {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.financial-hero {
  text-align: center;
  margin-bottom: 64px;
}

.financial-big {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(56px, 8vw, 100px);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.financial-sub {
  font-size: 16px;
  color: var(--fg2);
  font-weight: 300;
}

.financial-bars {
  display: flex;
  gap: 48px;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.fin-bar-group {
  text-align: center;
}

.fin-bar-value {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
}

.fin-bar-track {
  width: 120px;
  height: 200px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px 12px 6px 6px;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

.fin-bar-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 12px 12px 0 0;
  transition: height 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.fin-bar-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.financial-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.fin-detail-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s;
}

.fin-detail-card:hover {
  border-color: rgba(0, 229, 160, 0.3);
  transform: translateY(-4px);
}

.fin-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 auto 16px;
}

.fin-detail-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.fin-detail-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ========== VISION ========== */
.vision-target {
  text-align: center;
  margin-bottom: 64px;
}

.vision-number {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(64px, 10vw, 120px);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.vision-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s;
}

.vision-card:hover {
  border-color: rgba(0, 229, 160, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.vision-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 18px;
}

.vision-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.vision-card p {
  font-size: 13px;
  color: var(--fg2);
  line-height: 1.7;
  font-weight: 300;
}

/* ========== PARTNERS / LOGOS ========== */
.partners {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.partner-section-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.logo-slot {
  aspect-ratio: 2.5 / 1;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg2);
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s;
  overflow: hidden;
  padding: 16px;
}

.logo-slot:hover {
  border-color: rgba(0, 229, 160, 0.3);
  background: var(--card2);
  transform: translateY(-2px);
}

.logo-slot img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(0.85);
  transition: filter 0.3s;
}

.logo-slot:hover img {
  filter: brightness(1.1);
}

.logo-grid.gyms {
  grid-template-columns: repeat(4, 1fr);
}

.logo-grid.serving {
  grid-template-columns: repeat(4, 1fr);
}

/* ========== CTA ========== */
.cta {
  text-align: center;
  padding: 140px 40px;
}

.cta-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.cta-desc {
  font-size: 17px;
  color: var(--fg2);
  max-width: 550px;
  margin: 0 auto 40px;
  font-weight: 300;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.contact-row {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--fg2);
  transition: color 0.3s;
}

.contact-item:hover {
  color: var(--fg);
}

.contact-item i {
  color: var(--accent);
  font-size: 18px;
}

/* ========== FOOTER ========== */
.footer {
  position: relative;
  z-index: 1;
  padding: 48px 40px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  color: var(--bg);
  overflow: hidden;
}

.brand-logo-sm {
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.16));
}

.footer-logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.footer-copy {
  font-size: 13px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--accent);
}

/* ========== SCROLL ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.d1 {
  transition-delay: 0.1s;
}

.reveal.d2 {
  transition-delay: 0.2s;
}

.reveal.d3 {
  transition-delay: 0.3s;
}

.reveal.d4 {
  transition-delay: 0.4s;
}

.reveal.d5 {
  transition-delay: 0.5s;
}

/* ========== MOBILE NAV ========== */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 14, 23, 0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--fg);
  text-decoration: none;
  transition: color 0.3s;
}

.mobile-menu a:hover {
  color: var(--accent);
}

.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: 1px solid var(--border);
  color: var(--fg);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .services-grid,
  .products-grid,
  .vision-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .logo-grid.gyms,
  .logo-grid.serving {
    grid-template-columns: repeat(2, 1fr);
  }

  .financial-details {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  section {
    padding: 80px 20px;
  }

  .navbar {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero {
    padding: 100px 20px 60px;
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .hero-stat-num {
    font-size: 28px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-visual {
    order: -1;
  }

  .about-float-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 16px;
  }

  .services-grid,
  .products-grid,
  .vision-grid {
    grid-template-columns: 1fr;
  }

  .case-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .gym-partners-grid {
    grid-template-columns: 1fr;
  }

  .case-stats-row {
    grid-template-columns: 1fr;
  }

  .outsource-stats {
    grid-template-columns: 1fr;
  }

  .outsource-table th,
  .outsource-table td {
    padding: 14px 16px;
    font-size: 13px;
  }

  .servicing-card {
    flex-direction: column;
    gap: 16px;
  }

  .financial-bars {
    flex-direction: column;
    align-items: center;
  }

  .fin-bar-track {
    width: 100px;
    height: 140px;
  }

  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-row {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .scroll-indicator {
    display: none;
  }
}

