/* ===== FONTS ===== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600&display=swap');

/* ===== CSS RESET & VARIABLES ===== */
:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #111118;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --text-primary: rgba(255, 255, 255, 0.9);
  --text-secondary: rgba(255, 255, 255, 0.5);
  --text-muted: rgba(255, 255, 255, 0.3);
  --accent-red: #e63946;
  --accent-red-dark: #c12a35;
  --accent-red-glow: rgba(230, 57, 70, 0.2);
  --border-color: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Poppins', 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: 1600px;
  --nav-height: 100px;
}

*,
*::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: var(--text-secondary);
}

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;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.5);
  transition: background var(--transition-smooth), backdrop-filter var(--transition-smooth), box-shadow var(--transition-smooth);
}

.nav-fixed.scrolled {
  background: rgba(8, 8, 12, 0.98);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.7);
}

.navbar {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: -0.02em;
  z-index: 1001;
}

.nav-logo .logo-img {
  width: 68px;
  height: 68px;
  border-radius: 0;
  object-fit: contain;
  mix-blend-mode: screen;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  position: relative;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  transition: color var(--transition-fast), background var(--transition-fast);
  border-radius: var(--radius-sm);
  letter-spacing: 0.01em;
}

.nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.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: #16161d;
  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: 13px 26px;
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  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.04);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  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(5.5rem, 6vw, 5.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 rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  position: relative;
  background: rgba(255, 255, 255, 0.02);
}

.logo-ticker-label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
  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-secondary);
  opacity: 0.7;
  transition: opacity var(--transition-fast), color var(--transition-fast);
  white-space: nowrap;
}

.ticker-item:hover {
  opacity: 1;
  color: var(--text-primary);
}

.ticker-item .ticker-logo {
  width: 30px;
  height: 30px;
  background: rgba(230, 57, 70, 0.15);
  border: 1px solid rgba(230, 57, 70, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent-red);
}

/* ===== 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: 0 0 auto;
  min-width: 350px;
  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);
}

.ft-watermark .text-red {
    position: relative;
    display: inline-block;
    -webkit-text-stroke: 1.5px rgba(230, 57, 70, 0.4);
    animation: 4s ease-in-out 0s infinite alternate none running redPulse;
}
/* ===== 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: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  min-height: 360px;
}

.pricing-card-light:hover {
  border-color: rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

/* Card header: title + number */
.pcard-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.pcard-header h3 {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #111;
  max-width: 320px;
}

.pcard-num {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-red);
  flex-shrink: 0;
}

/* Card description */
.pcard-desc {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.65;
}

.pcard-desc.is-pushed {
  margin-top: auto;
}

/* Card visual area */
.pcard-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  min-height: 120px;
}

/* ---- Card 01: Floating Icons ---- */
.pcard-float-icons {
  position: relative;
  width: 200px;
  height: 140px;
}

.float-icon {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.float-icon.fi-1 {
  top: 10px;
  right: 20px;
  background: #fff;
  border: 1px solid #eee;
  animation: floatUp 3s ease-in-out infinite;
}

.float-icon.fi-2 {
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: #fce4e6;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  animation: floatUp 3s ease-in-out 0.5s infinite;
}

.float-icon.fi-3 {
  top: 30px;
  left: 10px;
  background: #fff;
  border: 1px solid #eee;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  animation: floatUp 3s ease-in-out 1s infinite;
}

@keyframes floatUp {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.float-icon.fi-2 {
  animation-name: floatUp2;
}

@keyframes floatUp2 {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

/* ---- Card 02: Line Graphic ---- */
.pcard-line-graphic {
  position: absolute;
  top: 20px;
  right: 50px;
  opacity: 0.6;
}

/* ---- Card 03: Credits UI ---- */
.credit-ui {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.credit-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eee;
  transition: transform 0.3s ease;
}

.credit-icon.ci-1 {
  background: #fce4e6;
  border-color: #f5c6cb;
  animation: floatUp 3.5s ease-in-out infinite;
}

.credit-icon.ci-2 {
  animation: floatUp 3.5s ease-in-out 0.3s infinite;
}

.credit-icon.ci-3 {
  animation: floatUp 3.5s ease-in-out 0.6s infinite;
}

.credit-badge {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  animation: floatUp 3.5s ease-in-out 0.15s infinite;
}

.credit-label {
  font-size: 0.78rem;
  color: #888;
  font-weight: 500;
}

.credit-value {
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 700;
  color: #4caf50;
}

/* ---- Card 04: Slider UI ---- */
.slider-ui {
  width: 100%;
  max-width: 280px;
}

.slider-title {
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin-bottom: 12px;
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: #999;
  margin-bottom: 8px;
}

.slider-track {
  position: relative;
  height: 3px;
  background: #e8e8e8;
  border-radius: 3px;
  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: 3px;
  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: white;
  border: 2px solid var(--accent-red);
  transform: translate(-50%, -50%);
  box-shadow: 0 2px 8px rgba(230, 57, 70, 0.3);
  animation: thumbSlide 4s ease-in-out infinite;
}

@keyframes thumbSlide {

  0%,
  100% {
    left: 15%;
  }

  50% {
    left: 35%;
  }
}

.slider-current {
  font-family: var(--font-primary);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent-red);
  display: inline-block;
  animation: thumbSlide 4s ease-in-out infinite;
  position: relative;
}

.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: 'Syncopate', var(--font-primary);
  font-weight: 900;
  font-size: clamp(5rem, 12vw, 10rem);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  letter-spacing: 0.1em;
  padding: 40px 0 20px 0;
  user-select: none;
  position: relative;
  width: 100%;
  height: clamp(80px, 20vw, 200px); /* Adjust height to fit the text */
  overflow: visible;
}

.ft-watermark .text-white {
  color: #ffffff;
}

.ft-watermark .text-red {
  color: var(--accent-red, #e63946);
}

.ft-watermark svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}

.ft-watermark .stroke-text {
  fill: transparent;
  stroke-width: 1.5px;
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: drawStroke 4s ease-in-out infinite alternate;
}

.ft-watermark .stroke-white {
  stroke: rgba(255, 255, 255, 0.4);
}

.ft-watermark .stroke-red {
  stroke: rgba(230, 57, 70, 0.8);
  animation-delay: 0.3s;
}

@keyframes drawStroke {
  0% { stroke-dashoffset: 800; fill: transparent; }
  40% { stroke-dashoffset: 0; fill: transparent; }
  100% { stroke-dashoffset: 0; fill: rgba(255, 255, 255, 0.02); }
}

.ft-watermark .glitch-layer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  font-size: clamp(5rem, 12vw, 10rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
}

.ft-watermark .glitch-layer span.red-m {
  -webkit-text-stroke: 1px rgba(230, 57, 70, 0.3); animation-delay: 2s;
}

.ft-watermark .glitch-layer::before, 
.ft-watermark .glitch-layer::after {
  content: "FIFTH M";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: transparent;
  mix-blend-mode: screen;
  z-index: -1;
  animation: textGlitch 4s infinite alternate;
}

.ft-watermark .glitch-layer::before {
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);
  transform: translate(-3px, 2px);
  animation-delay: 0s;
}

.ft-watermark .glitch-layer::after {
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);
  transform: translate(3px, -2px);
  animation-delay: 2s;
}

.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;
  }

  .nav-logo {
    font-size: 1.5rem;
  }

  .nav-logo .logo-img {
    width: 48px;
    height: 48px;
  }

  .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 5px 12px;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .logo-ticker {
    padding: 40px 0;
  }

  .ticker-item {
    font-size: 0.9rem;
  }

  .ticker-item .ticker-logo {
    width: 24px;
    height: 24px;
    font-size: 0.65rem;
  }

  .flow-headline {
    font-size: 1.5rem;
  }

  .flow-card {
    padding: 12px 16px;
  }

  .flow-card span {
    font-size: 0.75rem;
  }

  .fc-icon {
    width: 32px;
    height: 32px;
  }

  .flow-out-tag {
    padding: 6px 14px;
    font-size: 0.7rem;
  }

  .flow-out-meta strong {
    font-size: 0.7rem;
  }

  .flow-out-meta small {
    font-size: 0.6rem;
  }

  .flow-out-action {
    padding: 6px 12px;
    font-size: 0.7rem;
  }

  .testi-card {
    width: 280px;
    padding: 20px;
  }

  .testi-avatar {
    width: 44px;
    height: 44px;
    font-size: 0.9rem;
  }

  .testi-name {
    font-size: 0.95rem;
  }

  .testi-role {
    font-size: 0.8rem;
  }

  .testi-body {
    font-size: 0.85rem;
  }

  .testi-company {
    font-size: 0.75rem;
  }

  .authority-content h2 {
    font-size: 1.8rem;
  }

  .authority-desc {
    font-size: 0.9rem;
  }

  .why-label {
    font-size: 0.8rem;
  }

  .why-title-row h3 {
    font-size: 1.4rem;
  }

  .why-num {
    font-size: 2rem;
  }

  .why-column-title {
    font-size: 0.9rem;
  }

  .why-stat-value {
    font-size: 1.8rem;
  }

  .why-desc {
    font-size: 0.85rem;
  }

  .pricing-tag {
    font-size: 0.85rem;
  }

  .pcard-header h3 {
    font-size: 1.1rem;
  }

  .pcard-desc {
    font-size: 0.85rem;
  }

  .pcard-num {
    font-size: 2.5rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .section-header p {
    font-size: 0.9rem;
  }

  .footer-top {
    padding: 40px 0;
  }

  .footer-main {
    padding: 40px 0 24px;
  }

  .footer-logo {
    font-size: 1.5rem;
  }

  .footer-desc {
    font-size: 0.85rem;
  }

  .footer-heading {
    font-size: 0.9rem;
  }

  .footer-link {
    font-size: 0.85rem;
  }
}

/* ===== LARGE MOBILE / SMALL TABLET (481px - 600px) ===== */
@media (min-width: 481px) and (max-width: 600px) {
  .hero h1 {
    font-size: 2.8rem;
  }

  .container {
    padding: 0 24px;
  }

  .nav-logo {
    font-size: 1.6rem;
  }

  .nav-logo .logo-img {
    width: 56px;
    height: 56px;
  }

  .hero-content {
    padding: 50px 0 90px;
  }

  .testi-card {
    width: 320px;
  }

  .pricing-grid-top,
  .pricing-grid-bottom {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== TABLET (601px - 768px) ===== */
@media (min-width: 601px) and (max-width: 768px) {
  .hero h1 {
    font-size: 3.2rem;
  }

  .container {
    padding: 0 28px;
  }

  .nav-logo {
    font-size: 1.8rem;
  }

  .nav-logo .logo-img {
    width: 60px;
    height: 60px;
  }

  .hero-content {
    padding: 50px 0 90px;
  }

  .testi-card {
    width: 340px;
  }

  .pricing-grid-top {
    grid-template-columns: 1fr;
  }

  .pricing-grid-bottom {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===== TABLET LANDSCAPE (769px - 1024px) ===== */
@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }

  .nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .testi-card {
    width: 360px;
  }

  .pricing-grid-top {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-grid-bottom {
    grid-template-columns: 1fr 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-divider {
    display: block;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* ===== SMALL DESKTOP (1025px - 1200px) ===== */
@media (min-width: 1025px) and (max-width: 1200px) {
  .container {
    padding: 0 40px;
  }

  .hero h1 {
    font-size: 4.5rem;
  }

  .nav-link {
    padding: 10px 18px;
  }

  .pricing-grid-top {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-grid-bottom {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===== LARGE DESKTOP (1201px - 1440px) ===== */
@media (min-width: 1201px) and (max-width: 1440px) {
  .container {
    max-width: 1200px;
  }
}

/* ===== EXTRA LARGE DESKTOP (1441px+) ===== */
@media (min-width: 1441px) {
  .container {
    max-width: 1400px;
  }

  .hero h1 {
    font-size: 5.5rem;
  }
}

/* ===== MOBILE MENU ENHANCEMENTS ===== */
@media (max-width: 768px) {
  .nav-links.mobile-open {
    animation: slideIn 0.3s ease forwards;
  }

  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateX(100%);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .nav-links.mobile-open .nav-link {
    animation: fadeInUp 0.3s ease forwards;
  }

  .nav-links.mobile-open .nav-link:nth-child(1) { animation-delay: 0.1s; }
  .nav-links.mobile-open .nav-link:nth-child(2) { animation-delay: 0.15s; }
  .nav-links.mobile-open .nav-link:nth-child(3) { animation-delay: 0.2s; }
  .nav-links.mobile-open .nav-link:nth-child(4) { animation-delay: 0.25s; }
  .nav-links.mobile-open .nav-link:nth-child(5) { animation-delay: 0.3s; }

  .nav-actions {
    display: none;
  }

  .nav-links.mobile-open .nav-actions {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
  }

  .nav-links.mobile-open .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===== HERO RESPONSIVE ENHANCEMENTS ===== */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding-top: var(--nav-height);
  }

  .hero-lines {
    display: none;
  }

  .hero-orbit {
    display: none;
  }

  .hero-shadow-left,
  .hero-shadow-right {
    width: 50px;
  }

  .hero-shadow-top {
    height: 60px;
  }

  .hero-shadow-bottom {
    height: 100px;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 30px 0 60px;
  }

  .hero-badge {
    margin-bottom: 20px;
  }

  .hero h1 {
    margin-bottom: 16px;
  }

  .hero-subtitle {
    margin-bottom: 24px;
  }
}

/* ===== TESTIMONIALS RESPONSIVE ===== */
@media (max-width: 768px) {
  .testi-track-wrapper {
    padding: 0 20px;
  }

  .testi-track {
    gap: 20px;
  }

  .testi-fade-left,
  .testi-fade-right {
    display: none;
  }
}

@media (max-width: 480px) {
  .section-header {
    padding: 0 10px;
  }

  .section-header h2 {
    font-size: 1.6rem;
  }

  .section-header p {
    font-size: 0.85rem;
  }
}

/* ===== AUTHORITY SECTION RESPONSIVE ===== */
@media (max-width: 768px) {
  .authority-content {
    text-align: center;
    padding: 0 20px;
  }

  .authority-label {
    justify-content: center;
    margin-bottom: 20px;
  }

  .counter-display {
    font-size: 4rem;
  }

  .authority-desc {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .authority-content h2 {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .counter-display {
    font-size: 3rem;
  }
}

/* ===== WHY SECTION RESPONSIVE ===== */
@media (max-width: 768px) {
  .why-header {
    padding: 0 20px;
  }

  .why-grid {
    padding: 0 20px;
  }

  .why-column {
    padding: 0 !important;
  }

  .why-visual {
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .why-label {
    font-size: 0.75rem;
  }

  .why-title-row h3 {
    font-size: 1.2rem;
  }

  .why-num {
    font-size: 1.5rem;
  }

  .why-column-title {
    font-size: 0.85rem;
  }

  .why-stat-value {
    font-size: 1.5rem;
  }

  .why-desc {
    font-size: 0.8rem;
  }
}

/* ===== PRICING/SERVICES RESPONSIVE ===== */
@media (max-width: 768px) {
  .pricing-card-light {
    padding: 32px 24px;
  }

  .pcard-header {
    margin-bottom: 20px;
  }

  .pcard-visual {
    margin: 20px 0;
  }

  .pricing-cta {
    flex-direction: column;
  }

  .pricing-cta .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .pricing-card-light {
    padding: 24px 20px;
  }

  .pcard-header h3 {
    font-size: 1rem;
  }

  .pcard-desc {
    font-size: 0.8rem;
  }

  .pcard-num {
    font-size: 2rem;
  }
}

/* ===== LOGO TICKER RESPONSIVE ===== */
@media (max-width: 768px) {
  .logo-ticker {
    padding: 40px 0;
  }

  .logo-ticker-label {
    font-size: 0.65rem;
    margin-bottom: 24px;
  }

  .ticker-track {
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .logo-ticker {
    padding: 30px 0;
  }

  .ticker-track {
    gap: 30px;
  }
}

/* ===== FLOW SECTION RESPONSIVE ===== */
@media (max-width: 768px) {
  .section-flow {
    padding: 80px 0 60px;
  }

  .flow-wrapper {
    padding: 40px 20px;
    gap: 40px;
  }

  .flow-headline {
    font-size: 1.5rem;
  }

  .flow-engine-box {
    padding: 20px;
  }

  .flow-engine-logo {
    width: 48px;
  }

  .flow-engine-name {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .section-flow {
    padding: 60px 0 40px;
  }

  .flow-wrapper {
    padding: 30px 16px;
  }

  .flow-headline {
    font-size: 1.2rem;
  }

  .flow-col-left {
    gap: 12px;
  }

  .flow-col-right {
    gap: 32px;
  }
}

/* ===== FOOTER RESPONSIVE ===== */
@media (max-width: 768px) {
  .footer-top {
    padding: 50px 0;
  }

  .footer-main {
    padding: 50px 0 30px;
  }

  .footer-logo {
    font-size: 1.6rem;
  }

  .footer-desc {
    font-size: 0.9rem;
  }

  .footer-heading {
    font-size: 0.95rem;
    margin-bottom: 16px;
  }

  .footer-link {
    font-size: 0.9rem;
    padding: 8px 0;
  }

  .footer-bottom {
    padding: 20px 0;
  }
}

@media (max-width: 480px) {
  .footer-top {
    padding: 40px 0;
  }

  .footer-main {
    padding: 40px 0 24px;
  }

  .footer-logo {
    font-size: 1.4rem;
  }

  .footer-desc {
    font-size: 0.85rem;
  }

  .footer-heading {
    font-size: 0.9rem;
  }

  .footer-link {
    font-size: 0.85rem;
  }

  .footer-bottom {
    font-size: 0.75rem;
  }
}

/* ===== ACCESSIBILITY & TOUCH ===== */
@media (hover: none) and (pointer: coarse) {
  .nav-link:hover::after {
    transform: scaleX(0);
  }

  .nav-link:active::after {
    transform: scaleX(1);
  }

  .btn:hover {
    transform: none;
  }

  .btn:active {
    transform: scale(0.98);
  }

  .flow-card:hover {
    transform: none;
  }

  .flow-card:active {
    transform: scale(0.98);
  }

  .srv-card:hover {
    transform: none;
  }

  .srv-card:active {
    transform: scale(0.98);
  }

  .pf-card:hover {
    transform: none;
  }

  .pf-card:active {
    transform: scale(0.98);
  }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-lines,
  .hero-orbit {
    display: none;
  }
}

/* ===== HIGH CONTRAST MODE ===== */
@media (prefers-contrast: high) {
  :root {
    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    --border-color: rgba(255, 255, 255, 0.3);
  }

  .nav-link {
    color: #ffffff;
  }

  .btn-primary {
    background: #e63946;
    color: #ffffff;
  }

  .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
  }
}