:root {
  --white: #ffffff;
  --off-white: #f8f8fc;
  --light-bg: #f2f3f9;
  --subtle: #e8eaf4;
  --border: #dde0ef;
  --text-main: #0e0e1a;
  --text-soft: #4a4a68;
  --text-mute: #8888a8;
  --accent: #4338e0;
  --accent-2: #7c3aed;
  --accent-light: #eceaff;
  --accent-mid: #c4c0ff;
  --glow: rgba(67,56,224,0.18);
  --glow-strong: rgba(67,56,224,0.35);
  --gradient-hero: linear-gradient(135deg, #f8f8fc 0%, #eef0fb 50%, #f4f2ff 100%);
  --gradient-accent: linear-gradient(135deg, #4338e0 0%, #7c3aed 100%);
  --gradient-card: linear-gradient(145deg, #ffffff 0%, #f6f5ff 100%);
  --shadow-soft: 0 2px 24px rgba(67,56,224,0.07);
  --shadow-card: 0 8px 40px rgba(67,56,224,0.10);
  --shadow-hover: 0 20px 60px rgba(67,56,224,0.18);
  --radius: 18px;
  --radius-sm: 10px;
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  --nav-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Roboto', sans-serif;
  background: var(--white);
  color: var(--text-main);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

h1,h2,h3,h4,h5,h6 { font-family: 'Roboto', sans-serif; }

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
main { position: relative; z-index: 1; }

/* ============================================================
   NOISE TEXTURE OVERLAY
   ============================================================ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

/* ============================================================
   UTILITY
   ============================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent-light); color: var(--accent);
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 6px 14px; border-radius: 100px;
  border: 1px solid var(--accent-mid);
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gradient-accent);
  color: #fff; font-family: 'Syne', sans-serif;
  font-size: 15px; font-weight: 600;
  padding: 14px 30px; border-radius: 100px;
  border: none; cursor: pointer;
  box-shadow: 0 8px 28px var(--glow-strong);
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: ''; position: absolute;
  inset: 0; background: rgba(255,255,255,0.12);
  opacity: 0; transition: var(--transition);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 48px var(--glow-strong); }
.btn-primary:hover::after { opacity: 1; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--accent);
  font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 600;
  padding: 13px 28px; border-radius: 100px;
  border: 2px solid var(--accent); cursor: pointer;
  transition: var(--transition);
}
.btn-outline:hover { background: var(--accent-light); transform: translateY(-2px); }

section { position: relative; }

/* ============================================================
   INNER PAGES
   ============================================================ */
.inner-page {
  padding-top: var(--nav-h);
  background: var(--white);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 64px;
  background: linear-gradient(135deg, #f7f8ff 0%, #eef1fd 50%, #f6f3ff 100%);
  border-bottom: 1px solid var(--border);
}

.page-hero-contact {
  background: linear-gradient(135deg, #f6f8ff 0%, #eef3ff 45%, #f4efff 100%);
}

.page-hero-content {
  position: relative;
  max-width: 760px;
  z-index: 1;
}

.page-title {
  font-size: clamp(29px, 3.75vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 800;
  margin: 18px 0;
}

.page-subtitle {
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-soft);
  max-width: 640px;
}

.page-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin-top: 30px;
  color: var(--text-mute);
  font-size: 14px;
  font-weight: 500;
}

.page-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.page-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.24;
  pointer-events: none;
}

.page-hero-orb-1 {
  width: 320px;
  height: 320px;
  background: #c4b5fd;
  top: -40px;
  right: 5%;
}

.page-hero-orb-2 {
  width: 240px;
  height: 240px;
  background: #93c5fd;
  bottom: -40px;
  left: 10%;
}

.policy-section,
.contact-section {
  padding: 72px 0 100px;
  background: var(--off-white);
}

.policy-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.policy-layout.single-column {
  grid-template-columns: minmax(0, 1fr);
}

.policy-sidebar {
  position: sticky;
  top: 100px;
}

.policy-content {
  min-width: 0;
}

.policy-content-body {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  padding: 32px;
}

.policy-content-body h2 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  margin-bottom: 14px;
}

.policy-content-body h2:not(:first-child) {
  margin-top: 34px;
}

.policy-content-body p {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.8;
}

.policy-content-body p + p {
  margin-top: 14px;
}

.policy-content-body a {
  color: var(--accent);
}

.policy-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  padding: 32px;
}



.policy-card h2 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  margin-bottom: 14px;
}

.policy-card p {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.8;
}

.policy-card p + p {
  margin-top: 14px;
}

.policy-card a {
  color: var(--accent);
}

.policy-card-title {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
}

.policy-sidebar .policy-card a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--subtle);
  color: var(--text-soft);
  transition: var(--transition);
}

.policy-sidebar .policy-card a:last-child {
  border-bottom: none;
}

.policy-sidebar .policy-card a:hover {
  color: var(--accent);
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 16px;
  background: var(--light-bg);
  border: 1px solid var(--border);
}

.contact-detail-item i {
  color: var(--accent);
  font-size: 22px;
  margin-top: 2px;
}

.contact-detail-item strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.contact-detail-item span {
  color: var(--text-soft);
  font-size: 14px;
}

.contact-form {
  margin-top: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  position: relative;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fbfcff;
  color: var(--text-main);
  font: inherit;
  padding: 14px 16px;
  outline: none;
  transition: var(--transition);
}

.form-field textarea {
  resize: vertical;
  min-height: 150px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(67,56,224,0.12);
}

.form-alert {
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 500;
  margin-top: 18px;
}

.form-alert-success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
}

.form-alert-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ============================================================
   NAV
   ============================================================ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 1000;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-soft);
}

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; gap: 32px;
  padding: 20px 0;
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-size: 22px; font-weight: 800;
  letter-spacing: -0.03em;
  display: flex; align-items: center; gap: 8px;
}
.nav-logo-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--gradient-accent);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px var(--glow-strong);
}
.nav-logo-icon i { color: #fff; font-size: 18px; }
.nav-logo span.accent { color: var(--accent); }

.nav-links {
  display: flex; align-items: center; gap: 6px;
  flex: 1; justify-content: center;
}
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-soft);
  padding: 8px 14px; border-radius: 8px;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--accent); background: var(--accent-light); }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn-primary { padding: 10px 22px; font-size: 14px; }

/* Hamburger Toggle (animated divs) */
.nav-toggle {
  display: none; flex-direction: column;
  justify-content: center; align-items: center;
  width: 42px; height: 42px;
  cursor: pointer; gap: 5px;
  border-radius: 10px;
  transition: var(--transition);
  background: var(--accent-light);
  border: 1px solid var(--border);
}
.nav-toggle:hover { background: var(--subtle); }
.toggle-bar {
  width: 22px; height: 2px;
  background: var(--accent);
  border-radius: 4px;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  transform-origin: center;
}
.nav-toggle.active .toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active .toggle-bar:nth-child(2) {
  opacity: 0; transform: scaleX(0);
}
.nav-toggle.active .toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.mobile-nav {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(24px);
  z-index: 999; padding: 32px 24px;
  flex-direction: column; gap: 8px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.mobile-nav.open { transform: translateX(0); display: flex; }
.mobile-nav a {
  font-size: 18px; font-weight: 600; color: var(--text-main);
  padding: 14px 20px; border-radius: 12px;
  transition: var(--transition);
  font-family: 'Syne', sans-serif;
  display: flex; align-items: center; gap: 12px;
}
.mobile-nav a i { color: var(--accent); font-size: 20px; width: 24px; }
.mobile-nav a:hover { background: var(--accent-light); color: var(--accent); }
.mobile-nav-divider { height: 1px; background: var(--border); margin: 8px 0; }
.mobile-nav-cta { display: flex; flex-direction: column; gap: 12px; padding: 16px 0; }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex; align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero-bg-orbs {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.25;
  animation: floatOrb 12s ease-in-out infinite alternate;
}
.orb-1 { width: 600px; height: 600px; background: #c4c0ff; top: -200px; right: -100px; animation-duration: 14s; }
.orb-2 { width: 400px; height: 400px; background: #a78bfa; bottom: -100px; left: -50px; animation-duration: 11s; }
.orb-3 { width: 300px; height: 300px; background: #6366f1; top: 40%; left: 40%; animation-duration: 9s; opacity: 0.12; }

@keyframes floatOrb {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(30px, -40px) scale(1.08); }
}

.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  padding: 80px 0;
}

.hero-left { position: relative; z-index: 1; }
.hero-eyebrow { margin-bottom: 24px; }
.hero-title {
  font-size: clamp(32px, 4.125vw, 54px);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-title .gradient-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 18px; line-height: 1.7;
  color: var(--text-soft); margin-bottom: 40px;
  max-width: 480px;
}
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  display: flex; gap: 32px; margin-top: 52px; flex-wrap: wrap;
}
.stat-item {}
.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 34px; font-weight: 800;
  color: var(--accent); letter-spacing: -0.02em;
}
.stat-label { font-size: 13px; color: var(--text-mute); font-weight: 500; margin-top: 2px; }

/* ============================================================
   HERO RIGHT — SCROLL MORPH SYSTEM
   ============================================================ */

/* The hero section needs extra bottom room for the expanded panel */
#hero {
  padding-bottom: 0;
}

/* Anchor: stays in grid flow at top, invisible once panel is fixed */
.hero-right {
  position: relative; z-index: 1;
  display: flex; justify-content: center; align-items: center;
  /* reserve space even when panel is detached */
  min-height: 480px;
}

/* The panel itself — starts as a normal card, morphs to wide strip */
#hero-panel {
  position: relative;
  width: 100%; max-width: 520px;
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--border);
  overflow: hidden;
  /* idle float */
  animation: heroFloat 6s ease-in-out infinite;
  /* morph transitions */
  transition:
    max-width   0.72s cubic-bezier(0.22,1,0.36,1),
    border-radius 0.72s cubic-bezier(0.22,1,0.36,1),
    box-shadow  0.72s cubic-bezier(0.22,1,0.36,1),
    transform   0.72s cubic-bezier(0.22,1,0.36,1),
    left        0.72s cubic-bezier(0.22,1,0.36,1),
    top         0.72s cubic-bezier(0.22,1,0.36,1),
    opacity     0.5s ease;
  will-change: transform, max-width, border-radius;
  z-index: 50;
}

/* --- STATE: idle (in hero grid) --- */
#hero-panel.state-idle {
  animation: heroFloat 6s ease-in-out infinite;
}

/* --- Non-sticky hero transfer states --- */
#hero-panel {
  transform-origin: center;
}

#hero-panel .visual-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.45s cubic-bezier(0.22,1,0.36,1);
}

/* Ripple flash on morph */
#hero-panel::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(99,102,241,0.18) 0%, transparent 70%);
  opacity: 0; pointer-events: none;
  border-radius: inherit;
  transition: opacity 0.3s;
}
#hero-panel.morph-flash::after { opacity: 1; }

/* Scroll-progress indicator bar */
#scroll-progress-bar {
  position: fixed;
  top: var(--nav-h); left: 0;
  height: 3px;
  background: var(--gradient-accent);
  width: 0%;
  z-index: 1001;
  transition: width 0.1s linear;
  box-shadow: 0 0 12px var(--accent);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s, width 0.1s linear;
}
#scroll-progress-bar.visible { opacity: 1; }

/* Glow ring that emanates on expansion */
#panel-glow-ring {
  position: fixed;
  left: 0; right: 0;
  top: var(--nav-h);
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent-2), var(--accent), transparent);
  background-size: 200% 100%;
  animation: ringSlide 2s linear infinite;
  opacity: 0;
  z-index: 51;
  pointer-events: none;
  transition: opacity 0.4s;
}
#panel-glow-ring.visible { opacity: 1; }
@keyframes ringSlide {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

/* Visual internals */
.visual-header {
  background: linear-gradient(135deg, #0e0e1a 0%, #1a1636 100%);
  padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between;
  transition: padding 0.5s cubic-bezier(0.22,1,0.36,1);
}
.visual-header-title { color: #fff; font-family: 'Syne', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 0.05em; }
.visual-dots { display: flex; gap: 6px; }
.visual-dot { width: 10px; height: 10px; border-radius: 50%; }
.visual-dot:nth-child(1) { background: #ff5f57; }
.visual-dot:nth-child(2) { background: #ffbd2e; }
.visual-dot:nth-child(3) { background: #28ca41; }

.visual-metric {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 18px; border-radius: 12px;
  background: var(--light-bg); border: 1px solid var(--border);
  transition: flex 0.5s ease, background 0.3s;
}
.visual-metric:hover { background: var(--accent-light); border-color: var(--accent-mid); }

.metric-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.metric-icon i { font-size: 20px; }
.metric-icon.green { background: #dcfce7; }
.metric-icon.green i { color: #16a34a; }
.metric-icon.blue { background: var(--accent-light); }
.metric-icon.blue i { color: var(--accent); }
.metric-icon.purple { background: #f3e8ff; }
.metric-icon.purple i { color: #7c3aed; }

.metric-info { flex: 1; }
.metric-label { font-size: 11px; color: var(--text-mute); font-weight: 500; text-transform: uppercase; letter-spacing: 0.07em; }
.metric-value { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700; color: var(--text-main); }

.metric-bar-wrap { margin-top: 4px; background: var(--border); border-radius: 4px; height: 4px; overflow: hidden; width: 80px; }
.metric-bar { height: 100%; border-radius: 4px; background: var(--gradient-accent); animation: barGrow 2s ease-out forwards; }
@keyframes barGrow { from { width: 0; } }

.visual-alert {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; border-radius: 10px;
  background: #fff7ed; border: 1px solid #fed7aa;
  animation: alertPulse 3s ease-in-out infinite;
}
@keyframes alertPulse { 0%,100% { opacity:1; } 50% { opacity:0.75; } }
.alert-dot { width: 8px; height: 8px; background: #f97316; border-radius: 50%; flex-shrink:0; animation: dotPulse 1.5s ease-in-out infinite; }
@keyframes dotPulse { 0%,100% { transform:scale(1); opacity:1; } 50% { transform:scale(1.5); opacity:0.6; } }
.alert-text { font-size: 12px; color: #9a3412; font-weight: 500; }

.visual-resolved {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; border-radius: 10px;
  background: #f0fdf4; border: 1px solid #bbf7d0;
}
.resolved-icon { color: #16a34a; font-size: 18px; }
.resolved-text { font-size: 12px; color: #166534; font-weight: 500; }
.resolved-time { margin-left: auto; font-size: 11px; color: #86efac; font-weight: 600; }

/* Floating badges */
.hero-badge {
  position: absolute;
  background: var(--white);
  border-radius: 12px;
  padding: 10px 16px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600;
  animation: badgeFloat 5s ease-in-out infinite;
  white-space: nowrap;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.hero-badge i { color: var(--accent); font-size: 18px; }
.badge-1 { top: -30px; right: -30px; animation-delay: 0s; }
.badge-2 { bottom: -25px; left: -40px; animation-delay: 1.5s; }
.hero-badge.badge-hidden { opacity: 0; transform: scale(0.85) !important; }
@keyframes badgeFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Particle burst on expansion */
.morph-particle {
  position: fixed;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  pointer-events: none;
  z-index: 200;
  opacity: 0;
}

/* ============================================================
   TRUSTED BY (logo strip)
   ============================================================ */
#logos {
  padding: 48px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.logos-label {
  text-align: center; font-size: 13px; font-weight: 600;
  color: var(--text-mute); letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 32px;
}
.logos-track {
  overflow: hidden; position: relative;
}
.logos-track::before, .logos-track::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px;
  z-index: 2;
}
.logos-track::before { left: 0; background: linear-gradient(to right, #fff, transparent); }
.logos-track::after { right: 0; background: linear-gradient(to left, #fff, transparent); }
.logos-inner {
  display: flex; gap: 60px; align-items: center;
  animation: logoScroll 24s linear infinite;
  width: max-content;
}
.logo-item {
  font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700;
  color: var(--text-mute); letter-spacing: -0.02em;
  white-space: nowrap; user-select: none;
  display: flex; align-items: center; gap: 8px;
  transition: var(--transition);
}
.logo-item i { font-size: 20px; }
.logo-item:hover { color: var(--accent); }
@keyframes logoScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   OUTCOMES — KEY BUSINESS METRICS
   ============================================================ */
#outcomes {
  padding: 100px 0;
  background: var(--off-white);
}
.section-header {
  text-align: center; margin-bottom: 64px;
}
.section-title {
  font-size: clamp(24px, 3vw, 39px);
  font-weight: 800; letter-spacing: -0.03em;
  line-height: 1.1; margin: 16px 0 20px;
}
.section-subtitle {
  font-size: 18px; color: var(--text-soft);
  max-width: 580px; margin: 0 auto; line-height: 1.7;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.outcome-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  cursor: default;
  text-align: center;
  position: relative; overflow: hidden;
}
.outcome-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.outcome-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.outcome-card:hover::before { transform: scaleX(1); }

.outcome-number {
  font-family: 'Syne', sans-serif;
  font-size: 52px; font-weight: 800;
  line-height: 1; letter-spacing: -0.04em;
  background: var(--gradient-accent);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.outcome-title { font-family: 'Syne', sans-serif; font-size: 12px; font-weight: 700; margin-bottom: 8px; }
.outcome-desc { font-size: 14px; color: var(--text-soft); line-height: 1.6; }

/* ============================================================
   CAPABILITIES
   ============================================================ */
#capabilities {
  padding: 100px 0;
  background: var(--white);
}
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.cap-card {
  background: var(--gradient-card);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.cap-card::after {
  content: '';
  position: absolute; bottom: -60px; right: -60px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: var(--accent-light);
  opacity: 0; transition: var(--transition);
}
.cap-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.cap-card:hover::after { opacity: 0.6; }

.cap-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--gradient-accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px var(--glow);
  transition: var(--transition);
}
.cap-card:hover .cap-icon { transform: scale(1.08) rotate(-4deg); }
.cap-icon i { color: #fff; font-size: 26px; }

.cap-title { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; margin-bottom: 12px; }
.cap-desc { font-size: 15px; color: var(--text-soft); line-height: 1.7; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
#how-it-works {
  padding: 100px 0;
  background: var(--light-bg);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute; top: 32px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(to right, var(--accent-light), var(--accent), var(--accent-light));
  z-index: 0;
}
.step-item {
  text-align: center; padding: 0 24px;
  position: relative; z-index: 1;
  opacity: 0; transform: translateY(30px);
  transition: all 0.6s ease;
}
.step-item.visible { opacity: 1; transform: translateY(0); }

.step-num {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--gradient-accent);
  color: #fff; font-family: 'Syne', sans-serif;
  font-size: 22px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
  box-shadow: 0 8px 28px var(--glow-strong);
  transition: var(--transition);
}
.step-item:hover .step-num { transform: scale(1.12); }
.step-title { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; margin-bottom: 10px; }
.step-desc { font-size: 14px; color: var(--text-soft); line-height: 1.7; }

/* ============================================================
   USE CASES TABS
   ============================================================ */
#use-cases {
  padding: 100px 0;
  background: var(--white);
}
.tabs-nav {
  display: flex; gap: 8px; flex-wrap: wrap;
  justify-content: center; margin-bottom: 52px;
}
.tab-btn {
  padding: 10px 22px; border-radius: 100px;
  border: 2px solid var(--border);
  background: transparent; font-family: 'Syne', sans-serif;
  font-size: 14px; font-weight: 600; color: var(--text-soft);
  cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; gap: 6px;
}
.tab-btn i { font-size: 16px; }
.tab-btn:hover { border-color: var(--accent); color: var(--accent); }
.tab-btn.active { background: var(--gradient-accent); color: #fff; border-color: transparent; box-shadow: 0 6px 20px var(--glow); }

.tab-panel { display: none; }
.tab-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.tab-content-title { font-family: 'Syne', sans-serif; font-size: 23px; font-weight: 800; margin-bottom: 16px; line-height: 1.2; }
.tab-content-desc { font-size: 16px; color: var(--text-soft); line-height: 1.75; margin-bottom: 28px; }
.tab-features { display: flex; flex-direction: column; gap: 14px; }
.tab-feature {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px; border-radius: 12px;
  background: var(--light-bg); border: 1px solid var(--border);
  transition: var(--transition);
}
.tab-feature:hover { background: var(--accent-light); border-color: var(--accent-mid); }
.tab-feature-icon { color: var(--accent); font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.tab-feature-text { font-size: 14px; color: var(--text-soft); line-height: 1.6; }
.tab-feature-text strong { color: var(--text-main); display: block; font-size: 14px; margin-bottom: 2px; }

.tab-visual {
  border-radius: var(--radius);
  background: linear-gradient(135deg, #0e0e1a 0%, #1a1636 100%);
  padding: 32px;
  aspect-ratio: 4/3;
  display: flex; flex-direction: column; gap: 16px;
  position: relative; overflow: hidden;
}
.tab-visual::before {
  content: ''; position: absolute;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  top: -100px; right: -100px; opacity: 0.15;
}
.tv-row {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px; padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.08);
}
.tv-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.tv-dot.ok { background: #4ade80; box-shadow: 0 0 8px #4ade80; }
.tv-dot.warn { background: #fb923c; box-shadow: 0 0 8px #fb923c; animation: dotPulse 1.5s ease-in-out infinite; }
.tv-dot.info { background: #60a5fa; box-shadow: 0 0 8px #60a5fa; }
.tv-label { font-size: 13px; color: rgba(255,255,255,0.7); flex: 1; }
.tv-badge {
  font-size: 11px; font-weight: 700; padding: 3px 10px;
  border-radius: 20px; text-transform: uppercase; letter-spacing: 0.07em;
}
.tv-badge.auto { background: rgba(67,56,224,0.3); color: #a5b4fc; }
.tv-badge.live { background: rgba(74,222,128,0.2); color: #4ade80; }
.tv-badge.ml { background: rgba(251,146,60,0.2); color: #fb923c; }

/* ============================================================
   INTEGRATIONS
   ============================================================ */
#integrations {
  padding: 100px 0;
  background: var(--off-white);
}
.integrations-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px; margin-top: 48px;
}
.integration-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 16px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}
.integration-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--accent);
}
.integration-item i {
  font-size: 28px; color: var(--text-mute);
  display: block; margin-bottom: 8px;
  transition: var(--transition);
}
.integration-item:hover i { color: var(--accent); }
.integration-item span { font-size: 12px; font-weight: 600; color: var(--text-mute); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials {
  padding: 100px 0;
  background: var(--white);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testi-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  position: relative;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.testi-quote { font-size: 48px; color: var(--accent-mid); font-family: 'Syne', sans-serif; line-height: 0.6; margin-bottom: 16px; }
.testi-text { font-size: 16px; color: var(--text-soft); line-height: 1.75; margin-bottom: 28px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gradient-accent);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-weight: 700;
  color: #fff; font-size: 18px; flex-shrink: 0;
}
.testi-name { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; }
.testi-role { font-size: 13px; color: var(--text-mute); }

/* ============================================================
   CTA BANNER
   ============================================================ */
#cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0e0e1a 0%, #1a1636 50%, #0d0d20 100%);
  position: relative; overflow: hidden;
}
#cta-section::before {
  content: ''; position: absolute;
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(67,56,224,0.25) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-inner { text-align: center; position: relative; z-index: 1; }
.cta-inner .tag { background: rgba(255,255,255,0.1); color: #c4c0ff; border-color: rgba(255,255,255,0.2); }
.cta-title {
  font-size: clamp(27px, 3.75vw, 48px);
  font-weight: 800; color: #fff;
  letter-spacing: -0.03em; line-height: 1.1;
  margin: 20px 0 20px;
}
.cta-title span { color: #a78bfa; }
.cta-subtitle { font-size: 18px; color: rgba(255,255,255,0.6); margin-bottom: 44px; max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-actions .btn-primary { background: #fff; color: var(--accent); box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
.cta-actions .btn-primary:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.4); }
.cta-actions .btn-outline { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.3); }
.cta-actions .btn-outline:hover { background: rgba(255,255,255,0.1); color: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-desc { font-size: 14px; color: var(--text-mute); line-height: 1.7; max-width: 280px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px; border-radius: 10px;
  border: 1px solid var(--border); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-mute); font-size: 18px;
  transition: var(--transition);
}
.social-link:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

.footer-col-title { font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 700; margin-bottom: 20px; }
.footer-col a { display: block; font-size: 14px; color: var(--text-mute); margin-bottom: 12px; transition: var(--transition); }
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 32px; border-top: 1px solid var(--border);
  flex-wrap: wrap; gap: 16px;
}
.footer-copy { font-size: 13px; color: var(--text-mute); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: var(--text-mute); transition: var(--transition); }
.footer-links a:hover { color: var(--accent); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: all 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* delay classes */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }



/* ============================================================
   COUNTER ANIMATION (JS target)
   ============================================================ */
.counter-val { display: inline; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-left { text-align: center; }
  .hero-subtitle { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-right { display: none; }
  .tab-panel.active { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid::before { display: none; }
  .policy-layout,
  .contact-layout,
  .security-grid { grid-template-columns: 1fr; }
  .policy-sidebar { position: static; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta .btn-primary, .nav-cta .btn-outline { display: none; }
  .nav-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  #cursor-glow { display: none; }
  .outcomes-grid { grid-template-columns: 1fr 1fr; }
  .hero-badge { display: none; }
  .page-hero { padding: 72px 0 52px; }
  .page-meta { flex-direction: column; gap: 10px; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .outcomes-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; align-items: center; gap: 20px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn-primary, .hero-actions .btn-outline { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn-primary, .cta-actions .btn-outline { width: 100%; justify-content: center; }
}
