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

/* ========================================
   DESIGN TOKENS
======================================== */
:root {
  --primary: #1D4ED8;
  --primary-hover: #1E40AF;
  --primary-light: #EFF6FF;
  --primary-mid: #BFDBFE;
  --secondary: #0EA5E9;
  --success: #059669;
  --success-light: #D1FAE5;
  --warning: #D97706;
  --warning-light: #FEF3C7;
  --danger: #DC2626;
  --danger-light: #FEE2E2;

  --bg: #F1F5F9;
  --bg-2: #E8EEF6;
  --card: #FFFFFF;
  --dark: #0B1120;
  --dark-2: #111827;
  --dark-3: #1E293B;
  --dark-4: #334155;

  --text: #0F172A;
  --text-2: #1E293B;
  --text-3: #475569;
  --text-4: #64748B;
  --text-5: #94A3B8;
  --text-inv: #F8FAFC;

  --border: #E2E8F0;
  --border-2: #CBD5E1;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 16px rgba(0,0,0,0.07), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.09), 0 3px 10px rgba(0,0,0,0.06);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.12), 0 6px 20px rgba(0,0,0,0.08);
  --shadow-xl: 0 32px 80px rgba(0,0,0,0.18), 0 8px 32px rgba(0,0,0,0.1);

  --r-xs: 4px;
  --r-sm: 6px;
  --r: 10px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 20px;

  --container: 1200px;
  --header-h: 68px;
}

/* ========================================
   RESET & BASE
======================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ========================================
   LAYOUT
======================================== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ========================================
   TOP PROMO BAR
======================================== */
.topbar {
  background: linear-gradient(90deg, #1D4ED8, #0EA5E9);
  padding: 10px 0;
  text-align: center;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar p {
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}
.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.2);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  transition: background 0.2s;
  text-decoration: none;
}
.topbar-link:hover { background: rgba(255,255,255,0.3); }
.topbar-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 18px;
  cursor: pointer;
  padding: 4px 8px;
}

/* ========================================
   HEADER
======================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 17, 32, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow 0.3s;
}
.header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #2563EB 0%, #0EA5E9 100%);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { width: 20px; height: 20px; fill: white; }
.logo-name {
  font-size: 19px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.5px;
}
.logo-name em {
  font-style: normal;
  color: #60A5FA;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #94A3B8;
  font-size: 14px;
  font-weight: 500;
  padding: 7px 13px;
  border-radius: var(--r-sm);
  transition: all 0.18s;
  white-space: nowrap;
}
.nav a:hover, .nav a.active {
  color: #E2E8F0;
  background: rgba(255,255,255,0.07);
}
.nav a.active { color: white; }

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 6px;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: #111827;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 12px 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: #94A3B8;
  font-size: 15px;
  font-weight: 500;
  padding: 11px 24px;
  transition: all 0.18s;
}
.mobile-nav a:hover { color: white; background: rgba(255,255,255,0.05); }

/* ========================================
   BUTTONS
======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: var(--r-sm);
  transition: all 0.18s;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
}
.btn-sm { font-size: 13px; padding: 7px 14px; }
.btn-lg { font-size: 15px; padding: 13px 26px; }
.btn-xl { font-size: 16px; padding: 15px 30px; border-radius: var(--r); }

.btn-primary {
  background: var(--primary);
  color: white;
  border: 1px solid var(--primary);
}
.btn-primary:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(29, 78, 216, 0.35);
}

.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.12);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.14);
  color: white;
  border-color: rgba(255,255,255,0.2);
}

.btn-outline-dark {
  background: transparent;
  color: var(--text-3);
  border: 1px solid var(--border-2);
}
.btn-outline-dark:hover {
  background: white;
  color: var(--text);
  border-color: var(--border-2);
  box-shadow: var(--shadow-sm);
}

.btn-download {
  background: linear-gradient(135deg, #047857, #059669);
  color: white;
  border: 1px solid #065F46;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: var(--r);
  box-shadow: 0 4px 20px rgba(5, 150, 105, 0.28);
}
.btn-download:hover {
  background: linear-gradient(135deg, #065F46, #047857);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(5, 150, 105, 0.38);
}

.btn-download-sm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: white;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: var(--r-sm);
  transition: all 0.18s;
}
.btn-download-sm:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(29, 78, 216, 0.3);
}

/* ========================================
   BADGES
======================================== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
  letter-spacing: 0.2px;
}
.badge-green { background: var(--success-light); color: var(--success); }
.badge-blue { background: var(--primary-light); color: var(--primary); }
.badge-gray { background: #F1F5F9; color: #64748B; border: 1px solid var(--border); }
.badge-yellow { background: var(--warning-light); color: var(--warning); }
.badge-red { background: var(--danger-light); color: var(--danger); }
.badge-dark { background: #1E293B; color: #94A3B8; }

/* ========================================
   STARS / RATING
======================================== */
.stars {
  color: #F59E0B;
  letter-spacing: 1px;
  font-size: 13px;
}
.rating {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-4);
  font-weight: 500;
}

/* ========================================
   SECTION COMMON
======================================== */
.section { padding: 88px 0; }
.section-sm { padding: 64px 0; }

.section-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.section-title {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.18;
  color: var(--text);
  margin-bottom: 14px;
}
.section-title-inv { color: white; }

.section-sub {
  font-size: 17px;
  color: var(--text-4);
  line-height: 1.7;
  max-width: 560px;
}
.section-sub-inv { color: #64748B; max-width: 560px; }

.section-head { margin-bottom: 48px; }
.section-head.centered { text-align: center; }
.section-head.centered .section-sub { margin: 0 auto; }

/* ========================================
   HERO
======================================== */
.hero {
  background: var(--dark);
  padding: 84px 0 96px;
  position: relative;
  overflow: hidden;
}

/* Background effects */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-bg-glow-1 {
  position: absolute;
  width: 600px;
  height: 600px;
  left: -100px;
  top: -100px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
}
.hero-bg-glow-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  right: 0;
  bottom: -100px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, transparent 70%);
}
.hero-bg-grid {
  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: 48px 48px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.28);
  color: #93C5FD;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 5px 13px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero-label-dot {
  width: 7px;
  height: 7px;
  background: #3B82F6;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1.8px;
  color: white;
  margin-bottom: 20px;
}
.hero h1 .grad {
  background: linear-gradient(135deg, #60A5FA 0%, #38BDF8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 17px;
  color: #94A3B8;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.hero-os-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #475569;
  margin-top: 10px;
}

.hero-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.08);
}

.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.07);
  flex-wrap: wrap;
}
.hero-stat-num {
  font-size: 26px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.5px;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: 12px;
  color: #4B5563;
  font-weight: 500;
}

/* ========================================
   APP WINDOW MOCKUP (Hero Visual)
======================================== */
.app-mockup-wrap {
  position: relative;
}
.app-mockup-wrap::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at 50% 50%, rgba(37,99,235,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.app-window {
  background: #141C2E;
  border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,0.09);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 40px 100px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.07);
  position: relative;
  z-index: 1;
}

.window-bar {
  background: #0D1424;
  padding: 11px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  user-select: none;
}
.wdots {
  display: flex;
  gap: 6px;
}
.wdots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.wdots span:nth-child(1) { background: #FF5F57; }
.wdots span:nth-child(2) { background: #FEBC2E; }
.wdots span:nth-child(3) { background: #28C840; }
.window-title-text {
  font-size: 12px;
  color: #475569;
  font-weight: 500;
  margin-left: 2px;
}

.window-sidebar {
  display: flex;
  height: 100%;
}
.wsidebar {
  width: 160px;
  background: #0F1829;
  padding: 16px 0;
  border-right: 1px solid rgba(255,255,255,0.05);
  flex-shrink: 0;
}
.wsidebar-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px;
  font-size: 12px;
  color: #4B5563;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  border-left: 2px solid transparent;
}
.wsidebar-item.active {
  color: #60A5FA;
  background: rgba(37,99,235,0.1);
  border-left-color: #3B82F6;
}
.wsidebar-item span { font-size: 14px; }

.window-main {
  flex: 1;
  padding: 20px;
  min-width: 0;
}

.win-score-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.score-ring {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  position: relative;
}
.score-ring svg {
  width: 72px;
  height: 72px;
  transform: rotate(-90deg);
}
.score-ring-track { fill: none; stroke: #1E2D45; stroke-width: 6; }
.score-ring-fill {
  fill: none;
  stroke: #10B981;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 175;
  stroke-dashoffset: 14;
  filter: drop-shadow(0 0 4px rgba(16,185,129,0.5));
}
.score-ring-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.score-ring-num {
  font-size: 18px;
  font-weight: 800;
  color: #10B981;
  line-height: 1;
}
.score-ring-of {
  font-size: 9px;
  color: #374151;
}

.win-score-text h4 {
  font-size: 14px;
  font-weight: 700;
  color: #E2E8F0;
  margin-bottom: 3px;
}
.win-score-text p {
  font-size: 11px;
  color: #4B5563;
  line-height: 1.4;
}

.win-metrics {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.wmetric {
  display: grid;
  grid-template-columns: 52px 1fr 36px;
  align-items: center;
  gap: 9px;
}
.wmetric-name {
  font-size: 11px;
  color: #4B5563;
  font-weight: 600;
}
.wmetric-bar {
  height: 5px;
  background: #1A2438;
  border-radius: 3px;
  overflow: hidden;
}
.wmetric-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.wmetric-fill-blue { background: linear-gradient(90deg, #2563EB, #60A5FA); }
.wmetric-fill-green { background: linear-gradient(90deg, #059669, #34D399); }
.wmetric-fill-yellow { background: linear-gradient(90deg, #D97706, #FCD34D); }
.wmetric-fill-red { background: linear-gradient(90deg, #DC2626, #F87171); }
.wmetric-val {
  font-size: 11px;
  color: #64748B;
  font-weight: 600;
  text-align: right;
}

.win-alert {
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.18);
  border-radius: 7px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.win-alert-text {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  color: #FCA5A5;
  font-weight: 600;
}
.win-alert-count {
  background: #DC2626;
  color: white;
  font-size: 11px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 100px;
}

.win-btn {
  width: 100%;
  padding: 10px;
  background: linear-gradient(135deg, #1D4ED8, #3B82F6);
  color: white;
  font-size: 12px;
  font-weight: 700;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(29,78,216,0.4);
}

/* ========================================
   TRUST STRIP
======================================== */
.trust-strip {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-4);
}
.trust-item-icon { font-size: 18px; }
.trust-sep {
  width: 1px;
  height: 20px;
  background: var(--border);
}

/* ========================================
   FEATURED APP SECTION
======================================== */
.featured-section {
  background: white;
}
.featured-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.featured-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, #DBEAFE, #EFF6FF);
  border: 1px solid #BFDBFE;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.featured-title {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text);
}
.featured-desc {
  font-size: 16px;
  color: var(--text-4);
  line-height: 1.75;
  margin-bottom: 28px;
}
.featured-checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.featured-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.5;
}
.check-icon {
  width: 20px;
  height: 20px;
  background: var(--success-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 11px;
}

.featured-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.featured-meta-item {
  display: flex;
  flex-direction: column;
}
.fmi-num {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
}
.fmi-label {
  font-size: 12px;
  color: var(--text-4);
}

/* Featured visual: large app window */
.featured-window {
  background: #F8FAFC;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.fw-header {
  background: #0F172A;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.fw-dots { display: flex; gap: 5px; }
.fw-dots span { width: 10px; height: 10px; border-radius: 50%; }
.fw-dots span:nth-child(1) { background: #FF5F57; }
.fw-dots span:nth-child(2) { background: #FEBC2E; }
.fw-dots span:nth-child(3) { background: #28C840; }
.fw-title {
  font-size: 12px;
  color: #475569;
  font-weight: 500;
  margin-left: 4px;
}

.fw-body {
  padding: 24px;
}
.fw-tabs {
  display: flex;
  gap: 4px;
  background: #F1F5F9;
  border-radius: var(--r-sm);
  padding: 4px;
  margin-bottom: 20px;
}
.fw-tab {
  flex: 1;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  border-radius: var(--r-xs);
  color: var(--text-4);
  cursor: pointer;
}
.fw-tab.active {
  background: white;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.fw-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.fw-stat-box {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 14px;
  text-align: center;
}
.fw-stat-box-num {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text);
  margin-bottom: 4px;
}
.fw-stat-box-label {
  font-size: 11px;
  color: var(--text-4);
  font-weight: 500;
}

.fw-chart {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 16px;
}
.fw-chart-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-3);
  margin-bottom: 14px;
}
.fw-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 80px;
}
.fw-bar {
  flex: 1;
  background: #DBEAFE;
  border-radius: 3px 3px 0 0;
  position: relative;
}
.fw-bar.active { background: #2563EB; }
.fw-bar-labels {
  display: flex;
  gap: 8px;
  margin-top: 6px;
}
.fw-bar-label {
  flex: 1;
  font-size: 10px;
  color: var(--text-5);
  text-align: center;
}

/* ========================================
   APPS SECTION (grid)
======================================== */
.apps-section { background: var(--bg); }

.apps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.app-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px;
  display: flex;
  flex-direction: column;
  transition: all 0.2s;
}
.app-card:hover {
  border-color: #93C5FD;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.app-card:hover .btn-download-sm {
  background: var(--primary-hover);
}

.app-card-top {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 14px;
}

.app-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.ai-blue { background: linear-gradient(135deg, #DBEAFE, #BFDBFE); }
.ai-green { background: linear-gradient(135deg, #D1FAE5, #A7F3D0); }
.ai-purple { background: linear-gradient(135deg, #EDE9FE, #DDD6FE); }
.ai-orange { background: linear-gradient(135deg, #FEF3C7, #FDE68A); }
.ai-red { background: linear-gradient(135deg, #FEE2E2, #FECACA); }
.ai-cyan { background: linear-gradient(135deg, #CFFAFE, #A5F3FC); }

.app-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}
.app-short-desc {
  font-size: 12px;
  color: var(--text-4);
  line-height: 1.4;
}

.app-card-badges {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.app-features {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
  flex: 1;
}
.app-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-3);
}
.app-feat::before {
  content: '✓';
  width: 16px;
  height: 16px;
  background: var(--success-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: var(--success);
  font-weight: 800;
  flex-shrink: 0;
}

.app-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.app-file-size {
  font-size: 11px;
  color: var(--text-5);
}
.app-file-size strong {
  display: block;
  color: var(--text-4);
  font-size: 12px;
  font-weight: 600;
}

/* ========================================
   WHY US
======================================== */
.why-section { background: white; }

.features-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feat-card {
  padding: 28px 22px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--bg);
  transition: all 0.2s;
}
.feat-card:hover {
  background: white;
  border-color: #93C5FD;
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.feat-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}
.fi-blue { background: linear-gradient(135deg, #DBEAFE, #BFDBFE); }
.fi-green { background: linear-gradient(135deg, #D1FAE5, #A7F3D0); }
.fi-purple { background: linear-gradient(135deg, #EDE9FE, #DDD6FE); }
.fi-orange { background: linear-gradient(135deg, #FEF3C7, #FDE68A); }

.feat-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.feat-desc {
  font-size: 13px;
  color: var(--text-4);
  line-height: 1.6;
}

/* ========================================
   STATS SECTION
======================================== */
.stats-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 48px 48px;
}

.stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-box {}
.stat-val {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 10px;
  color: white;
}
.stat-val .num-grad {
  background: linear-gradient(135deg, #60A5FA, #38BDF8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-name {
  font-size: 14px;
  color: #4B5563;
  font-weight: 500;
}
.stat-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

/* ========================================
   REVIEWS
======================================== */
.reviews-section { background: var(--bg); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px;
  transition: all 0.2s;
}
.review-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--border-2);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 14px;
}
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
  background: linear-gradient(135deg, #2563EB, #7C3AED);
}
.review-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.review-date {
  font-size: 11px;
  color: var(--text-5);
}
.review-stars {
  color: #F59E0B;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.review-text {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.7;
  margin-bottom: 14px;
}
.review-product {
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-5);
}
.review-product a {
  color: var(--primary);
  font-weight: 600;
}

/* ========================================
   BLOG PREVIEW
======================================== */
.blog-section { background: white; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.blog-card {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--card);
  transition: all 0.2s;
}
.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--border-2);
}

.blog-thumb {
  height: 168px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  position: relative;
  overflow: hidden;
}
.bt-blue { background: linear-gradient(135deg, #1E3A8A, #1D4ED8); }
.bt-teal { background: linear-gradient(135deg, #065F46, #059669); }
.bt-purple { background: linear-gradient(135deg, #4C1D95, #6D28D9); }
.blog-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
}

.blog-body { padding: 18px 20px 22px; }

.blog-ctag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.blog-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 9px;
  display: block;
}
.blog-title:hover { color: var(--primary); }

.blog-excerpt {
  font-size: 13px;
  color: var(--text-4);
  line-height: 1.65;
  margin-bottom: 14px;
}

.blog-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-5);
}
.blog-read-link {
  color: var(--primary);
  font-weight: 600;
}

/* ========================================
   CTA BANNER
======================================== */
.cta-section {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 60%, #0C2454 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  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: 48px 48px;
}
.cta-inner { position: relative; z-index: 1; }
.cta-section h2 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1px;
  color: white;
  margin-bottom: 14px;
}
.cta-section p {
  font-size: 17px;
  color: #64748B;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.cta-note {
  margin-top: 16px;
  font-size: 13px;
  color: #374151;
}

/* ========================================
   FOOTER
======================================== */
.footer {
  background: #070D1A;
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  text-decoration: none;
}
.footer-logo-icon {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, #2563EB, #0EA5E9);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo-icon svg { width: 18px; height: 18px; fill: white; }
.footer-logo-name {
  font-size: 17px;
  font-weight: 800;
  color: white;
}
.footer-logo-name em { font-style: normal; color: #60A5FA; }
.footer-tagline {
  font-size: 13px;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 260px;
}
.footer-badges {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}
.fbadge {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 11px;
  color: #4B5563;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  color: #94A3B8;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-links a {
  font-size: 14px;
  color: #374151;
  transition: color 0.18s;
}
.footer-links a:hover { color: #64748B; }

.footer-contacts { display: flex; flex-direction: column; gap: 10px; }
.footer-contact {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: #374151;
}
.footer-contact-icon { font-size: 14px; margin-top: 1px; flex-shrink: 0; }
.footer-contact a { color: #4B5563; transition: color 0.18s; }
.footer-contact a:hover { color: #94A3B8; }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 12px;
  color: #1F2937;
}
.footer-legal {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-legal a {
  font-size: 12px;
  color: #1F2937;
  transition: color 0.18s;
}
.footer-legal a:hover { color: #374151; }

/* ========================================
   PAGE HERO (inner pages)
======================================== */
.page-hero {
  background: var(--dark-2);
  padding: 56px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 48px 48px;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #374151;
  margin-bottom: 14px;
}
.breadcrumb a { color: #4B5563; }
.breadcrumb a:hover { color: #64748B; }
.breadcrumb-sep { color: #1F2937; }
.page-hero h1 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.8px;
  color: white;
  margin-bottom: 8px;
}
.page-hero-sub {
  font-size: 15px;
  color: #4B5563;
}

/* ========================================
   DOWNLOADS PAGE - filter + list
======================================== */
.filter-bar {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  position: sticky;
  top: var(--header-h);
  z-index: 50;
}
.filter-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.filter-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-3);
  white-space: nowrap;
}
.filter-pills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.filter-pill {
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-4);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.18s;
  background: white;
}
.filter-pill:hover { border-color: #93C5FD; color: var(--primary); }
.filter-pill.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.dl-search-wrap {
  margin-left: auto;
}
.dl-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 7px 14px;
}
.dl-search input {
  background: none;
  border: none;
  outline: none;
  font-size: 14px;
  color: var(--text);
  width: 200px;
}
.dl-search input::placeholder { color: var(--text-5); }

.dl-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 32px 0;
}

.dl-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  transition: all 0.2s;
}
.dl-card:hover {
  border-color: #93C5FD;
  box-shadow: var(--shadow);
}
.dl-card-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}
.dl-card-main {}
.dl-card-name-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
  flex-wrap: wrap;
}
.dl-card-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
}
.dl-card-desc {
  font-size: 14px;
  color: var(--text-4);
  margin-bottom: 12px;
  line-height: 1.5;
}
.dl-card-specs {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.dl-spec {
  font-size: 12px;
  color: var(--text-4);
  display: flex;
  align-items: center;
  gap: 5px;
}
.dl-spec-dot {
  width: 4px;
  height: 4px;
  background: var(--text-5);
  border-radius: 50%;
}

.dl-card-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  flex-shrink: 0;
}
.dl-card-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--success);
}

/* ========================================
   ABOUT PAGE
======================================== */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-story-text {}
.about-story-text p {
  font-size: 16px;
  color: var(--text-3);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-stats-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-stat-row {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.asr-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.asr-num {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.8px;
  color: var(--text);
  line-height: 1;
  margin-bottom: 3px;
}
.asr-label { font-size: 13px; color: var(--text-4); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.value-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
}
.value-icon {
  font-size: 32px;
  margin-bottom: 14px;
}
.value-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.value-desc {
  font-size: 14px;
  color: var(--text-4);
  line-height: 1.7;
}

/* ========================================
   BLOG PAGE
======================================== */
.blog-featured {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 40px;
}
.blog-featured-img {
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  background: linear-gradient(135deg, #0F172A, #1E3A8A);
}
.blog-featured-body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blog-featured-body .blog-ctag { margin-bottom: 14px; }
.blog-featured-body h2 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}
.blog-featured-body p {
  font-size: 15px;
  color: var(--text-4);
  line-height: 1.7;
  margin-bottom: 20px;
}
.blog-featured-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* ========================================
   CONTACT PAGE
======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-form-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px;
}
.contact-form-card h2 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.4px;
  margin-bottom: 6px;
}
.contact-form-card > p {
  font-size: 14px;
  color: var(--text-4);
  margin-bottom: 28px;
}

.form-row { margin-bottom: 18px; }
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
}
label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 6px;
}
input[type=text], input[type=email], select, textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border-2);
  border-radius: var(--r-sm);
  padding: 10px 13px;
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: all 0.18s;
}
input[type=text]:focus, input[type=email]:focus, select:focus, textarea:focus {
  border-color: #93C5FD;
  background: white;
  box-shadow: 0 0 0 3px rgba(147,197,253,0.2);
}
textarea { resize: vertical; min-height: 120px; line-height: 1.6; }

.contact-info-col {}
.contact-info-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px;
  margin-bottom: 16px;
}
.contact-info-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}
.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.ci-item:last-child { border-bottom: none; padding-bottom: 0; }
.ci-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  background: var(--bg);
  border: 1px solid var(--border);
}
.ci-label {
  font-size: 11px;
  color: var(--text-5);
  font-weight: 500;
  margin-bottom: 2px;
}
.ci-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.ci-value a { color: var(--primary); }

.faq-list { display: flex; flex-direction: column; gap: 4px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
.faq-q {
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  user-select: none;
  transition: background 0.18s;
}
.faq-q:hover { background: var(--bg); }
.faq-q.open { color: var(--primary); }
.faq-q-arrow { font-size: 12px; color: var(--text-4); transition: transform 0.2s; }
.faq-q.open .faq-q-arrow { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 16px 14px;
  font-size: 13px;
  color: var(--text-4);
  line-height: 1.65;
  background: white;
  border-top: 1px solid var(--border);
}
.faq-a.open { display: block; }

/* ========================================
   PRIVACY PAGE
======================================== */
.prose {
  max-width: 860px;
  margin: 0 auto;
}
.prose h2 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: var(--text);
  margin: 40px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.prose h2:first-child { margin-top: 0; }
.prose p {
  font-size: 15px;
  color: var(--text-3);
  line-height: 1.8;
  margin-bottom: 14px;
}
.prose ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 14px;
}
.prose ul li {
  font-size: 15px;
  color: var(--text-3);
  line-height: 1.7;
  margin-bottom: 6px;
}
.prose strong { color: var(--text-2); font-weight: 700; }
.prose .last-updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 8px 16px;
  font-size: 13px;
  color: var(--text-4);
  margin-bottom: 40px;
}

/* ========================================
   UTILITIES
======================================== */
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.gap-8 { gap: 8px; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.text-center { text-align: center; }
.d-none { display: none !important; }

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > :last-child { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero h1 { font-size: 38px; }
  .hero-mockup-col { display: none; }
  .featured-inner { grid-template-columns: 1fr; gap: 40px; }
  .apps-grid { grid-template-columns: repeat(2, 1fr); }
  .features-row { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .about-story { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured-img { min-height: 200px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .dl-card { grid-template-columns: auto 1fr; }
  .dl-card-action { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; align-items: center; }
}

@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .section { padding: 56px 0; }
  .section-title { font-size: 28px; }
  .hero { padding: 56px 0 72px; }
  .hero h1 { font-size: 30px; letter-spacing: -0.8px; }
  .hero-desc { font-size: 15px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 16px; }
  .apps-grid { grid-template-columns: 1fr; }
  .features-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-val { font-size: 38px; }
  .blog-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .nav { display: none; }
  .burger { display: flex; }
  .cta-section h2 { font-size: 28px; }
  .trust-items { gap: 20px; }
  .trust-sep { display: none; }
  .form-row-2 { grid-template-columns: 1fr; }
}
