/* ============================================================
   NDGMS – Premium Gym Management Software
   css/style.css – Shared Stylesheet (All Pages)
   ============================================================ */

/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,300;12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&family=Instrument+Sans:ital,wght@0,400;0,500;0,600;1,400&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  /* Brand Colors */
  --bg-root:       #131619;
  --bg-primary:    #1A1C20;
  --bg-card:       #20292C;
  --bg-card-hover: #252E32;
  --bg-elevated:   #2A3337;
  --gradient-main: linear-gradient(135deg, #20292C 0%, #42464F 100%);
  --gradient-dark: linear-gradient(180deg, #131619 0%, #1A1C20 100%);
  --gradient-card: linear-gradient(145deg, #20292C 0%, #1E2528 100%);

  /* Text */
  --text-primary:  #FFFFFF;
  --text-secondary: #A8B4BC;
  --text-muted:    #6B7882;
  --text-hint:     #4A555C;

  /* Accent – use sparingly */
  --accent:        #00D4FF;
  --accent-dim:    rgba(0, 212, 255, 0.15);
  --accent-glow:   rgba(0, 212, 255, 0.08);

  /* Borders */
  --border:        rgba(255, 255, 255, 0.07);
  --border-hover:  rgba(255, 255, 255, 0.14);
  --border-accent: rgba(0, 212, 255, 0.25);

  /* Shadows */
  --shadow-sm:     0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md:     0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-lg:     0 20px 60px rgba(0, 0, 0, 0.5);
  --shadow-accent: 0 0 40px rgba(0, 212, 255, 0.12);

  /* Typography */
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body:    'Instrument Sans', sans-serif;

  /* Spacing */
  --section-pad:   100px;
  --container-max: 1200px;
  --radius-sm:     8px;
  --radius:        14px;
  --radius-lg:     22px;
  --radius-xl:     32px;

  /* Transitions */
  --ease:          cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring:   cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration:      280ms;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg-root);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button { border: none; background: none; cursor: pointer; font: inherit; color: inherit; }
input, textarea, select { font: inherit; }

/* ===== CONTAINER ===== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* ===== TYPOGRAPHY UTILITIES ===== */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.body-lg { font-size: 1.1rem; line-height: 1.75; }
.body-md { font-size: 0.95rem; line-height: 1.7; }
.body-sm { font-size: 0.85rem; line-height: 1.65; }

.text-secondary { color: var(--text-secondary); }
.text-muted { color: var(--text-muted); }
.text-accent { color: var(--accent); }

.accent-word {
  position: relative;
  display: inline;
}
.underline-accent {
  background: linear-gradient(to right, var(--accent), rgba(0,212,255,0.6));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== SECTION LABELS ===== */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.eyebrow-line {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--accent);
}
.section-eyebrow.centered { display: flex; justify-content: center; }

.section-header { margin-bottom: 64px; }
.section-header.centered { text-align: center; }
.section-header .lead {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-top: 16px;
  line-height: 1.8;
}
.section-header.centered .lead { margin-left: auto; margin-right: auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--duration) var(--ease);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--duration) var(--ease);
}
.btn:hover::after { background: rgba(255,255,255,0.06); }

.btn-primary {
  background: var(--accent);
  color: #0D1A1E;
  box-shadow: 0 0 0 0 rgba(0,212,255,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,212,255,0.35);
}

.btn-secondary {
  background: rgba(255,255,255,0.07);
  color: var(--text-primary);
  border: 1px solid var(--border-hover);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.11);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

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

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

.btn-lg { padding: 17px 36px; font-size: 0.95rem; }
.btn-sm { padding: 10px 20px; font-size: 0.82rem; }
.btn-full { width: 100%; }

.btn-icon {
  width: 40px; height: 40px;
  padding: 0; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
}

/* ===== CARDS ===== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}
.card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-accent), transparent);
  opacity: 0;
  transition: opacity var(--duration) var(--ease);
}
.card:hover::before { opacity: 1; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: all 350ms var(--ease);
}
.navbar.scrolled {
  background: rgba(19, 22, 25, 0.92);
  backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 40px rgba(0,0,0,0.4);
}
.nav-wrap {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 0;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-right: auto;
  transition: opacity var(--duration) var(--ease);
}
.nav-logo:hover { opacity: 0.8; }
.logo-mark {
  width: 34px; height: 34px;
  background: var(--accent);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
}
.logo-mark svg { width: 18px; height: 18px; color: #0D1A1E; }
.logo-name span { color: var(--accent); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0 32px;
}
.nav-menu a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--duration) var(--ease);
  position: relative;
}
.nav-menu a:hover, .nav-menu a.active {
  color: var(--text-primary);
  background: rgba(255,255,255,0.06);
}
.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
}

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

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  padding: 6px;
  border-radius: var(--radius-sm);
  margin-left: auto;
}
.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: all var(--duration) var(--ease);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(13, 16, 18, 0.97);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 14px 32px;
  border-radius: var(--radius);
  width: 80%;
  text-align: center;
  transition: all var(--duration) var(--ease);
}
.mobile-nav a:hover { color: var(--text-primary); background: rgba(255,255,255,0.05); }
.mobile-nav-cta { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; width: 80%; }

/* ===== PAGE TOP PADDING (for fixed nav) ===== */
.page-top { padding-top: 72px; }

/* ===== HERO SECTION (HOME) ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(0,212,255,0.06) 0%, transparent 60%),
              radial-gradient(ellipse 50% 40% at 80% 80%, rgba(32,41,44,0.8) 0%, transparent 60%);
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, black 0%, transparent 80%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.5px;
  margin-bottom: 28px;
}
.badge-pulse {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(0,212,255,0.4); }
  50% { opacity: 0.7; transform: scale(0.85); box-shadow: 0 0 0 6px rgba(0,212,255,0); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--text-primary);
  margin-bottom: 24px;
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
}
.proof-avatars {
  display: flex;
}
.proof-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg-root);
  background: var(--gradient-main);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700;
  margin-left: -8px;
}
.proof-avatar:first-child { margin-left: 0; }
.proof-text { font-size: 0.82rem; color: var(--text-muted); }
.proof-text strong { color: var(--text-primary); }

/* Hero Visual */
.hero-visual { position: relative; }
.hero-dashboard {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--shadow-accent);
  position: relative;
  z-index: 2;
  animation: float-gentle 7s ease-in-out infinite;
}
@keyframes float-gentle {
  0%, 100% { transform: translateY(0px) rotate(0.5deg); }
  50% { transform: translateY(-14px) rotate(-0.5deg); }
}
.db-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: rgba(0,0,0,0.25);
  border-bottom: 1px solid var(--border);
}
.db-dot { width: 10px; height: 10px; border-radius: 50%; }
.db-dot.r { background: #FF6B6B; }
.db-dot.y { background: #FFD93D; }
.db-dot.g { background: #5CDB95; }
.db-title { font-size: 0.72rem; color: var(--text-muted); margin-left: 8px; letter-spacing: 0.5px; }

.db-body { display: flex; }
.db-sidebar {
  width: 140px;
  background: rgba(0,0,0,0.2);
  border-right: 1px solid var(--border);
  padding: 16px 12px;
  flex-shrink: 0;
}
.db-logo { font-size: 0.68rem; font-weight: 800; color: var(--accent); margin-bottom: 18px; font-family: var(--font-display); letter-spacing: 1px; }
.db-nav-item {
  font-size: 0.64rem;
  color: var(--text-muted);
  padding: 7px 10px;
  border-radius: 6px;
  margin-bottom: 2px;
  display: flex; align-items: center; gap: 6px;
  transition: all 0.2s;
}
.db-nav-item.active-item {
  color: var(--accent);
  background: rgba(0,212,255,0.1);
}
.db-nav-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

.db-main { flex: 1; padding: 16px; min-height: 0; }
.db-hello { font-size: 0.68rem; color: var(--text-secondary); margin-bottom: 14px; font-weight: 600; }
.db-kpis { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; margin-bottom: 12px; }
.db-kpi {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 8px;
}
.kpi-val { font-size: 0.9rem; font-weight: 700; color: var(--text-primary); font-family: var(--font-display); }
.kpi-lbl { font-size: 0.55rem; color: var(--text-muted); margin-top: 2px; }
.kpi-change { font-size: 0.52rem; color: #5CDB95; margin-top: 3px; }
.db-chart-row { display: grid; grid-template-columns: 3fr 2fr; gap: 8px; margin-bottom: 10px; }
.db-chart-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px;
}
.chart-title { font-size: 0.6rem; color: var(--text-muted); margin-bottom: 8px; font-weight: 600; }
.mini-bars { display: flex; align-items: flex-end; gap: 4px; height: 48px; }
.mini-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: rgba(0,212,255,0.2);
  transition: height 1s ease;
}
.mini-bar.hi { background: var(--accent); }
.db-pie-ring {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: conic-gradient(var(--accent) 0% 62%, rgba(0,212,255,0.2) 62% 100%);
  display: flex; align-items: center; justify-content: center;
  margin: 4px auto;
}
.pie-inner { width: 30px; height: 30px; background: var(--bg-card); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.5rem; color: var(--accent); font-weight: 700; }

.db-members { }
.member-row {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.6rem;
}
.member-row:last-child { border: none; }
.m-av {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.55rem; font-weight: 700;
  flex-shrink: 0;
}
.m-info { flex: 1; }
.m-name { color: var(--text-primary); font-weight: 600; }
.m-plan { color: var(--text-muted); font-size: 0.52rem; }
.m-badge { padding: 2px 6px; border-radius: 10px; font-size: 0.5rem; font-weight: 600; }
.badge-ok { background: rgba(92,219,149,0.15); color: #5CDB95; }
.badge-exp { background: rgba(255,107,107,0.12); color: #FF8080; }

/* Floating notifs */
.hero-notif {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  z-index: 3;
  min-width: 190px;
  backdrop-filter: blur(12px);
}
.notif-icon { font-size: 1.4rem; flex-shrink: 0; }
.notif-title { font-size: 0.75rem; font-weight: 600; color: var(--text-primary); }
.notif-sub { font-size: 0.65rem; color: var(--text-muted); }
.notif-1 { top: 10%; left: -20%; animation: float-notif 5s ease-in-out infinite; }
.notif-2 { bottom: 20%; right: -15%; animation: float-notif 6s ease-in-out infinite 1s; }
.notif-3 { top: 55%; left: -25%; animation: float-notif 4.5s ease-in-out infinite 0.5s; }
@keyframes float-notif {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.glow-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 120%; height: 120%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.015);
  overflow: hidden;
}
.trust-label {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-hint);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.ticker-wrap { overflow: hidden; position: relative; }
.ticker-wrap::before, .ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.ticker-wrap::before { left: 0; background: linear-gradient(to right, var(--bg-root), transparent); }
.ticker-wrap::after { right: 0; background: linear-gradient(to left, var(--bg-root), transparent); }
.ticker {
  display: flex;
  width: max-content;
  animation: ticker-move 30s linear infinite;
}
.ticker:hover { animation-play-state: paused; }
@keyframes ticker-move { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.gym-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 28px;
  border-right: 1px solid var(--border);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-hint);
  font-family: var(--font-display);
  white-space: nowrap;
  transition: color var(--duration) var(--ease);
}
.gym-chip:hover { color: var(--text-secondary); }
.gym-chip-icon { font-size: 1rem; }

/* ===== FEATURES GRID ===== */
.features-section { padding: var(--section-pad) 0; }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all var(--duration) var(--ease);
  cursor: default;
}
.feat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: radial-gradient(ellipse at bottom center, rgba(0,212,255,0.04), transparent);
  opacity: 0;
  transition: opacity var(--duration) var(--ease);
}
.feat-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(0,212,255,0.08);
}
.feat-card:hover::after { opacity: 1; }
.feat-icon-wrap {
  width: 52px; height: 52px;
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition: all var(--duration) var(--ease);
}
.feat-card:hover .feat-icon-wrap {
  background: rgba(0,212,255,0.15);
  transform: scale(1.05);
}
.feat-icon-wrap svg, .feat-icon-wrap .fi { width: 24px; height: 24px; color: var(--accent); }
.feat-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.feat-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.75;
}
.feat-tag {
  display: inline-block;
  margin-top: 18px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateY(4px);
  transition: all var(--duration) var(--ease);
}
.feat-card:hover .feat-tag { opacity: 1; transform: translateY(0); }

/* ===== ADVANCED FEATURES SECTION ===== */
.adv-section { padding: var(--section-pad) 0; background: var(--bg-primary); }
.adv-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.adv-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--duration) var(--ease);
}
.adv-row:hover { border-color: var(--border-hover); transform: translateX(4px); }
.adv-num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--accent);
  background: rgba(0,212,255,0.08);
  width: 30px; height: 30px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.adv-title { font-size: 0.95rem; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; font-family: var(--font-display); }
.adv-desc { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.7; }

/* ===== DASHBOARD SHOWCASE ===== */
.showcase-section { padding: var(--section-pad) 0; }
.showcase-tabs-wrap {
  display: flex;
  gap: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 5px;
  width: fit-content;
  margin: 0 auto 40px;
  overflow-x: auto;
}
.stab {
  padding: 10px 22px;
  border-radius: 40px;
  font-size: 0.82rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text-muted);
  transition: all var(--duration) var(--ease);
  white-space: nowrap;
}
.stab.active-tab { background: var(--bg-card); color: var(--text-primary); border: 1px solid var(--border); }
.stab:hover:not(.active-tab) { color: var(--text-secondary); }
.showcase-panel { display: none; }
.showcase-panel.active-panel { display: block; animation: panel-in 0.35s ease; }
@keyframes panel-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.screen-frame {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--shadow-accent);
}
.screen-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: rgba(0,0,0,0.2);
  border-bottom: 1px solid var(--border);
}
.screen-url {
  flex: 1;
  text-align: center;
  font-size: 0.7rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.05);
  padding: 5px 16px;
  border-radius: 6px;
}
.screen-body { padding: 28px; min-height: 320px; }

/* Various screen content */
.s-admin-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-bottom: 24px; }
.s-kpi {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
}
.s-kpi-val {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
}
.s-kpi-lbl { font-size: 0.72rem; color: var(--text-muted); margin-top: 4px; }
.s-chart-row { display: grid; grid-template-columns: 2fr 1fr; gap: 16px; }
.s-chart-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}
.s-chart-title { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 14px; font-weight: 600; }
.s-bars { display: flex; align-items: flex-end; gap: 8px; height: 80px; }
.s-bar { flex: 1; border-radius: 4px 4px 0 0; background: rgba(0,212,255,0.2); }
.s-bar:nth-child(4) { background: var(--accent); }
.s-activity-list { display: flex; flex-direction: column; gap: 8px; }
.s-act { display: flex; gap: 10px; align-items: center; font-size: 0.78rem; color: var(--text-secondary); padding: 6px 0; border-bottom: 1px solid var(--border); }
.s-act:last-child { border: none; }
.s-act-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

/* Report screen */
.s-rep-table { width: 100%; border-collapse: collapse; }
.s-rep-table th { font-size: 0.72rem; font-weight: 600; color: var(--text-muted); text-align: left; padding: 8px 12px; border-bottom: 1px solid var(--border); text-transform: uppercase; letter-spacing: 0.8px; }
.s-rep-table td { font-size: 0.82rem; color: var(--text-secondary); padding: 10px 12px; border-bottom: 1px solid var(--border); }
.s-rep-table td:first-child { color: var(--text-primary); font-weight: 600; }
.t-badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 0.68rem; font-weight: 600; }
.t-ok { background: rgba(92,219,149,0.12); color: #5CDB95; }
.t-exp { background: rgba(255,107,107,0.12); color: #FF8080; }
.t-new { background: rgba(0,212,255,0.1); color: var(--accent); }

/* Phone mockup */
.phone-wrap { display: flex; justify-content: center; gap: 32px; padding: 20px 0; }
.phone-mock {
  width: 220px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.phone-mock.offset { margin-top: 40px; opacity: 0.8; }
.p-notch { width: 70px; height: 18px; background: rgba(0,0,0,0.5); border-radius: 0 0 12px 12px; margin: 0 auto; }
.p-screen { padding: 14px; }
.p-hd { font-size: 0.72rem; font-weight: 700; color: var(--accent); text-align: center; margin-bottom: 10px; font-family: var(--font-display); }
.p-avatar { font-size: 2.2rem; text-align: center; margin-bottom: 6px; }
.p-name { font-size: 0.82rem; font-weight: 700; text-align: center; color: var(--text-primary); }
.p-plan { font-size: 0.65rem; color: var(--text-muted); text-align: center; margin-bottom: 8px; }
.p-bar-wrap { background: rgba(255,255,255,0.08); border-radius: 3px; height: 3px; margin-bottom: 14px; }
.p-bar-fill { height: 100%; width: 40%; background: var(--accent); border-radius: 3px; }
.p-menu { display: flex; flex-direction: column; gap: 4px; }
.p-item { font-size: 0.7rem; color: var(--text-secondary); padding: 7px 10px; background: rgba(255,255,255,0.04); border-radius: 7px; display: flex; gap: 8px; align-items: center; }

/* ===== WHY SECTION ===== */
.why-section { padding: var(--section-pad) 0; background: var(--bg-primary); }
.why-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.why-visual-side { position: relative; }
.why-big-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.why-big-card::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(0,212,255,0.08), transparent);
  pointer-events: none;
}
.why-metric { margin-bottom: 28px; }
.metric-val {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 6px;
}
.metric-val span { color: var(--accent); }
.metric-desc { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }
.metric-divider { height: 1px; background: var(--border); margin: 24px 0; }
.why-mini-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 12px; }
.mini-stat { }
.ms-num { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--text-primary); }
.ms-num .ac { color: var(--accent); }
.ms-label { font-size: 0.75rem; color: var(--text-muted); margin-top: 3px; }

.why-list { display: flex; flex-direction: column; gap: 0; }
.why-item {
  display: flex;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: all var(--duration) var(--ease);
}
.why-item:first-child { padding-top: 0; }
.why-item:last-child { border-bottom: none; }
.why-item:hover .wi-icon { background: rgba(0,212,255,0.18); transform: scale(1.05); }
.wi-icon {
  width: 48px; height: 48px;
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all var(--duration) var(--ease);
  font-size: 1.4rem;
}
.wi-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.wi-desc { font-size: 0.87rem; color: var(--text-secondary); line-height: 1.75; }

/* ===== CTA SECTION ===== */
.cta-section {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-main);
}
.cta-glow {
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(0,212,255,0.1), transparent);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; text-align: center; }
.cta-label { font-size: 0.78rem; color: rgba(0,212,255,0.7); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; }
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: -0.025em;
}
.cta-desc { font-size: 1.05rem; color: rgba(255,255,255,0.65); max-width: 520px; margin: 0 auto 36px; line-height: 1.8; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-trust { margin-top: 28px; font-size: 0.78rem; color: rgba(255,255,255,0.4); }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
}
.footer-top { padding: 72px 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr 1.5fr;
  gap: 48px;
}
.footer-brand { }
.footer-brand .nav-logo { margin-bottom: 16px; display: inline-flex; }
.footer-brand-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 24px; max-width: 280px; }
.footer-socials { display: flex; gap: 8px; }
.f-social {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: all var(--duration) var(--ease);
}
.f-social:hover { background: rgba(0,212,255,0.1); border-color: var(--border-accent); color: var(--accent); }
.footer-col-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--duration) var(--ease);
}
.footer-col ul a:hover { color: var(--text-primary); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; }
.fci-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.fci-text { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }
.fci-text a { color: var(--text-muted); transition: color var(--duration) var(--ease); }
.fci-text a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy { font-size: 0.8rem; color: var(--text-hint); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.8rem; color: var(--text-hint); transition: color var(--duration) var(--ease); }
.footer-legal a:hover { color: var(--text-muted); }

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 998;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 14px 22px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
  transition: all var(--duration) var(--ease);
}
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5); }
.wa-float svg { width: 22px; height: 22px; flex-shrink: 0; }

/* ===== SCROLL TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 998;
  width: 44px; height: 44px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  opacity: 0;
  pointer-events: none;
  transition: all var(--duration) var(--ease);
  cursor: pointer;
}
.scroll-top.show { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: rgba(0,212,255,0.1); border-color: var(--border-accent); color: var(--accent); }

/* ===== REVEAL ANIMATIONS ===== */
[data-aos] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
[data-aos="fade-left"] { transform: translateX(-28px); }
[data-aos="fade-right"] { transform: translateX(28px); }
[data-aos="zoom-in"] { transform: scale(0.94); }
[data-aos].aos-animate { opacity: 1; transform: none; }

/* Stagger delays */
.stagger-1 { transition-delay: 0.1s !important; }
.stagger-2 { transition-delay: 0.2s !important; }
.stagger-3 { transition-delay: 0.3s !important; }
.stagger-4 { transition-delay: 0.4s !important; }
.stagger-5 { transition-delay: 0.5s !important; }
.stagger-6 { transition-delay: 0.6s !important; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 120px 0 80px;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(0,212,255,0.06), transparent);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; text-align: center; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--text-muted); transition: color var(--duration) var(--ease); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { color: var(--text-hint); }

/* ===== FEATURES PAGE ===== */
.feat-detail-section { padding: 80px 0; border-bottom: 1px solid var(--border); }
.feat-detail-section:last-of-type { border-bottom: none; }
.feat-detail-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.feat-detail-layout.reverse { direction: rtl; }
.feat-detail-layout.reverse > * { direction: ltr; }
.feat-detail-content { }
.feat-detail-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(0,212,255,0.08);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.05em;
}
.feat-detail-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.feat-detail-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 24px;
}
.feat-points { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.feat-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}
.fp-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.25);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 0.65rem;
  color: var(--accent);
}
.feat-visual-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.feat-visual-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.fvh-icon {
  width: 40px; height: 40px;
  background: rgba(0,212,255,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.fvh-title { font-size: 0.9rem; font-weight: 700; color: var(--text-primary); }
.fvh-sub { font-size: 0.72rem; color: var(--text-muted); }

/* Member list visual */
.member-list-visual { display: flex; flex-direction: column; gap: 10px; }
.mlv-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all var(--duration) var(--ease);
}
.mlv-item:hover { border-color: var(--border-hover); background: rgba(255,255,255,0.05); }
.mlv-av {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; flex-shrink: 0;
}
.mlv-name { font-size: 0.875rem; font-weight: 600; color: var(--text-primary); }
.mlv-plan { font-size: 0.72rem; color: var(--text-muted); }
.mlv-status { margin-left: auto; }

/* Reminder visual */
.reminder-messages { display: flex; flex-direction: column; gap: 12px; }
.msg-bubble {
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 0.82rem;
  line-height: 1.65;
}
.msg-wa {
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.2);
  color: #A8E6C0;
}
.msg-sms {
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.18);
  color: var(--text-secondary);
}
.msg-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.5px; margin-bottom: 6px; }
.msg-wa .msg-label { color: #5CDB95; }
.msg-sms .msg-label { color: var(--accent); }

/* Income visual */
.income-chart-visual { }
.icv-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 20px; }
.icv-metric {
  text-align: center;
  padding: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.icv-val { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; }
.icv-val.pos { color: #5CDB95; }
.icv-val.neg { color: #FF8080; }
.icv-val.acc { color: var(--accent); }
.icv-lbl { font-size: 0.68rem; color: var(--text-muted); margin-top: 4px; }
.icv-bars { display: flex; align-items: flex-end; gap: 8px; height: 80px; margin-top: 12px; }
.icv-bar { flex: 1; border-radius: 4px 4px 0 0; background: rgba(0,212,255,0.2); }
.icv-bar:nth-child(5) { background: var(--accent); }

/* ===== PRICING PAGE ===== */
.pricing-section { padding: var(--section-pad) 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: stretch; }
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.price-popular {
  border-color: var(--border-accent);
  background: linear-gradient(145deg, #20292C, #1E2A2E);
  box-shadow: var(--shadow-accent);
}
.price-popular-badge {
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  background: var(--accent);
  color: #0D1A1E;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: 0 0 12px 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.price-plan {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 6px;
}
.price-amount span { font-size: 1rem; color: var(--text-muted); font-weight: 400; }
.price-billing { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 20px; }
.price-desc { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.price-features { flex: 1; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pf-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}
.pf-check { color: var(--accent); flex-shrink: 0; font-size: 0.8rem; }
.pf-cross { color: var(--text-hint); flex-shrink: 0; font-size: 0.8rem; }
.pf-item.disabled { color: var(--text-hint); }

/* Comparison table */
.compare-section { padding: 80px 0; background: var(--bg-primary); }
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th {
  padding: 16px 20px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.compare-table th:first-child { text-align: left; }
.compare-table td {
  padding: 14px 20px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.compare-table td:first-child { color: var(--text-primary); text-align: left; font-weight: 500; }
.compare-table tr:hover td { background: rgba(255,255,255,0.02); }
.ct-yes { color: #5CDB95; font-size: 1rem; }
.ct-no { color: var(--text-hint); font-size: 1rem; }
.ct-highlight { color: var(--accent); font-weight: 600; font-size: 0.82rem; }
.ct-group td {
  padding: 8px 20px;
  background: rgba(255,255,255,0.025);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  text-align: left !important;
}

/* ===== ABOUT PAGE ===== */
.about-hero-extra { padding: var(--section-pad) 0; }
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-big-text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.about-big-text em { color: var(--accent); font-style: normal; }
.about-paras { display: flex; flex-direction: column; gap: 18px; }
.about-paras p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.85; }
.about-stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.about-stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--duration) var(--ease);
}
.about-stat:hover { border-color: var(--border-accent); transform: scale(1.02); }
.as-num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; color: var(--text-primary); }
.as-num .acc { color: var(--accent); }
.as-lbl { font-size: 0.8rem; color: var(--text-muted); margin-top: 6px; }

.vision-section { padding: var(--section-pad) 0; background: var(--bg-primary); }
.vision-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.vision-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: all var(--duration) var(--ease);
}
.vision-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.vc-icon { font-size: 2rem; margin-bottom: 18px; }
.vc-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 12px; }
.vc-desc { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.8; }

.team-section { padding: var(--section-pad) 0; }
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.team-card {
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  transition: all var(--duration) var(--ease);
}
.team-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.team-av {
  width: 64px; height: 64px;
  background: var(--gradient-main);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 800;
  margin: 0 auto 14px;
  font-family: var(--font-display);
  color: var(--text-secondary);
}
.team-name { font-size: 0.95rem; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; font-family: var(--font-display); }
.team-role { font-size: 0.78rem; color: var(--accent); margin-bottom: 10px; }
.team-bio { font-size: 0.78rem; color: var(--text-muted); line-height: 1.65; }

.support-section { padding: var(--section-pad) 0; background: var(--bg-primary); }
.support-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.support-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--duration) var(--ease);
}
.support-card:hover { border-color: var(--border-accent); transform: translateY(-4px); box-shadow: var(--shadow-accent); }
.sc-icon { font-size: 2rem; margin-bottom: 14px; }
.sc-title { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.sc-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; }

/* ===== CONTACT PAGE ===== */
.contact-section { padding: var(--section-pad) 0; }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info-side { }
.contact-methods { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.cm-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--duration) var(--ease);
}
.cm-item:hover { border-color: var(--border-hover); }
.cm-icon {
  width: 44px; height: 44px;
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.cm-label { font-size: 0.72rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.cm-value { font-size: 0.9rem; color: var(--text-primary); font-weight: 600; }
.cm-value a { color: var(--text-primary); transition: color var(--duration) var(--ease); }
.cm-value a:hover { color: var(--accent); }

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.cfc-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
.cfc-sub { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group.full { grid-column: 1 / -1; }
.form-label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--text-muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.8px; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: all var(--duration) var(--ease);
  outline: none;
  -webkit-appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-hint); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--border-accent);
  background: rgba(0,212,255,0.05);
  box-shadow: 0 0 0 3px rgba(0,212,255,0.08);
}
.form-select option { background: var(--bg-card); color: var(--text-primary); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-msg { margin-top: 14px; font-size: 0.85rem; padding: 12px 16px; border-radius: var(--radius-sm); text-align: center; }
.form-msg.success { background: rgba(92,219,149,0.1); color: #5CDB95; border: 1px solid rgba(92,219,149,0.2); }
.form-msg.error { background: rgba(255,107,107,0.1); color: #FF8080; border: 1px solid rgba(255,107,107,0.2); }
.form-privacy { font-size: 0.75rem; color: var(--text-hint); text-align: center; margin-top: 12px; }
.form-privacy a { color: var(--text-muted); }

/* ===== FAQ ===== */
.faq-section { padding: var(--section-pad) 0; background: var(--bg-primary); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--duration) var(--ease);
}
.faq-item:hover { border-color: var(--border-hover); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: color var(--duration) var(--ease);
}
.faq-q:hover { color: var(--accent); }
.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  transition: all var(--duration) var(--ease);
}
.faq-item.open .faq-icon { background: rgba(0,212,255,0.1); color: var(--accent); transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.8;
  transition: max-height 0.35s var(--ease), padding 0.35s var(--ease);
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 24px 20px; }

/* ===== LOADING SCREEN ===== */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-root);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  transition: opacity 0.5s var(--ease), visibility 0.5s var(--ease);
}
.page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: var(--text-primary); display: flex; gap: 8px; align-items: center; }
.loader-bar-wrap { width: 160px; height: 2px; background: var(--border); border-radius: 2px; overflow: hidden; }
.loader-bar { height: 100%; width: 0%; background: var(--accent); border-radius: 2px; animation: load-bar 1.2s var(--ease) forwards; }
@keyframes load-bar { to { width: 100%; } }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .hero-inner { gap: 50px; }
  .features-section .feat-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-grid { gap: 16px; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  :root { --section-pad: 72px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-desc { max-width: 100%; }
  .why-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .about-intro { grid-template-columns: 1fr; }
  .feat-detail-layout { grid-template-columns: 1fr; gap: 40px; }
  .feat-detail-layout.reverse { direction: ltr; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .adv-grid { grid-template-columns: 1fr; }
  .vision-grid { grid-template-columns: 1fr 1fr; }
  .support-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .price-popular { transform: none; }
  .faq-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .nav-menu { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .s-admin-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
  :root { --section-pad: 56px; }
  .feat-grid { grid-template-columns: 1fr; }
  .about-stats-grid { grid-template-columns: 1fr 1fr; }
  .vision-grid { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .wa-float .wa-text { display: none; }
  .wa-float { padding: 14px; border-radius: 50%; }
  .compare-table { font-size: 0.75rem; }
  .compare-table th, .compare-table td { padding: 10px 8px; }
  .hero-social-proof { display: none; }
  .s-chart-row { grid-template-columns: 1fr; }
}
