/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; }

/* ===== THEME VARIABLES ===== */
:root {
  --accent: #22c55e;
  --accent-dark: #16a34a;
  --accent-light: rgba(34,197,94,0.12);
  --accent-glow: rgba(34,197,94,0.25);

  /* Dark mode (default) */
  --bg: #0a0b0f;
  --bg2: #0f1117;
  --bg3: #141720;
  --card: #161a24;
  --card-hover: #1c2030;
  --border: #1e2433;
  --border-light: #252d40;
  --text: #e2e8f0;
  --text-muted: #64748b;
  --text-subtle: #94a3b8;
  --white: #ffffff;
  --nav-bg: rgba(10,11,15,0.85);
  --shadow-card: 0 4px 32px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 60px rgba(34,197,94,0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --nav-h: 68px;
  --transition: 0.2s ease;
}

[data-theme="light"] {
  --bg: #f8fafc;
  --bg2: #f1f5f9;
  --bg3: #e2e8f0;
  --card: #ffffff;
  --card-hover: #f8fafc;
  --border: #e2e8f0;
  --border-light: #cbd5e1;
  --text: #0f172a;
  --text-muted: #64748b;
  --text-subtle: #475569;
  --nav-bg: rgba(248,250,252,0.9);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-glow: 0 0 60px rgba(34,197,94,0.06);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  transition: background var(--transition), color var(--transition);
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}
.section { padding: 100px 0; }
.alt-bg { background: var(--bg2); }

/* ===== GRADIENT TEXT & HIGHLIGHTS ===== */
.accent { color: var(--accent); }
.kw { color: var(--accent); font-weight: 600; }
.kw-bg {
  background: var(--accent-light);
  color: var(--accent);
  font-weight: 600;
  padding: 1px 6px;
  border-radius: 4px;
  border: 1px solid rgba(34,197,94,0.2);
}
.gradient-text {
  background: linear-gradient(135deg, #22c55e 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s;
  border: 1.5px solid transparent;
  white-space: nowrap;
  font-family: inherit;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 20px var(--accent-glow);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 24px var(--accent-glow);
}
.btn-ghost {
  background: transparent;
  color: var(--text-subtle);
  border-color: var(--border-light);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline:hover { background: var(--accent); color: #fff; }
.btn-lg { padding: 14px 32px; font-size: 16px; border-radius: var(--radius-sm); }
.btn-sm { padding: 7px 16px; font-size: 13px; }

/* ===== NAV ===== */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), border-color var(--transition);
}
.nav {
  display: flex;
  align-items: center;
  gap: 36px;
  width: 100%;
}
.logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  flex-shrink: 0;
  letter-spacing: -0.5px;
}
.logo span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 32px;
  flex: 1;
}
.nav-links a {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 12px; margin-left: auto; }

/* Dark mode toggle */
.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text-subtle);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all var(--transition);
  flex-shrink: 0;
}
.theme-toggle:hover { border-color: var(--accent); color: var(--accent); background: var(--card-hover); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 22px;
  cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(34,197,94,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6,182,212,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-light);
  color: var(--accent);
  border: 1px solid rgba(34,197,94,0.25);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-text h1 {
  font-size: clamp(38px, 5.5vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-subtle);
  max-width: 460px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-note { font-size: 13px; color: var(--text-muted); }
.hero-note span { color: var(--accent); font-weight: 600; }

/* Floating phone mockup */
.hero-visual { display: flex; justify-content: center; position: relative; }
.phone-wrap {
  position: relative;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-14px); }
}
.phone-mock {
  width: 270px;
  background: var(--card);
  border-radius: 40px;
  border: 1.5px solid var(--border-light);
  padding: 18px;
  box-shadow: var(--shadow-card), 0 0 80px var(--accent-glow);
  position: relative;
}
.phone-notch {
  width: 80px;
  height: 22px;
  background: var(--bg);
  border-radius: 12px;
  margin: 0 auto 16px;
}
.phone-screen { border-radius: 24px; overflow: hidden; background: var(--bg3); }
.app-preview { padding: 18px 16px; }
.app-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.app-bar strong { font-size: 14px; font-weight: 700; }
.app-badge {
  background: var(--accent-light);
  color: var(--accent);
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
}
.workout-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  background: var(--card);
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.workout-item.active {
  border-color: var(--accent);
  background: var(--accent-light);
}
.wi-icon { font-size: 18px; }
.workout-item > div { flex: 1; }
.workout-item strong { display: block; font-size: 12px; font-weight: 600; }
.workout-item small { color: var(--text-muted); font-size: 11px; }
.wi-check { color: var(--accent); font-size: 13px; font-weight: 700; }
.wi-play { color: var(--accent); font-size: 13px; }
.progress-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  font-size: 11px;
  color: var(--text-muted);
  gap: 8px;
}
.progress-bar { flex: 1; height: 5px; background: var(--border); border-radius: 3px; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--accent), #06b6d4); border-radius: 3px; }

/* Floating badges around phone */
.float-badge {
  position: absolute;
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-card);
}
.float-badge.top-left { top: 20px; left: -60px; }
.float-badge.bottom-right { bottom: 40px; right: -55px; }
.float-badge .fb-icon { font-size: 18px; }
.float-badge .fb-text small { display: block; font-size: 10px; color: var(--text-muted); font-weight: 400; }

/* ===== PROOF BAR ===== */
.proof-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
.proof-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 48px;
}
.proof-stat strong { font-size: 28px; font-weight: 900; color: var(--accent); letter-spacing: -1px; }
.proof-stat span { font-size: 13px; color: var(--text-muted); font-weight: 500; }
.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}
.section-tag {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  border: 1px solid rgba(34,197,94,0.2);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-header h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 14px;
  line-height: 1.15;
}
.section-header p { color: var(--text-subtle); font-size: 17px; line-height: 1.7; }

/* ===== FEATURES GRID ===== */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), #06b6d4);
  opacity: 0;
  transition: opacity 0.25s;
}
.feature-card:hover { border-color: var(--border-light); transform: translateY(-4px); box-shadow: var(--shadow-card); }
.feature-card:hover::before { opacity: 1; }

.feature-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.feature-card p { color: var(--text-subtle); font-size: 14px; line-height: 1.65; margin-bottom: 12px; }
.feature-link { font-size: 13px; font-weight: 600; color: var(--accent); transition: gap 0.2s; display: inline-flex; align-items: center; gap: 4px; }
.feature-link:hover { gap: 8px; }
.section-cta { text-align: center; margin-top: 48px; }

/* ===== HOW IT WORKS ===== */
.steps { display: flex; justify-content: center; align-items: center; gap: 0; flex-wrap: wrap; }
.step-connector { display: flex; align-items: center; }
.step-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--border));
  position: relative;
}
.step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  max-width: 240px;
  text-align: center;
  transition: all 0.25s;
}
.step:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow-card); }
.step-num {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent), #06b6d4);
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px var(--accent-glow);
}
.step h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step p { color: var(--text-subtle); font-size: 14px; line-height: 1.6; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.25s;
}
.testimonial-card:hover { border-color: var(--border-light); transform: translateY(-3px); box-shadow: var(--shadow-card); }
.stars { color: #f59e0b; font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-card p {
  color: var(--text-subtle);
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.7;
}
.testimonial-card p::before { content: '"'; font-size: 24px; color: var(--accent); line-height: 0; vertical-align: -8px; margin-right: 2px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--accent), #06b6d4);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 14px; }
.testimonial-author small { color: var(--text-muted); font-size: 12px; }

/* ===== DOWNLOAD ===== */
.download-section {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.download-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(34,197,94,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.download-inner { position: relative; z-index: 1; }
.download-inner h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 14px;
  line-height: 1.2;
}
.download-inner > p { color: var(--text-subtle); margin-bottom: 36px; font-size: 17px; }
.store-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.store-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--card);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 14px 24px;
  transition: all 0.2s;
  min-width: 170px;
}
.store-btn:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 8px 24px var(--accent-glow); }
.store-btn div { text-align: left; }
.store-btn small { display: block; color: var(--text-muted); font-size: 11px; }
.store-btn strong { display: block; font-size: 16px; font-weight: 700; }
.download-note { font-size: 13px; color: var(--text-muted); }
.download-chips { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  color: var(--text-subtle);
  font-weight: 500;
}
.chip-dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand .logo { font-size: 20px; margin-bottom: 12px; display: inline-block; }
.footer-brand p { color: var(--text-muted); font-size: 14px; max-width: 220px; line-height: 1.6; }
.footer-col strong { display: block; font-size: 13px; color: var(--text); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col a { display: block; color: var(--text-muted); font-size: 14px; margin-bottom: 10px; transition: color var(--transition); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: var(--text-muted); font-size: 13px; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: var(--text-muted); font-size: 13px; transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--accent); }

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(34,197,94,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  line-height: 1.1;
}
.page-hero p { color: var(--text-subtle); font-size: 18px; max-width: 520px; line-height: 1.7; }

/* ===== FEATURE DETAIL ===== */
.feature-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.feature-detail-inner.reverse { direction: rtl; }
.feature-detail-inner.reverse > * { direction: ltr; }
.feature-tag {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  border: 1px solid rgba(34,197,94,0.2);
}
.feature-detail-text h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  line-height: 1.2;
}
.feature-detail-text p { color: var(--text-subtle); font-size: 16px; margin-bottom: 24px; line-height: 1.7; }
.feature-list { display: flex; flex-direction: column; gap: 12px; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text-subtle);
}
.feature-list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  font-size: 12px;
  margin-top: 2px;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-visual { display: flex; flex-direction: column; gap: 16px; }
.stat-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 28px; transition: all 0.25s; }
.stat-card:hover { border-color: var(--border-light); }
.stat-card.accent-card { border-color: rgba(34,197,94,0.3); background: var(--accent-light); }
.stat-card .stat-num { font-size: 36px; font-weight: 900; color: var(--accent); letter-spacing: -1px; }
.stat-card .stat-label { color: var(--text-subtle); font-size: 14px; margin-top: 4px; font-weight: 500; }

.mini-chart { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.chart-label { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; font-weight: 500; }
.bars { display: flex; gap: 8px; align-items: flex-end; height: 80px; }
.bar { flex: 1; background: var(--border); border-radius: 4px 4px 0 0; }
.bar.accent-bar { background: linear-gradient(180deg, var(--accent), #16a34a); }
.chart-sub { font-size: 13px; color: var(--accent); margin-top: 12px; font-weight: 600; }

.challenge-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; text-align: center; }
.challenge-icon { font-size: 40px; margin-bottom: 12px; }
.challenge-card strong { display: block; font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.challenge-card p { color: var(--text-subtle); font-size: 14px; margin-bottom: 12px; }
.challenge-users { color: var(--accent); font-weight: 600; font-size: 14px; }

.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.about-text h2 { font-size: clamp(26px, 3.5vw, 36px); font-weight: 800; letter-spacing: -0.5px; margin-bottom: 20px; line-height: 1.2; }
.about-text p { color: var(--text-subtle); margin-bottom: 16px; font-size: 16px; line-height: 1.7; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-stat-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; transition: all 0.25s; }
.about-stat-card:hover { border-color: var(--border-light); }
.about-stat-card.accent-card { border-color: rgba(34,197,94,0.3); }
.about-stat-card .stat-num { font-size: 30px; font-weight: 900; color: var(--accent); letter-spacing: -1px; }
.about-stat-card .stat-label { color: var(--text-muted); font-size: 13px; margin-top: 4px; font-weight: 500; }

.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: all 0.25s; }
.value-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow-card); }
.value-icon { font-size: 28px; margin-bottom: 14px; }
.value-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.value-card p { color: var(--text-subtle); font-size: 14px; line-height: 1.6; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; text-align: center; transition: all 0.25s; }
.team-card:hover { border-color: var(--border-light); transform: translateY(-3px); box-shadow: var(--shadow-card); }
.team-avatar { width: 64px; height: 64px; background: linear-gradient(135deg, var(--accent), #06b6d4); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 18px; margin: 0 auto 16px; }
.team-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.team-role { display: block; color: var(--accent); font-size: 13px; font-weight: 600; margin-bottom: 12px; }
.team-card p { color: var(--text-subtle); font-size: 14px; line-height: 1.6; }

.featured-post { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 48px; transition: all 0.25s; }
.featured-post:hover { border-color: var(--border-light); }
.post-tag { display: inline-block; background: var(--accent-light); color: var(--accent); padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 16px; border: 1px solid rgba(34,197,94,0.2); }
.featured-post h2 { font-size: clamp(22px, 3vw, 30px); font-weight: 800; margin-bottom: 14px; line-height: 1.25; letter-spacing: -0.5px; }
.featured-post h2 a:hover { color: var(--accent); }
.featured-post p { color: var(--text-subtle); font-size: 16px; margin-bottom: 24px; line-height: 1.7; }
.post-meta { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.post-meta span { color: var(--text-muted); font-size: 14px; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.blog-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: all 0.25s; }
.blog-card:hover { border-color: var(--border-light); transform: translateY(-3px); box-shadow: var(--shadow-card); }
.blog-card-tag { display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--accent); margin-bottom: 12px; }
.blog-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; line-height: 1.35; letter-spacing: -0.2px; }
.blog-card h3 a:hover { color: var(--accent); }
.blog-card p { color: var(--text-subtle); font-size: 14px; margin-bottom: 16px; line-height: 1.65; }
.blog-meta span { color: var(--text-muted); font-size: 12px; }

.newsletter-section { text-align: center; }
.newsletter-inner h2 { font-size: clamp(26px, 3.5vw, 38px); font-weight: 800; letter-spacing: -0.5px; margin-bottom: 12px; }
.newsletter-inner > p { color: var(--text-subtle); margin-bottom: 28px; }
.newsletter-form { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 12px; }
.newsletter-form input { padding: 12px 20px; border-radius: var(--radius-sm); border: 1.5px solid var(--border-light); background: var(--card); color: var(--text); font-size: 15px; width: 300px; outline: none; font-family: inherit; transition: border-color var(--transition); }
.newsletter-form input:focus { border-color: var(--accent); }
.newsletter-note { color: var(--text-muted); font-size: 13px; }

/* ===== NEW FEATURE & ABOUT COMPONENTS ===== */
.feature-overview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 80px; }
.fov-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: all 0.25s; position: relative; overflow: hidden; }
.fov-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--accent), #06b6d4); opacity: 0; transition: opacity 0.25s; }
.fov-card:hover { border-color: var(--border-light); transform: translateY(-3px); box-shadow: var(--shadow-card); }
.fov-card:hover::before { opacity: 1; }
.fov-icon { font-size: 28px; margin-bottom: 14px; }
.fov-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.fov-card p { color: var(--text-subtle); font-size: 14px; line-height: 1.65; }
.fov-link { display: inline-flex; align-items: center; gap: 4px; color: var(--accent); font-size: 13px; font-weight: 600; margin-top: 12px; transition: gap 0.2s; }
.fov-link:hover { gap: 8px; }
.kw { color: var(--accent); font-weight: 600; }
.kw-bg { background: var(--accent-light); color: var(--accent); font-weight: 600; padding: 1px 6px; border-radius: 4px; border: 1px solid rgba(34,197,94,0.2); }
.feature-block { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; padding: 80px 0; border-bottom: 1px solid var(--border); }
.feature-block:last-of-type { border-bottom: none; }
.feature-block.flip { direction: rtl; }
.feature-block.flip > * { direction: ltr; }
.fb-label { display: inline-flex; align-items: center; gap: 8px; background: var(--accent-light); color: var(--accent); border: 1px solid rgba(34,197,94,0.2); padding: 5px 14px; border-radius: 20px; font-size: 12px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 16px; }
.fb-title { font-size: clamp(24px, 3vw, 34px); font-weight: 800; letter-spacing: -0.5px; line-height: 1.2; margin-bottom: 14px; }
.fb-lead { font-size: 17px; color: var(--text-subtle); line-height: 1.75; margin-bottom: 28px; }
.fb-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.fb-list-item { display: flex; align-items: flex-start; gap: 12px; padding: 14px 16px; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm); transition: border-color 0.2s; }
.fb-list-item:hover { border-color: rgba(34,197,94,0.3); }
.fb-check { width: 22px; height: 22px; background: var(--accent-light); color: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.fb-list-item > div strong { display: block; font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.fb-list-item > div span { font-size: 13px; color: var(--text-muted); }
.fb-visual { position: sticky; top: 88px; }
.fb-panel { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-card); }
.fb-panel-title { font-size: 12px; color: var(--text-muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 18px; }
.fb-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 18px; }
.fb-stat { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px; text-align: center; }
.fb-stat .num { font-size: 24px; font-weight: 900; color: var(--accent); letter-spacing: -1px; display: block; }
.fb-stat .lbl { font-size: 11px; color: var(--text-muted); margin-top: 3px; font-weight: 500; }
.fb-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.fb-tag { background: var(--bg2); border: 1px solid var(--border); color: var(--text-subtle); padding: 5px 12px; border-radius: 20px; font-size: 12px; font-weight: 500; }
.fb-tag.active { background: var(--accent-light); border-color: rgba(34,197,94,0.3); color: var(--accent); }
.mission-block { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.mission-text h2 { font-size: clamp(28px, 3.5vw, 40px); font-weight: 800; letter-spacing: -0.5px; margin-bottom: 24px; line-height: 1.2; }
.mission-text p { color: var(--text-subtle); font-size: 16px; line-height: 1.8; margin-bottom: 16px; }
.stats-panel { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-card); }
.stats-panel-title { font-size: 12px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 20px; }
.stats-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.stat-box { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 20px; text-align: center; transition: all 0.2s; }
.stat-box:hover { border-color: rgba(34,197,94,0.3); }
.stat-box .n { font-size: 30px; font-weight: 900; color: var(--accent); letter-spacing: -1px; display: block; }
.stat-box .l { font-size: 12px; color: var(--text-muted); margin-top: 4px; font-weight: 500; }
.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item { display: flex; gap: 20px; padding-bottom: 28px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-line { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.timeline-dot { width: 40px; height: 40px; background: var(--accent-light); border: 2px solid var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.timeline-connector { width: 2px; flex: 1; background: var(--border); margin-top: 8px; min-height: 20px; }
.timeline-item:last-child .timeline-connector { display: none; }
.timeline-content { padding-top: 8px; }
.timeline-content h3 { font-size: 15px; font-weight: 700; margin-bottom: 5px; }
.timeline-content p { color: var(--text-subtle); font-size: 14px; line-height: 1.65; }
.team-card-v2 { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: all 0.25s; display: flex; gap: 20px; align-items: flex-start; }
.team-card-v2:hover { border-color: var(--border-light); box-shadow: var(--shadow-card); }
.team-avatar-v2 { width: 52px; height: 52px; background: linear-gradient(135deg, var(--accent), #06b6d4); color: #fff; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px; flex-shrink: 0; }
.team-card-v2 h3 { font-size: 16px; font-weight: 700; margin-bottom: 3px; }
.team-card-v2 .role { color: var(--accent); font-size: 13px; font-weight: 600; margin-bottom: 8px; display: block; }
.team-card-v2 p { color: var(--text-subtle); font-size: 14px; line-height: 1.65; }
.team-grid-v2 { display: flex; flex-direction: column; gap: 14px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 52px; }
  .hero-visual { order: -1; }
  .float-badge { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-overview-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .feature-detail-inner { grid-template-columns: 1fr; gap: 44px; }
  .feature-detail-inner.reverse { direction: ltr; }
  .feature-block { grid-template-columns: 1fr; gap: 40px; padding: 52px 0; }
  .feature-block.flip { direction: ltr; }
  .fb-visual { position: static; }
  .about-inner { grid-template-columns: 1fr; }
  .mission-block { grid-template-columns: 1fr; gap: 44px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .proof-stat { padding: 0 28px; }
  .proof-divider { display: none; }
}
@media (max-width: 600px) {
  .section { padding: 56px 0; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0; background: var(--bg2); border-bottom: 1px solid var(--border); padding: 12px 0; z-index: 99; }
  .nav-links.open { display: flex; }
  .nav-links li a { display: block; padding: 12px 24px; font-size: 16px; }
  .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-overview-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
  .stats-grid-2 { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .steps { flex-direction: column; }
  .step-line { width: 1px; height: 30px; background: linear-gradient(180deg, var(--accent), var(--border)); }
  .featured-post { padding: 24px; }
  .proof-inner { gap: 20px; }
  .feature-block { padding: 40px 0; }
}
