/* ===== Reset & Variables ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --accent: #E8FF47;
  --accent-dark: #c8dd2e;
  --black: #0a0a0a;
  --black-light: #141414;
  --gray-900: #1a1a1a;
  --gray-800: #252525;
  --gray-700: #333;
  --gray-600: #555;
  --gray-500: #777;
  --gray-400: #999;
  --gray-300: #bbb;
  --gray-200: #ddd;
  --gray-100: #eee;
  --gray-50: #f5f5f5;
  --white: #fafafa;
  --font-display: 'Clash Display', sans-serif;
  --font-body: 'Outfit', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 32px;
  transition: background 0.4s, backdrop-filter 0.4s;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(24px);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: var(--black);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
}

.logo-mark-sm {
  width: 34px;
  height: 34px;
  font-size: 1rem;
}

.logo-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 8px;
}

.logo-icon {
  width: 38px;
  height: 38px;
  color: #fff;
  flex-shrink: 0;
}

.logo-icon-sm {
  width: 32px;
  height: 32px;
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #fff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  letter-spacing: 0.01em;
}

.btn-accent {
  background: var(--accent);
  color: var(--black);
}

.btn-accent:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(232, 255, 71, 0.3);
}

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.7);
}

.btn-ghost:hover {
  color: #fff;
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.25);
}

.btn-outline-light:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
}

.btn-white {
  background: #fff;
  color: var(--black);
}

.btn-white:hover {
  background: var(--gray-100);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(255,255,255,0.15);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 0.95rem;
  border-radius: 10px;
}

.btn-dark {
  background: var(--black);
  color: #fff;
}

.btn-dark:hover {
  background: var(--gray-900);
}

/* ===== Mobile Menu ===== */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}

.mobile-menu-btn span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,10,10,0.5) 0%,
    rgba(10,10,10,0.3) 40%,
    rgba(10,10,10,0.7) 100%
  );
}

.hero-grain, .cta-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.35;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.5'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
}

.hero-container {
  position: relative;
  z-index: 2;
  padding-top: 140px;
  padding-bottom: 60px;
}

.hero-content {
  max-width: 820px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.eyebrow-line {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--accent);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 1.0;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.hero-line {
  display: block;
}

.hero-line-accent {
  color: var(--accent);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.55);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Stats bar */
.hero-stats-bar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 48px;
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat-val {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.hero-stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 32px;
  right: 48px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero-scroll-cue span {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===== Trusted / Marquee ===== */
.trusted {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  overflow: hidden;
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  animation: marquee 25s linear infinite;
}

.marquee-item {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.marquee-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== Section Labels ===== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gray-500);
  margin-bottom: 24px;
}

.section-label-light {
  color: rgba(255,255,255,0.4);
}

.section-label-light .label-line {
  background: rgba(255,255,255,0.2);
}

.label-line {
  width: 32px;
  height: 2px;
  background: var(--gray-300);
}

.text-accent {
  color: var(--accent-dark);
}

.text-accent-light {
  color: var(--accent);
}

/* ===== Features ===== */
.features {
  padding: 140px 0;
  background: var(--white);
}

.section-header-split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
  margin-bottom: 80px;
}

.section-header-split h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--black);
  flex: 1;
}

.section-header-split p {
  max-width: 380px;
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.7;
  flex-shrink: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--gray-200);
  border-left: 1px solid var(--gray-200);
}

.feature-card {
  padding: 40px 36px;
  border-right: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  position: relative;
  transition: background 0.3s;
}

.feature-card:hover {
  background: var(--gray-50);
}

.feature-card:hover .feature-line {
  transform: scaleX(1);
}

.feature-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-dark);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.65;
}

.feature-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

/* ===== Solutions by Use Case ===== */
.solutions {
  padding: 140px 0;
  background: var(--black);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.solutions::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 255, 71, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.solutions-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
  margin-bottom: 72px;
}

.solutions-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #fff;
  flex: 1;
}

.solutions-header p {
  max-width: 380px;
  font-size: 1rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  flex-shrink: 0;
}

/* Case Study Card */
.case-study {
  position: relative;
  background: var(--gray-900);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
}

.case-study-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(232, 255, 71, 0.08);
  border: 1px solid rgba(232, 255, 71, 0.15);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  z-index: 2;
}

.case-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.case-study-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  min-height: 560px;
}

.case-study-content {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.case-client {
  display: flex;
  align-items: center;
  gap: 14px;
}

.case-client-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.case-client-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: #fff;
}

.case-client-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

.case-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.case-narrative {
  font-size: 0.94rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
}

.case-capabilities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 4px 0;
}

.case-cap {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: all 0.25s;
}

.case-cap:hover {
  background: rgba(232, 255, 71, 0.05);
  border-color: rgba(232, 255, 71, 0.12);
  color: var(--accent);
}

.case-cap svg {
  flex-shrink: 0;
  color: var(--accent);
  opacity: 0.7;
}

/* Dashboard Visual */
.case-study-visual {
  position: relative;
  padding: 32px 32px 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  overflow: hidden;
}

.case-dashboard {
  width: 100%;
  max-width: 520px;
  background: #111;
  border-radius: 12px 12px 0 0;
  border: 1px solid rgba(255,255,255,0.08);
  border-bottom: none;
  overflow: hidden;
  box-shadow: 0 -20px 60px rgba(0,0,0,0.4);
}

.case-dash-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.case-dash-dots {
  display: flex;
  gap: 6px;
}

.case-dash-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}

.case-dash-dots span:first-child { background: #ff5f57; }
.case-dash-dots span:nth-child(2) { background: #ffbd2e; }
.case-dash-dots span:nth-child(3) { background: #28c840; }

.case-dash-title {
  flex: 1;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.02em;
}

.case-dash-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 600;
  color: #28c840;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #28c840;
  animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 0.5; box-shadow: 0 0 0 0 rgba(40, 200, 64, 0.4); }
  50% { opacity: 1; box-shadow: 0 0 0 4px rgba(40, 200, 64, 0); }
}

.case-dash-body {
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.case-dash-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.case-metric {
  padding: 14px 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
}

.case-metric-val {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}

.case-metric-label {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.case-metric-bar {
  height: 3px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
}

.case-metric-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 4px;
  transition: width 1.5s ease;
}

.case-metric-fill-green {
  background: #28c840;
}

.case-metric-fill-red {
  background: #ff5f57;
}

/* Dashboard Table */
.case-dash-table {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  overflow: hidden;
}

.case-dash-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  padding: 9px 14px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.case-dash-row:last-child {
  border-bottom: none;
}

.case-dash-row-header {
  background: rgba(255,255,255,0.02);
  color: rgba(255,255,255,0.25);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.65rem;
}

.status-active {
  color: var(--accent);
  font-weight: 500;
}

.status-issue {
  color: #ff5f57;
  font-weight: 500;
}

.status-done {
  color: #28c840;
  font-weight: 500;
}

/* Dashboard Chart */
.case-dash-chart {
  padding: 14px 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
}

.case-chart-label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.3);
  font-weight: 500;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}

.case-chart-bars {
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  height: 80px;
  gap: 8px;
}

.case-chart-pair {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
}

.case-chart-pair span {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.2);
  font-weight: 500;
}

.case-chart-col {
  display: flex;
  gap: 4px;
  align-items: flex-end;
  height: 70px;
  width: 100%;
  justify-content: center;
}

.case-chart-bar {
  width: 14px;
  border-radius: 3px 3px 0 0;
  transition: height 1.5s ease;
}

.case-bar-budget {
  background: rgba(255,255,255,0.1);
}

.case-bar-actual {
  background: var(--accent);
  opacity: 0.8;
}

.case-chart-legend {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  justify-content: center;
}

.case-chart-legend span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.62rem;
  color: rgba(255,255,255,0.3);
}

.legend-swatch {
  display: block;
  width: 10px;
  height: 4px;
  border-radius: 2px;
}

.legend-budget {
  background: rgba(255,255,255,0.15);
}

.legend-actual {
  background: var(--accent);
  opacity: 0.8;
}

/* Case Study Alternating */
.case-study + .case-study {
  margin-top: 48px;
}

.case-study-layout-reverse {
  grid-template-columns: 1.15fr 1fr;
}

.case-study-visual-left {
  padding: 32px 0 0 32px;
  justify-content: flex-start;
}

.case-dashboard-left {
  border-radius: 12px 12px 0 0;
}

.case-client-logo-tambour {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

/* Incident Flow Diagram */
.case-dash-flow {
  padding: 14px 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
}

.case-flow-label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.3);
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

.case-flow-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.case-flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.case-flow-step span {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.35);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.flow-step-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-icon-report {
  background: rgba(255, 95, 87, 0.15);
  color: #ff5f57;
  border: 1px solid rgba(255, 95, 87, 0.2);
}

.flow-icon-assign {
  background: rgba(232, 255, 71, 0.1);
  color: var(--accent);
  border: 1px solid rgba(232, 255, 71, 0.15);
}

.flow-icon-track {
  background: rgba(40, 200, 64, 0.12);
  color: #28c840;
  border: 1px solid rgba(40, 200, 64, 0.18);
}

.flow-arrow {
  color: rgba(255,255,255,0.15);
  font-size: 1rem;
  margin-top: -16px;
}

/* Compliance Bars */
.case-dash-compliance {
  padding: 14px 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
}

.compliance-header {
  margin-bottom: 10px;
}

.compliance-title {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.3);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.compliance-bars {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.compliance-row {
  display: grid;
  grid-template-columns: 48px 1fr 36px;
  align-items: center;
  gap: 10px;
}

.compliance-row > span:first-child {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.3);
  font-weight: 500;
}

.compliance-track {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
}

.compliance-fill {
  height: 100%;
  background: #28c840;
  border-radius: 4px;
  transition: width 1.5s ease;
}

.compliance-fill-warn {
  background: #ffbd2e;
}

.compliance-pct {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  color: #28c840;
  text-align: right;
}

.compliance-pct-warn {
  color: #ffbd2e;
}

/* Solutions Responsive */
@media (max-width: 1024px) {
  .case-study-layout {
    grid-template-columns: 1fr;
  }

  .case-study-layout-reverse {
    grid-template-columns: 1fr;
  }

  .case-study-layout-reverse .case-study-visual-left {
    order: 2;
    padding: 0 24px;
    justify-content: center;
  }

  .case-study-layout-reverse .case-study-content {
    order: 1;
  }

  .case-study-visual {
    padding: 0 24px;
    justify-content: center;
  }

  .case-dashboard {
    max-width: 100%;
    border-radius: 12px 12px 0 0;
  }

  .solutions-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .solutions {
    padding: 100px 0;
  }

  .case-study-content {
    padding: 40px 24px;
  }

  .case-capabilities {
    grid-template-columns: 1fr;
  }

  .case-study-badge {
    top: 16px;
    right: 16px;
  }

  .case-dash-metrics {
    grid-template-columns: 1fr;
  }

  .case-study-visual {
    padding: 0 16px;
  }
}

/* ===== Process / How It Works ===== */
.process {
  padding: 140px 0;
  background: var(--black);
  color: #fff;
}

.process-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 80px;
}

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

.process-card {
  padding: 48px 40px;
  background: var(--gray-900);
  border-radius: 2px;
  transition: background 0.3s;
}

.process-card:hover {
  background: var(--gray-800);
}

.process-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 24px;
}

.process-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.process-card p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
}

/* ===== Integrations ===== */
.integrations {
  padding: 140px 0;
  background: var(--white);
}

.integrations-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--black);
  margin-bottom: 60px;
}

.integrations-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.int-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border: 1.5px solid var(--gray-200);
  border-radius: 60px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: all 0.3s;
  cursor: default;
}

.int-chip:hover {
  border-color: var(--accent-dark);
  background: rgba(232, 255, 71, 0.06);
  transform: translateY(-2px);
}

.int-icon {
  font-size: 1.2rem;
}

/* ===== Testimonial ===== */
.testimonial {
  padding: 140px 0;
  background: var(--gray-50);
}

.testimonial-inner {
  max-width: 760px;
  margin: 0 auto;
}

.testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 0.6;
  color: var(--accent-dark);
  opacity: 0.35;
  margin-bottom: 8px;
}

.testimonial-inner blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 500;
  color: var(--black);
  line-height: 1.5;
  margin-bottom: 40px;
  letter-spacing: -0.01em;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--black);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
}

.author-name {
  font-weight: 600;
  color: var(--black);
  font-size: 0.95rem;
}

.author-role {
  color: var(--gray-500);
  font-size: 0.85rem;
}

/* ===== CTA ===== */
.cta {
  position: relative;
  padding: 160px 0;
  overflow: hidden;
  background: var(--black);
}

.cta-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.cta-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,10,10,0.6) 0%,
    rgba(10,10,10,0.5) 100%
  );
}

.cta-container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.cta p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Footer ===== */
.footer {
  padding: 80px 0 0;
  background: var(--black);
  color: #fff;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer .logo {
  color: #fff;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 72px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
}

.footer-col a {
  text-decoration: none;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}

.footer-bottom a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: var(--accent);
}

/* ===== Scroll Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-stagger.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-header-split {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .nav {
    padding: 0 20px;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(20px);
    padding: 32px;
    gap: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .nav-actions.open {
    display: flex;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(20px);
    padding: 0 32px 32px;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero-container {
    padding-top: 120px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }

  .hero-stats-bar {
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 48px;
  }

  .hero-stat-sep {
    display: none;
  }

  .hero-scroll-cue {
    display: none;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .integrations-row {
    gap: 10px;
  }

  .int-chip {
    padding: 12px 20px;
    font-size: 0.85rem;
  }

  .footer-top {
    flex-direction: column;
    gap: 40px;
  }

  .footer-links {
    gap: 36px;
    flex-wrap: wrap;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .cta h2 {
    font-size: clamp(1.8rem, 6vw, 2.8rem);
  }
}
