*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #2563EB;
  --blue-light: #EFF6FF;
  --blue-mid: #DBEAFE;
  --navy: #0F172A;
  --bg: #F8FAFC;
  --card: #FFFFFF;
  --border: #E5E7EB;
  --border-light: #F1F5F9;
  --success: #22C55E;
  --warning: #F59E0B;
  --danger: #EF4444;
  --text: #111827;
  --muted: #64748B;
  --muted-light: #94A3B8;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 20px 40px rgba(0,0,0,0.10), 0 8px 16px rgba(0,0,0,0.06);
  --shadow-xl: 0 40px 80px rgba(0,0,0,0.14), 0 16px 32px rgba(0,0,0,0.08);
  --r: 12px;
  --r-sm: 8px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }

a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
img { max-width: 100%; display: block; }

/* ── NAV ── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
  padding: 0 2rem;
}
#nav.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 2rem;
  height: 64px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 1.2rem; letter-spacing: -0.02em;
  color: var(--navy); flex-shrink: 0;
}
.logo-mark {
  width: 34px; height: 34px; background: var(--blue);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
}
.logo-mark svg { width: 18px; height: 18px; fill: white; }
.nav-links { display: flex; align-items: center; gap: 0; margin-left: auto; }
.nav-links a {
  padding: 0.4rem 0.9rem; font-size: 0.875rem; font-weight: 500;
  color: var(--muted); border-radius: 6px; transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-ctas { display: flex; align-items: center; gap: 0.5rem; margin-left: 1rem; }
.btn-ghost {
  padding: 0.45rem 1rem; font-size: 0.875rem; font-weight: 500;
  color: var(--text); border-radius: 8px; transition: background 0.2s;
}
.btn-ghost:hover { background: var(--border-light); }
.btn-primary {
  padding: 0.5rem 1.1rem; font-size: 0.875rem; font-weight: 600;
  background: var(--blue); color: white; border-radius: 8px;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  box-shadow: 0 1px 3px rgba(37,99,235,0.3);
}
.btn-primary:hover { background: #1d4ed8; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(37,99,235,0.35); }
.btn-primary:active { transform: translateY(0); }
.hamburger { display: none; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(37,99,235,0.08) 0%, transparent 70%),
              linear-gradient(180deg, #FFFFFF 0%, var(--bg) 100%);
  display: flex; align-items: center; padding-top: 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle, rgba(37,99,235,0.06) 1px, transparent 1px);
  background-size: 40px 40px; pointer-events: none;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 5rem 2rem 4rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--blue-light); color: var(--blue);
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 100px; border: 1px solid rgba(37,99,235,0.15);
  margin-bottom: 1.5rem;
}
.hero-badge span { width: 6px; height: 6px; background: var(--blue); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 800;
  line-height: 1.08; letter-spacing: -0.03em; color: var(--navy);
  margin-bottom: 1.5rem;
}
.hero h1 em { font-style: normal; color: var(--blue); }
.hero-sub {
  font-size: 1.1rem; color: var(--muted); line-height: 1.7; margin-bottom: 2.5rem;
  max-width: 500px;
}
.hero-tags {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 2.5rem;
}
.hero-tag {
  font-size: 0.8rem; font-weight: 500; color: var(--muted);
  background: white; border: 1px solid var(--border);
  padding: 4px 12px; border-radius: 100px;
}
.hero-ctas { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.btn-hero {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0.75rem 1.75rem; font-size: 1rem; font-weight: 600;
  border-radius: 10px; transition: all 0.2s;
}
.btn-hero-primary {
  background: var(--blue); color: white;
  box-shadow: 0 2px 8px rgba(37,99,235,0.35), 0 0 0 1px rgba(37,99,235,0.4);
}
.btn-hero-primary:hover { background: #1d4ed8; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,99,235,0.4), 0 0 0 1px rgba(37,99,235,0.4); }
.btn-hero-secondary {
  background: white; color: var(--text);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.btn-hero-secondary:hover { border-color: #CBD5E1; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.play-icon { width: 20px; height: 20px; background: var(--blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.play-icon::after { content: ''; border-left: 7px solid white; border-top: 4px solid transparent; border-bottom: 4px solid transparent; margin-left: 2px; }

/* ── DASHBOARD MOCKUP ── */
.hero-visual { position: relative; }
.dashboard-wrap {
  background: var(--navy);
  border-radius: 16px;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,0.05);
  overflow: hidden;
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.5s ease;
}
.dashboard-wrap:hover { transform: perspective(1000px) rotateY(-1deg) rotateX(0deg); }
.dash-header {
  background: #1E2A3A; padding: 12px 16px;
  display: flex; align-items: center; gap: 8px;
}
.dash-dots { display: flex; gap: 6px; }
.dash-dot { width: 10px; height: 10px; border-radius: 50%; }
.dash-title { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-left: auto; }
.dash-body { padding: 16px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.dash-card {
  background: rgba(255,255,255,0.06); border-radius: 10px;
  padding: 14px; border: 1px solid rgba(255,255,255,0.07);
  animation: floatCard 4s ease-in-out infinite;
}
.dash-card:nth-child(2) { animation-delay: 0.5s; }
.dash-card:nth-child(3) { animation-delay: 1s; }
.dash-card:nth-child(4) { animation-delay: 1.5s; }
.dash-card:nth-child(5) { animation-delay: 2s; }
.dash-card:nth-child(6) { animation-delay: 2.5s; }
@keyframes floatCard { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-4px)} }
.dash-label { font-size: 0.65rem; color: rgba(255,255,255,0.45); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 6px; }
.dash-value { font-size: 1.1rem; font-weight: 700; color: white; }
.dash-change { font-size: 0.65rem; margin-top: 4px; }
.dash-chart { grid-column: 1 / -1; background: rgba(255,255,255,0.04); border-radius: 10px; padding: 14px; border: 1px solid rgba(255,255,255,0.07); }
.chart-bars { display: flex; align-items: flex-end; gap: 4px; height: 60px; margin-top: 8px; }
.chart-bar { flex: 1; background: var(--blue); border-radius: 3px 3px 0 0; opacity: 0.7; transition: opacity 0.2s; }
.chart-bar:hover { opacity: 1; }

/* ── TRUST BAR ── */
.trust { padding: 4rem 2rem; background: white; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-inner { max-width: 1200px; margin: 0 auto; }
.trust-label { text-align: center; font-size: 0.8rem; font-weight: 600; color: var(--muted-light); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 3rem; }
.trust-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
  background: var(--border); border-radius: var(--r); overflow: hidden;
}
.trust-stat { background: white; padding: 2rem; text-align: center; }
.stat-num { font-size: 2.2rem; font-weight: 800; color: var(--navy); letter-spacing: -0.03em; line-height: 1; }
.stat-label { font-size: 0.85rem; color: var(--muted); margin-top: 6px; font-weight: 500; }

/* ── SECTION BASE ── */
.section { padding: 7rem 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-eyebrow { font-size: 0.75rem; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.75rem); font-weight: 800; color: var(--navy); letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 1.25rem; }
.section-sub { font-size: 1.1rem; color: var(--muted); max-width: 600px; line-height: 1.7; }

/* ── PAIN POINTS ── */
.pain { background: white; }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; background: var(--border); border-radius: var(--r); overflow: hidden; margin-top: 4rem; }
.pain-card { background: white; padding: 2.5rem; position: relative; overflow: hidden; transition: background 0.2s; }
.pain-card:hover { background: #FAFBFF; }
.pain-icon { font-size: 2rem; margin-bottom: 1.25rem; }
.pain-title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.pain-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }
.pain-card::after { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--blue); opacity: 0; transition: opacity 0.2s; }
.pain-card:hover::after { opacity: 1; }

/* ── SOLUTION FLOW ── */
.solution { background: var(--bg); }
.flow-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-top: 4rem; }
.flow-steps { display: flex; flex-direction: column; gap: 0; }
.flow-step { display: flex; align-items: flex-start; gap: 1rem; position: relative; }
.flow-step:not(:last-child)::after { content: ''; position: absolute; left: 19px; top: 44px; bottom: -16px; width: 2px; background: linear-gradient(to bottom, var(--blue), rgba(37,99,235,0.15)); }
.step-icon-wrap { width: 40px; height: 40px; border-radius: 10px; background: var(--blue-light); border: 2px solid rgba(37,99,235,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--blue); font-size: 1rem; z-index: 1; position: relative; }
.step-body { padding: 8px 0 32px; }
.step-title { font-size: 0.95rem; font-weight: 700; color: var(--navy); }
.step-desc { font-size: 0.85rem; color: var(--muted); margin-top: 3px; }
.flow-visual { background: var(--navy); border-radius: 16px; padding: 2rem; box-shadow: var(--shadow-lg); }
.flow-vis-item { display: flex; align-items: center; justify-content: space-between; padding: 10px 14px; background: rgba(255,255,255,0.06); border-radius: 8px; margin-bottom: 8px; border: 1px solid rgba(255,255,255,0.07); }
.flow-vis-label { font-size: 0.8rem; color: rgba(255,255,255,0.7); font-weight: 500; }
.flow-vis-badge { font-size: 0.7rem; font-weight: 700; padding: 3px 10px; border-radius: 100px; }
.badge-auto { background: rgba(34,197,94,0.15); color: #4ADE80; }
.badge-synced { background: rgba(37,99,235,0.2); color: #93C5FD; }

/* ── FEATURES BENTO ── */
.features { background: white; }
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border-radius: var(--r); overflow: hidden; margin-top: 4rem; }
.bento-card { background: white; padding: 2.5rem; transition: background 0.2s; position: relative; overflow: hidden; }
.bento-card:hover { background: #F9FAFF; }
.bento-card.wide { grid-column: span 2; }
.bento-card.tall { grid-row: span 2; }
.bento-icon { width: 48px; height: 48px; background: var(--blue-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; font-size: 1.35rem; }
.bento-title { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.bento-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }
.bento-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 1rem; }
.bento-tag { font-size: 0.75rem; font-weight: 500; color: var(--blue); background: var(--blue-light); padding: 3px 10px; border-radius: 100px; }
.bento-screenshot { margin-top: 1.5rem; background: var(--bg); border-radius: 8px; padding: 1rem; border: 1px solid var(--border); }
.mini-row { display: flex; align-items: center; justify-content: space-between; padding: 6px 0; border-bottom: 1px solid var(--border-light); font-size: 0.75rem; }
.mini-row:last-child { border-bottom: none; }
.mini-label { color: var(--muted); }
.mini-value { font-weight: 600; color: var(--navy); }
.mini-badge { font-size: 0.65rem; padding: 2px 8px; border-radius: 100px; font-weight: 600; }
.bg-green { background: rgba(34,197,94,0.1); color: #15803D; }
.bg-yellow { background: rgba(245,158,11,0.1); color: #D97706; }
.bg-red { background: rgba(239,68,68,0.1); color: #DC2626; }

/* ── PRODUCT SHOWCASE ── */
.showcase { background: var(--bg); }
.showcase-tabs { display: flex; gap: 4px; background: white; border: 1px solid var(--border); border-radius: 10px; padding: 4px; margin: 3rem auto 0; width: fit-content; flex-wrap: wrap; justify-content: center; }
.tab-btn { padding: 8px 20px; font-size: 0.85rem; font-weight: 600; color: var(--muted); border-radius: 7px; transition: all 0.2s; }
.tab-btn.active { background: var(--blue); color: white; box-shadow: 0 1px 4px rgba(37,99,235,0.3); }
.tab-btn:hover:not(.active) { color: var(--text); background: var(--bg); }
.showcase-screen { margin-top: 2.5rem; background: var(--navy); border-radius: 16px; padding: 1px; box-shadow: var(--shadow-xl); overflow: hidden; }
.screen-bar { background: #1E2A3A; padding: 12px 20px; display: flex; align-items: center; gap: 8px; }
.screen-content { padding: 20px; display: none; }
.screen-content.active { display: block; }
.screen-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 14px; }
.s-card { background: rgba(255,255,255,0.06); border-radius: 8px; padding: 12px; border: 1px solid rgba(255,255,255,0.06); }
.s-label { font-size: 0.6rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.s-value { font-size: 1rem; font-weight: 700; color: white; }
.s-change { font-size: 0.6rem; color: #4ADE80; margin-top: 2px; }
.s-table { background: rgba(255,255,255,0.04); border-radius: 8px; overflow: hidden; }
.s-thead { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; padding: 10px 14px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.s-th { font-size: 0.65rem; color: rgba(255,255,255,0.35); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.s-row { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; padding: 10px 14px; border-bottom: 1px solid rgba(255,255,255,0.04); align-items: center; }
.s-row:last-child { border-bottom: none; }
.s-cell { font-size: 0.75rem; color: rgba(255,255,255,0.7); }
.s-cell.name { color: rgba(255,255,255,0.9); font-weight: 500; }

/* ── OPERATIONAL REPORT (USP) ── */
.operational { background: white; }
.op-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-top: 4rem; }
.op-periods { display: flex; flex-wrap: wrap; gap: 10px; margin: 2rem 0; }
.period-chip {
  padding: 10px 20px; border-radius: 10px; font-size: 0.9rem; font-weight: 600;
  border: 2px solid var(--border); color: var(--muted); background: white; transition: all 0.2s;
}
.period-chip.highlight { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }
.op-features { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.op-feature { display: flex; align-items: flex-start; gap: 12px; padding: 1rem; border-radius: 10px; background: var(--bg); border: 1px solid var(--border); }
.op-check { width: 22px; height: 22px; background: rgba(34,197,94,0.1); border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--success); font-size: 0.75rem; font-weight: 800; margin-top: 1px; }
.op-feat-title { font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.op-feat-desc { font-size: 0.8rem; color: var(--muted); }
.op-visual { background: var(--navy); border-radius: 16px; padding: 2rem; box-shadow: var(--shadow-lg); }
.op-report-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.op-report-title { font-size: 0.9rem; font-weight: 700; color: white; }
.op-report-badge { font-size: 0.7rem; background: rgba(37,99,235,0.2); color: #93C5FD; padding: 4px 12px; border-radius: 100px; font-weight: 600; }
.op-meters { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.meter-card { background: rgba(255,255,255,0.05); border-radius: 8px; padding: 12px; border: 1px solid rgba(255,255,255,0.07); }
.meter-label { font-size: 0.65rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.06em; }
.meter-val { font-size: 1.1rem; font-weight: 700; color: white; margin-top: 4px; }
.meter-unit { font-size: 0.7rem; color: rgba(255,255,255,0.4); }
.op-carry { background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.15); border-radius: 8px; padding: 12px 14px; display: flex; align-items: center; justify-content: space-between; }
.carry-label { font-size: 0.75rem; color: rgba(255,255,255,0.6); }
.carry-val { font-size: 0.8rem; font-weight: 700; color: #4ADE80; }

/* ── AUTOMATION ── */
.automation { background: var(--bg); }
.auto-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-top: 4rem; }
.auto-entry { background: white; border: 2px solid var(--blue); border-radius: 12px; padding: 1.5rem 2rem; text-align: center; box-shadow: 0 0 0 4px rgba(37,99,235,0.08); }
.auto-entry-label { font-size: 0.75rem; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.auto-entry-title { font-size: 1.1rem; font-weight: 800; color: var(--navy); }
.auto-arrow { text-align: center; padding: 0.75rem 0; color: var(--muted-light); font-size: 1.2rem; }
.auto-outputs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.auto-output { background: white; border: 1px solid var(--border); border-radius: 10px; padding: 14px 16px; display: flex; align-items: center; gap: 10px; transition: all 0.2s; }
.auto-output:hover { border-color: rgba(37,99,235,0.3); box-shadow: 0 2px 8px rgba(37,99,235,0.08); }
.auto-output-icon { width: 34px; height: 34px; background: var(--blue-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem; }
.auto-output-label { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.auto-output-desc { font-size: 0.75rem; color: var(--muted); }
.auto-text { }
.auto-headline { font-size: 1.5rem; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; margin-bottom: 1rem; line-height: 1.2; }
.auto-desc { font-size: 1rem; color: var(--muted); line-height: 1.7; }

/* ── ANALYTICS ── */
.analytics { background: white; }
.analytics-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 4rem; }
.kpi-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r); padding: 1.5rem; }
.kpi-label { font-size: 0.75rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem; }
.kpi-val { font-size: 1.8rem; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; }
.kpi-change { font-size: 0.8rem; margin-top: 4px; font-weight: 600; }
.pos { color: var(--success); }
.neg { color: var(--danger); }
.chart-area { grid-column: span 3; background: var(--bg); border: 1px solid var(--border); border-radius: var(--r); padding: 1.5rem; }
.chart-area-title { font-size: 0.875rem; font-weight: 700; color: var(--navy); margin-bottom: 1.5rem; }
.bars-wrap { display: flex; align-items: flex-end; gap: 8px; height: 120px; }
.bar-group { flex: 1; display: flex; align-items: flex-end; gap: 3px; }
.bar-a { border-radius: 4px 4px 0 0; background: var(--blue); }
.bar-b { border-radius: 4px 4px 0 0; background: rgba(37,99,235,0.2); }
.bar-label { font-size: 0.6rem; color: var(--muted); text-align: center; margin-top: 6px; }
.chart-side { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r); padding: 1.5rem; }
.donut-wrap { display: flex; flex-direction: column; gap: 10px; }
.donut-row { display: flex; align-items: center; gap: 8px; }
.donut-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.donut-label { font-size: 0.8rem; color: var(--muted); flex: 1; }
.donut-pct { font-size: 0.85rem; font-weight: 700; color: var(--navy); }

/* ── COMPARISON ── */
.comparison { background: var(--bg); }
.compare-wrap { margin-top: 4rem; background: white; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-md); }
.compare-header { display: grid; grid-template-columns: 2fr 1fr 1fr; }
.compare-col-header { padding: 1.5rem 2rem; border-bottom: 1px solid var(--border); }
.compare-col-header:not(:last-child) { border-right: 1px solid var(--border); }
.compare-col-header.active { background: var(--blue-light); }
.col-label { font-size: 0.75rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.col-title { font-size: 1.1rem; font-weight: 800; color: var(--navy); }
.col-badge { font-size: 0.75rem; font-weight: 700; color: var(--blue); background: rgba(37,99,235,0.1); padding: 3px 10px; border-radius: 100px; margin-top: 6px; display: inline-block; }
.compare-row { display: grid; grid-template-columns: 2fr 1fr 1fr; border-top: 1px solid var(--border-light); }
.compare-row:hover { background: #FAFBFF; }
.compare-cell { padding: 1rem 2rem; border-right: 1px solid var(--border-light); display: flex; align-items: center; }
.compare-cell:last-child { border-right: none; }
.feature-name { font-size: 0.9rem; font-weight: 500; color: var(--text); }
.check-yes { color: var(--success); font-size: 1.1rem; }
.check-no { color: var(--muted-light); font-size: 1.1rem; }
.check-partial { font-size: 0.75rem; font-weight: 600; color: var(--warning); }
.compare-cell.active { background: rgba(37,99,235,0.02); }

/* ── SECURITY ── */
.security { background: white; }
.security-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 4rem; }
.sec-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r); padding: 2rem 1.5rem; text-align: center; transition: all 0.2s; }
.sec-card:hover { border-color: rgba(37,99,235,0.3); box-shadow: 0 4px 16px rgba(37,99,235,0.08); transform: translateY(-2px); }
.sec-icon { font-size: 2rem; margin-bottom: 1rem; }
.sec-title { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.sec-desc { font-size: 0.8rem; color: var(--muted); line-height: 1.6; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--bg); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 4rem; }
.testi-card { background: white; border: 1px solid var(--border); border-radius: 16px; padding: 2rem; box-shadow: var(--shadow-sm); transition: all 0.2s; }
.testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.testi-stars { color: #FBBF24; font-size: 0.85rem; margin-bottom: 1rem; }
.testi-quote { font-size: 0.95rem; color: var(--text); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; padding-top: 1rem; border-top: 1px solid var(--border-light); }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; font-weight: 700; font-size: 0.85rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.testi-name { font-size: 0.9rem; font-weight: 700; color: var(--navy); }
.testi-role { font-size: 0.8rem; color: var(--muted); }

/* ── FAQ ── */
.faq { background: white; }
.faq-list { margin-top: 4rem; max-width: 800px; }
.faq-item { border: 1px solid var(--border); border-radius: 12px; margin-bottom: 0.75rem; overflow: hidden; }
.faq-q { padding: 1.25rem 1.5rem; font-size: 0.95rem; font-weight: 600; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; transition: background 0.2s; user-select: none; }
.faq-q:hover { background: var(--bg); }
.faq-arrow { width: 24px; height: 24px; border-radius: 6px; background: var(--bg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform 0.25s, background 0.2s; font-size: 0.7rem; color: var(--muted); }
.faq-item.open .faq-arrow { transform: rotate(180deg); background: var(--blue-light); color: var(--blue); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1), padding 0.35s; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner { padding: 0 1.5rem 1.25rem; font-size: 0.9rem; color: var(--muted); line-height: 1.7; }

/* ── FINAL CTA ── */
.final-cta {
  background: var(--navy);
  padding: 7rem 2rem; text-align: center; position: relative; overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; color: white; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 1rem; position: relative; }
.final-cta p { font-size: 1.1rem; color: rgba(255,255,255,0.55); margin-bottom: 3rem; position: relative; }
.final-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }
.btn-white { background: white; color: var(--navy); font-weight: 700; padding: 0.9rem 2.2rem; border-radius: 10px; font-size: 1rem; transition: all 0.2s; box-shadow: 0 2px 8px rgba(0,0,0,0.2); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }
.btn-outline-white { color: rgba(255,255,255,0.8); font-weight: 600; padding: 0.9rem 2rem; border-radius: 10px; font-size: 1rem; border: 1.5px solid rgba(255,255,255,0.2); transition: all 0.2s; }
.btn-outline-white:hover { border-color: rgba(255,255,255,0.5); color: white; }

/* ── FOOTER ── */
footer { background: #0A1120; color: rgba(255,255,255,0.6); padding: 5rem 2rem 2rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr repeat(4, 1fr); gap: 3rem; margin-bottom: 4rem; }
.footer-brand { }
.footer-logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.1rem; color: white; margin-bottom: 1rem; }
.footer-tagline { font-size: 0.875rem; line-height: 1.65; max-width: 240px; }
.footer-col h4 { font-size: 0.8rem; font-weight: 700; color: rgba(255,255,255,0.85); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a { font-size: 0.875rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-col a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: gap; }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.8rem; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.7); }

/* ── ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-scale { opacity: 0; transform: scale(0.96); transition: opacity 0.5s, transform 0.5s; }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; padding-top: 6rem; }
  .dashboard-wrap { transform: none; }
  .flow-wrap, .op-wrap, .auto-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-card.wide { grid-column: span 2; }
  .analytics-grid { grid-template-columns: repeat(2, 1fr); }
  .chart-area { grid-column: span 2; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .pain-grid { grid-template-columns: 1fr 1fr; }
  .bento { grid-template-columns: 1fr; }
  .bento-card.wide { grid-column: span 1; }
  .testi-grid { grid-template-columns: 1fr; }
  .security-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-stats { grid-template-columns: repeat(2, 1fr); }
  .compare-wrap { overflow-x: auto; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .showcase-tabs { gap: 2px; }
  .tab-btn { padding: 6px 12px; font-size: 0.78rem; }
}
@media (max-width: 480px) {
  .pain-grid { grid-template-columns: 1fr; }
  .analytics-grid { grid-template-columns: 1fr; }
  .chart-area { grid-column: span 1; }
  .security-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .op-meters { grid-template-columns: 1fr; }
  .screen-grid { grid-template-columns: repeat(2, 1fr); }
}