/* ============================================================
   GRAHAAK — Premium SaaS Stylesheet
   Author: Antigravity
   ============================================================ */

/* ---- RESET & BASE ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue-900: #0f172a;
  --blue-800: #1e293b;
  --blue-700: #1d4ed8;
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --indigo-600: #4f46e5;
  --indigo-500: #6366f1;
  --indigo-400: #818cf8;
  --violet-500: #8b5cf6;
  --cyan-400: #22d3ee;
  --cyan-500: #06b6d4;
  --green-400: #4ade80;
  --green-500: #10b981;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --pink-500: #ec4899;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-2xl: 40px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08), 0 1px 2px rgba(0, 0, 0, .06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, .10), 0 2px 6px rgba(0, 0, 0, .06);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, .12), 0 8px 24px rgba(0, 0, 0, .08);
  --shadow-xl: 0 40px 100px rgba(0, 0, 0, .18), 0 16px 40px rgba(0, 0, 0, .10);
  --shadow-glow: 0 0 40px rgba(99, 102, 241, .25);
  --transition: 0.28s cubic-bezier(0.34, 1.2, 0.64, 1);
  --transition-fast: 0.18s ease;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.zeroLineHeight {
  line-height: 1;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
  background: var(--indigo-500);
  border-radius: 10px;
}

/* ============================================================
   AOS (Animate On Scroll) — Custom lightweight
   ============================================================ */
[data-aos] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-aos="fade-left"] {
  transform: translateX(40px);
}

[data-aos="fade-right"] {
  transform: translateX(-40px);
}

[data-aos="zoom-in"] {
  transform: scale(0.88);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 520px;
  margin-top: 12px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-subtitle {
  margin: 12px auto 0;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--indigo-500);
  background: rgba(99, 102, 241, .1);
  border: 1px solid rgba(99, 102, 241, .2);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--indigo-500) 0%, var(--cyan-400) 60%, var(--green-400) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-light {
  background: linear-gradient(135deg, #a5b4fc 0%, #67e8f9 60%, #86efac 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  padding: 10px 22px;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: background var(--transition-fast);
}

.btn:hover::after {
  background: rgba(255, 255, 255, .08);
}

.btn-primary {
  background: linear-gradient(135deg, var(--indigo-600) 0%, var(--blue-700) 100%);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(79, 70, 229, .35), inset 0 1px 0 rgba(255, 255, 255, .15);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(79, 70, 229, .45), inset 0 1px 0 rgba(255, 255, 255, .15);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost {
  color: var(--gray-700);
  background: transparent;
}

.btn-ghost:hover {
  color: var(--indigo-600);
  background: rgba(99, 102, 241, .07);
}

.btn-outline {
  border: 1.5px solid var(--gray-200);
  color: var(--gray-700);
  background: rgba(255, 255, 255, .8);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  border-color: var(--indigo-400);
  color: var(--indigo-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-white {
  background: var(--white);
  color: var(--indigo-600);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
}

.btn-outline-white {
  border: 1.5px solid rgba(255, 255, 255, .4);
  color: var(--white);
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(10px);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, .2);
  border-color: rgba(255, 255, 255, .7);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 14px 30px;
  font-size: 1rem;
  border-radius: var(--radius-lg);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 14px 0;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(226, 232, 240, .5);
  box-shadow: 0 4px 30px rgba(0, 0, 0, .06);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(226, 232, 240, .5);
  box-shadow: 0 4px 30px rgba(0, 0, 0, .06);
  padding: 10px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.logo-icon {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--indigo-600), var(--cyan-500));
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  font-weight: 900;
  box-shadow: 0 4px 12px rgba(79, 70, 229, .4);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-600);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.nav-links a:hover {
  color: var(--indigo-600);
  background: rgba(99, 102, 241, .08);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
  background: #f8faff;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(99, 102, 241, .12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(6, 182, 212, .08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(139, 92, 246, .07) 0%, transparent 60%),
    #f8faff;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(99, 102, 241, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 102, 241, .055) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-600);
  background: rgba(255, 255, 255, .9);
  border: 1px solid var(--gray-200);
  padding: 6px 14px 6px 10px;
  border-radius: 100px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-400);
  box-shadow: 0 0 0 3px rgba(74, 222, 128, .25);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(74, 222, 128, .25);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(74, 222, 128, .1);
  }
}

.hero-title {
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--gray-900);
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.07rem;
  line-height: 1.75;
  color: var(--gray-500);
  max-width: 460px;
  margin-bottom: 36px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--gray-500);
}

.avatar-stack {
  display: flex;
}

.avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid white;
  margin-right: -8px;
}

.hero-social-proof strong {
  color: var(--gray-800);
}

/* SCROLL INDICATOR */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
  animation: scrollFade 2.5s ease infinite;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--indigo-400));
  animation: scrollLine 2.5s ease infinite;
}

@keyframes scrollFade {

  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 0.9;
  }
}

@keyframes scrollLine {
  0% {
    height: 20px;
    opacity: 0;
  }

  50% {
    height: 40px;
    opacity: 1;
  }

  100% {
    height: 20px;
    opacity: 0;
  }
}

/* ============================================================
   DASHBOARD CARD (Hero Visual)
   ============================================================ */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.dashboard-card {
  width: 100%;
  max-width: 480px;
  background: rgba(255, 255, 255, .95);
  border: 1px solid rgba(226, 232, 240, .8);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  backdrop-filter: blur(20px);
  overflow: hidden;
  animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  33% {
    transform: translateY(-10px) rotate(0.3deg);
  }

  66% {
    transform: translateY(-5px) rotate(-0.2deg);
  }
}

.dashboard-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--gray-100);
  background: linear-gradient(135deg, #fafbff, #f1f5ff);
}

.dashboard-dots {
  display: flex;
  gap: 5px;
}

.dashboard-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-200);
}

.dashboard-dots span:nth-child(1) {
  background: #ff5f57;
}

.dashboard-dots span:nth-child(2) {
  background: #ffbd2e;
}

.dashboard-dots span:nth-child(3) {
  background: #28ca41;
}

.dashboard-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-600);
  flex: 1;
  text-align: center;
}

.dashboard-live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--green-500);
  background: rgba(16, 185, 129, .1);
  padding: 3px 8px;
  border-radius: 100px;
}

.live-dot {
  width: 6px;
  height: 6px;
  background: var(--green-500);
  border-radius: 50%;
  animation: livePulse 1.5s ease infinite;
}

@keyframes livePulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.dash-stat {
  padding: 14px 14px 12px;
  background: white;
  text-align: center;
}

.dash-stat-label {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.dash-stat-value {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.dash-stat-change {
  font-size: 0.65rem;
  font-weight: 600;
  margin-top: 3px;
}

.dash-stat-change.up {
  color: var(--green-500);
}

.dash-stat-change.down {
  color: #ef4444;
}

.dash-chart-area {
  padding: 14px 18px 4px;
}

.dash-chart-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.dash-chart {
  width: 100%;
  position: relative;
}

#miniChart {
  width: 100%;
  display: block;
}

.dash-activity {
  padding: 10px 14px;
  border-top: 1px solid var(--gray-100);
}

.activity-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 1px solid var(--gray-50);
  font-size: 0.72rem;
  color: var(--gray-600);
  animation: slideInActivity 0.4s ease;
}

.activity-item:last-child {
  border-bottom: none;
}

@keyframes slideInActivity {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.activity-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.activity-icon.green {
  background: rgba(16, 185, 129, .12);
  color: var(--green-500);
}

.activity-icon.blue {
  background: rgba(6, 182, 212, .12);
  color: var(--cyan-500);
}

.activity-icon.purple {
  background: rgba(139, 92, 246, .12);
  color: var(--violet-500);
}

.activity-text {
  flex: 1;
  line-height: 1.35;
}

.activity-time {
  color: var(--gray-400);
  font-size: 0.65rem;
  white-space: nowrap;
}

/* MAP STRIP */
.dash-map {
  margin: 8px 14px 14px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #0f172a, #1e293b, #162033);
  overflow: hidden;
  position: relative;
  height: 70px;
}

.map-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.map-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(99, 102, 241, .7);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.map-dot::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid rgba(99, 102, 241, .3);
}

.map-dot.active {
  background: var(--green-400);
  box-shadow: 0 0 0 3px rgba(74, 222, 128, .25), 0 0 12px rgba(74, 222, 128, .5);
  animation: mapPing 2s ease infinite;
}

.map-dot::after {
  content: attr(data-label);
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.55rem;
  color: rgba(255, 255, 255, .8);
  white-space: nowrap;
  pointer-events: none;
  font-weight: 600;
}

@keyframes mapPing {

  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(74, 222, 128, .25), 0 0 8px rgba(74, 222, 128, .4);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(74, 222, 128, .1), 0 0 16px rgba(74, 222, 128, .6);
  }
}

/* FLOATING CARDS */
.float-card {
  position: absolute;
  background: rgba(255, 255, 255, .97);
  border: 1px solid rgba(226, 232, 240, .9);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
  font-size: 0.75rem;
  min-width: 160px;
  z-index: 10;
}

.float-top-right {
  top: -16px;
  right: -20px;
  animation: floatRight 5s ease-in-out 1s infinite;
}

.float-bottom-left {
  bottom: 30px;
  left: -28px;
  animation: floatLeft 5.5s ease-in-out 0.5s infinite;
}

@keyframes floatRight {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes floatLeft {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-6px) rotate(-0.5deg);
  }
}

.float-icon {
  font-size: 1.4rem;
}

.float-label {
  font-size: 0.65rem;
  color: var(--gray-400);
  font-weight: 500;
}

.float-val {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gray-800);
}

/* ============================================================
   TRUSTED BY
   ============================================================ */
.trusted-by {
  padding: 50px 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  background: var(--gray-50);
  overflow: hidden;
}

.trusted-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 28px;
}

.logo-strip-wrapper {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.logo-strip {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: slideLogos 24s linear infinite;
}

.logo-strip:hover {
  animation-play-state: paused;
}

@keyframes slideLogos {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.brand-logo {
  flex-shrink: 0;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--gray-300);
  padding: 0 44px;
  transition: color 0.3s ease;
  cursor: default;
}

.brand-logo:hover {
  color: var(--indigo-400);
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.features {
  padding: 20px 0;
  background: white;
}

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

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

.feature-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(99, 102, 241, .06), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.feature-card:hover {
  border-color: rgba(99, 102, 241, .25);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  background: white;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: rgba(99, 102, 241, .10);
  border: 1px solid rgba(99, 102, 241, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--icon-color);
  transition: all 0.3s ease;
  /* Use inline style --icon-color for specific overrides via JS-friendly approach */
}

/* Per-card icon backgrounds based on inline --icon-color */
.feature-card:nth-child(1) .feature-icon-wrap {
  background: rgba(99, 102, 241, .1);
  border-color: rgba(99, 102, 241, .2);
}

.feature-card:nth-child(2) .feature-icon-wrap {
  background: rgba(6, 182, 212, .1);
  border-color: rgba(6, 182, 212, .2);
}

.feature-card:nth-child(3) .feature-icon-wrap {
  background: rgba(16, 185, 129, .1);
  border-color: rgba(16, 185, 129, .2);
}

.feature-card:nth-child(4) .feature-icon-wrap {
  background: rgba(245, 158, 11, .1);
  border-color: rgba(245, 158, 11, .2);
}

.feature-card:nth-child(5) .feature-icon-wrap {
  background: rgba(139, 92, 246, .1);
  border-color: rgba(139, 92, 246, .2);
}

.feature-card:nth-child(6) .feature-icon-wrap {
  background: rgba(236, 72, 153, .1);
  border-color: rgba(236, 72, 153, .2);
}

.feature-card:hover .feature-icon-wrap {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(99, 102, 241, .22);
}

.feature-card:nth-child(1):hover .feature-icon-wrap {
  box-shadow: 0 8px 20px rgba(99, 102, 241, .28);
}

.feature-card:nth-child(2):hover .feature-icon-wrap {
  box-shadow: 0 8px 20px rgba(6, 182, 212, .28);
}

.feature-card:nth-child(3):hover .feature-icon-wrap {
  box-shadow: 0 8px 20px rgba(16, 185, 129, .28);
}

.feature-card:nth-child(4):hover .feature-icon-wrap {
  box-shadow: 0 8px 20px rgba(245, 158, 11, .28);
}

.feature-card:nth-child(5):hover .feature-icon-wrap {
  box-shadow: 0 8px 20px rgba(139, 92, 246, .28);
}

.feature-card:nth-child(6):hover .feature-icon-wrap {
  box-shadow: 0 8px 20px rgba(236, 72, 153, .28);
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--gray-500);
  margin-bottom: 16px;
}

.feature-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--indigo-500);
  background: rgba(99, 102, 241, .08);
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

/* ============================================================
   PRODUCTS SECTION (TABS)
   ============================================================ */
.products {
  padding: 20px 0;
  background: linear-gradient(180deg, var(--gray-50) 0%, white 100%);
}

.product-tabs {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 6px;
  margin-bottom: 40px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-500);
  padding: 10px 22px;
  border-radius: var(--radius-md);
  transition: all 0.25s ease;
}

.tab-btn:hover {
  color: var(--gray-800);
}

.tab-btn.active {
  background: white;
  color: var(--indigo-600);
  box-shadow: var(--shadow-md);
}

.tab-panel {
  display: none;
  animation: fadeTabIn 0.35s ease;
}

.tab-panel.active {
  display: block;
}

@keyframes fadeTabIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.product-panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.product-panel-info h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 14px;
}

.product-panel-info p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--gray-500);
  margin-bottom: 24px;
}

.product-features-list {
  margin-bottom: 28px;
}

.product-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray-600);
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
}

.product-features-list li:last-child {
  border-bottom: none;
}

.check {
  width: 20px;
  height: 20px;
  background: rgba(16, 185, 129, .1);
  color: var(--green-500);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 900;
  flex-shrink: 0;
}

/* PRODUCT MOCKUPS */
.product-panel-visual {
  display: flex;
  justify-content: center;
}

.product-mockup {
  width: 100%;
  max-width: 420px;
  background: var(--gray-900);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255, 255, 255, .05);
}

.mockup-screen {
  padding: 0;
}

.mockup-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(255, 255, 255, .05);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.mockup-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .7);
}

.mockup-status {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--gray-400);
  background: rgba(255, 255, 255, .08);
  padding: 2px 8px;
  border-radius: 100px;
}

.mockup-status.online {
  color: var(--green-400);
  background: rgba(74, 222, 128, .1);
}

/* SFA Mockup */
.mockup-map-bg {
  height: 130px;
  background: linear-gradient(135deg, #1a2744, #162133, #0f2040);
  position: relative;
  overflow: hidden;
}

.mockup-map-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(99, 102, 241, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 102, 241, .08) 1px, transparent 1px);
  background-size: 30px 30px;
}

.mockup-pin {
  position: absolute;
  font-size: 1.2rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .4));
}

.p1 {
  top: 20%;
  left: 20%;
}

.p2 {
  top: 50%;
  left: 55%;
}

.p3 {
  top: 30%;
  left: 70%;
}

.active-pin {
  animation: pinBounce 2s ease infinite;
}

@keyframes pinBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.route-line {
  position: absolute;
  top: 50%;
  left: 20%;
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--indigo-400), var(--cyan-400), transparent);
  animation: routeAnim 3s ease infinite;
}

@keyframes routeAnim {
  0% {
    opacity: 0.3;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.3;
  }
}

.mockup-visit-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-top: 1px solid rgba(255, 255, 255, .07);
  background: rgba(255, 255, 255, .04);
}

.visit-info {}

.visit-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .9);
}

.visit-time {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, .4);
  margin-top: 2px;
}

.visit-btn {
  font-size: 0.72rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--indigo-500), var(--cyan-500));
  color: white;
  padding: 7px 16px;
  border-radius: 100px;
  transition: all 0.2s ease;
}

.visit-btn:hover {
  transform: scale(1.05);
}

/* DMS Mockup */
.dms-content {
  padding: 16px;
}

.dms-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.dms-metric {
  background: rgba(255, 255, 255, .05);
  border-radius: var(--radius-md);
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .07);
}

.dms-label {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, .4);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.dms-value {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .9);
  margin-bottom: 8px;
}

.dms-bar {
  height: 4px;
  background: rgba(255, 255, 255, .1);
  border-radius: 2px;
  overflow: hidden;
}

.dms-bar div {
  height: 100%;
  background: linear-gradient(90deg, var(--indigo-400), var(--cyan-400));
  border-radius: 2px;
  transition: width 1s ease;
}

.dms-bar.orange div {
  background: linear-gradient(90deg, var(--amber-400), #f97316);
}

.dms-table {
  background: rgba(255, 255, 255, .04);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, .07);
  overflow: hidden;
}

.dms-th {
  display: flex;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  font-size: 0.62rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .35);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.dms-th span,
.dms-tr span {
  flex: 1;
}

.dms-tr {
  display: flex;
  align-items: center;
  padding: 9px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, .7);
}

.dms-tr:last-child {
  border-bottom: none;
}

.status-pill {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  text-align: center;
}

.status-pill.green {
  background: rgba(16, 185, 129, .15);
  color: var(--green-400);
}

.status-pill.yellow {
  background: rgba(251, 191, 36, .15);
  color: var(--amber-400);
}

/* Van Sales Mockup */
.van-content {
  padding: 16px;
}

.van-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.van-metric {
  text-align: center;
  background: rgba(255, 255, 255, .05);
  border-radius: var(--radius-md);
  padding: 12px 8px;
  border: 1px solid rgba(255, 255, 255, .07);
}

.vm-val {
  font-size: 1rem;
  font-weight: 800;
  color: rgba(255, 255, 255, .9);
}

.vm-lbl {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, .4);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 3px;
}

.van-invoice {
  background: rgba(255, 255, 255, .05);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, .07);
  overflow: hidden;
}

.invoice-header {
  padding: 8px 12px;
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.invoice-row,
.invoice-total {
  display: flex;
  justify-content: space-between;
  padding: 8px 12px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, .7);
  border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.invoice-total {
  border-top: 1px solid rgba(255, 255, 255, .1);
  border-bottom: none;
  font-weight: 700;
  color: rgba(255, 255, 255, .9);
  background: rgba(99, 102, 241, .1);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  padding: 20px 0;
  background: white;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  margin-top: 20px;
}

.steps-line {
  position: absolute;
  top: 50px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--indigo-400), var(--cyan-400));
  opacity: 0.3;
}

.step {
  text-align: center;
  padding: 32px 24px;
  position: relative;
}

.step-number {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--indigo-400);
  opacity: 0.5;
  margin-bottom: 16px;
}

.step-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(99, 102, 241, .1), rgba(6, 182, 212, .08));
  border: 1px solid rgba(99, 102, 241, .2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--indigo-500);
  transition: all 0.3s ease;
}

.step:hover .step-icon {
  background: linear-gradient(135deg, var(--indigo-500), var(--cyan-500));
  color: white;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 30px rgba(99, 102, 241, .35);
}

.step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.step p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--gray-500);
}

/* ============================================================
   BENEFITS SECTION
   ============================================================ */
.benefits {
  padding: 20px 0;
  background: var(--gray-50);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.benefits-left {
  position: sticky;
  top: 100px;
}

.benefits-left .section-title {
  text-align: left;
}

.benefits-left .section-subtitle {
  text-align: left;
  max-width: 350px;
}

.benefits-right {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.benefit-item:hover {
  background: white;
  border-color: var(--gray-200);
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(99, 102, 241, .1);
  border: 1px solid rgba(99, 102, 241, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

/* Explicit per-item benefit icon backgrounds */
.benefit-item:nth-child(1) .benefit-icon {
  background: rgba(99, 102, 241, .1);
  border-color: rgba(99, 102, 241, .2);
}

.benefit-item:nth-child(2) .benefit-icon {
  background: rgba(16, 185, 129, .1);
  border-color: rgba(16, 185, 129, .2);
}

.benefit-item:nth-child(3) .benefit-icon {
  background: rgba(6, 182, 212, .1);
  border-color: rgba(6, 182, 212, .2);
}

.benefit-item:nth-child(4) .benefit-icon {
  background: rgba(245, 158, 11, .1);
  border-color: rgba(245, 158, 11, .2);
}

.benefit-item:hover .benefit-icon {
  background: var(--color);
  color: white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
}

.benefit-item:nth-child(1):hover .benefit-icon {
  box-shadow: 0 8px 20px rgba(99, 102, 241, .3);
}

.benefit-item:nth-child(2):hover .benefit-icon {
  box-shadow: 0 8px 20px rgba(16, 185, 129, .3);
}

.benefit-item:nth-child(3):hover .benefit-icon {
  box-shadow: 0 8px 20px rgba(6, 182, 212, .3);
}

.benefit-item:nth-child(4):hover .benefit-icon {
  box-shadow: 0 8px 20px rgba(245, 158, 11, .3);
}

.benefit-item h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
}

.benefit-item p {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--gray-500);
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats {
  padding:0px;
  position: relative;
  overflow: hidden;
  background: var(--gray-900);
}

.stats-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 30% 50%, rgba(99, 102, 241, .15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 70% at 80% 50%, rgba(6, 182, 212, .1) 0%, transparent 60%),
    var(--gray-900);
}

.stats-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 50px 50px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 40px 20px;
  border-right: 1px solid rgba(255, 255, 255, .06);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--white) 0%, var(--indigo-400) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .4);
  letter-spacing: 0.02em;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 20px 0;
  background: white;
}

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

.testimonial-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

.testimonial-card.featured {
  background: linear-gradient(135deg, rgba(99, 102, 241, .06), rgba(6, 182, 212, .04));
  border-color: rgba(99, 102, 241, .2);
  transform: scale(1.02);
}

.testimonial-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-lg);
  border-color: rgba(99, 102, 241, .25);
  background: white;
}

.testimonial-card.featured:hover {
  transform: translateY(-6px) scale(1.03);
}

.quote-icon {
  font-size: 4rem;
  line-height: 1;
  color: var(--indigo-400);
  opacity: 0.2;
  font-family: Georgia, serif;
  margin-bottom: -12px;
}

.testimonial-card p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--gray-600);
  margin-bottom: 24px;
  font-style: italic;
}

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

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.88rem;
  color: var(--gray-900);
}

.testimonial-author span {
  font-size: 0.75rem;
  color: var(--gray-400);
}

/* ============================================================
   INTEGRATIONS
   ============================================================ */
.integrations {
  padding: 20px 0;
  background: var(--gray-50);
}

.integration-hub {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.hub-center {
  width: 80px;
  height: 80px;
  /* background: linear-gradient(135deg, var(--indigo-600), var(--cyan-500)); */
  background: linear-gradient(135deg, #ddf7fb, #06b6d4);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 40px rgba(79, 70, 229, .35), 0 0 0 8px rgba(99, 102, 241, .1), 0 0 0 16px rgba(99, 102, 241, .05);
  animation: hubPulse 3s ease infinite;
}

@keyframes hubPulse {

  0%,
  100% {
    box-shadow: 0 16px 40px rgba(79, 70, 229, .35), 0 0 0 8px rgba(99, 102, 241, .1), 0 0 0 16px rgba(99, 102, 241, .05);
  }

  50% {
    box-shadow: 0 20px 50px rgba(79, 70, 229, .45), 0 0 0 12px rgba(99, 102, 241, .08), 0 0 0 24px rgba(99, 102, 241, .03);
  }
}

.hub-logo {
  font-size: 2rem;
  font-weight: 900;
  color: white;
  letter-spacing: -0.04em;
  line-height: 1;
}

.hub-label {
  font-size: 0.55rem;
  color: rgba(255, 255, 255, .7);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.integration-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  max-width: 700px;
}

.integration-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  animation: intCardIn 0.6s ease backwards;
  animation-delay: var(--delay);
  cursor: default;
  min-width: 100px;
}

@keyframes intCardIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.integration-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(99, 102, 241, .25);
}

.int-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
}

.int-icon.sap {
  background: #0070f3;
  color: white;
}

.int-icon.tally {
  background: #1a1a2e;
  color: #e94560;
}

.int-icon.oracle {
  background: #c74634;
  color: white;
}

.int-icon.android {
  background: #3ddc84;
  color: white;
}

.integration-card span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gray-500);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  padding: 20px 0;
  position: relative;
  overflow: hidden;
  background: var(--gray-900);
}

.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 80% at 50% 0%, rgba(99, 102, 241, .3) 0%, transparent 65%),
    radial-gradient(ellipse 60% 60% at 10% 100%, rgba(139, 92, 246, .2) 0%, transparent 55%),
    radial-gradient(ellipse 60% 60% at 90% 100%, rgba(6, 182, 212, .15) 0%, transparent 55%),
    var(--gray-900);
}

.cta-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--indigo-400);
  background: rgba(99, 102, 241, .15);
  border: 1px solid rgba(99, 102, 241, .3);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.cta-title {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  color: white;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.cta-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .55);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, .4);
  font-weight: 500;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--gray-900);
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand .logo-text {
  color: white;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .35);
  max-width: 260px;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .5);
  transition: all 0.2s ease;
}

.social-link:hover {
  background: var(--indigo-600);
  border-color: var(--indigo-500);
  color: white;
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, .35);
  padding: 5px 0;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: rgba(255, 255, 255, .8);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .06);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, .25);
}

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

.footer-links a {
  color: rgba(255, 255, 255, .25);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, .6);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-container {
    gap: 40px;
  }

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

  .feature-card-wide {
    grid-column: span 1;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: span 2;
  }

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

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
  }
}

@media (max-width: 768px) {

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

  .hamburger {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 70px 0 0 0;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(20px);
    padding: 32px 24px;
    gap: 8px;
    z-index: 999;
    align-items: stretch;
  }

  .nav-links.open a {
    padding: 14px 20px;
    font-size: 1rem;
    border-radius: var(--radius-md);
    border-bottom: 1px solid var(--gray-100);
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    display: none;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .product-tabs {
    flex-direction: column;
    width: 100%;
  }

  .tab-btn {
    justify-content: center;
  }

  .product-panel-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .steps-container {
    grid-template-columns: 1fr;
  }

  .steps-line {
    display: none;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .benefits-left {
    position: static;
  }

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

  .testimonial-card.featured {
    transform: none;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

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

  .footer-brand {
    grid-column: span 2;
  }

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

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

@media (max-width: 480px) {
  .section-title {
    font-size: 1.8rem;
  }

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

  .hero-title {
    font-size: 2rem;
  }

  .cta-trust {
    flex-direction: column;
    gap: 10px;
  }

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

  .footer-brand {
    grid-column: span 1;
  }

  .integration-cards {
    gap: 10px;
  }

  .integration-card {
    padding: 14px 16px;
    min-width: 80px;
  }
}

/* ============================================================
   MEGA MENU DROPDOWN
   ============================================================ */
.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-600);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  background: none;
}

.nav-link:hover,
.nav-link.active-link {
  color: var(--indigo-600);
  background: rgba(99, 102, 241, .08);
}

.nav-has-dropdown {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav-arrow {
  transition: transform 0.25s ease;
}

.nav-has-dropdown[aria-expanded="true"] .nav-arrow {
  transform: rotate(180deg);
}

.nav-item-wrap {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  width: 720px;
  background: rgba(255, 255, 255, .97);
  border: 1px solid rgba(226, 232, 240, .9);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(99, 102, 241, .06);
  backdrop-filter: blur(24px);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 2000;
  overflow: hidden;
}

.mega-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: var(--white);
  border-left: 1px solid rgba(226, 232, 240, .9);
  border-top: 1px solid rgba(226, 232, 240, .9);
  transform: translateX(-50%) rotate(45deg);
}

.mega-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 320px;
}

.mega-col {
  padding: 20px 16px;
  border-right: 1px solid var(--gray-100);
}

.mega-col-header {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  padding: 0 8px 12px;
  border-bottom: 1px solid var(--gray-100);
  margin-bottom: 8px;
}

/* Individual mega item */
.mega-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
  cursor: pointer;
  color: var(--gray-700);
  position: relative;
}

.mega-item:hover {
  background: var(--gray-50);
  color: var(--gray-900);
}

.mega-item:hover .mega-icon {
  transform: scale(1.08);
}

.mega-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.mega-item-body {
  flex: 1;
  min-width: 0;
}

.mega-title {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 2px;
}

.mega-desc {
  display: block;
  font-size: 0.72rem;
  color: var(--gray-400);
}

.mega-chevron {
  color: var(--gray-300);
  flex-shrink: 0;
}

/* SFA group with submenu */
.mega-item-group {
  position: relative;
}

.mega-submenu {
  position: absolute;
  left: 100%;
  top: 0;
  width: 220px;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(6px);
  transition: all 0.2s ease;
  z-index: 100;
}

.mega-submenu.open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.sub-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  transition: background 0.18s ease;
  color: var(--gray-700);
}

.sub-item:hover {
  background: var(--gray-50);
}

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

.sub-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-900);
}

.sub-desc {
  font-size: 0.7rem;
  color: var(--gray-400);
  margin-top: 1px;
}

/* Preview panel (right column = tooltip) */
.mega-preview {
  padding: 24px 20px;
  background: linear-gradient(135deg, #fafbff, #f3f6ff);
}

.preview-panel {
  display: none;
  animation: previewFadeIn 0.25s ease;
}

.preview-panel.active {
  display: block;
}

@keyframes previewFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.preview-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.mega-preview h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
  line-height: 1.3;
}

.mega-preview p {
  font-size: 0.8rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 14px;
}

.preview-list {
  list-style: none;
  margin-bottom: 16px;
}

.preview-list li {
  font-size: 0.76rem;
  color: var(--gray-600);
  padding: 3px 0;
  font-weight: 500;
}

.preview-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--indigo-600);
  transition: gap 0.2s ease;
}

.preview-cta:hover {
  gap: 8px;
}

/* ============================================================
   PRODUCT PAGE SHARED STYLES
   ============================================================ */
.product-hero {
  padding: 130px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.product-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.product-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.product-hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: white;
  margin-bottom: 16px;
}

.product-hero-sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 32px;
  max-width: 440px;
}

.product-hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.product-mockup-hero {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-xl);
  padding: 6px;
  backdrop-filter: blur(20px);
  box-shadow: 0 40px 100px rgba(0, 0, 0, .3);
  animation: floatCard 6s ease-in-out infinite;
}

.product-mockup-inner {
  background: rgba(15, 23, 42, .95);
  border-radius: calc(var(--radius-xl) - 4px);
  overflow: hidden;
  min-height: 280px;
}

/* Feature grid for product pages */
.prod-features {
  padding: 90px 0;
  background: var(--gray-50);
}

.prod-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.prod-feature-card {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: all 0.3s ease;
}

.prod-feature-card:hover {
  border-color: rgba(99, 102, 241, .25);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.prod-feature-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.4rem;
}

.prod-feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

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

/* Process steps for product pages */
.prod-process {
  padding: 90px 0;
  background: white;
}

.prod-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.prod-steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, var(--indigo-400), var(--cyan-400));
  opacity: 0.3;
}

.prod-step {
  text-align: center;
  padding: 20px 12px;
}

.prod-step-num {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--indigo-400);
  margin-bottom: 12px;
}

.prod-step-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(99, 102, 241, .1), rgba(6, 182, 212, .08));
  border: 1px solid rgba(99, 102, 241, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--indigo-500);
  transition: all 0.3s ease;
  font-size: 1.4rem;
}

.prod-step:hover .prod-step-icon {
  background: linear-gradient(135deg, var(--indigo-500), var(--cyan-500));
  color: white;
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(99, 102, 241, .3);
}

.prod-step h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.prod-step p {
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--gray-500);
}

/* About/other page hero */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: white;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .6);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* Demo form */
.demo-form {
  background: white;
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-100);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-family: var(--font);
  color: var(--gray-800);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.form-input:focus {
  border-color: var(--indigo-400);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, .12);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

select.form-input {
  cursor: pointer;
}

.form-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--indigo-600), var(--blue-700));
  color: white;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  font-family: var(--font);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(79, 70, 229, .4);
}

/* Responsive for mega menu */
@media (max-width: 1024px) {
  .mega-menu {
    width: 560px;
  }

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

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

  .prod-steps::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .mega-menu {
    width: calc(100vw - 32px);
    left: 16px;
    transform: none;
    top: 70px;
    position: fixed;
    border-radius: var(--radius-lg);
  }

  .mega-menu.open {
    transform: none;
  }

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

  .mega-preview {
    display: none;
  }

  .mega-submenu {
    position: static;
    box-shadow: none;
    border: none;
    background: var(--gray-50);
    padding: 4px 0 4px 20px;
    transform: none;
    opacity: 1;
    visibility: visible;
    width: auto;
  }

  .product-hero-grid {
    grid-template-columns: 1fr;
  }

  .prod-feature-grid {
    grid-template-columns: 1fr;
  }

  .prod-steps {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .product-mockup-hero {
    display: none;
  }
}

/* ============================================================
   GLOBAL RESPONSIVE ADJUSTMENTS
   ============================================================ */

/* Forces the main navbar above ALL 3D animations and layers globally */
.navbar {
  z-index: 99999 !important; 
}

@media (max-width: 1024px) {
  .hero-container { gap: 40px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card-wide { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: span 2; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, .06); }
  .prod-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .prod-steps { grid-template-columns: repeat(2, 1fr); }
  .prod-steps::before { display: none; }

  /* --- TABLET & MOBILE NAVIGATION MENU FIX --- */
  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Forced Absolute Front Layering for Mobile Menu */
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute !important; 
    top: 100% !important; 
    left: 0 !important;
    right: 0 !important;
    height: 100vh !important;
    max-height: calc(100vh - 60px) !important;
    background: rgba(255, 255, 255, 0.98) !important; 
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2) !important;
    border-top: 1px solid rgba(226, 232, 240, 0.8);
    padding: 20px 24px 40px 24px;
    gap: 8px;
    z-index: 99999 !important; /* CRITICAL: Forces menu above all hero content */
    align-items: stretch;
    overflow-y: auto; 
  }

  .nav-links.open .nav-link {
    padding: 14px 20px;
    font-size: 1.05rem; 
    border-radius: var(--radius-md);
    border-bottom: 1px solid var(--gray-100);
    justify-content: flex-start;
    width: 100%;
    text-align: left;
  }

  .nav-item-wrap {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .nav-has-dropdown {
    justify-content: space-between;
  }

  .mega-menu {
    width: 100%;
    left: 0;
    top: 0;
    position: relative; 
    transform: none !important;
    border-radius: var(--radius-md);
    background: var(--gray-50); 
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.03);
    border: 1px solid var(--gray-200);
    margin-top: 8px;
    padding: 12px;
    display: none; 
    z-index: 1001;
  }

  .mega-menu.open {
    display: block; 
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    position: relative;
    transform: none !important;
  }

  /* Hide Desktop elements on Mobile/Tab */
  .mega-menu::before, .mega-menu::after { display: none; }
  .mega-grid { grid-template-columns: 1fr; min-height: auto; }
  .mega-col { border-right: none; padding: 10px 8px; }
  .mega-preview { display: none; }
  
  .mega-submenu {
    position: static;
    box-shadow: none;
    border: none;
    background: var(--gray-50);
    padding: 4px 0 4px 20px;
    transform: none;
    opacity: 1;
    visibility: visible;
    width: auto;
  }
}

@media (max-width: 768px) {
  .hero { padding: 100px 0 60px; }
  .hero-container { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero-title { font-size: 2.4rem; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  
  .features-grid, .prod-feature-grid, .prod-steps, .form-row { grid-template-columns: 1fr; }
  .product-tabs { flex-direction: column; width: 100%; }
  .tab-btn { justify-content: center; }
  .product-panel-grid { grid-template-columns: 1fr; gap: 32px; }
  .steps-container { grid-template-columns: 1fr; }
  .steps-line { display: none; }
  .benefits-grid { grid-template-columns: 1fr; gap: 40px; }
  .benefits-left { position: static; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card.featured { transform: none; }
  .cta-buttons { flex-direction: column; align-items: stretch; }
  
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .product-mockup-hero { display: none; }
}

@media (max-width: 480px) {
  .section-title { font-size: 1.8rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2rem; }
  .cta-trust { flex-direction: column; gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .integration-cards { gap: 10px; }
  .integration-card { padding: 14px 16px; min-width: 80px; }
}