/* ═══════════════════════════════════════════════════════════
   FLOWLANE — Design System
   Palette: Deep Navy × Electric Amber
   Fonts: Bricolage Grotesque + Plus Jakarta Sans
═══════════════════════════════════════════════════════════ */

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

:root {
  /* Colors */
  --navy-950:  #060B18;
  --navy-900:  #0A0F1E;
  --navy-800:  #111827;
  --navy-700:  #1C2340;
  --navy-600:  #243058;
  --navy-500:  #2E3D70;

  --amber-500: #F5A623;
  --amber-400: #F7B84B;
  --amber-300: #FAD07A;
  --amber-600: #D4891A;

  --text-primary:   #E8EDF5;
  --text-secondary: #8B96B0;
  --text-muted:     #4A5568;

  --border:         rgba(255,255,255,0.07);
  --border-hover:   rgba(245,166,35,0.35);
  --glass:          rgba(255,255,255,0.04);
  --glass-hover:    rgba(255,255,255,0.07);

  /* Typography */
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;

  /* Spacing */
  --section-py: clamp(5rem, 10vw, 9rem);
  --container:  1200px;
  --container-px: clamp(1.25rem, 5vw, 3rem);

  /* Radius */
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0,0,0,0.35), 0 1px 4px rgba(0,0,0,0.2);
  --shadow-glow: 0 0 40px rgba(245,166,35,0.15);
  --shadow-float: 0 20px 60px rgba(0,0,0,0.5);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--navy-900);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Scrollbar ────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy-900); }
::-webkit-scrollbar-thumb { background: var(--navy-600); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--amber-500); }

/* ── Selection ────────────────────────────────────────── */
::selection { background: rgba(245,166,35,0.25); color: var(--text-primary); }

/* ═══════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--amber-500);
  color: var(--navy-900);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-sm);
  transition: background 0.2s, transform 0.2s var(--ease-spring), box-shadow 0.2s;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--amber-400);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,166,35,0.35);
}
.btn-primary:active { transform: translateY(0); }

.btn-primary.btn-lg { font-size: 1rem; padding: 0.85rem 1.8rem; border-radius: var(--radius-md); }
.btn-primary.btn-sm { font-size: 0.82rem; padding: 0.5rem 1rem; }
.btn-primary.btn-full { width: 100%; justify-content: center; padding: 0.85rem; }
.btn-primary.btn-dark { background: var(--navy-900); color: var(--amber-500); border: 1.5px solid var(--amber-500); }
.btn-primary.btn-dark:hover { background: var(--amber-500); color: var(--navy-900); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  transition: border-color 0.2s, background 0.2s, transform 0.2s var(--ease-spring);
  white-space: nowrap;
}
.btn-outline:hover {
  border-color: var(--border-hover);
  background: var(--glass);
  transform: translateY(-2px);
}
.btn-outline.btn-lg { font-size: 1rem; padding: 0.85rem 1.8rem; border-radius: var(--radius-md); }
.btn-outline.btn-full { width: 100%; justify-content: center; padding: 0.85rem; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.btn-ghost:hover { color: var(--text-primary); background: var(--glass); }

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.btn-ghost-light:hover { color: #fff; }

/* ═══════════════════════════════════════════════════════════
   SECTION SHARED
═══════════════════════════════════════════════════════════ */
.section-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-500);
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.2);
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   REVEAL ANIMATIONS
═══════════════════════════════════════════════════════════ */
.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════════ */
.nav-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.nav-header.scrolled {
  background: rgba(10,15,30,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-px);
  height: 68px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text-primary);
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.85; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--text-primary); background: var(--glass); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--navy-800);
  border-top: 1px solid var(--border);
  padding: 1.5rem var(--container-px) 2rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}
.nav-mobile-menu.open { max-height: 400px; }
.nav-mobile-menu ul { display: flex; flex-direction: column; gap: 0.25rem; margin-bottom: 1.5rem; }
.nav-mobile-menu a { display: block; padding: 0.65rem 0.5rem; font-size: 1rem; color: var(--text-secondary); border-radius: var(--radius-sm); transition: color 0.2s; }
.nav-mobile-menu a:hover { color: var(--text-primary); }
.mobile-actions { display: flex; flex-direction: column; gap: 0.75rem; }
.mobile-actions .btn-ghost { justify-content: center; border: 1px solid var(--border); }

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  max-width: var(--container);
  margin: 0 auto;
  padding: calc(68px + 5rem) var(--container-px) var(--section-py);
  overflow: hidden;
}

/* Mesh background */
.hero-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.mesh-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: orbFloat 8s ease-in-out infinite;
}
.mesh-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,166,35,0.4) 0%, transparent 70%);
  top: -200px; right: -100px;
  animation-delay: 0s;
}
.mesh-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(46,61,112,0.8) 0%, transparent 70%);
  bottom: 0; left: -100px;
  animation-delay: -3s;
}
.mesh-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(245,166,35,0.2) 0%, transparent 70%);
  top: 50%; left: 40%;
  animation-delay: -5s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-15px, 20px) scale(0.95); }
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--amber-400);
  background: rgba(245,166,35,0.08);
  border: 1px solid rgba(245,166,35,0.2);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--amber-500);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}
.hero-headline em {
  font-style: normal;
  background: linear-gradient(135deg, var(--amber-500) 0%, var(--amber-300) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 2.25rem;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}
.hero-social-proof strong { color: var(--text-primary); }
.avatars {
  display: flex;
  align-items: center;
}
.avatars img {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--navy-900);
  margin-left: -8px;
  object-fit: cover;
}
.avatars img:first-child { margin-left: 0; }

/* Hero Visual */
.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  background: var(--navy-700);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-float);
  backdrop-filter: blur(10px);
}

.hero-card-main {
  width: 100%;
  max-width: 380px;
  padding: 1.5rem;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.card-dots {
  display: flex;
  gap: 5px;
}
.card-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--navy-600);
}
.card-dots span:nth-child(1) { background: #FF5F57; }
.card-dots span:nth-child(2) { background: #FEBC2E; }
.card-dots span:nth-child(3) { background: #28C840; }
.card-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-left: auto;
}

.flow-nodes {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.flow-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}
.node-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: var(--navy-800);
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}
.node-trigger .node-icon { border-color: rgba(245,166,35,0.4); background: rgba(245,166,35,0.08); }
.node-output .node-icon { border-color: rgba(40,200,64,0.4); background: rgba(40,200,64,0.08); }
.flow-node span {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.flow-connector {
  flex: 1;
  position: relative;
  height: 2px;
  margin-bottom: 1.2rem;
  overflow: hidden;
}
.flow-line {
  position: absolute;
  inset: 0;
  background: var(--navy-600);
}
.flow-pulse {
  position: absolute;
  top: 0; left: -20%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--amber-500), transparent);
  animation: flowPulse 2s ease-in-out infinite;
}
@keyframes flowPulse {
  0% { left: -40%; }
  100% { left: 120%; }
}

.card-stat {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.stat-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--amber-500);
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Floating cards */
.hero-card-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-md);
  min-width: 160px;
  animation: floatCard 4s ease-in-out infinite;
}
.hero-card-float-1 {
  top: -20px; right: -30px;
  animation-delay: 0s;
}
.hero-card-float-2 {
  bottom: -10px; left: -30px;
  animation-delay: -2s;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.float-icon { font-size: 1.4rem; }
.float-title { font-size: 0.7rem; color: var(--text-muted); font-weight: 500; }
.float-value { font-family: var(--font-display); font-size: 1rem; font-weight: 800; color: var(--text-primary); }
.float-trend { font-size: 0.75rem; font-weight: 700; margin-left: auto; }
.float-trend.up { color: #28C840; }

/* ═══════════════════════════════════════════════════════════
   LOGOS
═══════════════════════════════════════════════════════════ */
.logos-section {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.logos-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}
.logos-track-wrapper {
  position: relative;
  overflow: hidden;
}
.logos-track-wrapper::before,
.logos-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.logos-track-wrapper::before { left: 0; background: linear-gradient(90deg, var(--navy-900), transparent); }
.logos-track-wrapper::after  { right: 0; background: linear-gradient(-90deg, var(--navy-900), transparent); }

.logos-track {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  width: max-content;
  animation: logoScroll 28s linear infinite;
}
@keyframes logoScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.logos-track:hover { animation-play-state: paused; }

.logo-item {
  color: var(--text-muted);
  opacity: 0.6;
  transition: opacity 0.2s, color 0.2s;
  flex-shrink: 0;
}
.logo-item:hover { opacity: 1; color: var(--text-secondary); }

/* ═══════════════════════════════════════════════════════════
   FEATURES
═══════════════════════════════════════════════════════════ */
.features {
  padding: var(--section-py) 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.25rem;
}

.feature-card {
  background: var(--navy-700);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(245,166,35,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow), var(--shadow-card);
}
.feature-card:hover::before { opacity: 1; }

.feature-card-large {
  grid-column: span 2;
}

.feature-icon-wrap {
  width: 44px; height: 44px;
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-500);
  margin-bottom: 1.25rem;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Mini flow demo */
.feature-demo { margin-top: 1.5rem; }
.mini-flow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.mini-node {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  background: var(--navy-800);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  transition: all 0.2s;
}
.mini-node.active {
  background: rgba(245,166,35,0.12);
  border-color: rgba(245,166,35,0.35);
  color: var(--amber-400);
}
.mini-arrow { color: var(--text-muted); font-size: 0.85rem; }

/* Chart demo */
.feature-chart { margin-top: 1.5rem; }
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 60px;
  margin-bottom: 0.5rem;
}
.chart-bar {
  flex: 1;
  height: var(--h);
  background: var(--navy-600);
  border-radius: 3px 3px 0 0;
  transition: background 0.3s;
}
.chart-bar.active { background: var(--amber-500); }
.feature-card:hover .chart-bar { background: var(--navy-500); }
.feature-card:hover .chart-bar.active { background: var(--amber-400); }
.chart-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════ */
.testimonials {
  padding: var(--section-py) 0;
  background: var(--navy-950);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.carousel-wrapper { position: relative; }

.carousel {
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.carousel-track {
  display: flex;
  transition: transform 0.55s var(--ease-out);
  will-change: transform;
}

.testimonial-card {
  min-width: 100%;
  padding: clamp(2rem, 5vw, 3.5rem) clamp(2rem, 6vw, 5rem);
  background: var(--navy-700);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}

.testimonial-stars {
  font-size: 1.1rem;
  color: var(--amber-500);
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

.testimonial-card blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 500;
  line-height: 1.55;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
  max-width: 700px;
}
.testimonial-card blockquote::before { content: '"'; }
.testimonial-card blockquote::after  { content: '"'; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-author img {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid var(--border);
  object-fit: cover;
}
.author-name {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
  font-style: normal;
}
.author-role {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2rem;
}

.carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy-700);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s var(--ease-spring);
}
.carousel-btn:hover {
  background: var(--amber-500);
  border-color: var(--amber-500);
  color: var(--navy-900);
  transform: scale(1.08);
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--navy-600);
  transition: background 0.3s, width 0.3s var(--ease-spring), border-radius 0.3s;
}
.dot.active {
  background: var(--amber-500);
  width: 24px;
  border-radius: 4px;
}

/* ═══════════════════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════════════════ */
.pricing {
  padding: var(--section-py) 0;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 3.5rem;
}
.toggle-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.toggle-badge {
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(245,166,35,0.15);
  color: var(--amber-400);
  border: 1px solid rgba(245,166,35,0.25);
  padding: 0.15rem 0.5rem;
  border-radius: 100px;
}
.toggle-switch {
  width: 48px; height: 26px;
  background: var(--navy-600);
  border-radius: 100px;
  border: 1px solid var(--border);
  position: relative;
  transition: background 0.3s;
  flex-shrink: 0;
}
.toggle-switch[aria-checked="true"] { background: var(--amber-500); }
.toggle-thumb {
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s var(--ease-spring);
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.toggle-switch[aria-checked="true"] .toggle-thumb { transform: translateX(22px); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: var(--navy-700);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  position: relative;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.3s;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-float);
}

.pricing-card-popular {
  border-color: var(--amber-500);
  background: linear-gradient(160deg, rgba(245,166,35,0.06) 0%, var(--navy-700) 50%);
  transform: scale(1.03);
  box-shadow: var(--shadow-glow), var(--shadow-float);
}
.pricing-card-popular:hover { transform: scale(1.03) translateY(-6px); }

.popular-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--amber-500);
  color: var(--navy-900);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-plan {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.pricing-card-popular .pricing-plan { color: var(--amber-400); }

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  margin-bottom: 0.75rem;
}
.price-currency {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-secondary);
  align-self: flex-start;
  margin-top: 0.4rem;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -0.03em;
  transition: all 0.3s var(--ease-out);
}
.price-period {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.75rem;
  min-height: 3.5rem;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 2rem;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}
.pricing-features li.muted { opacity: 0.45; }
.check { color: #28C840; font-size: 0.9rem; flex-shrink: 0; }
.cross { color: var(--text-muted); font-size: 0.9rem; flex-shrink: 0; }

.pricing-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 2.5rem;
}

/* ═══════════════════════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════════════════════ */
.cta-banner {
  position: relative;
  background: linear-gradient(135deg, var(--amber-600) 0%, var(--amber-500) 50%, var(--amber-400) 100%);
  padding: clamp(4rem, 8vw, 7rem) var(--container-px);
  text-align: center;
  overflow: hidden;
}
.cta-mesh { position: absolute; inset: 0; pointer-events: none; }
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}
.cta-orb-1 {
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.15);
  top: -100px; left: -100px;
}
.cta-orb-2 {
  width: 300px; height: 300px;
  background: rgba(0,0,0,0.1);
  bottom: -80px; right: -80px;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.cta-content p {
  font-size: 1.05rem;
  color: rgba(10,15,30,0.75);
  line-height: 1.7;
  margin-bottom: 2.25rem;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--navy-950);
  border-top: 1px solid var(--border);
  padding-top: 4rem;
}

.footer-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-px) 3rem;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
}

.footer-logo { margin-bottom: 0.85rem; }
.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: var(--navy-700);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.footer-social a:hover {
  background: var(--amber-500);
  color: var(--navy-900);
  border-color: var(--amber-500);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 1.1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-col a:hover { color: var(--text-primary); }

.hiring-badge {
  font-size: 0.65rem;
  font-weight: 700;
  background: rgba(40,200,64,0.12);
  color: #28C840;
  border: 1px solid rgba(40,200,64,0.25);
  padding: 0.1rem 0.45rem;
  border-radius: 100px;
}

.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.5rem var(--container-px);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.footer-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.status-dot {
  width: 7px; height: 7px;
  background: #28C840;
  border-radius: 50%;
  animation: statusPulse 2.5s ease-in-out infinite;
}
@keyframes statusPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(40,200,64,0.4); }
  50% { box-shadow: 0 0 0 5px rgba(40,200,64,0); }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Tablet (≤ 1024px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: calc(68px + 3.5rem);
    gap: 3rem;
  }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-social-proof { justify-content: center; }
  .hero-visual { max-width: 420px; margin: 0 auto; }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-card-large { grid-column: span 2; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .pricing-card-popular { transform: none; }
  .pricing-card-popular:hover { transform: translateY(-6px); }

  .footer-container { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Mobile (≤ 768px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile-menu { display: flex; }

  .hero { padding-top: calc(68px + 2.5rem); }
  .hero-card-float { display: none; }

  .features-grid { grid-template-columns: 1fr; }
  .feature-card-large { grid-column: span 1; }

  .testimonial-card { padding: 2rem 1.5rem; }

  .footer-nav { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions a { text-align: center; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Small Mobile (≤ 480px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta a { justify-content: center; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   REDUCED MOTION
═══════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}