/* ============ CSS VARIABLES / DESIGN TOKENS ============ */
:root {
  --primary: #4f6ef7;
  --primary-light: #6381f8;
  --primary-ultra-light: #f0f3ff;
  --primary-dark: #3a56d4;
  --dark-bg: #0f1729;
  --dark-card: #1a2332;
  --dark-border: #2a3a4e;
  --foreground: #1e2a3b;
  --muted: #7c8ba5;
  --border: #e8ecf4;
  --bg-light: #f5f7fb;
  --bg-white: #ffffff;
  --success: #22c55e;
  --warning: #f59e0b;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--foreground);
  line-height: 1.6;
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

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

/* ============ NAVBAR ============ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  box-shadow: var(--shadow-sm);
}
.navbar-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: 1.5rem; }
.logo-icon { font-size: 1.25rem; }
.logo-text { color: var(--foreground); transition: var(--transition); }
.navbar.scrolled .logo-text { color: var(--foreground); }
.logo-accent { color: var(--primary); }
.nav-links { display: flex; gap: 28px; }
.nav-link {
  font-size: 0.875rem; font-weight: 500;
  color: var(--muted);
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--primary); transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--foreground); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.navbar.scrolled .nav-link { color: var(--muted); }
.navbar.scrolled .nav-link:hover, .navbar.scrolled .nav-link.active { color: var(--foreground); }
.nav-actions { display: flex; gap: 12px; align-items: center; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span {
  display: block; width: 24px; height: 2px; background: var(--foreground);
  margin: 5px 0; transition: var(--transition); border-radius: 2px;
}
.navbar.scrolled .hamburger span { background: var(--foreground); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 24px; border-radius: 10px;
  font-weight: 600; font-size: 0.875rem;
  transition: var(--transition); cursor: pointer;
  border: none; text-align: center; white-space: nowrap;
}
.btn-sm { padding: 8px 18px; font-size: 0.8125rem; border-radius: 8px; }
.btn-lg { padding: 14px 32px; font-size: 1rem; border-radius: 12px; }
.btn-primary {
  background: var(--primary); color: #fff;
  box-shadow: 0 4px 14px rgba(79,110,247,0.4);
}
.btn-primary:hover { background: var(--primary-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(79,110,247,0.5); }
.btn-outline {
  background: transparent; color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }
.navbar:not(.scrolled) .btn-outline { color: var(--primary); border-color: var(--primary); }
.navbar:not(.scrolled) .btn-outline:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-ghost {
  background: var(--primary-ultra-light); color: var(--primary);
  border: 1.5px solid rgba(79,110,247,0.2);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(79,110,247,0.12); border-color: rgba(79,110,247,0.35); }
.btn-white { background: #fff; color: var(--foreground); }
.btn-white:hover { background: var(--bg-light); transform: translateY(-1px); }
.btn-outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.4); }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.6); }
.btn-arrow { transition: var(--transition); }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ============ HERO ============ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, #ffffff 0%, #f0f3ff 30%, #e8edff 60%, #f5f7fb 100%);
  overflow: hidden; padding: 120px 0 80px;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(79,110,247,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,110,247,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent);
}
.hero-glow {
  position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.18;
  animation: glowPulse 6s ease-in-out infinite alternate;
}
.hero-glow-1 { width: 600px; height: 600px; background: var(--primary); top: -200px; right: -100px; }
.hero-glow-2 { width: 400px; height: 400px; background: #a78bfa; bottom: -100px; left: -50px; animation-delay: 3s; }
@keyframes glowPulse { 0% { opacity: 0.12; transform: scale(1); } 100% { opacity: 0.22; transform: scale(1.1); } }

.hero-content { position: relative; z-index: 2; text-align: center; max-width: 800px; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; border-radius: 100px;
  background: rgba(79,110,247,0.08); border: 1px solid rgba(79,110,247,0.18);
  color: var(--primary); font-size: 0.8125rem; font-weight: 500;
  margin-bottom: 24px;
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--success); animation: dotPulse 2s ease-in-out infinite; }
@keyframes dotPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800;
  color: var(--foreground); line-height: 1.15; margin-bottom: 20px; letter-spacing: -0.02em;
}
.text-gradient {
  background: linear-gradient(135deg, var(--primary-light), #8b5cf6, var(--primary));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.125rem; color: var(--muted);
  max-width: 600px; margin: 0 auto 32px; line-height: 1.7;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; margin-bottom: 40px; flex-wrap: wrap; }
.hero-badges { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
.hero-badge-item {
  display: flex; align-items: center; gap: 8px;
  color: var(--muted); font-size: 0.875rem; font-weight: 500;
}

/* ============ SECTIONS ============ */
.section { padding: 100px 0; position: relative; }
.section-light { background: var(--bg-white); }
.section-subtle { background: var(--bg-light); }
.section-dark { background: linear-gradient(160deg, #f0f3ff, #e8edff, #f5f7fb); color: var(--foreground); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-label {
  display: inline-block; font-size: 0.8125rem; font-weight: 600;
  color: var(--primary); text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.section-label.light { color: var(--primary); }
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 800;
  line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 16px;
}
.section-title.light { color: var(--foreground); }
.section-subtitle { font-size: 1.0625rem; color: var(--muted); max-width: 600px; margin: 0 auto; }
.section-subtitle.light { color: var(--muted); }
.section-desc { font-size: 1rem; color: var(--muted); margin-bottom: 16px; line-height: 1.7; }

/* ============ TENTANG - TWO COL ============ */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-highlights { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.about-hl {
  display: flex; align-items: center; gap: 12px;
  font-weight: 500; font-size: 0.9375rem;
}
.about-hl-icon { font-size: 1.25rem; }
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-card {
  padding: 28px 24px; border-radius: var(--radius-lg);
  background: var(--bg-white); border: 1px solid var(--border);
  text-align: center; transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stat-card.accent { background: var(--primary); color: #fff; border-color: transparent; }
.stat-card.accent:hover { box-shadow: 0 8px 32px rgba(79,110,247,0.3); }
.stat-number { font-size: 2rem; font-weight: 800; margin-bottom: 4px; letter-spacing: -0.02em; }
.stat-label { font-size: 0.8125rem; font-weight: 500; opacity: 0.8; }

/* ============ CARDS GRID ============ */
.cards-grid { display: grid; gap: 20px; }
.cards-2 { grid-template-columns: 1fr 1fr; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }

/* Solution cards */
.solution-card {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--bg-white); border: 1px solid var(--border);
  transition: var(--transition); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.solution-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.solution-img { width: 100%; height: 200px; overflow: hidden; }
.solution-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.solution-card:hover .solution-img img { transform: scale(1.05); }
.solution-body { padding: 24px 28px 28px; }
.solution-body h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 8px; }
.solution-body p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

/* Feature cards */
.feature-card {
  padding: 28px 24px; border-radius: var(--radius-lg);
  background: var(--bg-white); border: 1px solid var(--border);
  transition: var(--transition); box-shadow: var(--shadow-sm);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.feature-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, #f0f4ff, #eef2ff);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; transition: var(--transition);
}
.feature-card:hover .feature-icon { background: linear-gradient(135deg, #e0e7ff, #dbeafe); }
.feature-card h4 { font-size: 0.9375rem; font-weight: 700; margin-bottom: 6px; }
.feature-card p { font-size: 0.8125rem; color: var(--muted); line-height: 1.6; }

/* Advantage cards */
.advantage-card {
  display: flex; gap: 16px; padding: 24px;
  border-radius: var(--radius); background: var(--bg-white);
  border: 1px solid var(--border);
  transition: var(--transition); box-shadow: var(--shadow-sm);
}
.advantage-card:hover { border-color: rgba(79,110,247,0.3); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.adv-check {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 8px;
  background: var(--primary-ultra-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.875rem;
}
.advantage-card h4 { font-size: 0.9375rem; font-weight: 700; color: var(--foreground); margin-bottom: 6px; }
.advantage-card p { font-size: 0.8125rem; color: var(--muted); line-height: 1.6; }

/* ============ LOGO MARK ============ */
.logo-mark {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.875rem;
}
.logo-mark-light { background: rgba(255,255,255,0.15); }

/* ============ HERO METRICS ============ */
.hero-metrics {
  display: flex; align-items: center; justify-content: center; gap: 0;
  padding: 20px 32px; border-radius: var(--radius-lg);
  background: var(--bg-white); border: 1px solid var(--border);
  box-shadow: var(--shadow-md); max-width: 600px; margin: 0 auto;
}
.hero-metric { text-align: center; flex: 1; padding: 4px 0; }
.hero-metric-value { display: block; font-size: 1.25rem; font-weight: 800; color: var(--foreground); letter-spacing: -0.01em; }
.hero-metric-label { display: block; font-size: 0.6875rem; color: var(--muted); font-weight: 500; margin-top: 2px; }
.hero-metric-divider { width: 1px; height: 36px; background: var(--border); flex-shrink: 0; }

/* ============ TRUST STRIP ============ */
.trust-strip {
  display: flex; align-items: center; justify-content: center;
  padding: 48px 40px; border-radius: var(--radius-xl);
  background: var(--bg-white); border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.trust-item { text-align: center; flex: 1; }
.trust-number { font-size: 2.75rem; font-weight: 800; color: var(--foreground); letter-spacing: -0.03em; line-height: 1; }
.trust-pct { font-size: 1.5rem; color: var(--primary); }
.trust-label { font-size: 0.8125rem; color: var(--muted); font-weight: 500; margin-top: 6px; line-height: 1.3; }
.trust-divider { width: 1px; height: 56px; background: var(--border); flex-shrink: 0; margin: 0 8px; }

/* ============ INTEGRATION VISUAL ============ */
.two-col-reverse { grid-template-columns: 1fr 1fr; }
.integration-visual {
  padding: 40px 32px; border-radius: var(--radius-xl);
  background: var(--bg-white); border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.integ-flow {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-bottom: 28px; flex-wrap: wrap;
}
.integ-node {
  padding: 16px 20px; border-radius: var(--radius);
  font-size: 0.8125rem; font-weight: 600;
  text-align: center; min-width: 100px;
}
.integ-source, .integ-dest {
  background: var(--bg-light); border: 1px solid var(--border); color: var(--foreground);
}
.integ-center {
  background: var(--primary); color: #fff; padding: 20px 24px;
  border-radius: var(--radius); box-shadow: 0 4px 16px rgba(79,110,247,0.25);
}
.integ-logo { font-weight: 800; font-size: 0.9375rem; }
.integ-arrow { display: flex; align-items: center; flex-shrink: 0; }
.integ-features { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.integ-tag {
  padding: 6px 14px; border-radius: 100px;
  background: var(--primary-ultra-light); color: var(--primary);
  font-size: 0.75rem; font-weight: 600;
}
.about-icon { flex-shrink: 0; }

/* ============ BAR GROUP ============ */
.bar-group {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; height: 100%;
}
.bar-group .bar { width: 100%; }
.bar-label { font-size: 0.5625rem; color: var(--muted); font-weight: 500; white-space: nowrap; }

/* ============ ACTIVITY DOT ============ */
.act-dot.info { background: var(--primary); }

/* ============ DASHBOARD PREVIEW ============ */
.dashboard-preview { perspective: 1000px; }
.dashboard-mockup {
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-xl); border: 1px solid var(--border);
  background: var(--bg-white);
  transform: rotateX(2deg);
  transition: var(--transition);
}
.dashboard-mockup:hover { transform: rotateX(0deg); }
.dash-topbar {
  display: flex; align-items: center; gap: 16px;
  padding: 12px 20px; background: var(--bg-light); border-bottom: 1px solid var(--border);
}
.dash-dots { display: flex; gap: 6px; }
.dash-dots span { width: 10px; height: 10px; border-radius: 50%; }
.dash-dots span:nth-child(1) { background: #ef4444; }
.dash-dots span:nth-child(2) { background: #f59e0b; }
.dash-dots span:nth-child(3) { background: #22c55e; }
.dash-url { font-size: 0.75rem; color: var(--muted); background: var(--bg-white); padding: 4px 12px; border-radius: 6px; flex: 1; text-align: center; border: 1px solid var(--border); }
.dash-body { display: flex; min-height: 400px; }
.dash-sidebar {
  width: 200px; padding: 20px 16px;
  background: var(--bg-white); border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 4px;
}
.dash-logo-sm { font-weight: 800; font-size: 1.125rem; color: var(--primary); margin-bottom: 20px; padding: 0 8px; }
.dash-menu-item {
  padding: 8px 12px; border-radius: 8px; font-size: 0.8125rem; font-weight: 500;
  color: var(--muted); transition: var(--transition); cursor: pointer;
  display: flex; align-items: center; gap: 8px;
}
.dash-menu-item.active { background: var(--primary-ultra-light); color: var(--primary); font-weight: 600; }
.dash-menu-item:hover { background: var(--bg-light); }
.dash-main { flex: 1; padding: 24px; background: var(--bg-light); }
.dash-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 20px; }
.dash-kpi {
  padding: 16px; border-radius: var(--radius);
  background: var(--bg-white); border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.dash-kpi-label { font-size: 0.6875rem; color: var(--muted); font-weight: 500; margin-bottom: 4px; }
.dash-kpi-value { font-size: 1.25rem; font-weight: 800; color: var(--foreground); }
.dash-kpi-change { font-size: 0.6875rem; font-weight: 600; margin-top: 2px; }
.dash-kpi-change.up { color: var(--success); }
.dash-kpi-change.neutral { color: var(--muted); }
.dash-content-row { display: grid; grid-template-columns: 1.2fr 1fr; gap: 16px; }
.dash-chart, .dash-activity {
  padding: 20px; border-radius: var(--radius);
  background: var(--bg-white); border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.dash-chart-title { font-size: 0.8125rem; font-weight: 700; margin-bottom: 16px; }
.dash-chart-bars {
  display: flex; align-items: flex-end; gap: 12px; height: 120px;
  padding-top: 8px;
}
.bar {
  flex: 1; background: var(--primary-ultra-light); border-radius: 4px 4px 0 0;
  transition: var(--transition); min-width: 20px;
}
.bar.active { background: var(--primary); }
.bar:hover { background: var(--primary-light); }
.dash-act-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0; border-bottom: 1px solid var(--border);
  font-size: 0.75rem;
}
.dash-act-item:last-child { border-bottom: none; }
.act-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.act-dot.success { background: var(--success); }
.act-dot.warning { background: var(--warning); }
.act-time { margin-left: auto; color: var(--muted); font-size: 0.6875rem; }

/* ============ CTA SECTION ============ */
.section-cta {
  background: linear-gradient(160deg, var(--primary), #6381f8, #7c93f9);
  text-align: center; padding: 120px 0; position: relative; overflow: hidden;
}
.cta-glow {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: #fff; filter: blur(150px); opacity: 0.08;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.cta-content { position: relative; z-index: 2; }
.cta-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: #fff; margin-bottom: 16px; line-height: 1.2; }
.cta-subtitle { font-size: 1.0625rem; color: rgba(255,255,255,0.8); max-width: 550px; margin: 0 auto 36px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============ FAQ ============ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: var(--transition);
  background: var(--bg-white);
}
.faq-item.active { border-color: var(--primary); box-shadow: 0 2px 12px rgba(79,110,247,0.1); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; background: none; border: none; cursor: pointer;
  font-size: 1rem; font-weight: 600; color: var(--foreground);
  text-align: left; font-family: inherit; transition: var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-icon {
  font-size: 1.25rem; font-weight: 400; color: var(--muted);
  transition: var(--transition); flex-shrink: 0;
}
.faq-item.active .faq-icon { transform: rotate(45deg); color: var(--primary); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { padding: 0 24px 20px; font-size: 0.9375rem; color: var(--muted); line-height: 1.7; }

/* ============ FOOTER ============ */
.footer { background: #1e293b; color: rgba(255,255,255,0.7); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand { max-width: 300px; }
.footer .logo-text { color: #fff; }
.footer-desc { margin-top: 16px; font-size: 0.875rem; line-height: 1.7; color: rgba(255,255,255,0.5); }
.footer-socials { display: flex; gap: 12px; margin-top: 20px; }
.social-link {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: var(--transition); color: rgba(255,255,255,0.6);
}
.social-link:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.footer-links h4 { font-size: 0.875rem; font-weight: 700; color: #fff; margin-bottom: 16px; }
.footer-links a, .footer-links p {
  display: block; font-size: 0.8125rem; color: rgba(255,255,255,0.5);
  margin-bottom: 10px; transition: var(--transition);
}
.footer-links a:hover { color: var(--primary-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0; text-align: center;
  font-size: 0.8125rem; color: rgba(255,255,255,0.35);
}

/* ============ ANIMATIONS ============ */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .cards-4 { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .dash-kpis { grid-template-columns: repeat(2, 1fr); }
  .trust-strip { padding: 36px 24px; }
  .trust-number { font-size: 2rem; }
}
@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-links.open, .nav-actions.open { display: flex; }
  .hamburger { display: block; }
  .nav-links.open {
    position: fixed; top: 60px; left: 0; right: 0;
    background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
    flex-direction: column; padding: 24px; gap: 16px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open .nav-link { color: var(--foreground); font-size: 1rem; }
  .nav-actions.open {
    position: fixed; top: auto; bottom: 0; left: 0; right: 0;
    background: var(--bg-white); padding: 16px 24px;
    border-top: 1px solid var(--border);
    justify-content: center; z-index: 1001;
  }
  .nav-actions.open .btn-outline { color: var(--primary); border-color: var(--primary); }
  .two-col, .two-col-reverse { grid-template-columns: 1fr; gap: 40px; }
  .cards-2, .cards-3 { grid-template-columns: 1fr; }
  .cards-4 { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 2rem; }
  .hero-metrics { flex-wrap: wrap; gap: 16px; padding: 16px 20px; }
  .hero-metric-divider { display: none; }
  .hero-metric { min-width: 80px; }
  .trust-strip { flex-wrap: wrap; gap: 24px; padding: 32px 20px; }
  .trust-divider { display: none; }
  .trust-item { min-width: 120px; }
  .integ-arrow { display: none; }
  .integ-flow { flex-direction: column; }
  .dash-body { flex-direction: column; }
  .dash-sidebar { width: 100%; flex-direction: row; flex-wrap: wrap; padding: 12px; gap: 4px; border-right: none; border-bottom: 1px solid var(--border); }
  .dash-logo-sm { display: none; }
  .dash-content-row { grid-template-columns: 1fr; }
  .dash-kpis { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
}
@media (max-width: 480px) {
  .cards-4 { grid-template-columns: 1fr; }
  .hero-metrics { flex-direction: column; }
  .dash-kpis { grid-template-columns: 1fr; }
}
