:root {
  --bg-primary: #000000;
  --bg-secondary: #050505;
  --bg-card: #0d0d0d;
  --bg-card-hover: #141414;
  --bg-surface: #080808;
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --text-muted: #666666;
  --accent: #567fff;
  --accent-light: #7a9fff;
  --accent-glow: rgba(86, 127, 255, 0.3);
  --gradient-accent: linear-gradient(135deg, #567fff, #3a5fd9);
  --gradient-subtle: linear-gradient(135deg, rgba(86,127,255,0.1), rgba(86,127,255,0.04));
  --border: rgba(255,255,255,0.07);
  --border-accent: rgba(86,127,255,0.25);
  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 100px; }
body {
  font-family: var(--font-sans);
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 10000;
  padding: 14px 32px;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  background: rgba(0,0,0,0.85);
  border-bottom: 1px solid var(--border);
}
nav .nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: -0.01em;
}
.nav-link:hover { color: var(--text-primary); }
.nav-cta {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 50px;
  background: var(--gradient-accent);
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 28px var(--accent-glow); }
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { background: none; border: none; cursor: pointer; display: inline-flex; align-items: center; font-family: var(--font-sans); }
.nav-dropdown-item:hover { background: rgba(255,255,255,0.05); color: var(--text-primary); }

/* MOBILE HAMBURGER */
.mobile-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 10002;
}
.mobile-hamburger .hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.mobile-hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.mobile-hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* MOBILE MENU OVERLAY */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  height: 100dvh;
  background: var(--bg-primary);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10002;
  overflow-y: auto;
}
.mobile-menu-overlay.open .mobile-menu-panel {
  transform: translateX(0);
}
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.mobile-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-secondary);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.mobile-menu-close:hover { color: var(--text-primary); border-color: rgba(255,255,255,0.2); }
.mobile-menu-nav {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}
.mobile-nav-link {
  display: block;
  padding: 16px 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
  letter-spacing: -0.01em;
}
.mobile-nav-link:hover { color: var(--accent-light); }

/* MOBILE ACCORDION */
.mobile-accordion {
  border-bottom: 1px solid var(--border);
}
.mobile-accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 0;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.mobile-accordion-trigger:hover { color: var(--accent-light); }
.mobile-accordion-chevron {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.25s ease, color 0.2s;
}
.mobile-accordion.open .mobile-accordion-chevron {
  transform: rotate(180deg);
  color: var(--accent-light);
}
.mobile-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 0 0 16px;
}
.mobile-accordion.open .mobile-accordion-content {
  max-height: 300px;
  padding: 0 0 16px 16px;
}
.mobile-sub-link {
  display: block;
  padding: 12px 0;
  font-size: 0.92rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: -0.01em;
}
.mobile-sub-link:hover { color: var(--text-primary); }

/* MOBILE CTA */
.mobile-menu-cta-wrap {
  padding: 24px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.mobile-menu-cta {
  display: flex;
  justify-content: center;
  width: 100%;
  text-align: center;
  padding: 16px 32px;
  font-size: 1rem;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -300px; right: -300px;
  width: 900px; height: 900px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  animation: heroGlow 10s ease-in-out infinite alternate;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(86,127,255,0.15) 0%, transparent 70%);
  pointer-events: none;
  animation: heroGlow 12s ease-in-out infinite alternate-reverse;
}
@keyframes heroGlow {
  0% { opacity: 0.3; transform: scale(1); }
  100% { opacity: 0.6; transform: scale(1.12); }
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(86,127,255,0.1);
  border: 1px solid rgba(86,127,255,0.25);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-light);
  margin-bottom: 28px;
}
.hero-badge .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--accent-glow); }
  50% { opacity: 0.6; box-shadow: 0 0 0 10px transparent; }
}
.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}
.hero h1 .gradient-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: 50px;
  background: var(--gradient-accent);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 36px var(--accent-glow); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: 50px;
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.03); }

/* DISTRIBUTION FLOW */
.dist-flow {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}
.dist-flow::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-xl);
  background: var(--gradient-accent);
  z-index: -1;
  opacity: 0.07;
}
.dist-flow-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 28px;
  font-family: var(--font-mono);
}
.dist-step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border-radius: var(--radius);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  margin-bottom: 8px;
  transition: border-color 0.3s, transform 0.3s;
  animation: stepFadeIn 0.6s ease both;
}
.dist-step:hover { border-color: var(--border-accent); transform: translateX(4px); }
@keyframes stepFadeIn {
  from { opacity: 0; transform: translateX(-12px); }
  to { opacity: 1; transform: translateX(0); }
}
.dist-step:nth-child(2) { animation-delay: 0.1s; }
.dist-step:nth-child(3) { animation-delay: 0.2s; }
.dist-step:nth-child(4) { animation-delay: 0.3s; }
.dist-step:nth-child(5) { animation-delay: 0.4s; }
.dist-step:nth-child(6) { animation-delay: 0.5s; }
.dist-step:nth-child(7) { animation-delay: 0.6s; }
.dist-step:nth-child(8) { animation-delay: 0.7s; }
.dist-step:nth-child(9) { animation-delay: 0.8s; }
.dist-step-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--gradient-subtle);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.dist-step-text { flex: 1; }
.dist-step-label { font-size: 0.88rem; font-weight: 600; color: var(--text-primary); }
.dist-step-sub { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }
.dist-arrow {
  display: flex;
  justify-content: center;
  margin: 4px 0;
  color: var(--accent);
  opacity: 0.5;
}
.dist-arrow svg {
  animation: arrowPulse 2s ease-in-out infinite;
}
@keyframes arrowPulse {
  0%, 100% { opacity: 0.35; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(4px); }
}
@keyframes resultGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(86,127,255,0.08), inset 0 0 20px rgba(86,127,255,0.02); }
  50% { box-shadow: 0 0 40px rgba(86,127,255,0.18), inset 0 0 30px rgba(86,127,255,0.05); }
}
.dist-result {
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: rgba(86,127,255,0.08);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: resultGlow 3s ease-in-out infinite;
}
.dist-result-value {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.dist-result-label { font-size: 0.82rem; color: var(--text-secondary); }

/* STATS */
.stats-section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-secondary);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 40px 24px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 8px;
  display: block;
}
.stat-label { font-size: 0.88rem; color: var(--text-muted); font-weight: 500; }

/* TRUST */
.trust-section {
  padding: 64px 0;
  background: var(--bg-primary);
}
.trust-label {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 36px;
  letter-spacing: 0.02em;
}
.trust-marquee {
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.trust-track {
  display: flex;
  align-items: center;
  gap: 56px;
  flex-shrink: 0;
  animation: trustScroll 30s linear infinite;
  padding-right: 56px;
}
@keyframes trustScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-100% - 56px)); }
}
.trust-logo {
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-muted);
  opacity: 0.45;
  white-space: nowrap;
  letter-spacing: -0.01em;
  transition: opacity 0.3s;
}
.trust-logo:hover { opacity: 0.8; }

/* PROBLEM SECTION */
.problem-section {
  padding: 140px 0;
  position: relative;
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.problem-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-light);
  margin-bottom: 20px;
}
.problem-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
}
.problem-body {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}
.problem-body strong { color: var(--text-primary); font-weight: 600; }
.problem-visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.problem-visual::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  opacity: 0.4;
}
.prob-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.prob-row:last-child { border-bottom: none; }
.prob-label { font-size: 0.85rem; color: var(--text-secondary); }
.prob-bar-wrap { flex: 1; margin: 0 20px; height: 6px; background: rgba(255,255,255,0.06); border-radius: 3px; overflow: hidden; }
.prob-bar { height: 100%; border-radius: 3px; background: var(--gradient-accent); }
.prob-val { font-family: var(--font-mono); font-size: 0.82rem; color: var(--accent-light); font-weight: 600; white-space: nowrap; }

/* NETWORK SECTION */
.network-section {
  padding: 140px 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}
.network-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
  opacity: 0.1;
  pointer-events: none;
}
.network-header { text-align: center; margin-bottom: 72px; }

/* WORLD MAP */
.world-map-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px 40px 40px;
  overflow: hidden;
}
.world-map-container::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-xl);
  background: var(--gradient-accent);
  z-index: -1;
  opacity: 0.04;
}
.world-map-svg {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}
@keyframes mapPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.08); }
}
.map-pulse {
  animation: mapPulse 4s ease-in-out infinite;
}
@keyframes connDash {
  0% { stroke-dashoffset: 20; }
  100% { stroke-dashoffset: 0; }
}
.conn-line {
  animation: connDash 3s linear infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 0.4; r: 3; }
  50% { opacity: 1; r: 5; }
}
.dot-pulse {
  animation: dotPulse 2.5s ease-in-out infinite;
}
.map-floating-stats {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}
.map-floating-stat {
  position: absolute;
  background: rgba(13, 13, 13, 0.92);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.3s, border-color 0.3s;
}
.map-floating-stat:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
}
.map-fs-value {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.map-fs-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-top: 2px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-light);
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.6;
  margin: 0 auto;
}

.region-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.region-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}
.region-card:hover { transform: translateY(-3px); border-color: var(--border-accent); }
.region-name { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 8px; font-weight: 500; }
.region-count {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.region-label { font-size: 0.7rem; color: var(--text-muted); margin-top: 2px; }

/* PLATFORM SECTION */
.platform-section {
  padding: 140px 0;
  position: relative;
  background: var(--bg-primary);
}
.platform-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  opacity: 0.08;
  pointer-events: none;
}
.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
}
.platform-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.platform-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity 0.3s;
}
.platform-card::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.platform-card:hover { transform: translateY(-6px); border-color: var(--border-accent); box-shadow: 0 24px 64px rgba(0,0,0,0.4); }
.platform-card:hover::before { opacity: 1; }
.platform-card:hover::after { opacity: 0.5; }
.platform-card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--gradient-subtle);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.platform-card-icon svg { width: 26px; height: 26px; color: var(--accent-light); }
.platform-card-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--accent-light);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.platform-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}
.platform-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  position: relative;
  z-index: 1;
}
.platform-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--accent-light);
  text-decoration: none;
  transition: gap 0.2s, color 0.2s;
  position: relative;
  z-index: 1;
}
.platform-card-link:hover { gap: 10px; color: var(--text-primary); }
.platform-card-link .arrow { font-size: 1.1rem; transition: transform 0.2s; }
.platform-card-link:hover .arrow { transform: translateX(2px); }
@media (max-width: 1024px) {
  .platform-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .platform-grid { grid-template-columns: 1fr; }
}

/* PRODUCT SECTION */
.product-section {
  padding: 140px 0;
  position: relative;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity 0.3s;
}
.product-card:hover { transform: translateY(-4px); border-color: var(--border-accent); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.product-card:hover::before { opacity: 1; }
.product-card-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--accent-light);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  display: block;
}
.product-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.02em; }
.product-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }
.product-card-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--gradient-subtle);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.product-card-icon svg { width: 24px; height: 24px; color: var(--accent-light); }

/* SERVICES */
.services-section {
  padding: 140px 0;
  background: var(--bg-secondary);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: transform 0.3s, border-color 0.3s;
}
.service-card:hover { transform: translateY(-3px); border-color: var(--border-accent); }
.service-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--gradient-subtle);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-icon svg { width: 22px; height: 22px; color: var(--accent-light); }
.service-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; letter-spacing: -0.01em; }
.service-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

/* INDUSTRIES */
.industries-section {
  padding: 140px 0;
  position: relative;
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 64px;
}
.industry-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  cursor: default;
}
.industry-card:hover { transform: translateY(-4px); border-color: var(--border-accent); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.industry-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--gradient-subtle);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.industry-icon svg { width: 28px; height: 28px; color: var(--accent-light); }
.industry-card h3 { font-size: 1rem; font-weight: 700; letter-spacing: -0.01em; }

/* CASE STUDIES */
.cases-section {
  padding: 140px 0;
  background: var(--bg-secondary);
}
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 64px;
}
.case-card-premium {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, box-shadow 0.4s;
  display: flex;
  flex-direction: column;
}
.case-card-premium:hover {
  transform: translateY(-8px);
  border-color: var(--border-accent);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px var(--border-accent);
}
.case-image-wrap {
  position: relative;
  overflow: hidden;
  background: var(--bg-surface);
}
.case-thumb-premium {
  width: 100%;
  height: 300px;
  object-fit: contain;
  object-position: center;
  display: block;
  background: var(--bg-surface);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.case-card-premium:hover .case-thumb-premium {
  transform: scale(1.04);
}
.case-platform-badges {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.case-platform-badge {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  letter-spacing: 0.02em;
}
.case-body-premium {
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.case-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.case-client-premium {
  font-size: 0.72rem;
  color: var(--accent-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-mono);
}
.case-timeline {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
}
.case-title-premium {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: var(--text-primary);
}
.case-summary {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}
.case-metrics-premium {
  display: flex;
  gap: 24px;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}
.case-metric-premium {
  display: flex;
  flex-direction: column;
}
.case-metric-value-premium {
  font-family: var(--font-mono);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
}
.case-metric-label-premium {
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-top: 3px;
}
.case-quote {
  margin: 0 0 20px;
  padding: 16px 18px;
  background: var(--bg-surface);
  border-left: 2px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.case-quote p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.55;
  font-style: italic;
  margin-bottom: 8px;
}
.case-quote cite {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-style: normal;
  font-weight: 500;
}
.case-cta-premium {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--accent-light);
  text-decoration: none;
  transition: gap 0.2s, color 0.2s;
  margin-top: auto;
}
.case-cta-premium:hover {
  gap: 10px;
  color: var(--text-primary);
}
.case-cta-premium .arrow {
  font-size: 1.1rem;
  transition: transform 0.2s;
}
.case-cta-premium:hover .arrow {
  transform: translateX(2px);
}
/* Keep old case-card for responsive fallback reference */
.case-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.case-card:hover { transform: translateY(-6px); border-color: var(--border-accent); box-shadow: 0 24px 64px rgba(0,0,0,0.4); }
.case-thumb {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.case-body { padding: 28px; }
.case-client { font-size: 0.75rem; color: var(--accent-light); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px; }
.case-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 20px; letter-spacing: -0.01em; line-height: 1.3; }
.case-metrics { display: flex; gap: 20px; margin-bottom: 20px; }
.case-metric-value { font-family: var(--font-mono); font-size: 1.1rem; font-weight: 700; color: var(--text-primary); }
.case-metric-label { font-size: 0.72rem; color: var(--text-muted); margin-top: 2px; }

/* DASHBOARD */
.dashboard-section {
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.dashboard-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  opacity: 0.1;
  pointer-events: none;
}
.dashboard-mock {
  max-width: 960px;
  margin: 64px auto 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  position: relative;
  z-index: 2;
}
.dashboard-mock::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-xl);
  background: var(--gradient-accent);
  z-index: -1;
  opacity: 0.05;
}
.dash-mock-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.dash-mock-tabs { display: flex; gap: 8px; }
.dash-mock-tab {
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid transparent;
  cursor: default;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.dash-mock-tab:hover { color: var(--text-secondary); background: rgba(255,255,255,0.03); border-color: var(--border); }
.dash-mock-tab.active { background: rgba(86,127,255,0.12); border-color: var(--border-accent); color: var(--accent-light); }
.dash-mock-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}
.dash-mock-main {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.dash-mock-stat {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  cursor: default;
}
.dash-mock-stat:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.dash-mock-stat-value { font-family: var(--font-mono); font-size: 1.2rem; font-weight: 700; }
.dash-mock-stat-label { font-size: 0.7rem; color: var(--text-muted); margin-top: 4px; }
.dash-mock-chart {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  grid-column: span 6;
  transition: border-color 0.3s;
}
.dash-mock-chart:hover { border-color: var(--border-accent); }
.dash-mock-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 100px;
}
.dash-mock-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: var(--gradient-accent);
  opacity: 0.6;
  transition: opacity 0.3s, transform 0.3s;
}
.dash-mock-bar:hover {
  opacity: 1;
  transform: scaleY(1.05);
  transform-origin: bottom;
}
.dash-mock-sidebar { display: flex; flex-direction: column; gap: 14px; }
.dash-mock-creator {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.3s, transform 0.3s;
  cursor: default;
}
.dash-mock-creator:hover {
  border-color: var(--border-accent);
  transform: translateX(3px);
}
.dash-mock-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gradient-subtle);
  flex-shrink: 0;
}
.dash-mock-creator-name { font-size: 0.85rem; font-weight: 600; }
.dash-mock-creator-stat { font-size: 0.72rem; color: var(--text-muted); }

/* PROCESS */
.process-section {
  padding: 140px 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}
.process-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  opacity: 0.06;
  pointer-events: none;
}
.workflow {
  max-width: 800px;
  margin: 64px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
  z-index: 1;
}
.wf-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.wf-node {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 520px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.wf-node::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity 0.3s;
}
.wf-node:hover {
  transform: translateY(-3px);
  border-color: var(--border-accent);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.wf-node:hover::before { opacity: 1; }
.wf-node-final {
  border-color: var(--border-accent);
  background: linear-gradient(135deg, rgba(86,127,255,0.06), rgba(86,127,255,0.02));
}
.wf-node-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--gradient-subtle);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-light);
}
.wf-node-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.wf-node-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 3px;
  line-height: 1.4;
}
.wf-connector {
  display: flex;
  justify-content: center;
  padding: 8px 0;
  color: var(--accent);
  opacity: 0.4;
}
.wf-connector svg {
  animation: wfArrowPulse 2.2s ease-in-out infinite;
}
@keyframes wfArrowPulse {
  0%, 100% { opacity: 0.3; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(4px); }
}
.wf-step:nth-child(1) .wf-connector svg { animation-delay: 0s; }
.wf-step:nth-child(2) .wf-connector svg { animation-delay: 0.3s; }
.wf-step:nth-child(3) .wf-connector svg { animation-delay: 0.6s; }
.wf-step:nth-child(4) .wf-connector svg { animation-delay: 0.9s; }
.wf-step:nth-child(5) .wf-connector svg { animation-delay: 1.2s; }
.wf-step:nth-child(6) .wf-connector svg { animation-delay: 1.5s; }
@media (max-width: 640px) {
  .wf-node { padding: 18px 20px; gap: 14px; }
  .wf-node-icon { width: 40px; height: 40px; border-radius: 10px; }
  .wf-node-icon svg { width: 18px; height: 18px; }
  .wf-node-label { font-size: 0.85rem; }
  .wf-node-sub { font-size: 0.72rem; }
}

/* FAQ */
.faq-section {
  padding: 140px 0;
  position: relative;
}
.faq-list {
  max-width: 760px;
  margin: 64px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.active { border-color: var(--border-accent); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1.4;
}
.faq-question:hover { color: var(--accent-light); }
.faq-chevron {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.3s, color 0.3s;
}
.faq-item.active .faq-chevron { transform: rotate(180deg); color: var(--accent-light); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 28px;
}
.faq-item.active .faq-answer { max-height: 400px; padding: 0 28px 24px; }
.faq-answer p { font-size: 0.9rem; line-height: 1.7; color: var(--text-secondary); }

/* FINAL CTA */
.final-cta {
  padding: 160px 0;
  position: relative;
  text-align: center;
  overflow: hidden;
  background: var(--bg-primary);
}
.final-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px; height: 600px;
  background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
  opacity: 0.2;
  pointer-events: none;
}
.final-cta-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.final-cta-shape {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient-accent);
  opacity: 0.06;
  animation: floatShape 20s ease-in-out infinite;
}
.final-cta-shape:nth-child(1) { width: 300px; height: 300px; top: -100px; left: -80px; animation-delay: 0s; }
.final-cta-shape:nth-child(2) { width: 200px; height: 200px; bottom: -60px; right: -40px; animation-delay: -7s; }
.final-cta-shape:nth-child(3) { width: 150px; height: 150px; top: 40%; right: 15%; animation-delay: -14s; }
@keyframes floatShape {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
}
.final-cta-content { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
.final-cta-content h2 {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin-bottom: 20px;
}
.final-cta-content .cta-desc { font-size: 1.1rem; color: var(--text-secondary); margin-bottom: 44px; line-height: 1.6; }
.final-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* FOOTER */
footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--border);
  background: var(--bg-secondary);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.footer-brand-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin-top: 16px; max-width: 280px; }
.footer-col h4 { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-secondary); margin-bottom: 20px; }
.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text-primary); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }
.footer-socials { display: flex; gap: 12px; }
.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s, border-color 0.3s, color 0.3s;
}
.footer-social-link:hover { transform: scale(1.15) translateY(-3px); background: var(--gradient-accent); border-color: var(--accent); color: #fff; }
.footer-social-link svg { width: 18px; height: 18px; fill: currentColor; }
.footer-newsletter { margin-top: 16px; }
.footer-newsletter-label { font-size: 0.8rem; color: var(--text-secondary); margin-bottom: 10px; font-weight: 500; }
.footer-newsletter-form { display: flex; gap: 8px; }
.footer-newsletter-form input {
  flex: 1;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.2s;
}
.footer-newsletter-form input:focus { border-color: var(--accent); }
.footer-newsletter-form input::placeholder { color: var(--text-muted); }
.footer-newsletter-form button {
  padding: 10px 18px;
  border-radius: 8px;
  border: none;
  background: var(--gradient-accent);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s;
}
.footer-newsletter-form button:hover { transform: translateY(-1px); }

/* ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .mobile-hamburger { display: flex; }
  .nav-links, nav .nav-cta { display: none !important; }
  .hero-stats-row { grid-template-columns: repeat(2, 1fr) !important; }
  .hero-stat-item { border-right: none !important; border-bottom: 1px solid var(--border); }
  .hero-stat-item:nth-child(odd) { border-right: 1px solid var(--border) !important; }
  .hero-stat-item:nth-child(3), .hero-stat-item:nth-child(4) { border-bottom: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
  .problem-grid { grid-template-columns: 1fr; gap: 48px; }
  .region-cards { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .cases-grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
  .dash-mock-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  nav { padding: 10px 16px; }
  .mobile-hamburger { display: flex; }
  .nav-links, nav .nav-cta { display: none !important; }
  .mobile-menu-panel { max-width: 100%; }
  .hero { padding: 120px 0 60px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-sub { font-size: 0.95rem; }
  .hero-grid { gap: 40px; }
  .dist-flow { padding: 28px 24px; }
  .problem-visual { padding: 24px; }
  .prob-row { flex-wrap: wrap; gap: 8px; }
  .prob-bar-wrap { margin: 0 12px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .region-cards { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .dash-mock-grid { grid-template-columns: 1fr; }
  .dash-mock-main { grid-template-columns: repeat(2, 1fr); }
  .dash-mock-chart { grid-column: span 2; }
  .dash-mock-top-clips { grid-column: span 2 !important; }
  .dash-mock-platform-breakdown { grid-column: span 2 !important; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 640px) {
  nav .nav-inner { display: flex; align-items: center; justify-content: space-between; }
  .mobile-hamburger { display: flex; }
  .nav-links, nav .nav-cta { display: none !important; }
  nav .nav-inner > a img { height: 40px !important; }
  .trust-logo { font-size: 1rem; }
  .trust-track { gap: 32px; padding-right: 32px; }
  .problem-section { padding: 80px 0; }
  .problem-title { font-size: 1.6rem; }
  .problem-body { font-size: 0.9rem; }
  .hero { padding: 100px 0 48px; }
  .hero h1 { font-size: 1.9rem; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-secondary { justify-content: center; width: 100%; }
  .hero-stats-row { grid-template-columns: 1fr 1fr !important; margin-top: 48px !important; }
  .hero-stat-item { padding: 18px 12px !important; }
  .hero-stat-number { font-size: 1.4rem !important; }
  .dist-flow { padding: 24px 18px; }
  .dist-step { padding: 12px 14px; gap: 12px; }
  .dist-step-icon { width: 30px; height: 30px; border-radius: 8px; }
  .dist-step-icon svg { width: 15px; height: 15px; }
  .dist-step-label { font-size: 0.8rem; }
  .dist-step-sub { font-size: 0.7rem; }
  .dist-result { flex-direction: column; align-items: flex-start; gap: 10px; }
  .dist-result-value { font-size: 1.2rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 28px 16px; }
  .stat-number { font-size: 1.6rem; }
  .region-cards { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .world-map-container { padding: 24px 16px 20px; }
  .map-floating-stat { padding: 6px 10px; }
  .map-fs-value { font-size: 0.78rem; }
  .map-fs-label { font-size: 0.58rem; }
  .platform-card { padding: 24px 20px; }
  .platform-card-icon { width: 42px; height: 42px; border-radius: 12px; margin-bottom: 16px; }
  .platform-card-icon svg { width: 22px; height: 22px; }
  .platform-card h3 { font-size: 1.05rem; }
  .platform-card p { font-size: 0.8rem; }
  .case-thumb-premium { height: 220px; }
  .case-body-premium { padding: 24px 20px 20px; }
  .case-metrics-premium { gap: 16px; }
  .case-metric-value-premium { font-size: 1rem; }
  .dash-mock-main { grid-template-columns: repeat(2, 1fr); }
  .dash-mock-chart { grid-column: span 2; }
  .dash-mock-top-clips { grid-column: span 2 !important; }
  .dash-mock-platform-breakdown { grid-column: span 2 !important; }
  .dash-mock-sidebar { gap: 10px; }
  .wf-node { padding: 16px 18px; gap: 12px; max-width: 100%; }
  .wf-node-icon { width: 38px; height: 38px; border-radius: 10px; }
  .wf-node-icon svg { width: 18px; height: 18px; }
  .wf-node-label { font-size: 0.82rem; }
  .wf-node-sub { font-size: 0.7rem; }
  .faq-question { padding: 18px 20px; font-size: 0.88rem; }
  .faq-answer { padding: 0 20px; }
  .faq-item.active .faq-answer { padding: 0 20px 18px; }
  .final-cta { padding: 80px 0; }
  .final-cta-shape:nth-child(1) { width: 180px; height: 180px; top: -60px; left: -40px; }
  .final-cta-shape:nth-child(2) { width: 120px; height: 120px; bottom: -30px; right: -20px; }
  .final-cta-shape:nth-child(3) { width: 90px; height: 90px; }
  .footer-newsletter-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .nav-dropdown-menu { left: auto !important; right: 0; min-width: 180px; }
}
