/**
 * Theme Name:     Hello Elementor Child
 * Author:         Elementor Team
 * Template:       hello-elementor
 * Text Domain:	   hello-elementor-child
 * Description:    Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
 */

/* ============================================
       GLOBAL RESET & DESIGN SYSTEM
       ============================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --font-primary: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "JetBrains Mono", "Fira Code", monospace;

  --color-primary: #1e6bff;
  --color-primary-dark: #1452cc;
  --color-primary-light: #4f8fff;
  --color-primary-subtle: #ebf2ff;

  --color-dark: #0a0f1e;
  --color-dark-secondary: #131929;
  --color-dark-tertiary: #1c2540;

  --color-gray-900: #111827;
  --color-gray-800: #1f2937;
  --color-gray-700: #374151;
  --color-gray-600: #4b5563;
  --color-gray-500: #6b7280;
  --color-gray-400: #9ca3af;
  --color-gray-300: #d1d5db;
  --color-gray-200: #e5e7eb;
  --color-gray-100: #f3f4f6;
  --color-gray-50: #f9fafb;
  --color-white: #ffffff;

  --color-accent-green: #10b981;
  --color-accent-purple: #7c3aed;
  --color-accent-orange: #f59e0b;
  --color-accent-teal: #0d9488;
  --color-accent-red: #e11d48;

  --gradient-primary: linear-gradient(135deg, #1e6bff 0%, #7c3aed 100%);
  --gradient-hero: linear-gradient(
    135deg,
    #0a0f1e 0%,
    #0f1b3d 50%,
    #131929 100%
  );
  --gradient-subtle: linear-gradient(135deg, #f9fafb 0%, #ebf2ff 100%);
  --gradient-card: linear-gradient(
    135deg,
    rgba(30, 107, 255, 0.06) 0%,
    rgba(124, 58, 237, 0.04) 100%
  );

  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-blur: blur(16px);

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-card-hover: 0 12px 40px rgba(30, 107, 255, 0.15);
  --shadow-glow: 0 0 60px rgba(30, 107, 255, 0.25);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.18);

  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}

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

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

/* ============================================
       UTILITY CLASSES
       ============================================ */

.container {
  max-width: 1280px !important;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-sm {
  padding: 70px 0;
}

.section-lg {
  padding: 140px 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
       TYPOGRAPHY
       ============================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: inherit;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 4rem);
}
h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
}
h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}
h4 {
  font-size: 1.25rem;
}
h5 {
  font-size: 1.1rem;
}
h6 {
  font-size: 1rem;
}

p {
  line-height: 1.75;
  color: var(--color-gray-600);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--color-primary-dark);
}

code {
  font-family: var(--font-mono);
  font-size: 0.875em;
  background: var(--color-gray-100);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  color: var(--color-primary);
}

/* ============================================
       BUTTONS
       ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  border: none;
  transition: all var(--transition-base);
  white-space: nowrap;
  text-decoration: none;
}

.btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--color-primary) !important;
  color: var(--color-white) !important;
  border: none !important;
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(30, 107, 255, 0.35);
}

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

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--color-white);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--color-gray-700);
  border: 1.5px solid var(--color-gray-200);
}

.btn-ghost:hover {
  background: var(--color-gray-50);
  border-color: var(--color-gray-300);
  color: var(--color-gray-900);
}

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

.btn-sm {
  padding: 8px 16px;
  font-size: 0.875rem;
}

.btn-icon {
  width: 40px;
  height: 40px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
}

/* ============================================
       BADGE / LABEL
       ============================================ */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.badge-primary {
  background: var(--color-primary-subtle);
  color: var(--color-primary);
}

.badge-dark {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.badge-green {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
}

.badge-purple {
  background: rgba(124, 58, 237, 0.1);
  color: #6d28d9;
}

/* ============================================
       NAVIGATION HEADER
       ============================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(10, 15, 30, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all var(--transition-base);
}

.site-header.scrolled {
  background: rgba(10, 15, 30, 0.97);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo-mark {
  width: 34px;
  height: 34px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-logo-mark svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.site-logo-text {
  font-size: 1.1875rem;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.03em;
}

.site-logo-text span {
  color: var(--color-primary-light);
}

.primary-nav {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 4px;
  flex: 1;
  padding: 0 24px;
}

.primary-nav > li {
  position: relative;
}

.primary-nav > li > a,
.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-primary);
}

.primary-nav > li > a:hover,
.nav-trigger:hover,
.primary-nav > li > a.active {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.07);
}

.nav-trigger svg {
  width: 14px;
  height: 14px;
  opacity: 0.6;
  transition: transform var(--transition-base);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header-login {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  padding: 8px 14px;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.header-login:hover {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.07);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: white;
  border-radius: var(--radius-md);
}

.mobile-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.07);
}

/* ============================================
       MEGA MENU
       ============================================ */

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    z-index: 1000;
    background: #0f172a;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    min-width: 280px;
    max-width: 90vw;
    pointer-events: none;
}

.mega-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Wide menus – full width with left/right auto */
.mega-menu-wide {
    min-width: 280px;
    max-width: 90vw;
    width: auto;
    left: 0;
    right: auto;
}

/* For right-aligned menus (last items) */
.primary-nav > li:last-child .mega-menu,
.primary-nav > li:nth-child(7) .mega-menu {
    left: auto;
    right: 0;
}

.mega-menu-inner {
    padding: 32px;
}

.mega-menu-grid {
    display: grid;
    gap: 32px;
}

.four-col { grid-template-columns: repeat(4, 1fr); }
.three-col { grid-template-columns: repeat(3, 1fr); }
.five-col  { grid-template-columns: repeat(5, 1fr); }

.mega-menu-medium {
  width: auto;
  min-width: 280px;
  max-width: 520px;
}

.mega-menu-narrow {
  width: auto;
  min-width: 240px;
  max-width: 280px;
  left: 0;
}

.mega-menu-header {
  padding: 0 0 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mega-menu-header p {
  font-size: 0.8125rem;
  color: var(--color-gray-500);
  margin-top: 4px;
}

.mega-menu-header strong {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}

.mega-menu-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.mega-menu-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radius-lg);
  transition: background var(--transition-base);
  text-decoration: none;
}

.mega-menu-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.mega-menu-item-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mega-menu-item-icon svg {
  width: 18px;
  height: 18px;
}

.mega-menu-item-content h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-white);
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}

.mega-menu-item-content p {
  font-size: 0.8125rem;
  color: var(--color-gray-500);
  line-height: 1.5;
}

.mega-menu-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 16px;
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mega-menu-footer-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-primary-light);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.mega-menu-footer-link:hover {
  color: var(--color-white);
}

.simple-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.simple-nav-list a {
  display: block;
  padding: 9px 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.simple-nav-list a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-white);
}

/* ============================================
       HERO SECTION
       ============================================ */

.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 20px 0 80px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image:
    radial-gradient(
      circle at 20% 50%,
      rgba(30, 107, 255, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(124, 58, 237, 0.12) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 60% 80%,
      rgba(13, 148, 136, 0.08) 0%,
      transparent 40%
    );
}

.hero-grid {
  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;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

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

.hero-content {
  max-width: 600px;
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(30, 107, 255, 0.12);
  border: 1px solid rgba(30, 107, 255, 0.25);
  color: #93bfff;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent-green);
  animation: pulse 2s infinite;
}

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

.hero-h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--color-white);
  margin-bottom: 24px;
}

.hero-h1 .gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.125rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 40px;
  max-width: 520px;
}

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

.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-trust-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 32px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.03em;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-visual {
  position: relative;
}

.hero-code-window {
  background: #0d1117;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 32px 80px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(30, 107, 255, 0.12);
}

.code-window-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.code-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.code-dot-red {
  background: #ff5f57;
}

.code-dot-yellow {
  background: #febc2e;
}

.code-dot-green {
  background: #28c840;
}

.code-window-title {
  margin-left: 8px;
  font-size: 0.8rem;
  font-family: var(--font-mono);
  color: rgba(255, 255, 255, 0.3);
}

.code-window-body {
  padding: 24px;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  line-height: 1.8;
}

.code-comment {
  color: #6b7280;
}

.code-keyword {
  color: #ff7b72;
}

.code-string {
  color: #a5f3a5;
}

.code-function {
  color: #79c0ff;
}

.code-number {
  color: #ffa657;
}

.code-property {
  color: #d2a8ff;
}

.code-plain {
  color: #e6edf3;
}

/* Floating Cards – now positioned relative to hero-visual */
.hero-floating-cards {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  animation: float 6s ease-in-out infinite;
  pointer-events: auto;
  white-space: nowrap;
}

.floating-card:nth-child(1) {
  top: -20px;
  right: -20px;
  left: auto;
  bottom: auto;
  animation-delay: 0s;
}

.floating-card:nth-child(2) {
  bottom: -20px;
  left: -20px;
  right: auto;
  top: auto;
  animation-name: float-alternate;
  animation-delay: -1.5s;
}

@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(0.5deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

@keyframes float-alternate {
  0% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) translateX(4px) rotate(-0.5deg);
  }
  100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
}

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

.floating-card-icon img {
  width: 16px;
  height: 16px;
}

.floating-card-text {
  font-weight: 600;
  font-size: 14px;
  color: #1f2937;
}
.floating-card-sub {
  font-size: 12px;
  color: #6b7280;
}

/* ============================================
       LOGOS / TRUST SECTION
       ============================================ */

.logos-section {
  padding: 60px 0;
  background: var(--color-gray-50);
  border-top: 1px solid var(--color-gray-100);
  border-bottom: 1px solid var(--color-gray-100);
}

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

.logos-track-wrapper {
  overflow: hidden;
  position: relative;
}

.logos-track {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: scroll-logos 40s linear infinite;
  width: max-content;
}

.logos-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.logo-item {
  height: 28px;
  opacity: 0.4;
  filter: grayscale(1);
  transition: all var(--transition-base);
  flex-shrink: 0;
}

.logo-item:hover {
  opacity: 0.75;
  filter: grayscale(0);
}

/* ============================================
       SECTION HEADERS
       ============================================ */

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.section-header .badge {
  margin-bottom: 16px;
}

.section-header h2 {
  color: var(--color-gray-900);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.0625rem;
  color: var(--color-gray-500);
  line-height: 1.75;
}

.section-header.light h2 {
  color: var(--color-white);
}

.section-header.light p {
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================
       SERVICES OVERVIEW
       ============================================ */

.services-section {
  background: var(--color-white);
}

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

.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-100);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-card);
  opacity: 0;
  transition: opacity var(--transition-slow);
  border-radius: inherit;
}

.service-card:hover {
  border-color: rgba(30, 107, 255, 0.2);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

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

.service-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.service-card-icon svg {
  width: 26px;
  height: 26px;
}

.service-card h3 {
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  letter-spacing: -0.02em;
}

.service-card p {
  font-size: 0.9375rem;
  color: var(--color-gray-500);
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.service-card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.service-card-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--color-gray-600);
}

.service-card-features li::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2310B981'%3E%3Cpath d='M6.293 11.293L3 8l1.414-1.414L6.293 8.464l5.293-5.293L13 4.586z'/%3E%3C/svg%3E");
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary);
  position: relative;
  z-index: 1;
  transition: gap var(--transition-base);
}

.service-card-link:hover {
  gap: 10px;
  color: var(--color-primary-dark);
}

.service-card-link svg {
  width: 16px;
  height: 16px;
}

/* ============================================
       STATISTICS SECTION
       ============================================ */

.stats-section {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(30, 107, 255, 0.15) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(124, 58, 237, 0.12) 0%,
      transparent 60%
    );
}

.stats-inner {
  position: relative;
  z-index: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-2xl);
  overflow: hidden;
}

.stat-item {
  background: rgba(255, 255, 255, 0.03);
  padding: 48px 40px;
  text-align: center;
  position: relative;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.stat-number {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number .stat-accent {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  line-height: 1.4;
}

.stat-sublabel {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 4px;
}

/* ============================================
       HOW IT WORKS
       ============================================ */

.how-it-works {
  background: var(--color-gray-50);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 36px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--color-primary) 20%,
    var(--color-primary) 80%,
    transparent 100%
  );
  opacity: 0.3;
}

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

.step-number-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--color-white);
  border: 2px solid var(--color-gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  transition: all var(--transition-slow);
}

.process-step:hover .step-number-wrap {
  border-color: var(--color-primary);
  background: var(--color-primary-subtle);
  box-shadow: 0 0 0 8px rgba(30, 107, 255, 0.08);
}

.step-number {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-primary);
}

.process-step h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

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

/* ============================================
       FEATURES SECTION
       ============================================ */

.features-section {
  background: var(--color-white);
}

.features-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-base);
  border: 1px solid transparent;
}

.feature-item.active,
.feature-item:hover {
  background: var(--color-primary-subtle);
  border-color: rgba(30, 107, 255, 0.15);
}

.feature-item-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--color-primary-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-item.active .feature-item-icon {
  background: var(--color-primary);
}

.feature-item.active .feature-item-icon svg,
.feature-item:hover .feature-item-icon svg {
  color: white;
}

.feature-item-icon svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
}

.feature-item-text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 4px;
}

.feature-item-text p {
  font-size: 0.875rem;
  color: var(--color-gray-500);
  line-height: 1.6;
}

.features-visual {
  position: sticky;
  top: 100px;
}

.feature-preview-card {
  background: var(--color-dark);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
}

/* ============================================
       INDUSTRIES SECTION
       ============================================ */

.industries-section {
  background: var(--color-gray-50);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.industry-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-100);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  transition: all var(--transition-slow);
  text-align: center;
  cursor: pointer;
}

.industry-card:hover {
  border-color: rgba(30, 107, 255, 0.2);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.industry-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
}

.industry-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

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

/* ============================================
       TESTIMONIALS
       ============================================ */

.testimonials-section {
  background: var(--color-white);
}

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

.testimonial-card {
  background: var(--color-gray-50);
  border: 1px solid var(--color-gray-100);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: all var(--transition-slow);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(30, 107, 255, 0.15);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.star {
  color: var(--color-accent-orange);
  font-size: 1rem;
}

.testimonial-text {
  font-size: 0.9375rem;
  color: var(--color-gray-700);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

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

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-gray-900);
}

.author-info span {
  font-size: 0.8125rem;
  color: var(--color-gray-500);
}

/* ============================================
       INTEGRATIONS SECTION
       ============================================ */

.integrations-section {
  background: var(--color-dark);
  position: relative;
  overflow: hidden;
}

.integrations-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 30% 50%,
      rgba(30, 107, 255, 0.08) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 70% 50%,
      rgba(124, 58, 237, 0.06) 0%,
      transparent 60%
    );
}

.integrations-inner {
  position: relative;
  z-index: 1;
}

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-bottom: 48px;
}

.integration-badge {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 16px 12px;
  text-align: center;
  transition: all var(--transition-base);
  cursor: default;
}

.integration-badge:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(30, 107, 255, 0.3);
  transform: translateY(-2px);
}

.integration-badge-name {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 8px;
}

.integration-icon {
  width: 32px;
  height: 32px;
  margin: 0 auto;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* ============================================
       USE CASES
       ============================================ */

.use-cases-section {
  background: var(--color-white);
}

.use-cases-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--color-gray-100);
  padding: 6px;
  border-radius: var(--radius-xl);
  margin-bottom: 48px;
  overflow-x: auto;
}

.use-case-tab {
  padding: 10px 20px;
  border-radius: var(--radius-lg);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-gray-600);
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  border: none;
  background: none;
  font-family: var(--font-primary);
}

.use-case-tab.active {
  background: var(--color-white);
  color: var(--color-gray-900);
  box-shadow: var(--shadow-sm);
}

.use-case-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

.use-case-details h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.use-case-details p {
  font-size: 1rem;
  color: var(--color-gray-500);
  line-height: 1.75;
  margin-bottom: 28px;
}

.use-case-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.use-case-metric {
  background: var(--color-gray-50);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.use-case-metric-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.use-case-metric-label {
  font-size: 0.8rem;
  color: var(--color-gray-500);
  font-weight: 500;
}

.use-case-visual {
  background: var(--color-gray-50);
  border-radius: var(--radius-xl);
  padding: 32px;
  border: 1px solid var(--color-gray-100);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================
       PRICING CTA BANNER
       ============================================ */

.pricing-cta-section {
  background: var(--color-primary-subtle);
  border-top: 1px solid rgba(30, 107, 255, 0.1);
  border-bottom: 1px solid rgba(30, 107, 255, 0.1);
}

.pricing-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.pricing-cta-text h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-gray-900);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.pricing-cta-text p {
  font-size: 1rem;
  color: var(--color-gray-600);
}

.pricing-cta-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}

/* ============================================
       FAQ SECTION
       ============================================ */

.faq-section {
  background: var(--color-white);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: border-color var(--transition-base);
}

.faq-item.open {
  border-color: rgba(30, 107, 255, 0.25);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-primary);
  text-align: left;
  transition: background var(--transition-base);
}

.faq-question:hover {
  background: var(--color-gray-50);
}

.faq-item.open .faq-question {
  background: var(--color-primary-subtle);
}

.faq-question-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-gray-900);
  line-height: 1.5;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.faq-item.open .faq-icon {
  background: var(--color-primary);
  transform: rotate(45deg);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  color: var(--color-gray-600);
}

.faq-item.open .faq-icon svg {
  color: white;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.25s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 24px 24px;
  font-size: 0.9375rem;
  color: var(--color-gray-600);
  line-height: 1.75;
}

.faq-answer-inner a {
  color: var(--color-primary);
  font-weight: 500;
}

/* ============================================
       BLOG SECTION
       ============================================ */

.blog-section {
  background: var(--color-gray-50);
}

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

.blog-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-100);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-slow);
}

.blog-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
  border-color: rgba(30, 107, 255, 0.15);
}

.blog-card-image {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--gradient-card);
  overflow: hidden;
  position: relative;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.04);
}

.blog-card-body {
  padding: 24px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.blog-category {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.blog-date {
  font-size: 0.8rem;
  color: var(--color-gray-400);
}

.blog-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 10px;
  line-height: 1.45;
  letter-spacing: -0.01em;
}

.blog-card p {
  font-size: 0.875rem;
  color: var(--color-gray-500);
  line-height: 1.65;
  margin-bottom: 20px;
}

.blog-read-more {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--transition-base);
}

.blog-read-more:hover {
  gap: 9px;
  color: var(--color-primary-dark);
}

/* ============================================
       FINAL CTA SECTION
       ============================================ */

.final-cta {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 25% 60%,
      rgba(30, 107, 255, 0.2) 0%,
      transparent 55%
    ),
    radial-gradient(
      circle at 75% 40%,
      rgba(124, 58, 237, 0.15) 0%,
      transparent 55%
    );
}

.final-cta-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.final-cta h2 {
  color: var(--color-white);
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 20px;
}

.final-cta p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
  line-height: 1.75;
}

.final-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.final-cta-note {
  margin-top: 20px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.35);
}

.final-cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
}

.trust-badge-item svg {
  width: 16px;
  height: 16px;
  color: var(--color-accent-green);
}

/* ============================================
       NEWSLETTER SECTION
       ============================================ */

.newsletter-section {
  background: var(--color-gray-50);
  border-top: 1px solid var(--color-gray-100);
}

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.newsletter-text h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-gray-900);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.newsletter-text p {
  font-size: 0.9375rem;
  color: var(--color-gray-500);
}

.newsletter-form {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  width: 100%;
  max-width: 480px;
}

.newsletter-input {
  flex: 1;
  padding: 13px 18px;
  border: 1.5px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-family: var(--font-primary);
  color: var(--color-gray-900);
  background: var(--color-white);
  transition: border-color var(--transition-base);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(30, 107, 255, 0.1);
}

.newsletter-input::placeholder {
  color: var(--color-gray-400);
}

/* ============================================
       FOOTER
       ============================================ */

.site-footer {
  background: var(--color-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-main {
  padding: 72px 0 48px;
}

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

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
  margin-top: 16px;
  margin-bottom: 24px;
  max-width: 280px;
}

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

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition-base);
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.15);
}

.footer-social a svg {
  width: 16px;
  height: 16px;
}

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

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-base);
}

.footer-links a:hover {
  color: var(--color-white);
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  background: rgba(16, 185, 129, 0.1);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-full);
  padding: 3px 10px;
  margin-top: 8px;
}

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-bottom-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.3);
}

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

.footer-bottom-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.35);
  transition: color var(--transition-base);
}

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

/* ============================================
       STICKY CTA BAR (Mobile)
       ============================================ */

.sticky-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--color-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 20px;
  gap: 10px;
  justify-content: center;
}

/* ============================================
       CALLOUT BOX
       ============================================ */

.callout {
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 24px 0;
}

.callout-info {
  background: rgba(30, 107, 255, 0.06);
  border-left: 3px solid var(--color-primary);
}

.callout-success {
  background: rgba(16, 185, 129, 0.06);
  border-left: 3px solid var(--color-accent-green);
}

.callout-warning {
  background: rgba(245, 158, 11, 0.06);
  border-left: 3px solid var(--color-accent-orange);
}

.callout-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.callout-body {
  font-size: 0.9375rem;
  color: var(--color-gray-700);
  line-height: 1.65;
}

.callout-body strong {
  font-weight: 700;
  color: var(--color-gray-900);
}

/* ============================================
       COMPARISON TABLE
       ============================================ */

.comparison-section {
  background: var(--color-gray-50);
}

.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-gray-200);
  box-shadow: var(--shadow-card);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-width: 700px;
}

.comparison-table thead th {
  padding: 20px 24px;
  text-align: left;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-gray-700);
  background: var(--color-gray-50);
  border-bottom: 1px solid var(--color-gray-200);
}

.comparison-table thead th.highlight {
  background: var(--color-primary);
  color: var(--color-white);
}

.comparison-table tbody td {
  padding: 16px 24px;
  font-size: 0.9375rem;
  color: var(--color-gray-700);
  border-bottom: 1px solid var(--color-gray-100);
  vertical-align: middle;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody td.highlight {
  background: rgba(30, 107, 255, 0.03);
  font-weight: 600;
  color: var(--color-gray-900);
}

.comparison-table tbody td.feature-name {
  font-weight: 600;
  color: var(--color-gray-900);
}

.check-icon {
  color: var(--color-accent-green);
  font-size: 1.1rem;
}

.cross-icon {
  color: var(--color-gray-400);
  font-size: 1.1rem;
}

.partial-icon {
  color: var(--color-accent-orange);
  font-size: 1.1rem;
}

/* ============================================
       RESPONSIVE — MOBILE FIRST
       ============================================ */

/* Large screens: adjustments for very wide menus */
@media (min-width: 1200px) {
  .mega-menu-wide {
    max-width: 1100px;
  }
}

/* Tablet and below (1024px) */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .process-grid::before {
    display: none;
  }

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

  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .features-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .integrations-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Medium screens (768px) */
@media (max-width: 1200px) {
    .desktop-nav{
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
    }
}
@media (max-width: 768px) {
    .hero-inner{
        display: flex;
        flex-direction: column;
    }
  .section {
    padding: 72px 0;
  }
  .section-lg {
    padding: 96px 0;
  }

  .primary-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .header-login {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .use-case-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pricing-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .newsletter-inner {
    flex-direction: column;
  }
  .newsletter-form {
    max-width: 100%;
  }
  .integrations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .final-cta-trust {
    flex-wrap: wrap;
    gap: 16px;
  }
  .sticky-cta-bar {
    display: flex;
  }
  body {
    padding-bottom: 80px;
  }

  /* Hide floating hero cards on mobile */
  .hero-floating-cards {
    display: none;
  }

  /* Adjust mega menu for tablet – still hidden on mobile, but ensure it doesn't overflow */
  .mega-menu {
    left: 0;
    right: auto;
    max-width: 90vw;
  }
  .primary-nav > li:last-child .mega-menu,
  .primary-nav > li:nth-child(7) .mega-menu {
    left: 0;
    right: auto;
  }
}

/* Small screens (480px) */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .hero-stats-row {
    flex-wrap: wrap;
    gap: 20px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .industries-grid {
    grid-template-columns: 1fr;
  }
  .integrations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
}

/* Extra small devices (≤400px) – fine-tuning */
@media (max-width: 400px) {
  .btn {
    padding: 10px 16px;
    font-size: 0.85rem;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-form .btn {
    width: 100%;
  }
}

/* ============================================
       REDUCED MOTION
       ============================================ */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
       PRINT STYLES
       ============================================ */

@media print {
  .site-header,
  .site-footer,
  .sticky-cta-bar {
    display: none;
  }
}

/* ============================================
       ADDITIONAL OVERRIDES & FIXES
       ============================================ */

.e-flexbox-base {
  margin: 0 !important;
  padding: 0 !important;
}

.site-footer {
  max-width: 100% !important;
}
#site-header {
  max-width: 100% !important;
  position: sticky;
}
code {
  background: transparent;
}

.footer-col h4 {
  color: white;
}
h2 {
  font-size: 2rem !important;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 500 !important;
}
.faq-item.open .faq-answer {
  display: block !important;
}

/* Breadcrumb */
.breadcrumb-bar {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-gray-100);
  padding: 14px 0;
}
.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--color-gray-400);
}
.breadcrumb-nav a { color: var(--color-gray-500); }
.breadcrumb-nav a:hover { color: var(--color-primary); }
.breadcrumb-nav .sep { color: var(--color-gray-300); }
.breadcrumb-nav .current { color: var(--color-gray-700); font-weight: 500; }

/* Pagination */
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 30px 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.nav-links .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  color: #4a5568;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
}
.nav-links a.page-numbers:hover {
  background-color: #f7fafc;
  border-color: #cbd5e0;
  color: #1a202c;
}
.nav-links .page-numbers.current {
  background-color: #3182ce;
  border-color: #3182ce;
  color: #ffffff;
  font-weight: 600;
  cursor: default;
}
.nav-links .page-numbers.next {
  padding: 0 18px;
  font-weight: 600;
}

/* Solution template tech chips */
.solution-template .tech-section {
  padding: 80px 0;
  background-color: #fafafa;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.solution-template .tech-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.solution-template .tech-section .section-header {
  text-align: center;
  margin-bottom: 48px;
}
.solution-template .tech-section .badge-primary {
  display: inline-block;
  padding: 6px 14px;
  background-color: #e0f2fe;
  color: #0369a1;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 100px;
  margin-bottom: 16px;
}
.solution-template .tech-section .section-header h2 {
  font-size: 32px;
  color: #0f172a;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.02em;
}
.solution-template .tech-section .tech-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.solution-template .tech-section .tech-chip {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  color: #334155;
  font-size: 15px;
  font-weight: 500;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}
.solution-template .tech-section .tech-chip:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  transform: translateY(-1px);
}
.solution-template .tech-section .tech-chip svg {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  color: #0ea5e9;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .solution-template .tech-section {
    padding: 60px 0;
  }
  .solution-template .tech-section .section-header h2 {
    font-size: 26px;
  }
  .solution-template .tech-section .tech-chip {
    padding: 10px 16px;
    font-size: 14px;
  }
}

/* Logo marquee */
.ss-marquee-wrapper {
  background: #fff;
  padding: 20px 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ss-marquee-track {
  display: flex;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
  width: fit-content;
  gap: 3rem;
}
.logo-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  font-weight: 700;
  font-size: 1.1rem;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.logo-marque-image {
  width: 100%;
  height: 80px;
  min-width: 100px;
  max-width: 80px !important;
  max-height: 80px;
}
.logo-marque-image:hover {
  opacity: 1;
}

.solution-template .architecture-arrow {
  display: none !important;
}

/* Contact form */
.sc-contact-section {
  padding: 80px 0;
  background-color: #f8fafc;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.sc-contact-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.sc-contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact-info .sc-badge {
  display: inline-block;
  padding: 6px 14px;
  background-color: #dbeafe;
  color: #1e40af;
  font-size: 13px;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 20px;
}
.contact-info h2 {
  font-size: 36px;
  color: #0f172a;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 16px 0;
}
.contact-info .contact-desc {
  font-size: 16px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 30px;
}
.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}
.benefits-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  color: #334155;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}
.benefits-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #10b981;
  font-weight: 700;
  font-size: 16px;
}
.contact-emails {
  border-top: 1px solid #e2e8f0;
  padding-top: 24px;
}
.contact-emails p {
  margin: 6px 0;
  font-size: 14px;
  color: #64748b;
}
.contact-emails a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}
.contact-emails a:hover {
  text-decoration: underline;
}
.sc-cta-box {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
}
.sc-cta-box__title {
  font-size: 22px;
  color: #0f172a;
  font-weight: 700;
  margin: 0 0 8px 0;
}
.sc-cta-box__subtitle {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
  margin: 0 0 28px 0;
}
.sc-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 20px;
  margin-bottom: 20px;
}
.sc-input-group {
  margin: 0;
}
.sc-input-group.full-width {
  grid-column: span 2;
}
.sc-input-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 6px;
}
.sc-input-group input[type="text"],
.sc-input-group input[type="email"],
.sc-input-group select,
.sc-input-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background-color: #fff;
  color: #0f172a;
  font-size: 14px;
  box-sizing: border-box;
  transition: all 0.2s ease;
}
.sc-input-group input:focus,
.sc-input-group select:focus,
.sc-input-group textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}
.iti {
  width: 100% !important;
  display: block !important;
}
.iti input {
  width: 100% !important;
  padding-left: 52px !important;
  height: 41px;
}
.sc-lead-submit {
  width: 100%;
  padding: 14px;
  background-color: #2563eb;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.sc-lead-submit:hover {
  background-color: #1d4ed8;
}
.sc-form-disclaimer {
  text-align: center;
  font-size: 12px;
  color: #94a3b8;
  margin: 16px 0 0 0;
}
.sc-form-disclaimer a {
  color: #64748b;
  text-decoration: underline;
}
@media (max-width: 992px) {
  .sc-contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-info h2 {
    font-size: 28px;
  }
    .engagement-grid{
        display: flex;
        flex-direction: column;
    }
}
@media (max-width: 576px) {
  .sc-form-grid {
    grid-template-columns: 1fr;
  }
  .sc-input-group.full-width {
    grid-column: span 1;
  }
  .sc-cta-box {
    padding: 30px 20px;
  }
}

/* Mobile menu (separate from mega) – keep as is; already hidden on desktop */
.mobile-menu {
    display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 380px;
  height: 100vh;
  background: #0f172a;
  transition: right 0.4s cubic-bezier(0.32, 0.72, 0, 1);
  z-index: 2000;
  overflow-y: auto;
}
.mobile-menu.open {
    display: block;
  right: 0;
}
.mobile-menu-inner {
  padding: 24px;
}
.mobile-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-nav a {
  color: #e2e8f0;
  text-decoration: none;
  font-size: 17px;
  padding: 14px 0;
  display: block;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.has-children .mobile-nav-trigger {
    color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 14px 0;
  font-size: 17px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 18px 24px;
}
.mobile-subnav {
  display: none;
  padding-left: 20px;
  margin-top: 8px;
}
.mobile-subnav.open {
  display: block;
}
.sub-header {
  color: #60a5fa;
  font-size: 14px;
  padding: 12px 0 6px;
  font-weight: 600;
}
.view-all {
  color: #60a5fa !important;
  font-weight: 500;
}
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 1999;
}
.mobile-menu-overlay.show {
  visibility: visible;
  display: none;
}
@media (max-width: 991px) {
  .primary-nav {
    display: none;
  }
  .mega-menu {
    display: none;
  }
}
@media (min-width: 992px) {
  .mobile-menu {
    display: none;
  }
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: #0f172a;
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.32, 0.72, 0, 1);
    overflow-y: auto;
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
}

.mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav > li {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-nav a {
    /* display: block; */
    /* padding: 16px 24px; */
    color: #e2e8f0;
    /* text-decoration: none; */
}

.mobile-nav-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    cursor: pointer;
    color: #e2e8f0;
    font-size: 17px;
}

.toggle {
    transition: transform 0.3s;
}

.has-children .mobile-subnav.open .toggle {
    transform: rotate(45deg);
}

.mobile-subnav {
    display: none;
    background: rgba(0,0,0,0.2);
    padding: 8px 0;
}

.mobile-subnav.open {
    display: block;
}

.mobile-subnav a {
    padding: 12px 48px;
    font-size: 15.5px;
}

.sub-header {
    color: #60a5fa;
    padding: 12px 48px 6px;
    font-weight: 600;
    font-size: 14px;
}

.mobile-cta {
    margin: 12px 24px !important;
    text-align: center;
}

/* Overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.85);
    opacity: 0;
    visibility: hidden;
    z-index: 1999;
    transition: all 0.3s;
}

.mobile-overlay.show {
    opacity: 1;
    visibility: visible;
}

.container-narrow > div:nth-of-type(2) {
    display: flex !important;
    flex-direction: column !important;
}

/* 1. Fix the main button container */
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  
  /* CRITICAL: Allows elements inside to wrap instead of forcing one line */
  white-space: normal; 
}

/* 2. Fix the inner text container */
.faq-question-text {
  /* CRITICAL: Overrides default flex constraints */
  flex: 1 1 0%;
  min-width: 0;
  
  /* CRITICAL: Breaks long words/URLs if they hit the boundary */
  overflow-wrap: break-word;
  word-break: break-word;
  
  /* Ensures text aligns properly as it drops to line 2 */
  text-align: left; 
}

/* 3. Give the icon breathing room so text doesn't crush it */
.faq-icon {
  flex-shrink: 0;
  margin-left: 16px; 
}


/* New menu css */

/* ==========================================
   DESKTOP MEGA MENU
   ========================================== */

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 1000;
    background: #0f172a;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.15), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    min-width: 280px;
    pointer-events: none;
}

.mega-menu-wide {
    position: absolute; /* Or 'fixed' if your header layout requires it */
    left: 50%;
    transform: translateX(-50%);
    min-width: 1100px;
    max-width: 1250px;
    width: 90vw; /* Ensures it won't overflow on screens smaller than 1100px */
}

.mega-menu-wide {
    min-width: 1100px;
    max-width: 1250px;
    left: -110px; /* Adjust if needed */
}

.mega-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
}

.mega-menu-inner {
    padding: 32px;
}

.mega-menu-header {
    margin-bottom: 24px;
}

.mega-menu-header strong {
    font-size: 18px;
    color: #fff;
    display: block;
    margin-bottom: 6px;
}

.mega-menu-header p {
    color: #94a3b8;
    font-size: 14.5px;
    margin: 0;
}

.mega-menu-grid {
    display: grid;
    gap: 32px;
}

.four-col { grid-template-columns: repeat(4, 1fr); }
.three-col { grid-template-columns: repeat(3, 1fr); }
.five-col  { grid-template-columns: repeat(5, 1fr); }

.mega-menu-column h4 {
    color: #60a5fa;
    font-size: 15px;
    margin-bottom: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mega-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-list li {
    margin-bottom: 10px;
}

.mega-menu-list a {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 14.5px;
    transition: color 0.2s;
}

.mega-menu-list a:hover {
    color: #60a5fa;
}

.simple-nav-list {
    columns: 2;
    column-gap: 48px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.simple-nav-list li {
    margin-bottom: 10px;
    break-inside: avoid;
}

.simple-nav-list a {
    color: #e2e8f0;
    text-decoration: none;
}

.simple-nav-list a:hover {
    color: #60a5fa;
}

.mega-menu-footer {
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mega-menu-footer-link {
    color: #60a5fa;
    font-weight: 500;
    text-decoration: none;
}

/* Desktop Nav */
.primary-nav > li {
    position: relative;
}

.nav-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: white !important;
    font-size: inherit;
    cursor: pointer;
    padding: 16px 12px;
}

.nav-trigger svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.primary-nav > li:hover .nav-trigger svg,
.primary-nav > li:focus-within .nav-trigger svg {
    transform: rotate(180deg);
}

/* ==========================================
   MOBILE MENU
   ========================================== */

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: #0f172a;
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.32, 0.72, 0, 1);
    overflow-y: auto;
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-inner {
    padding: 10px 0;
}

.mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav > li {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-nav a {
    display: block;
    padding: 16px 24px;
    color: #e2e8f0;
    text-decoration: none;
    font-size: 17px;
}

.mobile-nav-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    cursor: pointer;
    color: #e2e8f0;
    font-size: 17px;
}

.mobile-subnav {
    display: none;
    background: rgba(15, 23, 42, 0.6);
    padding: 8px 0;
}

.mobile-subnav.open {
    display: block;
}

.mobile-subnav a {
    padding: 12px 48px;
    font-size: 15.5px;
}

.sub-header {
    color: #60a5fa;
    padding: 12px 48px 6px;
    font-weight: 600;
    font-size: 14px;
}

.mobile-cta {
    margin: 16px 24px !important;
    display: block;
    text-align: center;
}

/* Overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.85);
    opacity: 0;
    visibility: hidden;
    z-index: 1999;
    transition: all 0.3s ease;
}

.mobile-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* Responsive */
@media (max-width: 991px) {
    .desktop-nav {
        display: none;
    }
    .engagement-grid{
        display: flex !important;
        flex-direction: column !important;
    }
}

@media (min-width: 992px) {
    .mobile-menu {
        display: none;
    }
    .engagement-grid{
        display: flex;
        flex-direction: column;
    }
}

/* div#menu-platforms {
    left: -260px;
}
div#menu-datasets {
    left: -300px;
} */

.containers{
    width: 100%;
}

.elementor-element{
    margin-top: 0px !important;
}

.use-case-content .blog-layout{
    max-width: 1280px !important;
}
.use-case-content{
    margin-top: 0px !important;
}
.container.use-case-single{
    padding: 0;
}

/* Dataset css */
.tbl-wrap {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    margin: 2rem 0;
    box-shadow: 0 1px 3px rgb(0 0 0 / .1);
    font-family: -apple-system,system-ui,sans-serif
}

.tbl-hdr {
    padding: 16px 20px;
    background: #fff;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.tbl-hdr-title {
    font-weight: 700;
    color: #111827;
    font-size: .95rem;
    letter-spacing: -.01em
}

.tbl-hdr-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .8rem;
    color: #6b7280;
    background: #f9fafb;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid #f3f4f6
}

.tbl-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%
}

.dtable {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px
}

.dtable th {
    background: #f9fafb;
    text-align: left;
    padding: 12px 20px;
    color: #4b5563;
    font-weight: 600;
    border-bottom: 1px solid #f3f4f6
}

.dtable td {
    padding: 12px 20px;
    border-bottom: 1px solid #f3f4f6;
    color: #374151;
    white-space: nowrap
}

.row-blur td {
    filter: blur(4px);
    opacity: .5;
    user-select: none
}

.tbl-ftr {
    padding: 16px 20px;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f3f4f6
}

.tbl-ftr-stats {
    font-size: .85rem;
    color: #6b7280
}

.tbl-ftr-stats strong {
    color: #111827
}

.tbl-dl-btn {
    background: #111827;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: .85rem;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.2s
}

.tbl-dl-btn:hover {
    opacity: .9
}

@media (max-width: 768px) {
    .tbl-hdr,.tbl-ftr {
        flex-direction:column;
        align-items: flex-start;
        gap: 10px
    }
}

#mds-popup {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(17 24 39 / .7);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px)
}

.mds-popup-content {
    background-color: #fff;
    padding: 32px;
    border-radius: 12px;
    width: 100%;
    max-width: 400px;
    position: relative;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / .1)
}

.mds-popup-content h3 {
    margin-top: 0;
    font-size: 1.25rem;
    color: #111827;
    margin-bottom: 20px
}

.mds-close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 24px;
    color: #9ca3af;
    cursor: pointer;
    transition: color 0.2s
}

.mds-close:hover {
    color: #111827
}

#mds-form {
    display: flex;
    flex-direction: column;
    gap: 12px
}

#mds-form input {
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: .95rem
}

#mds-form input:focus {
    outline: none;
    border-color: #2563eb;
    ring: 2px solid #dbeafe
}

#mds-form button {
    background: #2563eb;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 8px
}

#mds-form button:hover {
    background: #1d4ed8
}

.dtable-container {
    max-height: 400px;
    overflow-y: auto;
    overflow-x: auto;
    position: relative
}

.dtable thead th {
    position: sticky;
    top: 0;
    z-index: 10;
    background: #f9fafb;
    box-shadow: inset 0 -1px 0 #f3f4f6
}

.mds-loader {
    width: 18px;
    height: 18px;
    border: 2px solid #000;
    border-bottom-color: #fff0;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: mdsRotation 1s linear infinite;
    text-align: center;
    justify-content: center;
    align-items: center;
    align-content: center;
    align-self: center
}

@keyframes mdsRotation {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

#mds-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px
}

#mds-loading-msg {
    line-height: 1.4;
    font-style: italic
}

.data-sample.sec .wrap {
    width: 100%;
    max-width: 1280px !important;
    margin: 0 auto;
    padding: 0 24px;
}

/* 1. Reset all li items to static so wide menus can use full-width context */
.primary-nav > li {
    position: static;
}

/* 2. Re-enable relative positioning ONLY for standard dropdown items */
.primary-nav > li:has(.mega-menu:not(.mega-menu-wide)) {
    position: relative;
}

/* 3. Keep standard dropdowns aligned to their specific parent button */
.mega-menu:not(.mega-menu-wide) {
    position: absolute;
    top: 100%;
    left: 0; /* Aligns dropdown cleanly to the left edge of its button */
    transform: none;
}

/* 4. Wide menus stay centered relative to the whole nav */
.desktop-nav {
    position: relative;
}

.mega-menu-wide {
    position: absolute;
    top: 100%;
    left: 50% !important;
    transform: translateX(-50%) !important;
    min-width: 1100px;
    max-width: 1250px;
    width: 90vw;
    z-index: 999;
}