/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@200;300;400;500;600;700;800&family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ===== CSS RESET & VARIABLES ===== */
:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #161616;
  --bg-card-hover: #1a1a1a;
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --text-muted: #666666;
  --accent-red: #e63946;
  --accent-red-dark: #c1121f;
  --accent-red-glow: rgba(230, 57, 70, 0.3);
  --border-color: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);
  --font-primary: 'Sora', sans-serif;
  --font-secondary: 'Space Grotesk', sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  --container-max: 1280px;
  --nav-height: 72px;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-secondary);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Global stylish heading treatment */
h1, h2 {
  font-family: var(--font-primary);
  font-weight: 300;
  color: rgba(255,255,255,0.75);
}

h1 .highlight, h2 .highlight,
h1 em, h2 em,
h1 span:not([style]), h2 span:not([style]) {
  color: var(--accent-red);
  font-weight: 700;
  font-style: italic;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== NAVIGATION ===== */
.nav-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--transition-smooth), backdrop-filter var(--transition-smooth);
}

.nav-fixed.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
}

.navbar {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  z-index: 1001;
}

.nav-logo .logo-img {
  width: 52px;
  height: 52px;
  border-radius: 0;
  object-fit: contain;
  mix-blend-mode: screen;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  position: relative;
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  border-radius: var(--radius-sm);
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 1px;
  background: var(--accent-red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-smooth);
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown .dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav-dropdown .dropdown-arrow {
  width: 12px;
  height: 12px;
  transition: transform var(--transition-fast);
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown .dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  pointer-events: none;
  background: #1a1a1a;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 8px;
  min-width: 180px;
  transition: all var(--transition-fast);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-link {
  display: block;
  padding: 10px 14px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.dropdown-link:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.05);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-secondary);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-lg);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--accent-red);
  color: white;
}

.btn-primary:hover {
  background: var(--accent-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--accent-red-glow);
}

.btn-secondary {
  background: rgba(255,255,255,0.06);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--bg-primary);
  color: white;
  border: 1px solid var(--border-color);
}

.btn-dark:hover {
  border-color: var(--accent-red);
  box-shadow: 0 0 24px var(--accent-red-glow);
  transform: translateY(-2px);
}

.btn-arrow {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-arrow svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* ===== MOBILE MENU ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  transition: all var(--transition-fast);
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
  background: #111114;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-grid-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
}

#gridCanvas {
  width: 100%;
  height: 100%;
}

#trailCanvas {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, transparent 0%, #111114 70%),
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(230, 57, 70, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(230, 57, 70, 0.06) 0%, transparent 60%);
}

.hero-shadow-top,
.hero-shadow-bottom,
.hero-shadow-left,
.hero-shadow-right {
  position: absolute;
  z-index: 4;
}

.hero-shadow-top {
  top: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to bottom, #111114, transparent);
}

.hero-shadow-bottom {
  bottom: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(to top, var(--bg-primary), transparent);
}

.hero-shadow-left {
  left: 0; top: 0; bottom: 0;
  width: 100px;
  background: linear-gradient(to right, #111114, transparent);
}

.hero-shadow-right {
  right: 0; top: 0; bottom: 0;
  width: 100px;
  background: linear-gradient(to left, #111114, transparent);
}

/* Decorative Lines Container */
.hero-lines {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

/* Horizontal flowing lines */
.hero-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  opacity: 0;
  animation: heroLineReveal 1.5s ease forwards;
}

.hero-line::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,255,255,0.15) 20%,
    rgba(255,255,255,0.15) 80%,
    transparent 100%
  );
}

/* Animated glowing segment that travels along the line */
.hero-line::after {
  content: '';
  position: absolute;
  top: -1px;
  left: -200px;
  width: 200px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, rgba(230, 57, 70, 0.7), transparent);
  animation: heroLineSweep 6s ease-in-out infinite;
}

.hero-line.hl-1 { top: 8%; animation-delay: 0.1s; }
.hero-line.hl-1::after { animation-delay: 0s; animation-duration: 5s; }

.hero-line.hl-2 { top: 17%; animation-delay: 0.15s; }
.hero-line.hl-2::after { animation-delay: 2.5s; animation-duration: 7s; }

.hero-line.hl-3 { top: 26%; animation-delay: 0.2s; }
.hero-line.hl-3::after { animation-delay: 1s; animation-duration: 6s; }

.hero-line.hl-4 { top: 35%; animation-delay: 0.25s; }
.hero-line.hl-4::after { animation-delay: 3.5s; animation-duration: 8s; }

.hero-line.hl-5 { top: 44%; animation-delay: 0.3s; }
.hero-line.hl-5::after { animation-delay: 0.5s; animation-duration: 5.5s; }

.hero-line.hl-6 { top: 53%; animation-delay: 0.35s; }
.hero-line.hl-6::after { animation-delay: 4s; animation-duration: 7s; }

.hero-line.hl-7 { top: 62%; animation-delay: 0.4s; }
.hero-line.hl-7::after { animation-delay: 1.8s; animation-duration: 6.5s; }

.hero-line.hl-8 { top: 70%; animation-delay: 0.45s; }
.hero-line.hl-8::after { animation-delay: 3s; animation-duration: 5s; }

.hero-line.hl-9 { top: 78%; animation-delay: 0.5s; }
.hero-line.hl-9::after { animation-delay: 0.3s; animation-duration: 7.5s; }

.hero-line.hl-10 { top: 84%; animation-delay: 0.55s; }
.hero-line.hl-10::after { animation-delay: 2s; animation-duration: 6s; }

.hero-line.hl-11 { top: 90%; animation-delay: 0.6s; }
.hero-line.hl-11::after { animation-delay: 4.5s; animation-duration: 8s; }

.hero-line.hl-12 { top: 96%; animation-delay: 0.65s; }
.hero-line.hl-12::after { animation-delay: 1.2s; animation-duration: 5s; }

@keyframes heroLineReveal {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes heroLineSweep {
  0% { left: -200px; }
  100% { left: calc(100% + 200px); }
}

/* Vertical flowing lines */
.hero-line-v {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  opacity: 0;
  animation: heroLineReveal 1.5s ease forwards;
}

.hero-line-v::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(255,255,255,0.12) 20%,
    rgba(255,255,255,0.12) 80%,
    transparent 100%
  );
}

.hero-line-v::after {
  content: '';
  position: absolute;
  left: -1px;
  top: -100px;
  width: 3px;
  height: 100px;
  border-radius: 2px;
  background: linear-gradient(180deg, transparent, rgba(230, 57, 70, 0.6), transparent);
  animation: heroLineSweepV 7s ease-in-out infinite;
}

.hero-line-v.hv-1 { left: 10%; animation-delay: 0.1s; }
.hero-line-v.hv-1::after { animation-delay: 0s; animation-duration: 6s; }

.hero-line-v.hv-2 { left: 25%; animation-delay: 0.2s; }
.hero-line-v.hv-2::after { animation-delay: 2s; animation-duration: 8s; }

.hero-line-v.hv-3 { left: 40%; animation-delay: 0.3s; }
.hero-line-v.hv-3::after { animation-delay: 1s; animation-duration: 7s; }

.hero-line-v.hv-4 { left: 60%; animation-delay: 0.35s; }
.hero-line-v.hv-4::after { animation-delay: 3s; animation-duration: 6.5s; }

.hero-line-v.hv-5 { left: 75%; animation-delay: 0.4s; }
.hero-line-v.hv-5::after { animation-delay: 0.5s; animation-duration: 7.5s; }

.hero-line-v.hv-6 { left: 90%; animation-delay: 0.5s; }
.hero-line-v.hv-6::after { animation-delay: 4s; animation-duration: 5.5s; }

@keyframes heroLineSweepV {
  0% { top: -100px; }
  100% { top: calc(100% + 100px); }
}

/* Diagonal accent lines */
.hero-line-diagonal {
  position: absolute;
  width: 1px;
  height: 200%;
  transform-origin: center;
}

.hero-line-diagonal::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(230, 57, 70, 0.2) 30%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(230, 57, 70, 0.2) 70%,
    transparent 100%
  );
}

.hero-line-diagonal.hld-1 {
  left: 20%;
  top: -50%;
  transform: rotate(25deg);
  animation: diagFade 4s ease-in-out infinite alternate;
}

.hero-line-diagonal.hld-2 {
  right: 15%;
  left: auto;
  top: -50%;
  transform: rotate(-20deg);
  animation: diagFade 4s ease-in-out 2s infinite alternate;
}

.hero-line-diagonal.hld-3 {
  left: 45%;
  top: -50%;
  transform: rotate(35deg);
  animation: diagFade 5s ease-in-out 1s infinite alternate;
}

.hero-line-diagonal.hld-4 {
  right: 40%;
  left: auto;
  top: -50%;
  transform: rotate(-30deg);
  animation: diagFade 5s ease-in-out 3s infinite alternate;
}

@keyframes diagFade {
  0% { opacity: 0.5; }
  100% { opacity: 1; }
}

/* Orbit rings */
.hero-orbit {
  position: absolute;
  width: 500px;
  height: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  animation: heroOrbitSpin 30s linear infinite;
}

.hero-orbit::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(230, 57, 70, 0.5);
  box-shadow: 0 0 12px rgba(230, 57, 70, 0.3);
}

.hero-orbit-2 {
  width: 700px;
  height: 700px;
  border-color: rgba(255, 255, 255, 0.025);
  animation-duration: 45s;
  animation-direction: reverse;
}

.hero-orbit-2::before {
  background: rgba(66, 165, 245, 0.4);
  box-shadow: 0 0 12px rgba(66, 165, 245, 0.25);
}

.hero-orbit-3 {
  width: 350px;
  height: 350px;
  border-color: rgba(255, 255, 255, 0.035);
  animation-duration: 20s;
}

.hero-orbit-3::before {
  background: rgba(76, 175, 80, 0.4);
  box-shadow: 0 0 12px rgba(76, 175, 80, 0.25);
}

@keyframes heroOrbitSpin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 0 100px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 8px;
  background: rgba(230, 57, 70, 0.1);
  border: 1px solid rgba(230, 57, 70, 0.2);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent-red);
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.hero-badge .badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-red);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  font-family: var(--font-primary);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.1s forwards;
  opacity: 0;
  color: rgba(255,255,255,0.7);
}

.hero h1 .highlight {
  color: var(--accent-red);
  font-weight: 700;
  font-style: italic;
  position: relative;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  animation: fadeInUp 0.8s ease 0.3s forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== LOGO TICKER ===== */
.logo-ticker {
  padding: 60px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
  position: relative;
}

.logo-ticker-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.ticker-track {
  display: flex;
  gap: 60px;
  animation: ticker 30s linear infinite;
  width: max-content;
}

.ticker-track:hover {
  animation-play-state: paused;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-muted);
  opacity: 0.5;
  transition: opacity var(--transition-fast);
  white-space: nowrap;
}

.ticker-item:hover {
  opacity: 0.8;
}

.ticker-item .ticker-logo {
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
}

/* ===== PROCESS FLOW SECTION ===== */
/* ===== VERTICAL FUNNEL FLOW ===== */
.section-flow {
  padding: 120px 0 100px;
  background: var(--bg-primary);
  overflow: hidden;
  position: relative;
}

.section-flow::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 700px; height: 700px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(230,57,70,0.06), transparent 70%);
  pointer-events: none;
}

.flow-headline {
  font-size: clamp(1.5rem, 3.5vw, 2.8rem);
  text-align: center;
  max-width: 800px;
  margin: 16px auto 0;
  line-height: 1.3;
}

/* Flow wrapper - new canvas-based layout */
.flow-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  max-width: 1400px;
  margin: 70px auto 0;
  padding: 80px 50px;
}

.flow-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.flow-col { position: relative; z-index: 1; }
.flow-col-left { flex: 0 0 220px; display: flex; flex-direction: column; gap: 24px; }
.flow-col-center { flex: 0 0 220px; display: flex; align-items: center; justify-content: center; }
.flow-col-right { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 56px; padding-left: 30px; }

/* Flow cards (inputs) */
.flow-card {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  transition: all 0.35s ease;
  cursor: default;
}
.flow-card:hover {
  background: rgba(230,57,70,0.06);
  border-color: rgba(230,57,70,0.25);
  transform: translateX(6px);
  box-shadow: 0 0 20px rgba(230,57,70,0.08);
}

/* Staggered entrance for flow cards */
.flow-card:nth-child(1) { animation: flowCardIn 0.6s ease 0.1s both; }
.flow-card:nth-child(2) { animation: flowCardIn 0.6s ease 0.2s both; }
.flow-card:nth-child(3) { animation: flowCardIn 0.6s ease 0.3s both; }
.flow-card:nth-child(4) { animation: flowCardIn 0.6s ease 0.4s both; }

@keyframes flowCardIn {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Subtle floating animation */
.flow-card:nth-child(1) { animation: flowCardIn 0.6s ease 0.1s both, flowFloat 5s ease-in-out 0.7s infinite; }
.flow-card:nth-child(2) { animation: flowCardIn 0.6s ease 0.2s both, flowFloat 5.5s ease-in-out 0.8s infinite; }
.flow-card:nth-child(3) { animation: flowCardIn 0.6s ease 0.3s both, flowFloat 6s ease-in-out 0.9s infinite; }
.flow-card:nth-child(4) { animation: flowCardIn 0.6s ease 0.4s both, flowFloat 5.2s ease-in-out 1s infinite; }

@keyframes flowFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* Output row entrance */
.flow-out-row:nth-child(1) { animation: flowOutIn 0.6s ease 0.3s both; }
.flow-out-row:nth-child(2) { animation: flowOutIn 0.6s ease 0.45s both; }
.flow-out-row:nth-child(3) { animation: flowOutIn 0.6s ease 0.6s both; }

@keyframes flowOutIn {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Engine entrance */
.flow-engine-box {
  animation: enginePop 0.7s ease 0.2s both;
}
@keyframes enginePop {
  from { opacity: 0; transform: scale(0.7); }
  to { opacity: 1; transform: scale(1); }
}
.fc-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(230,57,70,0.1);
  display: flex; align-items: center; justify-content: center;
  color: #e63946; flex-shrink: 0;
}
.flow-card span {
  font-family: var(--font-primary);
  font-size: 0.85rem; font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
}

/* Flow output rows */
.flow-out-row {
  display: flex; align-items: center; gap: 20px;
  padding-left: 12px;
}
.flow-out-tag {
  padding: 8px 18px;
  border-radius: 10px;
  font-family: var(--font-primary);
  font-size: 0.8rem; font-weight: 600;
  white-space: nowrap;
  border: 1px solid;
  flex-shrink: 0;
}
.fo-green { color: #22c55e; border-color: rgba(34,197,94,0.25); background: rgba(34,197,94,0.06); }
.fo-blue { color: #3b82f6; border-color: rgba(59,130,246,0.25); background: rgba(59,130,246,0.06); }
.fo-red { color: #e63946; border-color: rgba(230,57,70,0.25); background: rgba(230,57,70,0.06); }

.flow-out-meta {
  display: flex; flex-direction: column; gap: 1px;
}
.flow-out-meta strong {
  font-family: var(--font-primary);
  font-size: 0.78rem; font-weight: 600; color: var(--text-primary); white-space: nowrap;
}
.flow-out-meta small {
  font-family: var(--font-secondary);
  font-size: 0.68rem; color: var(--text-muted); white-space: nowrap;
}
.flow-out-action {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  font-family: var(--font-primary);
  font-size: 0.78rem; font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  transition: all 0.3s;
}
.flow-out-action:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
}
.flow-out-action svg { color: #e63946; flex-shrink: 0; }

@media (max-width: 900px) {
  .flow-wrapper { flex-direction: column; gap: 32px; padding: 20px; }
  .flow-col-left { flex: none; flex-direction: row; flex-wrap: wrap; justify-content: center; width: 100%; }
  .flow-col-center { flex: none; }
  .flow-col-right { flex: none; align-items: center; padding-left: 0; width: 100%; }
  .flow-out-row { flex-wrap: wrap; justify-content: center; }
  .flow-canvas { display: none; }
}

/* ===== FLOW DIAGRAM ===== */
.flow-diagram {
  display: grid;
  grid-template-columns: 200px 120px 160px 140px 1fr;
  align-items: center;
  gap: 0;
  max-width: 1100px;
  margin: 60px auto 0;
  min-height: 300px;
  position: relative;
}

/* LEFT: Input Sources */
.flow-inputs {
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 2;
}

.flow-source {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  transition: all 0.3s;
  cursor: default;
}

.flow-source:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(230,57,70,0.3);
  transform: translateX(4px);
}

.flow-source-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(230,57,70,0.1);
  display: flex; align-items: center; justify-content: center;
  color: #e63946;
  flex-shrink: 0;
}

.flow-source-label {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
}

/* LEFT SVG connector lines */
.flow-lines-left {
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-svg-left {
  width: 100%;
  height: 300px;
}

.flow-path {
  fill: none;
  stroke: rgba(255,255,255,0.07);
  stroke-width: 1.5;
}

.flow-path-glow {
  fill: none;
  stroke: rgba(230,57,70,0.2);
  stroke-width: 1.5;
  stroke-dasharray: 6 8;
  animation: flowDash 3s linear infinite;
}

@keyframes flowDash {
  to { stroke-dashoffset: -42; }
}

.flow-dot {
  fill: #e63946;
  filter: drop-shadow(0 0 4px rgba(230,57,70,0.6));
}

.flow-dot.dot-green { fill: #22c55e; filter: drop-shadow(0 0 4px rgba(34,197,94,0.6)); }
.flow-dot.dot-blue { fill: #3b82f6; filter: drop-shadow(0 0 4px rgba(59,130,246,0.6)); }
.flow-dot.dot-red { fill: #e63946; filter: drop-shadow(0 0 4px rgba(230,57,70,0.6)); }

/* CENTER: Engine */
.flow-engine {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.flow-engine-glow {
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230,57,70,0.12), transparent 70%);
  animation: engineGlow 3s ease-in-out infinite;
}

@keyframes engineGlow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}

.flow-engine-box {
  position: relative;
  background: rgba(230,57,70,0.06);
  border: 1px solid rgba(230,57,70,0.2);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.flow-engine-logo {
  width: 56px; height: auto;
  mix-blend-mode: screen;
}

.flow-engine-name {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-primary);
  line-height: 1.3;
}

.flow-engine-name span {
  font-weight: 400;
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.25em;
}

/* Pulse rings */
.flow-pulse-ring {
  position: absolute;
  width: 140px; height: 140px;
  border-radius: 50%;
  border: 1px solid rgba(230,57,70,0.15);
  animation: pulseRing 3s ease-out infinite;
  pointer-events: none;
}

.flow-pulse-ring.r2 { animation-delay: 1s; }

@keyframes pulseRing {
  0% { transform: scale(0.8); opacity: 0.6; }
  100% { transform: scale(2); opacity: 0; }
}

/* RIGHT SVG connector lines */
.flow-lines-right {
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-svg-right {
  width: 100%;
  height: 300px;
}

.flow-path.fr-1, .flow-path-glow.fr-1 { stroke: rgba(34,197,94,0.15); }
.flow-path-glow.fr-1 { stroke: rgba(34,197,94,0.3); }
.flow-path.fr-2, .flow-path-glow.fr-2 { stroke: rgba(59,130,246,0.15); }
.flow-path-glow.fr-2 { stroke: rgba(59,130,246,0.3); }
.flow-path.fr-3, .flow-path-glow.fr-3 { stroke: rgba(230,57,70,0.15); }
.flow-path-glow.fr-3 { stroke: rgba(230,57,70,0.3); }

/* RIGHT: Output rows */
.flow-outputs {
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 2;
}

.flow-output-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.flow-entry-line {
  width: 20px; height: 2px;
  background: rgba(255,255,255,0.1);
}
.entry-green { background: rgba(34,197,94,0.3); }
.entry-blue { background: rgba(59,130,246,0.3); }
.entry-red { background: rgba(230,57,70,0.3); }

.flow-output-tag {
  padding: 8px 18px;
  border-radius: 10px;
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid;
}

.tag-green { color: #22c55e; border-color: rgba(34,197,94,0.25); background: rgba(34,197,94,0.06); }
.tag-blue { color: #3b82f6; border-color: rgba(59,130,246,0.25); background: rgba(59,130,246,0.06); }
.tag-red { color: #e63946; border-color: rgba(230,57,70,0.25); background: rgba(230,57,70,0.06); }

.flow-connector-line {
  width: 24px; height: 1px;
  background: rgba(255,255,255,0.06);
  border: none;
  position: relative;
}
.flow-connector-line::after {
  content: '';
  position: absolute;
  right: 0; top: -2px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.line-green::after { background: rgba(34,197,94,0.4); }
.line-blue::after { background: rgba(59,130,246,0.4); }
.line-red::after { background: rgba(230,57,70,0.4); }
.line-dim::after { background: rgba(255,255,255,0.1); }

.flow-output-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.flow-meta-value {
  font-family: var(--font-primary);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
}

.flow-meta-label {
  font-family: var(--font-secondary);
  font-size: 0.68rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.flow-output-action {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  font-family: var(--font-primary);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  transition: all 0.3s;
}

.flow-output-action:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
}

.flow-output-action svg { color: #e63946; flex-shrink: 0; }

/* Flow diagram responsive */
@media (max-width: 1024px) {
  .flow-diagram {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 500px;
  }
  .flow-lines-left, .flow-lines-right { display: none; }
  .flow-inputs {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .flow-outputs { align-items: center; }
  .flow-output-row { flex-wrap: wrap; justify-content: center; }
  .flow-entry-line { display: none; }
  .flow-connector-line { width: 16px; }
}

@media (max-width: 600px) {
  .flow-source { padding: 10px 14px; }
  .flow-source-label { font-size: 0.75rem; }
  .flow-output-tag { font-size: 0.72rem; padding: 6px 12px; }
  .flow-output-action { font-size: 0.72rem; padding: 6px 12px; }
}

.vf-funnel {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
  margin: 60px auto 0;
  padding: 0 20px;
  position: relative;
}

.vf-inputs {
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 100%;
  flex-wrap: wrap;
}

.vf-input {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 60px;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: all 0.35s ease;
  backdrop-filter: blur(8px);
  cursor: default;
}

.vf-input:hover {
  border-color: rgba(230,57,70,0.3);
  background: rgba(230,57,70,0.06);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(230,57,70,0.1);
}

.vf-input-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(230,57,70,0.1);
  display: flex; align-items: center; justify-content: center;
  color: #e63946;
  flex-shrink: 0;
}

.vf-in-1 { animation: vfSlideDown 0.6s ease 0.1s both; }
.vf-in-2 { animation: vfSlideDown 0.6s ease 0.2s both; }
.vf-in-3 { animation: vfSlideDown 0.6s ease 0.3s both; }
.vf-in-4 { animation: vfSlideDown 0.6s ease 0.4s both; }

@keyframes vfSlideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.vf-lines-top, .vf-lines-bottom {
  width: 100%;
  height: 100px;
  position: relative;
}

.vf-svg { width: 100%; height: 100%; }

.vf-path {
  fill: none;
  stroke: rgba(230,57,70,0.15);
  stroke-width: 1.5;
  stroke-dasharray: 6 4;
}

.vf-p-green { stroke: rgba(76,175,80,0.2); }
.vf-p-blue { stroke: rgba(66,165,245,0.2); }
.vf-p-red { stroke: rgba(230,57,70,0.2); }

.vf-dot {
  fill: #e63946;
  filter: drop-shadow(0 0 6px rgba(230,57,70,0.6));
}

.vf-dot-green { fill: #4caf50; filter: drop-shadow(0 0 6px rgba(76,175,80,0.6)); }
.vf-dot-blue { fill: #42a5f5; filter: drop-shadow(0 0 6px rgba(66,165,245,0.6)); }
.vf-dot-red { fill: #e63946; filter: drop-shadow(0 0 6px rgba(230,57,70,0.6)); }

.vf-engine {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px; height: 180px;
}

.vf-engine-glow {
  position: absolute;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230,57,70,0.15), transparent 70%);
  animation: vfGlow 3s ease-in-out infinite;
}

@keyframes vfGlow {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 1; }
}

.vf-engine-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(230,57,70,0.15);
  animation: vfRing 3s ease-out infinite;
}

.vf-r1 { width: 200px; height: 200px; }
.vf-r2 { width: 240px; height: 240px; animation-delay: 1s; }

@keyframes vfRing {
  0% { transform: scale(0.8); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

.vf-engine-box {
  position: relative;
  width: 140px; height: 140px;
  background: rgba(20,20,20,0.9);
  border: 1px solid rgba(230,57,70,0.25);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  backdrop-filter: blur(20px);
  box-shadow: 0 0 40px rgba(230,57,70,0.08), inset 0 0 30px rgba(230,57,70,0.03);
  transform: rotate(45deg);
}

.vf-engine-box > * { transform: rotate(-45deg); }

.vf-engine-logo {
  width: 44px; height: auto;
  mix-blend-mode: screen;
}

.vf-engine-text {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  line-height: 1.2;
}

.vf-engine-text small {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  color: var(--text-muted);
  display: block;
  margin-top: 2px;
}

.vf-outputs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.vf-output {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.vf-output::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 20px 20px 0 0;
  opacity: 0;
  transition: opacity 0.4s;
}

.vf-output:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.vf-output:hover::before { opacity: 1; }

.vf-out-green::before { background: linear-gradient(90deg, transparent, #4caf50, transparent); }
.vf-out-blue::before { background: linear-gradient(90deg, transparent, #42a5f5, transparent); }
.vf-out-red::before { background: linear-gradient(90deg, transparent, #e63946, transparent); }

.vf-out-green:hover { border-color: rgba(76,175,80,0.2); }
.vf-out-blue:hover { border-color: rgba(66,165,245,0.2); }
.vf-out-red:hover { border-color: rgba(230,57,70,0.2); }

.vf-output-icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  transition: all 0.35s;
}

.vf-out-green .vf-output-icon { background: rgba(76,175,80,0.1); color: #4caf50; }
.vf-out-blue .vf-output-icon { background: rgba(66,165,245,0.1); color: #42a5f5; }
.vf-out-red .vf-output-icon { background: rgba(230,57,70,0.1); color: #e63946; }

.vf-output:hover .vf-output-icon { transform: scale(1.1); }

.vf-output h4 {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.vf-output p {
  font-family: var(--font-secondary);
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.vf-output-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  font-family: var(--font-secondary);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.vf-out-green .vf-output-badge { background: rgba(76,175,80,0.1); color: #4caf50; border: 1px solid rgba(76,175,80,0.15); }
.vf-out-blue .vf-output-badge { background: rgba(66,165,245,0.1); color: #42a5f5; border: 1px solid rgba(66,165,245,0.15); }
.vf-out-red .vf-output-badge { background: rgba(230,57,70,0.1); color: #e63946; border: 1px solid rgba(230,57,70,0.15); }

.vf-out-green { animation: vfCardUp 0.7s ease 0.6s both; }
.vf-out-blue { animation: vfCardUp 0.7s ease 0.8s both; }
.vf-out-red { animation: vfCardUp 0.7s ease 1s both; }

@keyframes vfCardUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .vf-inputs { flex-direction: column; align-items: center; gap: 12px; }
  .vf-input { width: 100%; max-width: 280px; justify-content: center; }
  .vf-outputs { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .vf-engine-box { width: 120px; height: 120px; border-radius: 20px; }
  .vf-engine { width: 150px; height: 150px; }
  .vf-lines-top, .vf-lines-bottom { height: 60px; }
  .section-flow { padding: 80px 0 60px; }
  .flow-headline { font-size: 1.3rem; }
}

/* ===== TESTIMONIALS ===== */
.section-testimonials {
  padding: 100px 0 80px;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-red);
  margin-bottom: 20px;
}

.section-tag .tag-square {
  width: 8px;
  height: 8px;
  background: var(--accent-red);
  border-radius: 2px;
}

.section-header h2 {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
}

.testi-track-wrapper {
  position: relative;
}

.testi-track {
  display: flex;
  gap: 20px;
  animation: scrollLeft 45s linear infinite;
  width: max-content;
  padding: 4px 0;
}

.testi-track.reverse {
  animation: scrollRight 50s linear infinite;
}

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.testi-card {
  flex-shrink: 0;
  width: 380px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition-smooth);
}

.testi-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}

.testi-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent-red), var(--accent-red-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: white;
  flex-shrink: 0;
}

.testi-info .testi-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.testi-info .testi-role {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.testi-body {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 16px;
}

.testi-company {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-red);
}

.testi-fade-left,
.testi-fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 5;
  pointer-events: none;
}

.testi-fade-left {
  left: 0;
  background: linear-gradient(to right, var(--bg-primary), transparent);
}

.testi-fade-right {
  right: 0;
  background: linear-gradient(to left, var(--bg-primary), transparent);
}

/* ===== AUTHORITY SECTION ===== */
.section-authority {
  padding: 100px 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.section-authority::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(230, 57, 70, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.authority-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.authority-content h2 {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.authority-content h2 .highlight {
  color: var(--accent-red);
}

.authority-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 40px;
}

.authority-label .label-icon {
  width: 20px;
  height: 20px;
  opacity: 0.6;
}

.counter-display {
  font-family: var(--font-primary);
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 40px;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255,255,255,0.4) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.authority-desc {
  max-width: 600px;
  margin: 0 auto 40px;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

/* ===== WHY SECTION ===== */
.section-why {
  padding: 100px 0;
  position: relative;
}

.why-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.why-header .why-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.why-header .why-logo-icon {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-color);
}

.why-title-row h3 {
  font-family: var(--font-primary);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.why-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border-color);
}

.why-divider:nth-of-type(1) { left: 33.333%; }
.why-divider:nth-of-type(2) { left: 66.666%; }

.why-column {
  padding: 0 32px;
  position: relative;
}

.why-column:first-child { padding-left: 0; }
.why-column:last-child { padding-right: 0; }

.why-num {
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 24px;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.why-column:hover .why-num { opacity: 1; }

.why-column-title {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 24px;
  line-height: 1.3;
}

.why-stat {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 12px;
}

.why-stat-value {
  font-family: var(--font-primary);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255,255,255,0.5) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-stat-suffix {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  color: rgba(255,255,255,0.6);
}

.why-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.why-column:hover .why-desc { opacity: 1; }

.why-visual {
  margin-top: 32px;
  height: 200px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border-color);
}

.why-visual-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Bar chart animation for why cards */
.mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 120px;
  padding: 20px;
}

.mini-bar {
  width: 18px;
  border-radius: 4px 4px 0 0;
  transition: height 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mini-bar.red { background: linear-gradient(to top, var(--accent-red-dark), var(--accent-red)); }
.mini-bar.white { background: linear-gradient(to top, rgba(255,255,255,0.1), rgba(255,255,255,0.3)); }
.mini-bar.dim { background: rgba(255,255,255,0.06); }

/* ===== PRICING SECTION (LIGHT THEME) ===== */
.section-pricing {
  padding: 100px 0;
  background: #f7f7f7;
}

.pricing-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-red);
  margin-bottom: 48px;
}

.pricing-tag .tag-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--accent-red), transparent);
  margin-left: 12px;
}

.pricing-grid-top,
.pricing-grid-bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

/* Light pricing card */
.pricing-card-light {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  min-height: 380px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1;
}

/* Dynamic Radial Glow following mouse */
.pricing-card-light::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(350px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(230, 57, 70, 0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
  pointer-events: none;
}

.pricing-card-light:hover::after {
  opacity: 1;
}

.pricing-card-light:hover {
  border-color: rgba(230, 57, 70, 0.35);
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(230, 57, 70, 0.06), 0 12px 28px rgba(0, 0, 0, 0.5);
  background: rgba(255, 255, 255, 0.03);
}

/* Card header: title + number */
.pcard-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  z-index: 2;
}

.pcard-header h3 {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #ffffff;
  max-width: 320px;
  transition: color 0.3s ease;
}

.pricing-card-light:hover .pcard-header h3 {
  color: var(--accent-red);
}

.pcard-num {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-red);
  opacity: 0.6;
  flex-shrink: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.pricing-card-light:hover .pcard-num {
  opacity: 1;
  transform: scale(1.1);
}

/* Card description */
.pcard-desc {
  font-family: var(--font-secondary);
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: auto;
  z-index: 2;
}

/* Card visual area */
.pcard-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 0 0;
  min-height: 130px;
  z-index: 2;
}

/* ---- Card 01: Floating Icons (Marketing) ---- */
.pcard-float-icons {
  position: relative;
  width: 200px;
  height: 120px;
}

.float-icon {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.float-icon svg {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.float-icon.fi-1 {
  top: 10px;
  right: 20px;
  animation: floatUp 4s ease-in-out infinite;
}

.float-icon.fi-2 {
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(230, 57, 70, 0.1);
  border-color: rgba(230, 57, 70, 0.25);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  animation: floatUp 4s ease-in-out 0.8s infinite;
}

.float-icon.fi-2 svg {
  color: var(--accent-red);
}

.float-icon.fi-3 {
  top: 25px;
  left: 10px;
  animation: floatUp 4s ease-in-out 1.6s infinite;
}

@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.pricing-card-light:hover .float-icon.fi-1 {
  transform: translate(16px, -16px);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.pricing-card-light:hover .float-icon.fi-3 {
  transform: translate(-16px, 16px);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.pricing-card-light:hover .float-icon.fi-2 {
  transform: translateX(-50%) translateY(-6px) scale(1.15);
  box-shadow: 0 10px 24px rgba(230, 57, 70, 0.3);
  background: rgba(230, 57, 70, 0.2);
}

.pricing-card-light:hover .float-icon svg {
  color: #ffffff;
}

/* ---- Card 02: Browser Wireframe UI (Website Development) ---- */
.browser-ui {
  width: 100%;
  max-width: 240px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.browser-header {
  height: 24px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 12px;
}

.browser-header .b-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: inline-block;
  transition: background-color 0.3s ease;
}

.pricing-card-light:hover .b-dot:nth-child(1) { background: #ff5f56; }
.pricing-card-light:hover .b-dot:nth-child(2) { background: #ffbd2e; }
.pricing-card-light:hover .b-dot:nth-child(3) { background: #27c93f; }

.browser-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wireframe-header {
  height: 12px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 4px;
}

.wireframe-main {
  display: flex;
  gap: 8px;
}

.wireframe-sidebar {
  width: 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.wireframe-sidebar .bar-item {
  height: 6px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 2px;
}

.wireframe-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wireframe-rect {
  height: 32px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}

.wireframe-rect::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(230, 57, 70, 0.1), transparent);
  transform: translateX(-100%);
}

.pricing-card-light:hover .wireframe-rect {
  background: rgba(230, 57, 70, 0.08);
  border: 1px solid rgba(230, 57, 70, 0.2);
}

.pricing-card-light:hover .wireframe-rect::before {
  animation: wireframeShimmer 1.5s infinite;
}

@keyframes wireframeShimmer {
  100% { transform: translateX(100%); }
}

.wireframe-text {
  height: 5px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 2px;
  transition: all 0.5s ease;
}

.wireframe-text.short { width: 50%; }
.wireframe-text.long { width: 85%; }

.pricing-card-light:hover .wireframe-text {
  background: rgba(255, 255, 255, 0.08);
}

.pricing-card-light:hover .browser-ui {
  border-color: rgba(230, 57, 70, 0.25);
  transform: scale(1.04);
}

/* ---- Card 03: Credits UI (CRM/HRMS Software) ---- */
.credit-ui {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.credit-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.credit-icon svg {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.credit-icon.ci-1 {
  background: rgba(230, 57, 70, 0.06);
  border-color: rgba(230, 57, 70, 0.15);
  animation: floatUp 3.5s ease-in-out infinite;
}

.credit-icon.ci-1 svg {
  color: var(--accent-red);
}

.credit-icon.ci-2 {
  animation: floatUp 3.5s ease-in-out 0.4s infinite;
}

.credit-icon.ci-3 {
  animation: floatUp 3.5s ease-in-out 0.8s infinite;
}

.credit-badge {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  animation: floatUp 3.5s ease-in-out 0.2s infinite;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.credit-label {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}

.credit-value {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 800;
  color: #4caf50;
  text-shadow: 0 0 10px rgba(76, 175, 80, 0.2);
}

.pricing-card-light:hover .credit-icon {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.pricing-card-light:hover .credit-icon.ci-1 {
  background: rgba(230, 57, 70, 0.15);
  border-color: rgba(230, 57, 70, 0.3);
}

.pricing-card-light:hover .credit-icon.ci-1 svg {
  color: #ffffff;
}

.pricing-card-light:hover .credit-icon svg {
  color: #ffffff;
}

.pricing-card-light:hover .credit-badge {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(230, 57, 70, 0.25);
  transform: scale(1.05);
}

.pricing-card-light:hover .credit-icon.ci-2 {
  transform: translate(-8px, -8px);
}
.pricing-card-light:hover .credit-icon.ci-3 {
  transform: translate(8px, -8px);
}

/* ---- Card 04: Slider UI (IT/Custom Development) ---- */
.slider-ui {
  width: 100%;
  max-width: 280px;
}

.slider-title {
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin-bottom: 12px;
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 8px;
}

.slider-track {
  position: relative;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  margin-bottom: 8px;
}

.slider-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 15%;
  background: linear-gradient(to right, var(--accent-red), #ff6b7a);
  border-radius: 4px;
  animation: sliderPulse 4s ease-in-out infinite;
}

@keyframes sliderPulse {
  0%, 100% { width: 15%; }
  50% { width: 35%; }
}

.slider-thumb {
  position: absolute;
  top: 50%;
  left: 15%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ffffff;
  border: 2.5px solid var(--accent-red);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px rgba(230, 57, 70, 0.5);
  animation: thumbSlide 4s ease-in-out infinite;
  transition: background-color 0.3s ease;
}

@keyframes thumbSlide {
  0%, 100% { left: 15%; }
  50% { left: 35%; }
}

.slider-current {
  font-family: var(--font-primary);
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--accent-red);
  display: inline-block;
  animation: thumbSlide 4s ease-in-out infinite;
  position: relative;
  text-shadow: 0 0 8px rgba(230, 57, 70, 0.3);
}

.pricing-card-light:hover .slider-fill {
  animation: sliderHoverSlide 3s ease-in-out infinite;
}

.pricing-card-light:hover .slider-thumb,
.pricing-card-light:hover .slider-current {
  animation: thumbHoverSlide 3s ease-in-out infinite;
}

@keyframes sliderHoverSlide {
  0%, 100% { width: 25%; }
  50% { width: 85%; }
}

@keyframes thumbHoverSlide {
  0%, 100% { left: 25%; }
  50% { left: 85%; }
}

.pricing-card-light:hover .slider-thumb {
  background: var(--accent-red);
  border-color: #ffffff;
}

.pricing-cta {
  text-align: center;
  margin-top: 28px;
}

/* ===== IMPACT METRICS SECTION ===== */
.section-impact {
  padding: 120px 0;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
}

.impact-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: start;
}

/* Left Column */
.impact-left {
  position: sticky;
  top: 120px;
}

.impact-tag {
  font-family: var(--font-secondary);
  font-size: 0.78rem;
  color: var(--accent-red);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.impact-headline {
  font-family: var(--font-primary);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}

.impact-cta-btn {
  margin-bottom: 60px;
}

.impact-scroll-hint {
  color: var(--text-muted);
  animation: impactBounce 2s ease-in-out infinite;
}

@keyframes impactBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* Right Column â€” Cards */
.impact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.impact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.impact-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.impact-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.impact-card-title {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.35;
}

.impact-card-stat {
  font-family: var(--font-primary);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1;
}

/* Card 1 â€” Bar Chart */
.impact-bar-group {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 160px;
  padding-top: 20px;
}

.impact-bar-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.impact-bar-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.impact-bar {
  width: 100%;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}

.impact-bar.bar-small {
  height: 60px;
}

.impact-bar.bar-large {
  height: 140px;
}

.impact-bar-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.12);
  border-radius: 6px;
  transition: height 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.impact-bar-fill.bar-fill-red {
  background: linear-gradient(to top, var(--accent-red-dark), var(--accent-red));
  box-shadow: 0 -4px 20px rgba(230, 57, 70, 0.3);
}

.impact-bar-value {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.impact-bar-value.highlight-val {
  color: var(--accent-red);
  font-size: 1rem;
}

.impact-bar-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 0.55rem;
  color: var(--text-muted);
  padding-bottom: 30px;
}

.impact-bar-arrow svg {
  color: var(--text-muted);
  margin-top: 4px;
}

/* Card 2 â€” Phone Mockups */
.impact-phones {
  display: flex;
  gap: 12px;
  align-items: flex-end;
}

.impact-phone {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 3px;
  opacity: 0.5;
  transform: scale(0.92);
  transition: all 0.4s ease;
}

.impact-phone.phone-active {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(230, 57, 70, 0.3);
}

.phone-screen {
  background: rgba(0,0,0,0.4);
  border-radius: 12px;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.phone-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.phone-metric {
  font-size: 0.6rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.phone-val {
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-primary);
}

.phone-badge-dim {
  background: rgba(255,255,255,0.08);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.65rem;
  color: var(--text-muted);
}

.phone-badge-green {
  background: rgba(76, 175, 80, 0.2);
  color: #66bb6a;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 700;
}

.phone-badge-red {
  background: rgba(230, 57, 70, 0.2);
  color: var(--accent-red);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 700;
}

.phone-tag {
  text-align: center;
  font-size: 0.6rem;
  color: var(--text-muted);
  margin-top: 4px;
  padding-top: 6px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* Card 3 â€” Calendar */
.impact-calendar {
  display: flex;
  gap: 8px;
}

.cal-day {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.cal-day-name {
  font-size: 0.55rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cal-day-box {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 14px 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.3s ease;
}

.cal-day-highlight .cal-day-box {
  border-color: rgba(230, 57, 70, 0.3);
  background: rgba(230, 57, 70, 0.06);
}

.cal-metric {
  display: flex;
  align-items: baseline;
  gap: 4px;
  justify-content: center;
}

.cal-val {
  font-family: var(--font-primary);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
}

.cal-val-red {
  color: var(--accent-red);
}

.cal-label {
  font-size: 0.55rem;
  color: var(--text-muted);
}

.cal-icon {
  font-size: 0.7rem;
}

.cal-small {
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.cal-small-red {
  color: var(--accent-red);
}

.cal-footer {
  font-size: 0.5rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Divider line */
.impact-divider-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-color), transparent);
  margin-top: 80px;
}

/* Responsive */
@media (max-width: 1024px) {
  .impact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .impact-left {
    position: static;
    text-align: center;
  }
  .impact-scroll-hint {
    display: none;
  }
}

@media (max-width: 768px) {
  .impact-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .impact-headline {
    font-size: 2rem;
  }
  .impact-card-stat {
    font-size: 1.8rem;
  }
}

/* ===== FAQ SECTION ===== */
.section-faq {
  padding: 100px 0;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
}

.faq-left {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq-left .faq-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.faq-left .faq-tag .square {
  width: 8px;
  height: 8px;
  background: var(--accent-red);
  border-radius: 2px;
}

.faq-left p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}

.faq-contact-link {
  font-size: 0.9rem;
  color: var(--accent-red);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition-fast);
}

.faq-contact-link:hover {
  gap: 10px;
}

.faq-right h2 {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 40px;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  width: 100%;
  text-align: left;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--accent-red);
}

.faq-icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-icon .faq-vert,
.faq-icon .faq-horiz {
  position: absolute;
  background: currentColor;
  border-radius: 1px;
  transition: transform var(--transition-smooth), opacity var(--transition-smooth);
}

.faq-icon .faq-vert {
  width: 2px;
  height: 14px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon .faq-horiz {
  width: 14px;
  height: 2px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.active .faq-icon .faq-vert {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-smooth), padding var(--transition-smooth);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding-bottom: 24px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.section-cta {
  padding: 100px 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.section-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-family: var(--font-primary);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* ===== NEW CREATIVE FOOTER ===== */
.ft {
  position: relative;
  overflow: hidden;
  background: #060606;
  padding-top: 80px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.ft-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.ft-line { position: absolute; opacity: 0.03; }
.ft-lh { left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(230,57,70,0.3), transparent); animation: ftPulse 6s ease-in-out infinite; }
.ft-lv { top: 0; bottom: 0; width: 1px; background: linear-gradient(180deg, transparent, rgba(230,57,70,0.2), transparent); animation: ftPulse 8s ease-in-out infinite; }
@keyframes ftPulse { 0%,100%{opacity:0.02} 50%{opacity:0.06} }
.ft-orb { position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none; }
.ft-orb-1 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(230,57,70,0.08), transparent 70%); top: -100px; right: -100px; animation: ftFloat 12s ease-in-out infinite; }
.ft-orb-2 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(230,57,70,0.05), transparent 70%); bottom: 0; left: -50px; animation: ftFloat 15s ease-in-out infinite reverse; }
@keyframes ftFloat { 0%,100%{transform:translate(0,0)} 50%{transform:translate(30px,-20px)} }
.ft-container { position: relative; z-index: 1; }

.ft-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1.3fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.ft-brand { display: flex; flex-direction: column; gap: 16px; }
.ft-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; font-family: var(--font-primary); font-size: 1.6rem; font-weight: 800; color: var(--text-primary); transition: transform 0.3s; }
.ft-logo:hover { transform: scale(1.03); }
.ft-logo-img { height: 36px; width: auto; mix-blend-mode: screen; }
.ft-tagline { font-family: var(--font-secondary); font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; max-width: 280px; }

.ft-socials { display: flex; gap: 10px; margin-top: 8px; }
.ft-social { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; color: var(--text-muted); }
.ft-social svg { width: 16px; height: 16px; transition: all 0.3s; }
.ft-social:hover { transform: translateY(-3px); border-color: rgba(230,57,70,0.3); background: rgba(230,57,70,0.08); }
.ft-social:hover svg { color: #e63946; }

.ft-col { display: flex; flex-direction: column; gap: 12px; }
.ft-col-title { font-family: var(--font-primary); font-size: 0.85rem; font-weight: 700; color: var(--text-primary); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; position: relative; }
.ft-col-title::after { content: ''; position: absolute; bottom: -6px; left: 0; width: 24px; height: 2px; background: #e63946; border-radius: 2px; }
.ft-link { font-family: var(--font-secondary); font-size: 0.85rem; color: var(--text-muted); text-decoration: none; transition: all 0.25s; padding: 2px 0; position: relative; }
.ft-link::before { content: ''; position: absolute; left: -12px; top: 50%; width: 0; height: 2px; background: #e63946; transition: width 0.25s; transform: translateY(-50%); }
.ft-link:hover { color: var(--text-primary); padding-left: 16px; }
.ft-link:hover::before { width: 8px; }

.ft-newsletter-desc { font-family: var(--font-secondary); font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }
.ft-newsletter { display: flex; border-radius: 12px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.03); transition: all 0.3s; }
.ft-newsletter:focus-within { border-color: rgba(230,57,70,0.4); box-shadow: 0 0 20px rgba(230,57,70,0.08); }
.ft-nl-input { flex: 1; background: transparent; border: none; outline: none; padding: 12px 16px; font-family: var(--font-secondary); font-size: 0.85rem; color: var(--text-primary); }
.ft-nl-input::placeholder { color: rgba(255,255,255,0.25); }
.ft-nl-btn { background: linear-gradient(135deg, #e63946, #c0232f); border: none; color: #fff; padding: 12px 18px; font-size: 1.1rem; cursor: pointer; transition: all 0.3s; font-weight: 700; }
.ft-nl-btn:hover { background: linear-gradient(135deg, #ff4757, #e63946); box-shadow: 0 4px 16px rgba(230,57,70,0.3); }

.ft-contact-bar { display: flex; align-items: center; justify-content: space-between; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,0.06); flex-wrap: wrap; gap: 16px; }
.ft-contact-item { display: flex; align-items: center; gap: 8px; font-family: var(--font-secondary); font-size: 0.82rem; color: var(--text-muted); text-decoration: none; transition: color 0.25s; }
a.ft-contact-item:hover { color: var(--text-primary); }
.ft-contact-item svg { color: #e63946; flex-shrink: 0; }
.ft-scroll-top { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: all 0.3s; text-decoration: none; }
.ft-scroll-top:hover { background: rgba(230,57,70,0.1); border-color: rgba(230,57,70,0.3); color: #e63946; transform: translateY(-3px); }

.ft-watermark { font-family: var(--font-primary); font-size: clamp(5rem,12vw,10rem); font-weight: 900; text-align: center; color: transparent; -webkit-text-stroke: 2px rgba(255,255,255,0.35); letter-spacing: 0.08em; padding: 20px 0; user-select: none; }
.ft-watermark span { -webkit-text-stroke-color: rgba(230,57,70,0.55); }

.ft-bottom { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.04); font-family: var(--font-secondary); font-size: 0.75rem; color: rgba(255,255,255,0.3); }
.ft-bottom-links { display: flex; gap: 24px; }
.ft-bottom-links a { color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.25s; }
.ft-bottom-links a:hover { color: var(--text-primary); }

@media (max-width: 1024px) {
  .ft-top { grid-template-columns: 1fr 1fr 1fr; gap: 36px; }
  .ft-brand { grid-column: 1 / -1; }
  .ft-col-newsletter { grid-column: 1 / -1; max-width: 400px; }
}
@media (max-width: 768px) {
  .ft { padding-top: 48px; }
  .ft-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .ft-brand { grid-column: 1 / -1; }
  .ft-col-newsletter { grid-column: 1 / -1; }
  .ft-contact-bar { flex-direction: column; align-items: flex-start; }
  .ft-scroll-top { align-self: flex-end; }
  .ft-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .ft-watermark { font-size: 4rem; }
}
@media (max-width: 480px) {
  .ft-top { grid-template-columns: 1fr; gap: 24px; }
  .ft-watermark { font-size: 2.5rem; }
}



.footer-relative {
  position: relative;
  z-index: 2;
}

/* Geometric background */
.footer-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.footer-geo {
  position: absolute;
  background: linear-gradient(135deg, rgba(180, 20, 40, 0.35) 0%, rgba(80, 10, 20, 0.2) 100%);
}

.footer-geo-1 {
  width: 55%;
  height: 120%;
  top: -30%;
  left: -10%;
  transform: rotate(-25deg);
  border-radius: 0;
  clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
}

.footer-geo-2 {
  width: 50%;
  height: 130%;
  top: -40%;
  right: -5%;
  transform: rotate(20deg);
  background: linear-gradient(135deg, rgba(140, 15, 30, 0.3) 0%, rgba(60, 5, 15, 0.15) 100%);
  clip-path: polygon(30% 0%, 100% 0%, 70% 100%, 0% 100%);
}

.footer-geo-3 {
  width: 40%;
  height: 100%;
  top: 10%;
  left: 30%;
  transform: rotate(-10deg);
  background: linear-gradient(180deg, rgba(100, 10, 25, 0.2) 0%, transparent 80%);
  clip-path: polygon(50% 0%, 100% 30%, 80% 100%, 20% 100%, 0% 30%);
}

.footer-gradient-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to bottom, transparent, rgba(230, 57, 70, 0.08) 60%, rgba(230, 57, 70, 0.12));
  z-index: 1;
}

/* Footer main layout */
.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 40px;
  padding: 80px 0 40px;
  align-items: start;
}

/* Left nav */
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav-link {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 4px 0;
  transition: color var(--transition-fast);
  width: fit-content;
}

.footer-nav-link.is-active {
  color: var(--text-primary);
  font-weight: 600;
}

.footer-nav-link:hover {
  color: var(--text-primary);
}

/* Center */
.footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.footer-center-logo {
  font-family: var(--font-primary);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-img {
  width: 60px;
  height: 60px;
  border-radius: 0;
  object-fit: contain;
  mix-blend-mode: screen;
}

.footer-logo-text {
  color: var(--text-primary);
}

.footer-center-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 380px;
}

.footer-cta-btn {
  border-radius: var(--radius-lg);
}

.btn-arrow.is-red-circle {
  width: 28px;
  height: 28px;
  background: var(--accent-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}

.btn-arrow.is-red-circle svg {
  width: 12px;
  height: 12px;
  fill: white;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.footer-social-link:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.footer-social-link svg {
  width: 16px;
  height: 16px;
  fill: var(--text-muted);
}

/* Right */
.footer-right {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.footer-login-btn {
  border-radius: var(--radius-lg);
}

/* Mid row: contact + scroll top */
.footer-mid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 40px;
}

.footer-contact-link {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-contact-link:hover {
  color: var(--text-primary);
}

.footer-scroll-top {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.footer-scroll-top:hover {
  border-color: var(--text-primary);
  color: var(--text-primary);
  transform: translateY(-3px);
}

/* Watermark */
.footer-watermark {
  font-family: var(--font-primary);
  font-size: clamp(5rem, 14vw, 12rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  text-align: center;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  padding: 20px 0 10px;
  user-select: none;
  pointer-events: none;
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-top: 1px solid var(--border-color);
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-bottom-link {
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-bottom-link:hover {
  color: var(--text-primary);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .why-divider { display: none; }

  .why-column {
    padding: 0 !important;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 48px !important;
  }

  .why-column:last-child { border-bottom: none; }

  .why-num { opacity: 1; }
  .why-desc { opacity: 1; }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-left {
    position: static;
  }

  .pricing-grid-top,
  .pricing-grid-bottom {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-nav {
    align-items: center;
    flex-direction: row;
    justify-content: center;
    gap: 24px;
  }

  .footer-right {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }

  .nav-links { display: none; }

  .menu-toggle { display: flex; }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    padding: 100px 32px 32px;
    z-index: 1000;
    gap: 8px;
    align-items: flex-start;
  }

  .nav-links.mobile-open .nav-link {
    font-size: 1.2rem;
    padding: 12px 0;
  }

  .nav-links.mobile-open .nav-dropdown .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    background: transparent;
    border: none;
    padding: 0 0 0 16px;
    min-width: auto;
  }

  .hero-content {
    padding: 40px 0 80px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .testi-card {
    width: 300px;
  }

  .why-title-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 60px 0 32px;
  }

  .footer-nav {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .footer-right {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .counter-display {
    font-size: 3.5rem;
  }

  .section-testimonials,
  .section-authority,
  .section-why,
  .section-pricing,
  .section-faq,
  .section-cta {
    padding: 64px 0;
  }
}

/* ===== CUSTOM CURSOR ===== */
.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: #e63946;
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
}

.cursor-ring {
  width: 40px;
  height: 40px;
  border: 1.5px solid #e63946;
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.08s linear, width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

/* Hide default cursor on devices with fine pointer */
@media (pointer: fine) {
  body, a, button, select, input, textarea, .nav-link, .dropdown-link {
    cursor: none !important;
  }
}

/* Mobile responsive - hide custom cursor on touch devices */
@media (max-width: 1024px) {
  .cursor-dot, .cursor-ring {
    display: none !important;
  }
  body, a, button, select, input, textarea, .nav-link, .dropdown-link {
    cursor: auto !important;
  }
}
