/* ============================================
   SipLane — Modern SaaS Website
   Complete Redesign
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --primary: #4F9E45;
  --primary-dark: #3D7E36;
  --primary-light: #EFF8EE;
  --primary-glow: rgba(79, 158, 69, 0.4);
  --secondary: #0f172a;
  --secondary-light: #1e293b;
  --accent: #10B981;
  --accent-dark: #059669;
  --text: #1e293b;
  --text-light: #64748b;
  --text-muted: #94a3b8;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --bg-dark: #0b1120;
  --bg-dark-2: #111827;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --success: #10b981;
  --error: #ef4444;
  --warning: #f59e0b;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 25px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.06);
  --shadow-xl: 0 20px 40px -5px rgba(0,0,0,0.12), 0 8px 10px -6px rgba(0,0,0,0.06);
  --shadow-glow: 0 0 40px rgba(79, 158, 69, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease;
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --max-width: 1200px;
  --header-height: 72px;
}

/* ---------- Keyframe Animations ---------- */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-15px) rotate(1deg); }
  66% { transform: translateY(-8px) rotate(-1deg); }
}
@keyframes float-delayed {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(-1deg); }
  66% { transform: translateY(-5px) rotate(1deg); }
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.05); }
}
@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes slide-up {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slide-in-left {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slide-in-right {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes scale-in {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes dash-move {
  to { stroke-dashoffset: 0; }
}
@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes hero-text {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes width-grow {
  from { width: 0; }
  to { width: 100%; }
}
@keyframes bounce-subtle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--secondary);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.5rem, 5.5vw, 4rem); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }
p { color: var(--text-light); line-height: 1.7; }
.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, var(--primary) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 4s ease infinite;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 100px 0;
  position: relative;
}
.section-alt {
  background: var(--bg-alt);
}
.section-dark {
  background: var(--bg-dark);
  color: #fff;
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark p { color: #94a3b8; }
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}
.section-header .label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 16px;
  padding: 6px 16px;
  background: var(--primary-light);
  border-radius: 100px;
  border: 1px solid rgba(79, 158, 69, 0.15);
}
.section-dark .section-header .label {
  background: rgba(79, 158, 69, 0.15);
  border-color: rgba(79, 158, 69, 0.3);
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.125rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(79, 158, 69, 0.35);
}
.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 8px 25px rgba(79, 158, 69, 0.4);
  transform: translateY(-2px);
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition);
}
.btn-primary:hover::after { opacity: 1; }
.btn-outline {
  border: 1.5px solid var(--border);
  color: var(--text);
  background: #fff;
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
  transform: translateY(-2px);
}
.btn-white {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.btn-white:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.btn-ghost {
  color: rgba(255,255,255,0.8);
  border: 1.5px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
  transform: translateY(-2px);
}
.btn-lg { padding: 16px 36px; font-size: 1rem; border-radius: var(--radius); }
.btn-sm { padding: 10px 22px; font-size: 0.875rem; }
.btn-group { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Header / Navbar ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226,232,240,0.5);
  height: var(--header-height);
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(255,255,255,0.95);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.logo { display: flex; align-items: center; }
.logo img { height: 34px; width: auto; }
.nav { display: flex; align-items: center; gap: 32px; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-light);
  position: relative;
  padding: 4px 0;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 1px;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  cursor: pointer;
}
.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  padding: 24px;
  z-index: 999;
  overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 16px 0;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border-light);
}
.mobile-nav .btn-group {
  margin-top: 24px;
  flex-direction: column;
}

/* ---------- Hero Section ---------- */
.hero {
  padding: 160px 0 100px;
  background: linear-gradient(135deg, #0b1120 0%, #162033 40%, #0f2117 100%);
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(79, 158, 69, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 50% 30% at 20% 80%, rgba(79, 158, 69, 0.06) 0%, transparent 50%);
}
.hero .container { position: relative; z-index: 2; }
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
}
.hero-orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(79, 158, 69, 0.12);
  top: -100px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 300px;
  height: 300px;
  background: rgba(16, 185, 129, 0.08);
  bottom: -50px;
  left: -50px;
  animation: float-delayed 10s ease-in-out infinite;
}
.hero-orb-3 {
  width: 200px;
  height: 200px;
  background: rgba(79, 158, 69, 0.1);
  top: 40%;
  left: 30%;
  animation: pulse-glow 6s ease-in-out infinite;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}
.hero-content {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(79, 158, 69, 0.12);
  color: var(--accent);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 28px;
  border: 1px solid rgba(79, 158, 69, 0.2);
  letter-spacing: 0.05em;
  animation: hero-text 0.8s ease-out 0.1s both;
}
.hero h1 {
  color: #fff;
  margin-bottom: 24px;
  animation: hero-text 0.8s ease-out 0.2s both;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--primary), var(--accent), #86efac);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 4s ease infinite;
}
.hero > .container > .hero-content > p {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.65);
  max-width: 620px;
  margin: 0 auto 40px;
  animation: hero-text 0.8s ease-out 0.3s both;
  line-height: 1.8;
}
.hero .btn-group {
  justify-content: center;
  animation: hero-text 0.8s ease-out 0.4s both;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 80px;
  animation: hero-text 0.8s ease-out 0.6s both;
}
.hero-stat {
  text-align: center;
  padding: 24px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.hero-stat:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(79, 158, 69, 0.3);
  transform: translateY(-4px);
}
.hero-stat .number {
  font-size: 2.25rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.hero-stat .label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
  font-weight: 500;
}

/* ---------- Scroll Reveal Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}
/* Stagger delays via data-delay or nth-child */
.stagger > *:nth-child(1) { transition-delay: 0.05s; }
.stagger > *:nth-child(2) { transition-delay: 0.1s; }
.stagger > *:nth-child(3) { transition-delay: 0.15s; }
.stagger > *:nth-child(4) { transition-delay: 0.2s; }
.stagger > *:nth-child(5) { transition-delay: 0.25s; }
.stagger > *:nth-child(6) { transition-delay: 0.3s; }

/* Legacy fade-in support */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ---------- Explainer Section ---------- */
.explainer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.explainer-text h2 { margin-bottom: 20px; }
.explainer-text p {
  font-size: 1.05rem;
  margin-bottom: 16px;
  line-height: 1.8;
}
.explainer-text .checklist {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.explainer-text .checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--text);
  font-weight: 500;
}
.explainer-text .checklist li .check-icon {
  width: 22px;
  height: 22px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.explainer-text .checklist li .check-icon svg {
  width: 13px;
  height: 13px;
  color: var(--primary);
}
.explainer-visual {
  position: relative;
}

/* Dashboard Mockup (used in explainer, product) */
.dashboard-mockup {
  background: var(--bg-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl), 0 0 60px rgba(79, 158, 69, 0.08);
  border: 1px solid rgba(255,255,255,0.06);
}
.mockup-topbar {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,0.3);
}
.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.mockup-dot.red { background: #ef4444; }
.mockup-dot.yellow { background: #f59e0b; }
.mockup-dot.green { background: #10b981; }
.mockup-url {
  flex: 1;
  margin-left: 8px;
  height: 24px;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
}
.mockup-body {
  padding: 20px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  min-height: 260px;
}
.mockup-sidebar {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mockup-sidebar-item {
  height: 10px;
  border-radius: 5px;
  background: rgba(255,255,255,0.06);
}
.mockup-sidebar-item:first-child {
  background: var(--primary);
  opacity: 0.6;
}
.mockup-sidebar-item:nth-child(2) { width: 85%; }
.mockup-sidebar-item:nth-child(3) { width: 70%; }
.mockup-sidebar-item:nth-child(4) { width: 90%; }
.mockup-sidebar-item:nth-child(5) { width: 60%; }
.mockup-main {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mockup-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.mockup-stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 14px;
}
.mockup-stat-card .bar {
  height: 6px;
  border-radius: 3px;
  background: var(--primary);
  margin-bottom: 10px;
}
.mockup-stat-card .bar.w60 { width: 60%; opacity: 0.6; }
.mockup-stat-card .bar.w40 { width: 40%; opacity: 0.4; }
.mockup-stat-card .bar.w80 { width: 80%; opacity: 0.5; }
.mockup-stat-card .label-line {
  height: 6px;
  width: 70%;
  border-radius: 3px;
  background: rgba(255,255,255,0.08);
}
.mockup-chart {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}
.mockup-chart-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  min-height: 10px;
  transition: height 0.5s ease;
}
.mockup-chart-bar:nth-child(1) { height: 35%; background: var(--primary); opacity: 0.4; }
.mockup-chart-bar:nth-child(2) { height: 55%; background: var(--primary); opacity: 0.5; }
.mockup-chart-bar:nth-child(3) { height: 40%; background: var(--primary); opacity: 0.6; }
.mockup-chart-bar:nth-child(4) { height: 70%; background: var(--primary); opacity: 0.5; }
.mockup-chart-bar:nth-child(5) { height: 85%; background: var(--accent); opacity: 0.7; }
.mockup-chart-bar:nth-child(6) { height: 60%; background: var(--primary); opacity: 0.5; }
.mockup-chart-bar:nth-child(7) { height: 90%; background: var(--accent); opacity: 0.8; }
.mockup-chart-bar:nth-child(8) { height: 50%; background: var(--primary); opacity: 0.4; }

/* ---------- Feature Grid ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover {
  border-color: rgba(79, 158, 69, 0.3);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  transform: translateY(-4px);
}
.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: var(--transition);
}
.feature-card:hover .feature-icon {
  background: var(--primary);
}
.feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
  transition: var(--transition);
}
.feature-card:hover .feature-icon svg { color: #fff; }
.feature-card h3 { margin-bottom: 10px; font-size: 1.125rem; }
.feature-card p { font-size: 0.9375rem; line-height: 1.7; }
.feature-card .feature-list {
  margin-top: 18px;
}
.feature-card .feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-light);
  padding: 5px 0;
}
.feature-card .feature-list li svg {
  width: 16px;
  height: 16px;
  color: var(--success);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Dark variant feature grid */
.section-dark .feature-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
.section-dark .feature-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(79, 158, 69, 0.3);
}
.section-dark .feature-card h3 { color: #fff; }
.section-dark .feature-card p { color: #94a3b8; }
.section-dark .feature-icon { background: rgba(79, 158, 69, 0.15); }

/* ---------- How It Works / Steps ---------- */
.steps-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.steps-line {
  position: absolute;
  top: 40px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.steps-line-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 1px;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.steps-line-fill.active { width: 100%; }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
  counter-reset: step;
}
.step {
  text-align: center;
  position: relative;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #fff;
  color: var(--primary);
  font-weight: 800;
  font-size: 1.25rem;
  border-radius: 50%;
  margin: 0 auto 20px;
  border: 3px solid var(--border);
  transition: var(--transition);
  position: relative;
  z-index: 2;
}
.step.active::before,
.step:hover::before {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(79, 158, 69, 0.3);
  transform: scale(1.1);
}
.step h4 { margin-bottom: 8px; }
.step p { font-size: 0.9375rem; }

/* ---------- Stats / Numbers ---------- */
.stats-section {
  background: var(--bg-dark);
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.stats-section h2, .stats-section h3, .stats-section h4 { color: #fff; }
.stats-section p { color: #94a3b8; }
.stats-section .section-header .label {
  background: rgba(79, 158, 69, 0.15);
  border-color: rgba(79, 158, 69, 0.3);
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 20% 50%, rgba(79, 158, 69, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 80% 50%, rgba(16, 185, 129, 0.06) 0%, transparent 60%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}
.stat-item {
  text-align: center;
  padding: 32px 20px;
}
.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number .counter-suffix {
  font-size: 2rem;
  color: var(--primary);
}
.stat-label {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}
.stat-description {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
  margin-top: 4px;
}

/* ---------- Capability Rows ---------- */
.capability-section { padding: 100px 0; }
.capability-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}
.capability-row:last-child { margin-bottom: 0; }
.capability-row.reverse { direction: rtl; }
.capability-row.reverse > * { direction: ltr; }
.capability-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 800;
  font-size: 0.875rem;
  margin-bottom: 16px;
  border: 2px solid rgba(79, 158, 69, 0.2);
}
.capability-text h3 { font-size: 1.625rem; margin-bottom: 14px; }
.capability-text p { margin-bottom: 20px; font-size: 1.05rem; line-height: 1.8; }
.capability-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.capability-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--text-light);
}
.capability-checklist li svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
}
.capability-visual {
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--primary-light) 50%, #e8f5e6 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.capability-visual:hover { box-shadow: var(--shadow-lg); }
.capability-visual svg {
  width: 64px;
  height: 64px;
  color: var(--primary);
  opacity: 0.15;
}
.capability-visual::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(79, 158, 69, 0.06);
  top: -40px;
  right: -40px;
  animation: pulse-glow 4s ease-in-out infinite;
}

/* ---------- Target Audience ---------- */
.target-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.target-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.target-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.target-card .target-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: var(--transition);
}
.target-card:hover .target-icon {
  background: var(--primary);
}
.target-card .target-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
  transition: var(--transition);
}
.target-card:hover .target-icon svg { color: #fff; }
.target-card svg:not(.target-icon svg) {
  width: 36px;
  height: 36px;
  color: var(--primary);
  margin: 0 auto 16px;
}
.target-card h4 { font-size: 1.05rem; margin-bottom: 8px; }
.target-card p { font-size: 0.875rem; }

/* ---------- Metrics Strip ---------- */
.metrics-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.metric-box {
  text-align: center;
  padding: 32px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.metric-box:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.metric-box .metric-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}
.metric-box .metric-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
}
.pricing-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.pricing-card.popular {
  border-color: var(--primary);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}
.pricing-card.popular::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  padding: 6px 20px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pricing-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.pricing-card .price {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
  margin: 20px 0 4px;
}
.pricing-card .price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}
.pricing-card .price-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.pricing-card .pricing-features {
  border-top: 1px solid var(--border-light);
  padding-top: 24px;
  margin-bottom: 28px;
}
.pricing-card .pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9375rem;
  color: var(--text-light);
}
.pricing-card .pricing-features li svg {
  width: 18px;
  height: 18px;
  color: var(--success);
  flex-shrink: 0;
  margin-top: 2px;
}
.pricing-card .btn { width: 100%; }

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 740px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  background: #fff;
  transition: var(--transition);
}
.faq-item:hover { border-color: rgba(79, 158, 69, 0.3); }
.faq-item.open { border-color: var(--primary); box-shadow: var(--shadow); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text);
  width: 100%;
  text-align: left;
}
.faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-item.open .faq-question { color: var(--primary); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #162033 50%, #0f2117 100%);
  border-radius: var(--radius-xl);
  padding: 80px 64px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(79, 158, 69, 0.15) 0%, transparent 60%);
  border-radius: 50%;
  animation: pulse-glow 6s ease-in-out infinite;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 60%);
  border-radius: 50%;
}
.cta-banner h2 {
  color: #fff;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.cta-banner p {
  color: rgba(255,255,255,0.65);
  font-size: 1.125rem;
  max-width: 540px;
  margin: 0 auto 32px;
  position: relative;
  z-index: 1;
}
.cta-banner .btn-group {
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* ---------- Contact Form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: start;
}
.contact-info h3 { margin-bottom: 16px; }
.contact-info p { margin-bottom: 32px; font-size: 1.05rem; line-height: 1.8; }
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 20px; height: 20px; color: var(--primary); }
.contact-detail h4 { font-size: 0.9375rem; margin-bottom: 2px; }
.contact-detail p { font-size: 0.875rem; }
.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  color: var(--text);
  background: #fff;
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(79, 158, 69, 0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group .error-msg {
  font-size: 0.8125rem;
  color: var(--error);
  margin-top: 4px;
  display: none;
}
.form-group.has-error input,
.form-group.has-error textarea { border-color: var(--error); }
.form-group.has-error .error-msg { display: block; }
.form-message {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-weight: 500;
  margin-bottom: 20px;
  display: none;
}
.form-message.success {
  display: block;
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}
.form-message.error {
  display: block;
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}
.honeypot { display: none !important; }

/* ---------- About Page ---------- */
.about-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, #0b1120 0%, #162033 40%, #0f2117 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(79, 158, 69, 0.12) 0%, transparent 60%);
}
.about-hero h1 { color: #fff; margin-bottom: 16px; position: relative; }
.about-hero p {
  font-size: 1.2rem;
  max-width: 680px;
  margin: 0 auto;
  color: rgba(255,255,255,0.6);
  position: relative;
}
.about-hero .hero-badge { position: relative; }
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.about-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
  transition: var(--transition);
}
.about-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.about-card .about-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  transition: var(--transition);
}
.about-card:hover .about-icon { background: var(--primary); }
.about-card .about-icon svg { width: 26px; height: 26px; color: var(--primary); transition: var(--transition); }
.about-card:hover .about-icon svg { color: #fff; }
.about-card h3 { margin-bottom: 10px; font-size: 1.125rem; }
.about-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.about-value {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.about-value:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}
.about-value-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  flex-shrink: 0;
}
.about-value h4 { margin-bottom: 6px; }
.about-value p { font-size: 0.9375rem; }

/* ---------- Screenshots ---------- */
.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.screenshot-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.screenshot-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.screenshot-placeholder {
  height: 260px;
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.screenshot-placeholder::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 2px dashed var(--border);
  border-radius: var(--radius-sm);
}
.screenshot-placeholder svg {
  width: 48px;
  height: 48px;
  color: var(--text-muted);
  opacity: 0.4;
}
.screenshot-info { padding: 22px 24px; }
.screenshot-info h4 { margin-bottom: 8px; font-size: 1.05rem; }
.screenshot-info p { font-size: 0.875rem; }

/* ---------- Product Page Specifics ---------- */
.product-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.product-split.reverse { direction: rtl; }
.product-split.reverse > * { direction: ltr; }
.product-text h3 { margin-bottom: 14px; font-size: 1.5rem; }
.product-text p { margin-bottom: 16px; font-size: 1.05rem; line-height: 1.8; }
.product-visual {
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--primary-light) 100%);
  border-radius: var(--radius-lg);
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.product-visual:hover { box-shadow: var(--shadow-lg); }
.product-visual svg { width: 80px; height: 80px; color: var(--primary); opacity: 0.2; }

.product-hero {
  padding: 160px 0 100px;
  background: linear-gradient(135deg, #0b1120 0%, #162033 40%, #0f2117 100%);
  position: relative;
  overflow: hidden;
}
.product-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(79, 158, 69, 0.12) 0%, transparent 60%);
}
.product-hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.product-hero-text h1 { color: #fff; margin-bottom: 20px; }
.product-hero-text p { font-size: 1.15rem; margin-bottom: 28px; max-width: 500px; color: rgba(255,255,255,0.65); }
.product-hero-visual { position: relative; }

/* Hero Mockup (product page) */
.product-hero-visual .hero-mockup {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}
.hero-mockup-bar {
  background: rgba(0,0,0,0.4);
  padding: 10px 16px;
  display: flex;
  gap: 6px;
  align-items: center;
}
.hero-mockup-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #334155;
}
.hero-mockup-bar span:first-child { background: #ef4444; }
.hero-mockup-bar span:nth-child(2) { background: #f59e0b; }
.hero-mockup-bar span:nth-child(3) { background: #10b981; }
.hero-mockup-body {
  padding: 20px;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  min-height: 220px;
}
.hero-mockup-sidebar {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-mockup-sidebar div {
  height: 10px;
  border-radius: 4px;
  background: rgba(255,255,255,0.08);
}
.hero-mockup-sidebar div:first-child {
  background: var(--primary);
  opacity: 0.6;
}
.hero-mockup-sidebar div:nth-child(2) { width: 85%; }
.hero-mockup-sidebar div:nth-child(3) { width: 70%; }
.hero-mockup-sidebar div:nth-child(4) { width: 90%; }
.hero-mockup-sidebar div:nth-child(5) { width: 60%; }
.hero-mockup-sidebar div:nth-child(6) { width: 75%; }
.hero-mockup-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-mockup-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.hero-mockup-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 12px;
}
.hero-mockup-stat .bar {
  height: 6px;
  border-radius: 3px;
  background: var(--primary);
  opacity: 0.5;
  margin-bottom: 8px;
  width: 50%;
}
.hero-mockup-stat .bar.w1 { width: 60%; }
.hero-mockup-stat .bar.w2 { width: 40%; opacity: 0.3; }
.hero-mockup-stat .line {
  height: 5px;
  border-radius: 3px;
  background: rgba(255,255,255,0.1);
  width: 70%;
}
.hero-mockup-chart {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 14px;
  display: flex;
  align-items: flex-end;
  gap: 6px;
}
.hero-mockup-chart .chart-bar {
  flex: 1;
  background: var(--primary);
  border-radius: 3px 3px 0 0;
  opacity: 0.4;
  min-height: 10px;
}
.hero-mockup-chart .chart-bar:nth-child(1) { height: 35%; }
.hero-mockup-chart .chart-bar:nth-child(2) { height: 55%; }
.hero-mockup-chart .chart-bar:nth-child(3) { height: 40%; opacity: 0.6; }
.hero-mockup-chart .chart-bar:nth-child(4) { height: 70%; }
.hero-mockup-chart .chart-bar:nth-child(5) { height: 85%; opacity: 0.7; }
.hero-mockup-chart .chart-bar:nth-child(6) { height: 60%; }
.hero-mockup-chart .chart-bar:nth-child(7) { height: 90%; opacity: 0.8; }
.hero-mockup-chart .chart-bar:nth-child(8) { height: 50%; }

/* ---------- Features Page ---------- */
.feature-category { margin-bottom: 72px; }
.feature-category:last-child { margin-bottom: 0; }
.feature-category-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.feature-category-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-category-icon svg { width: 22px; height: 22px; color: var(--primary); }
.feature-category-header h3 { font-size: 1.4rem; }
.features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.features-list-item {
  display: flex;
  gap: 14px;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.features-list-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.features-list-item > svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.features-list-item div h4 { font-size: 0.9375rem; margin-bottom: 4px; }
.features-list-item div p { font-size: 0.8125rem; }

/* ---------- Page Hero (for inner pages) ---------- */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, #0b1120 0%, #162033 40%, #0f2117 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(79, 158, 69, 0.12) 0%, transparent 60%);
}
.page-hero h1 { color: #fff; margin-bottom: 16px; position: relative; }
.page-hero p {
  font-size: 1.2rem;
  max-width: 660px;
  margin: 0 auto;
  color: rgba(255,255,255,0.6);
  position: relative;
}
.page-hero .hero-badge { position: relative; }

/* ---------- Trust Bar ---------- */
.trust-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
  padding: 48px 0;
}
.trust-item {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  opacity: 0.5;
  transition: var(--transition);
}
.trust-item:hover { opacity: 0.8; }

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-dark);
  color: #cbd5e1;
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-brand p {
  font-size: 0.9375rem;
  color: #64748b;
  margin-top: 20px;
  max-width: 300px;
  line-height: 1.7;
}
.footer-brand .logo img { height: 30px; }
.footer h4 {
  color: #fff;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.footer-links a {
  display: block;
  padding: 6px 0;
  font-size: 0.9375rem;
  color: #64748b;
  transition: var(--transition);
}
.footer-links a:hover { color: #fff; transform: translateX(4px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: #475569;
}
.footer-bottom a { color: #64748b; }
.footer-bottom a:hover { color: #fff; }
.footer-legal {
  display: flex;
  gap: 20px;
}

/* ---------- Legal Pages ---------- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
.legal-content h2 {
  font-size: 1.5rem;
  margin: 48px 0 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.legal-content h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.legal-content h3 {
  font-size: 1.125rem;
  margin: 28px 0 12px;
}
.legal-content p {
  margin-bottom: 16px;
  line-height: 1.8;
}
.legal-content ul {
  margin: 12px 0 20px 24px;
  list-style: disc;
}
.legal-content ul li {
  padding: 4px 0;
  color: var(--text-light);
  font-size: 0.9375rem;
  line-height: 1.7;
}
.legal-content .last-updated {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps-line { display: none; }
  .target-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .metrics-strip { grid-template-columns: repeat(2, 1fr); }
  .explainer { gap: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-header { margin-bottom: 48px; }
  .nav-links, .nav-actions { display: none; }
  .mobile-toggle { display: flex; }
  .hero { padding: 130px 0 64px; min-height: auto; }
  .hero h1 { font-size: clamp(2rem, 7vw, 2.75rem); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .feature-grid { grid-template-columns: 1fr; }
  .features-list { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .screenshot-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .product-split { grid-template-columns: 1fr; gap: 32px; }
  .product-split.reverse { direction: ltr; }
  .explainer { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .target-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 24px; }
  .capability-row { grid-template-columns: 1fr; gap: 32px; }
  .capability-row.reverse { direction: ltr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-number { font-size: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-legal { justify-content: center; }
  .cta-banner { padding: 48px 24px; border-radius: var(--radius); }
  .page-hero, .about-hero { padding: 130px 0 60px; }
  .product-hero { padding: 130px 0 64px; }
  .product-hero .container { grid-template-columns: 1fr; text-align: center; }
  .product-hero-text p { margin: 0 auto 28px; }
  .product-hero-text .btn-group { justify-content: center; }
  .mockup-body { grid-template-columns: 1fr; }
  .mockup-sidebar { display: none; }
  .hero-mockup-body { grid-template-columns: 1fr; }
  .hero-mockup-sidebar { display: none; }
  .metrics-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { padding: 120px 0 48px; }
  .btn-group { flex-direction: column; width: 100%; }
  .btn-group .btn { width: 100%; }
  .hero-stats { gap: 12px; }
  .hero-stat .number { font-size: 1.75rem; }
  .contact-form { padding: 24px; }
  .stat-number { font-size: 2rem; }
  .stats-grid { grid-template-columns: 1fr; }
}
