/* ===================================================================
   Creative Management – style.css  v3.0
   Premium Design System with Dark/Light Mode & Hero Animations
   =================================================================== */

/* ── Google Font Import ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ── CSS Custom Properties (Design Tokens) ──────────────────────── */
:root {
  /* REFRESHED PREMIUM COLOR PALETTE — LIGHT & GRADIENT STYLING */
  --brand-primary: #5f5bf6;
  --brand-primary-dark: #4f46e5;
  --brand-secondary: #a855f7;
  --brand-accent: #06b6d4;
  --brand-success: #10b981;
  --brand-warning: #f59e0b;
  --brand-danger: #ef4444;

  /* Refreshed Light Mode Colors (Glass Theme) */
  --bg-primary: transparent;
  --bg-secondary: rgba(255, 255, 255, 0.25);
  --bg-tertiary: rgba(255, 255, 255, 0.12);
  --bg-surface: rgba(255, 255, 255, 0.45);

  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-tertiary: #94a3b8;
  --text-inverse: #ffffff;

  --border-light: rgba(99, 102, 241, 0.1);
  --border-medium: rgba(99, 102, 241, 0.25);

  /* Refreshed Dark Mode Colors (Glass Theme) */
  --bg-primary-dark: transparent;
  --bg-secondary-dark: rgba(18, 18, 21, 0.25);
  --bg-tertiary-dark: rgba(18, 18, 21, 0.12);
  --bg-surface-dark: rgba(18, 18, 21, 0.45);

  --text-primary-dark: #fafafa;
  /* Zinc 50 - crisp clear text */
  --text-secondary-dark: #a1a1aa;
  /* Zinc 400 - readable secondary text */
  --text-tertiary-dark: #71717a;
  /* Zinc 500 - caption/placeholder text */

  --border-dark: rgba(95, 91, 246, 0.15);
  --border-dark-medium: rgba(95, 91, 246, 0.3);

  /* Modern High-Vibrancy Gradients (Semi-Transparent overlays) */
  --gradient-brand: linear-gradient(135deg, #5f5bf6 0%, #a855f7 50%, #06b6d4 100%);
  --gradient-warm: linear-gradient(135deg, #ff5e62 0%, #ff9966 100%);
  --gradient-cool: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
  --gradient-success: linear-gradient(135deg, #00b09b 0%, #96c93d 100%);
  --gradient-dark: linear-gradient(135deg, rgba(9, 9, 11, 0.05) 0%, rgba(18, 18, 21, 0.2) 100%);
  --gradient-light: linear-gradient(135deg, rgba(248, 250, 252, 0.05) 0%, rgba(238, 242, 255, 0.2) 100%);

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16);
  --shadow-2xl: 0 24px 64px rgba(0, 0, 0, 0.2);
  --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.3);
  --shadow-glow-accent: 0 0 40px rgba(6, 182, 212, 0.3);

  /* Typography */
  --font-body: 'Poppins', system-ui, -apple-system, sans-serif;
  --font-heading: 'Poppins', system-ui, -apple-system, sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --text-7xl: 4.5rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Border Radius */
  --radius-none: 0;
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-3xl: 2rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s ease;
  --transition-slower: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Layout */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
  --container-2xl: 1536px;
  --header-height: 80px;

  /* Z-Index */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal: 1040;
  --z-popover: 1050;
  --z-tooltip: 1060;
}

/* Dark Mode Tokens */
/* Dark Mode Tokens */
[data-theme="dark"] {
  --bg-primary: var(--bg-primary-dark);
  --bg-secondary: var(--bg-secondary-dark);
  --bg-tertiary: var(--bg-tertiary-dark);
  --bg-surface: var(--bg-surface-dark);

  --text-primary: var(--text-primary-dark);
  --text-secondary: var(--text-secondary-dark);
  --text-tertiary: var(--text-tertiary-dark);

  --border-light: var(--border-dark);
  --border-medium: var(--border-dark-medium);

  /* Glowing Radial Gradient Background for Body in Dark Mode */
  background-image: radial-gradient(circle at 50% -20%, #091c3d 0%, #030a1c 45%, #010409 100%) !important;
  background-attachment: fixed !important;
  background-color: #010409 !important;
}

/* Dark Mode Glowing Elements & Glassmorphism Cards */
[data-theme="dark"] .ns-srv-card {
  background: rgba(18, 18, 21, 0.75) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border-color: rgba(95, 91, 246, 0.15) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), 0 0 20px rgba(95, 91, 246, 0.03) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease !important;
}

[data-theme="dark"] .ns-srv-card:hover {
  background: rgba(18, 18, 21, 0.9) !important;
  border-color: var(--brand-primary, #5f5bf6) !important;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4), 0 0 35px rgba(95, 91, 246, 0.2), 0 0 15px rgba(6, 182, 212, 0.12) !important;
  transform: translateY(-10px) scale(1.02) !important;
}

[data-theme="dark"] .ns-srv-card:hover .ns-srv-icon {
  transform: scale(1.15) rotate(6deg);
  box-shadow: 0 0 25px rgba(95, 91, 246, 0.45);
}

[data-theme="dark"] .ns-srv-card:hover .ns-srv-link {
  gap: 0.6rem;
  color: var(--brand-accent, #06b6d4);
}

[data-theme="dark"] .sol2-panel {
  background: rgba(18, 18, 21, 0.75) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(95, 91, 246, 0.12) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 25px rgba(95, 91, 246, 0.02) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease !important;
}

[data-theme="dark"] .sol2-panel:hover {
  border-color: rgba(95, 91, 246, 0.3) !important;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(95, 91, 246, 0.1), 0 0 15px rgba(6, 182, 212, 0.06) !important;
}

[data-theme="dark"] .ns-logo-card {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25) !important;
}

[data-theme="dark"] .ns-logo-card:hover {
  box-shadow: 0 12px 30px rgba(99, 102, 241, 0.25) !important;
}

/* ── Reset & Base ───────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

/* Scale down layout for 14-inch screens (1025px to 1400px) to match 80% browser zoom */
@media (min-width: 1025px) and (max-width: 1400px) {
  html {
    font-size: 80%; /* Scales down all body content & spacings by 20% to fit 14-inch laptops, leaving 16-inch screens (1536px+) unchanged */
  }

  /* Keep header elements at their normal desktop scale so they remain clear and readable */
  .nh-logo__name {
    font-size: 15.2px !important;
  }
  .nh-logo__sub {
    font-size: 10px !important;
  }
  .nh-nav__link {
    font-size: 14px !important;
  }

  :root {
    --container-xl: 1080px; /* Reduces container width to create side margins */
    --container-lg: 920px;
  }

  .container {
    max-width: 1080px !important;
    padding-inline: 3.5rem !important; /* Generates spacious side margins */
  }

  .hv4-container {
    max-width: 1080px !important;
    padding-inline: 3.5rem !important;
  }

  .cm-hero__inner {
    max-width: 1080px !important;
    padding-inline: 3.5rem !important;
  }

  .hero2__inner {
    max-width: 1080px !important;
    padding-inline: 3.5rem !important; /* Ensures the second hero slide is also constrained with margins */
  }
}

/* Scale down layout for tablets & small laptops (901px to 1024px) — fills the gap between mobile (≤900px) and 14-inch (≥1025px) */
@media (min-width: 901px) and (max-width: 1024px) {
  html {
    font-size: 82%; /* Scales down all content proportionally for this viewport range */
  }

  /* Keep header fonts readable */
  .nh-logo__name {
    font-size: 14px !important;
  }
  .nh-logo__sub {
    font-size: 9px !important;
  }
  .nh-nav__link {
    font-size: 12.5px !important;
  }

  /* Constrain containers so content doesn't stretch edge-to-edge */
  .container,
  .hv4-container,
  .cm-hero__inner,
  .hero2__inner {
    max-width: 920px !important;
    padding-inline: 2rem !important;
    box-sizing: border-box !important;
  }

  /* Hero section: switch to single column since screen is too narrow for 2-col grid */
  .hv4-container {
    grid-template-columns: 1fr !important;
  }
  .cm-hero__inner {
    grid-template-columns: 1fr !important;
  }

  /* Hide the camera image on compact screens */
  .hv4-camera,
  .cm-hero__camera {
    display: none !important;
  }

  /* Hero right section (stat cards) → 2 column grid */
  .hv4-right,
  .cm-hero__right {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0.75rem !important;
  }

  /* Service grid → 2 columns */
  .ns-srv-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.75rem !important;
  }

  /* Footer grid → 2 columns */
  .footer-grid,
  .ns-footer__top {
    grid-template-columns: 1fr 1fr !important;
    gap: 1.5rem !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   COMPREHENSIVE MOBILE RESPONSIVE OVERRIDES
   Covers all phone sizes: 768px → 640px → 480px → 414px → 375px → 360px → 320px
   =================================================================== */

/* ── All Phones & Small Tablets (≤768px) ── */
@media (max-width: 768px) {
  html {
    font-size: 93.75%; /* 15px base — slightly smaller than desktop 16px */
  }

  /* Prevent horizontal overflow on all phone browsers */
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }

  /* Constrain all containers */
  .container,
  [class*="__inner"],
  .hv4-container,
  .cm-hero__inner,
  .hero2__inner {
    max-width: 100% !important;
    padding-inline: 1.25rem !important;
    box-sizing: border-box !important;
  }

  /* Section padding */
  section,
  .ns-about,
  .ns-services,
  .ns-strengths,
  .ns-clients,
  .sol2-section {
    padding-inline: 1rem !important;
  }

  /* Footer mobile grid */
  .footer-grid,
  .ns-footer__top {
    grid-template-columns: 1fr 1fr !important;
    gap: 1.5rem !important;
  }

  /* Hide the large curved footer wave on phone screens to remove the empty space */
  .ns-footer__wave {
    display: none !important;
  }

  /* Section titles */
  .ns-section-tag {
    font-size: 0.65rem !important;
  }

  .ns-section-title {
    font-size: 1.5rem !important;
  }

  .ns-section-sub {
    font-size: 0.85rem !important;
  }

  /* Service cards grid */
  .ns-srv-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.75rem !important;
  }

  /* Solutions grid */
  .ns-sol-list {
    grid-template-columns: 1fr !important;
    gap: 0.6rem !important;
  }

  /* Strengths grid */
  .ns-str-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  /* Client stats */
  .ns-client-stats {
    flex-wrap: wrap !important;
    gap: 1rem !important;
  }

  /* Image cards */
  img {
    max-width: 100% !important;
    height: auto !important;
  }

  /* Footer logo & branding adjustments for mobile */
  .ns-footer__logo img {
    height: 30px !important; /* Smaller logo image on mobile */
  }

  .ns-footer__logo span {
    font-size: 0.9rem !important; /* Smaller text size */
  }

  .ns-footer__brand p {
    font-size: 0.78rem !important;
    max-width: 100% !important; /* Allow it to span full width */
    margin-top: 0.6rem !important;
    margin-inline: auto !important; /* Center paragraph text */
  }

  /* Center-align footer columns & elements on mobile for balanced symmetry */
  .ns-footer {
    text-align: center !important;
    padding: 2.5rem 0 1.5rem !important;
  }

  .ns-footer__logo {
    justify-content: center !important;
  }

  .ns-footer__socials {
    justify-content: center !important;
  }

  .ns-footer__col h4 {
    text-align: center !important;
  }

  .ns-footer__col h4::after {
    left: 50% !important;
    transform: translateX(-50%) !important; /* Centers the underline decorative line */
  }

  /* Clients Section overrides */
  .ns-clients {
    padding: 0 0 3rem !important; /* Reduce massive bottom padding */
  }

  .ns-counters-strip {
    padding: 1.5rem 0 !important; /* Reduce vertical padding */
    margin-bottom: 2rem !important; /* Reduce massive margin bottom */
  }

  .ns-ctr-item {
    padding: 0.5rem 1rem !important; /* Reduce massive padding */
    gap: 0.5rem !important;
    justify-content: center !important;
  }

  .ns-ctr-item > i {
    font-size: 1.4rem !important; /* Scale down icon size */
  }

  .ns-ctr-num {
    font-size: 1.4rem !important; /* Scale down number size */
  }

  .ns-ctr-lbl {
    font-size: 0.7rem !important;
  }

  .ns-ctr-sep {
    display: none !important; /* Hide vertical separators on mobile */
  }

  /* Premium unified glassmorphic style for logo cards on mobile */
  .ns-logo-card {
    width: 62px !important; /* Scaled down so 5 cards fit on a 360px screen */
    height: 40px !important;
    padding: 0.2rem 0.4rem !important;
    border-radius: 0.75rem !important; /* Increased curve for a more rounded premium look */
    background: var(--bg-surface) !important; /* Adapt background theme color */
    border: 1px solid var(--border-light) !important; /* Subtle border matching theme */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05) !important;
  }
  
  .ns-logo-card::before,
  .ns-logo-card::after {
    border-radius: 0.75rem !important;
  }

  /* Cohesive grayscale filters for logos to look clean and integrated */
  .ns-logo-card img {
    max-height: 20px !important; /* Compact logo images inside small cards */
    filter: grayscale(1) opacity(0.7) !important; /* Unified look in light mode */
  }

  /* Pure white/translucent logos in dark mode for premium visibility on dark backgrounds */
  [data-theme="dark"] .ns-logo-card img {
    filter: brightness(0) invert(1) opacity(0.7) !important;
  }

  .ns-marquee-track {
    gap: 0.5rem !important; /* Smaller gaps to fit 5 cards side-by-side */
  }
}

/* ── Standard Phones (≤640px) ── */
@media (max-width: 640px) {
  html {
    font-size: 87.5%; /* 14px base */
  }

  .container,
  [class*="__inner"],
  .hv4-container,
  .cm-hero__inner,
  .hero2__inner {
    padding-inline: 1rem !important;
  }

  /* Footer stacks to single column */
  .footer-grid,
  .ns-footer__top {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  /* Service cards to single column */
  .ns-srv-grid {
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
  }

  /* Hero buttons stack */
  .cm-hero__btns,
  .hero2__cta-row,
  .hv4-cta-row {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .cm-btn,
  .hero2__cta-btn,
  .hv4-btn {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
  }

  /* Hero stats bar wrap */
  .cm-hero__stats,
  .hero2__stats-bar,
  .hv4-stats-row {
    flex-wrap: wrap !important;
    gap: 0.5rem !important;
  }

  .cm-stat,
  .hv4-stat {
    flex: 0 0 calc(50% - 0.25rem) !important;
    padding: 0 !important;
  }

  .cm-stat__sep,
  .hv4-stat-sep {
    display: none !important;
  }

  /* Inner page hero */
  .ip-hero {
    padding: 90px 1rem 40px !important;
    min-height: 30vh !important;
  }

  .ip-hero h1 {
    font-size: 1.6rem !important;
  }

  /* About page */
  .ab-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .ab-founder-card {
    padding: 1.5rem !important;
    border-radius: 1.5rem !important;
  }

  /* Service inner page */
  .ip-overview {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .ip-cards-grid {
    grid-template-columns: 1fr !important;
  }

  /* State / Reach grid */
  .st-row {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .st-row:nth-child(even) {
    direction: ltr !important;
  }
}

/* ── Compact Phones — iPhone SE, Galaxy S series (≤480px) ── */
@media (max-width: 480px) {
  html {
    font-size: 81.25%; /* 13px base */
  }

  .container,
  [class*="__inner"],
  .hv4-container,
  .cm-hero__inner,
  .hero2__inner {
    padding-inline: 0.85rem !important;
  }

  /* Section titles even smaller */
  .ns-section-title {
    font-size: 1.3rem !important;
    line-height: 1.25 !important;
  }

  /* Hero title adjustments */
  .hv4-title,
  .cm-hero__title {
    font-size: 1.5rem !important;
    line-height: 1.2 !important;
  }

  .hero2__title {
    font-size: clamp(1.3rem, 7vw, 1.8rem) !important;
  }

  /* Feature icon items */
  .hero2__feat-icon,
  .hv4-feature-icon {
    width: 32px !important;
    height: 32px !important;
    font-size: 0.8rem !important;
  }

  .hero2__feat span {
    font-size: 0.48rem !important;
  }

  /* Footer content */
  .ns-footer {
    padding: 2rem 0.85rem !important;
  }

  .ns-footer__top,
  .ns-footer-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  /* FAB floating button */
  .fab-container,
  .speed-dial {
    bottom: 30px !important; /* Raised to 30px on mobile screens */
    right: 20px !important; /* Shifted leftward on mobile */
  }

  .fab-main,
  .speed-dial__trigger {
    width: 46px !important;
    height: 46px !important;
    font-size: 1rem !important;
    border-radius: 50% !important; /* Force circle shape */
  }

  .ai-float-btn {
    bottom: 30px !important; /* Raised to 30px on mobile screens */
    right: 76px !important; /* Shifted to the left of the speed dial button: 20px margin + 46px button + 10px gap */
    left: auto !important;
    width: 46px !important;
    height: 46px !important;
    border-radius: 50% !important; /* Force circle shape to match speed dial trigger */
  }

  .fab-main i,
  .speed-dial__trigger i {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
  }

  /* About stats */
  .ab-stats-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.75rem !important;
  }

  .ab-stat-card {
    padding: 1.25rem 0.75rem !important;
    border-radius: 1rem !important;
  }

  .ab-stat-number {
    font-size: 1.6rem !important;
  }

  /* Tab buttons */
  .ab-tab-btn {
    padding: 0.6rem 1.2rem !important;
    font-size: 0.78rem !important;
  }

  /* Certificate grid */
  .ab-cert-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  /* Inner page stats */
  .ip-stats-row {
    flex-direction: column !important;
    gap: 1rem !important;
  }

  .ip-stat-sep {
    width: 50px !important;
    height: 1px !important;
  }

  /* CTA banner */
  .ip-cta-banner {
    flex-direction: column !important;
    text-align: center !important;
    padding: 1.5rem 1rem !important;
    gap: 1rem !important;
  }
}

/* ── Small Phones — iPhone Mini, Galaxy A series (≤414px) ── */
@media (max-width: 414px) {
  html {
    font-size: 78.125%; /* 12.5px base */
  }

  .hv4-title,
  .cm-hero__title {
    font-size: 1.35rem !important;
  }

  .ns-section-title {
    font-size: 1.2rem !important;
  }

  /* Service cards even more compact */
  .ns-srv-card {
    padding: 1rem !important;
    border-radius: 0.85rem !important;
  }

  /* Footer branding */
  .ns-footer__brand p {
    font-size: 0.74rem !important;
  }
}

/* ── Extra Small Phones — iPhone SE 1st gen, budget phones (≤375px) ── */
@media (max-width: 375px) {
  html {
    font-size: 75%; /* 12px base */
  }

  .container,
  [class*="__inner"],
  .hv4-container,
  .cm-hero__inner,
  .hero2__inner {
    padding-inline: 0.75rem !important;
  }

  .hv4-title,
  .cm-hero__title {
    font-size: 1.25rem !important;
  }

  /* About stats single column */
  .ab-stats-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ── Tiny Phones — very old/budget devices (≤320px) ── */
@media (max-width: 320px) {
  html {
    font-size: 68.75%; /* 11px base */
  }

  .container,
  [class*="__inner"],
  .hv4-container {
    padding-inline: 0.5rem !important;
  }

  .hv4-title,
  .cm-hero__title {
    font-size: 1.15rem !important;
  }

  .ns-section-title {
    font-size: 1.1rem !important;
  }
}

html, body {
  overflow-x: hidden !important;
  max-width: 100% !important;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--text-primary);
  background-image: radial-gradient(circle at 50% -20%, rgba(95, 91, 246, 0.06) 0%, rgba(6, 182, 212, 0.03) 50%, #f8fafc 80%) !important;
  background-attachment: fixed !important;
  background-color: #f8fafc !important;
  transition: background var(--transition-slow), color var(--transition-slow);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ── Typography ─────────────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, var(--text-6xl));
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4vw, var(--text-5xl));
  font-weight: 800;
}

h3 {
  font-size: clamp(1.5rem, 2.5vw, var(--text-3xl));
  font-weight: 700;
}

h4 {
  font-size: var(--text-xl);
  font-weight: 600;
}

.text-gradient {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-warm {
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-cool {
  background: var(--gradient-cool);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Container ──────────────────────────────────────────────────── */
.container {
  max-width: var(--container-xl);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

/* ── Section ────────────────────────────────────────────────────── */
.section {
  padding-block: var(--space-20);
}

.section-head {
  margin-bottom: var(--space-12);
  text-align: center;
}

.section-top-title {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-primary);
  position: relative;
  padding-bottom: var(--space-2);
}

.title-underline {
  width: 60px;
  height: 3px;
  margin: var(--space-2) auto 0;
  background: var(--gradient-brand);
  border-radius: var(--radius-full);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: 600px;
  margin-inline: auto;
}

.section-header-center {
  text-align: center;
}

/* ── Buttons ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.01em;
  transition: all var(--transition-base);
  cursor: pointer;
  white-space: nowrap;
  border: none;
  outline: none;
}

.btn-primary {
  background: var(--gradient-brand);
  color: var(--text-inverse);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: var(--bg-surface);
  color: var(--text-primary);
  border: 2px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid transparent;
}

.btn-ghost:hover {
  background: var(--bg-secondary);
  color: var(--brand-primary);
}

.btn-accent {
  background: var(--gradient-cool);
  color: var(--text-inverse);
  box-shadow: var(--shadow-lg), var(--shadow-glow-accent);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl), var(--shadow-glow-accent);
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
}

.btn-sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-xs);
}

.btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: var(--radius-lg);
}

/* ═══════════════════════════════════════════════════════════════════
   HEADER / NAVIGATION - NEW DESIGN SYSTEM
═══════════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-fixed);
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid var(--border-dark);
  transition: all var(--transition-slow);
}

body[data-theme="light"] .site-header {
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.site-header.scrolled {
  background: rgba(15, 23, 42, 0.95);
  box-shadow: var(--shadow-lg);
}

body[data-theme="light"] .site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  text-decoration: none;
  z-index: 10;
}

.logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition-base);
}

.logo:hover img {
  transform: scale(1.05);
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.brand-name {
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-sub {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--brand-primary);
  letter-spacing: 0.05em;
  line-height: 1;
}

.brand-desc {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1;
}

/* Logo mode switching */
.logo-light {
  display: block;
}

.logo-dark {
  display: none;
}

[data-theme="dark"] .logo-light {
  display: none;
}

[data-theme="dark"] .logo-dark {
  display: block;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.nav-menu a {
  display: block;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-xl);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-secondary-dark);
  transition: all var(--transition-base);
  position: relative;
}

body[data-theme="light"] .nav-menu a {
  color: var(--text-secondary);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 2px;
  background: var(--gradient-brand);
  border-radius: var(--radius-full);
  transition: transform var(--transition-base);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-menu a:hover {
  color: var(--brand-primary);
  background: var(--bg-secondary-dark);
}

body[data-theme="light"] .nav-menu a:hover {
  background: var(--bg-secondary);
  color: var(--brand-primary);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-xl);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-secondary-dark);
  cursor: pointer;
  transition: all var(--transition-base);
  background: none;
  border: none;
}

body[data-theme="light"] .nav-dropdown-toggle {
  color: var(--text-secondary);
}

.nav-dropdown-toggle:hover {
  color: var(--brand-primary);
  background: var(--bg-secondary-dark);
}

body[data-theme="light"] .nav-dropdown-toggle:hover {
  background: var(--bg-secondary);
  color: var(--brand-primary);
}

.nav-dropdown-arrow {
  font-size: var(--text-xs);
  transition: transform var(--transition-base);
}

.nav-dropdown.open .nav-dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + var(--space-2));
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: var(--bg-primary-dark);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-2xl);
  min-width: 220px;
  padding: var(--space-3);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-xl);
}

body[data-theme="light"] .nav-dropdown-menu {
  background: var(--bg-primary);
  border-color: var(--border-light);
  box-shadow: var(--shadow-lg);
}

.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu li a {
  display: block;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-xl);
  color: var(--text-secondary-dark);
  font-size: var(--text-sm);
  font-weight: 500;
  transition: all var(--transition-base);
}

body[data-theme="light"] .nav-dropdown-menu li a {
  color: var(--text-secondary);
}

.nav-dropdown-menu li a:hover {
  background: var(--gradient-brand);
  color: var(--text-inverse);
  padding-left: var(--space-5);
  transform: translateX(4px);
}

.nav-dropdown-menu li a::after {
  display: none;
}

/* ── Header Actions Area ── */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-left: var(--space-2);
}

/* Phone Support */
.header-phone {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--text-primary-dark);
  transition: all var(--transition-base);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-xl);
  background: var(--bg-secondary-dark);
  border: 1px solid var(--border-dark);
}

body[data-theme="light"] .header-phone {
  color: var(--text-primary);
  background: var(--bg-secondary);
  border-color: var(--border-light);
}

.header-phone:hover {
  background: var(--gradient-brand);
  border-color: transparent;
  color: var(--text-inverse);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}

.header-phone i {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(99, 102, 241, 0.15));
  border: 1px solid rgba(6, 182, 212, 0.25);
  color: var(--brand-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  transition: all var(--transition-base);
}

body[data-theme="light"] .header-phone i {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
  border-color: rgba(99, 102, 241, 0.2);
  color: var(--brand-primary);
}

.header-phone:hover i {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--text-inverse);
}

.header-phone__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.header-phone__text span {
  font-size: var(--text-sm);
  font-weight: 700;
  white-space: nowrap;
}

.header-phone__text small {
  font-size: var(--text-xs);
  color: var(--text-tertiary-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

body[data-theme="light"] .header-phone__text small {
  color: var(--text-tertiary);
}

.header-phone:hover .header-phone__text small {
  color: rgba(255, 255, 255, 0.8);
}

/* Theme Toggle Slider */
.theme-toggle {
  position: relative;
  width: 56px;
  height: 28px;
  border-radius: var(--radius-full);
  background: var(--bg-tertiary-dark);
  border: 2px solid var(--border-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-2);
  box-sizing: border-box;
  transition: all var(--transition-base);
}

body[data-theme="light"] .theme-toggle {
  background: var(--bg-tertiary);
  border-color: var(--border-light);
}

.theme-toggle::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--text-tertiary-dark);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base);
}

body[data-theme="light"] .theme-toggle::after {
  background: var(--text-tertiary);
}

[data-theme="dark"] .theme-toggle::after {
  transform: translateX(28px);
  background: var(--brand-primary);
}

.theme-toggle i {
  font-size: var(--text-xs);
  z-index: 1;
  width: 16px;
  text-align: center;
}

.theme-toggle .icon-sun {
  color: var(--brand-warning);
  margin-left: 1px;
}

.theme-toggle .icon-moon {
  color: var(--text-tertiary-dark);
  margin-right: 1px;
}

body[data-theme="light"] .theme-toggle .icon-sun {
  color: var(--brand-warning);
}

body[data-theme="light"] .theme-toggle .icon-moon {
  color: var(--text-tertiary);
}

[data-theme="dark"] .theme-toggle .icon-sun {
  color: var(--text-tertiary-dark);
}

[data-theme="dark"] .theme-toggle .icon-moon {
  color: var(--brand-primary);
}

.icon-sun,
.icon-moon {
  display: inline-block !important;
}

/* Get a Quote Button */
.header-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-xl);
  background: var(--gradient-brand);
  color: var(--text-inverse);
  font-size: var(--text-sm);
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--shadow-md), var(--shadow-glow);
  transition: all var(--transition-base);
  white-space: nowrap;
  border: none;
}

.header-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.header-btn i {
  font-size: var(--text-xs);
  transition: transform var(--transition-base);
}

.header-btn:hover i {
  transform: translateX(4px);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: all var(--transition);
}

.bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}

body[data-theme="light"] .bar {
  background: var(--clr-text);
}

/* ═══════════════════════════════════════════════════════════════════
   HERO SECTION — Premium Dark/Light Mode with Animations
═══════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-h);
}

/* Background Layer */
.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  transition: opacity 0.6s ease;
}

/* Dark mode = dark image visible */
.hero-bg-dark {
  opacity: 1;
}

.hero-bg-light {
  opacity: 0;
}

/* Light mode = light image visible */
body[data-theme="light"] .hero-bg-dark {
  opacity: 0;
}

body[data-theme="light"] .hero-bg-light {
  opacity: 1;
}

/* Hero Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(5, 13, 26, 0.88) 0%,
      rgba(5, 13, 26, 0.70) 40%,
      rgba(5, 13, 26, 0.15) 70%,
      transparent 100%);
  transition: background var(--transition-slow);
}

body[data-theme="light"] .hero-overlay {
  background: linear-gradient(105deg,
      rgba(240, 244, 255, 0.92) 0%,
      rgba(240, 244, 255, 0.75) 40%,
      rgba(240, 244, 255, 0.20) 70%,
      transparent 100%);
}

/* Animated Particle Canvas */
.hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.7;
}

/* 3D Floating Shapes */
.hero-3d-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  animation: floatShape 8s ease-in-out infinite;
}

.hero-shape-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #1a4fd6, transparent);
  top: -100px;
  right: 20%;
  animation-delay: 0s;
  animation-duration: 10s;
}

.hero-shape-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #00c2ff, transparent);
  bottom: 10%;
  left: 10%;
  animation-delay: -3s;
  animation-duration: 8s;
}

.hero-shape-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, #7c3aed, transparent);
  top: 50%;
  right: 5%;
  animation-delay: -5s;
  animation-duration: 12s;
}

body[data-theme="light"] .hero-shape {
  opacity: 0.08;
}

@keyframes floatShape {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(20px, -15px) scale(1.05);
  }

  66% {
    transform: translate(-15px, 10px) scale(0.95);
  }
}

/* Hero Inner */
.hero-inner {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  min-height: calc(100vh - var(--header-h));
  padding-block: var(--sp-20);
}

/* Hero Content */
.hero-content {
  max-width: 680px;
  animation: heroFadeIn 1s ease both;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.4rem 1rem;
  background: rgba(0, 194, 255, 0.12);
  border: 1px solid rgba(0, 194, 255, 0.3);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: var(--sp-5);
  backdrop-filter: blur(6px);
  animation: heroFadeIn 1s 0.1s ease both;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clr-accent);
  box-shadow: 0 0 8px var(--clr-accent);
  animation: pulse 2s infinite;
}

body[data-theme="light"] .hero-badge {
  background: rgba(26, 79, 214, 0.08);
  border-color: rgba(26, 79, 214, 0.2);
  color: var(--clr-primary-600);
}

body[data-theme="light"] .hero-badge::before {
  background: var(--clr-primary-600);
  box-shadow: none;
}

/* Hero Title */
.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: var(--sp-5);
  letter-spacing: -1px;
  animation: heroFadeIn 1s 0.2s ease both;
}

body[data-theme="light"] .hero-title {
  color: var(--clr-primary-900);
}

.hero-title .highlight {
  background: linear-gradient(135deg, #00c2ff, #1a4fd6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero Subtitle */
.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255, 255, 255, 0.75);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: var(--sp-8);
  animation: heroFadeIn 1s 0.3s ease both;
}

body[data-theme="light"] .hero-subtitle {
  color: var(--clr-text-2);
}

/* Hero Features / Badges */
.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-bottom: var(--sp-8);
  animation: heroFadeIn 1s 0.4s ease both;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  transition: all var(--transition);
}

.hero-feature:hover {
  background: rgba(26, 79, 214, 0.25);
  border-color: var(--clr-accent);
  transform: translateY(-2px);
}

.hero-feature i {
  color: var(--clr-accent);
  font-size: 0.9rem;
}

body[data-theme="light"] .hero-feature {
  background: rgba(26, 79, 214, 0.06);
  border-color: rgba(26, 79, 214, 0.15);
  color: var(--clr-text);
}

body[data-theme="light"] .hero-feature:hover {
  background: rgba(26, 79, 214, 0.12);
  border-color: var(--clr-primary-600);
}

/* Hero CTA Buttons */
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  animation: heroFadeIn 1s 0.5s ease both;
}

/* Live Stats Widget */
.hero-stats-widget {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: var(--sp-6);
  background: rgba(5, 13, 26, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--sp-4) var(--sp-8);
  animation: heroFadeIn 1s 0.8s ease both;
}

body[data-theme="light"] .hero-stats-widget {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(26, 79, 214, 0.15);
  box-shadow: var(--shadow-md);
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
}

.hero-stat-item .stat-val {
  font-size: var(--fs-xl);
  font-weight: 800;
  color: var(--clr-accent);
  letter-spacing: -0.5px;
}

body[data-theme="light"] .hero-stat-item .stat-val {
  color: var(--clr-primary-600);
}

.hero-stat-item .stat-lbl {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

body[data-theme="light"] .hero-stat-item .stat-lbl {
  color: var(--clr-muted);
}

.hero-stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
  align-self: stretch;
}

body[data-theme="light"] .hero-stat-divider {
  background: rgba(26, 79, 214, 0.12);
}

/* Live Indicator */
.hero-live-indicator {
  position: absolute;
  top: var(--sp-6);
  right: var(--sp-6);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.4rem 0.9rem;
  background: rgba(5, 13, 26, 0.7);
  border: 1px solid rgba(0, 194, 255, 0.25);
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  animation: heroFadeIn 1s 0.9s ease both;
}

body[data-theme="light"] .hero-live-indicator {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(26, 79, 214, 0.2);
  color: var(--clr-text-2);
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: pulse 1.5s infinite;
}

/* Scroll Cue */
.hero-scroll-cue {
  position: absolute;
  bottom: var(--sp-6);
  right: var(--sp-6);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-1);
  color: rgba(255, 255, 255, 0.4);
  font-size: var(--fs-xs);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  animation: heroFadeIn 1s 1s ease both;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(0, 194, 255, 0.8), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* Pulse Animation */
@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

/* ═══════════════════════════════════════════════════════════════════
   PRELOADER
═══════════════════════════════════════════════════════════════════ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--clr-primary-900);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader-container {
  position: relative;
  width: 80px;
  height: 80px;
}

.loader-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  animation: loaderSpin 1.5s linear infinite;
}

.loader-ring:nth-child(1) {
  border-top-color: var(--clr-accent);
  animation-duration: 1.5s;
}

.loader-ring:nth-child(2) {
  border-right-color: var(--clr-primary-600);
  animation-duration: 1.8s;
  animation-direction: reverse;
  inset: 8px;
}

.loader-ring:nth-child(3) {
  border-bottom-color: #7c3aed;
  animation-duration: 2.1s;
  inset: 16px;
}

.loader-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #fff;
}

.loader-text span {
  color: var(--clr-accent);
}

@keyframes loaderSpin {
  to {
    transform: rotate(360deg);
  }
}

/* ═══════════════════════════════════════════════════════════════════
   ABOUT SECTION (Bento Grid)
═══════════════════════════════════════════════════════════════════ */
.about-premium {
  position: relative;
  overflow: hidden;
}

.about-bg-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.about-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.06;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: var(--clr-primary-600);
  top: -100px;
  right: -100px;
  animation: floatShape 12s ease-in-out infinite;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: var(--clr-accent);
  bottom: -50px;
  left: -50px;
  animation: floatShape 15s ease-in-out infinite reverse;
}

.about-section-head {
  text-align: center;
  margin-bottom: var(--sp-6);
}

.about-header-v7 {
  text-align: center;
  margin-bottom: var(--sp-12);
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(26, 79, 214, 0.1);
  border: 1px solid rgba(26, 79, 214, 0.2);
  color: var(--clr-primary-600);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
}

[data-theme="dark"] .about-badge {
  background: rgba(0, 194, 255, 0.1);
  border-color: rgba(0, 194, 255, 0.2);
  color: var(--clr-accent);
}

.about-heading-v7 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--clr-primary-800);
  margin-bottom: var(--sp-4);
  letter-spacing: -0.5px;
}

[data-theme="dark"] .about-heading-v7 {
  color: var(--clr-text);
}

.about-lead-v7 {
  font-size: var(--fs-lg);
  color: var(--clr-muted);
  max-width: 700px;
  margin-inline: auto;
  line-height: 1.7;
}

/* Bento Grid */
.about-bento-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 1.5rem;
  margin-bottom: var(--sp-12);
}

.bento-cell {
  background: var(--clr-page-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-slow);
}

.bento-cell:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(26, 79, 214, 0.25);
}

.bento-inner {
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.sticky-glass {
  background: linear-gradient(135deg, rgba(26, 79, 214, 0.08), rgba(0, 194, 255, 0.05));
}

/* Metrics */
.about-metrics-v7 {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.metric-v7 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.m-val {
  font-size: 2rem;
  font-weight: 900;
  color: var(--clr-primary-600);
  letter-spacing: -1px;
  line-height: 1;
}

[data-theme="dark"] .m-val {
  color: var(--clr-accent);
}

.m-lab {
  font-size: var(--fs-xs);
  color: var(--clr-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bento-text h3 {
  font-size: var(--fs-lg);
  font-weight: 700;
  margin-bottom: var(--sp-2);
}

.bento-text p {
  font-size: var(--fs-sm);
  color: var(--clr-muted);
  line-height: 1.6;
}

/* Pillars */
.pillar-v7 {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  transition: all var(--transition);
}

.pillar-v7:hover {
  border-color: var(--clr-primary-600);
  transform: translateX(4px);
}

.p-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-primary);
  border-radius: var(--radius-md);
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.p-info h4 {
  font-size: var(--fs-sm);
  font-weight: 700;
}

.p-info p {
  font-size: 0.78rem;
  color: var(--clr-muted);
}

/* Aside */
.aside-media-v7 img {
  width: 80px;
  height: auto;
  margin-bottom: var(--sp-3);
}

.aside-desc {
  font-size: var(--fs-sm);
  color: var(--clr-muted);
  line-height: 1.65;
}

.aside-checklist-v7 li {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  font-weight: 500;
  padding: 0.4rem 0;
  color: var(--clr-text-2);
}

.aside-checklist-v7 li i {
  color: var(--clr-accent);
  font-size: 0.85rem;
}

.aside-footer-v7 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: var(--sp-4);
  border-top: 1px solid var(--clr-border);
}

.signature-v7 strong {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 700;
}

.signature-v7 span {
  font-size: var(--fs-xs);
  color: var(--clr-muted);
}

.cta-link-v7 {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-primary);
  border-radius: 50%;
  color: #fff;
  font-size: var(--fs-sm);
  transition: all var(--transition);
  box-shadow: 0 4px 12px rgba(26, 79, 214, 0.4);
}

.cta-link-v7:hover {
  transform: translateX(3px);
}

/* Timeline */
.about-milestones-v8 {
  display: flex;
  gap: 0;
  position: relative;
  padding: 2rem 0;
  overflow-x: auto;
}

.m-track {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--clr-primary-600), var(--clr-accent));
  transform: translateY(-50%);
  opacity: 0.3;
}

.m-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  flex: 1;
  min-width: 180px;
  position: relative;
  cursor: default;
}

.m-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--clr-surface);
  border: 2px solid var(--clr-primary-600);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.dot-inner {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clr-primary-600);
}

.dot-inner.pulse {
  background: var(--clr-accent);
  animation: pulse 1.5s infinite;
}

.m-card.active .m-dot {
  border-color: var(--clr-accent);
  box-shadow: 0 0 16px rgba(0, 194, 255, 0.4);
}

.m-box {
  background: var(--clr-page-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  text-align: center;
  position: relative;
  transition: all var(--transition);
  width: 90%;
}

.m-card.active .m-box {
  border-color: rgba(0, 194, 255, 0.3);
  box-shadow: 0 4px 20px rgba(0, 194, 255, 0.15);
}

.m-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.m-year {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--clr-accent);
  text-transform: uppercase;
}

.m-box h4 {
  font-size: var(--fs-sm);
  font-weight: 700;
  margin: 0.3rem 0;
}

.m-box p {
  font-size: 0.78rem;
  color: var(--clr-muted);
}

.m-icon {
  font-size: 1.2rem;
  color: var(--clr-primary-600);
  margin-top: 0.5rem;
}

.m-badge-now {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--clr-accent);
  color: var(--clr-primary-900);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

/* ═══════════════════════════════════════════════════════════════════
   SERVICES SECTION
═══════════════════════════════════════════════════════════════════ */
.services-v2 {
  padding: 5rem 0;
}

.services-grid-premium {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 2rem;
}

.service-card-premium {
  background: var(--clr-page-bg);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--clr-border);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  display: flex;
  flex-direction: column;
}

.service-card-premium:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(26, 79, 214, 0.3);
}

.service-card-premium .card-img-wrap {
  height: 180px;
  overflow: hidden;
}

.service-card-premium .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card-premium:hover .card-img-wrap img {
  transform: scale(1.08);
}

.service-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-primary-800);
  margin-bottom: 0.5rem;
}

[data-theme="dark"] .service-card-body h3 {
  color: var(--clr-text);
}

.service-card-body p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--clr-muted);
  margin-bottom: 1.2rem;
  flex: 1;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--clr-primary-600);
  transition: gap var(--transition);
}

.service-card-link:hover {
  gap: 0.8rem;
}

/* Stretched link */
.stretched-link::after {
  content: '';
  position: absolute;
  inset: 0;
}

/* ═══════════════════════════════════════════════════════════════════
   SOLUTIONS SECTION
═══════════════════════════════════════════════════════════════════ */
.solutions-v2 {
  padding: 5rem 0;
  background: var(--clr-surface);
  position: relative;
  overflow: hidden;
}

.solutions-container-v2 {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.solution-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.solution-row:nth-child(even) .solution-image-v2 {
  order: 2;
}

.solution-row:nth-child(even) .solution-content-v2 {
  order: 1;
}

.solution-image-v2 {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.solution-image-v2 img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.solution-image-v2:hover img {
  transform: scale(1.04);
}

.solution-content-v2 {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.solution-badge {
  display: inline-block;
  background: rgba(26, 79, 214, 0.1);
  color: var(--clr-primary-600);
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  width: fit-content;
}

.solution-content-v2 h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--clr-primary-800);
}

[data-theme="dark"] .solution-content-v2 h3 {
  color: var(--clr-text);
}

.solution-content-v2 p {
  color: var(--clr-muted);
  line-height: 1.7;
}

.solution-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.solution-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  background: var(--clr-page-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--clr-text-2);
}

.solution-list li i {
  color: var(--clr-primary-600);
}

/* ═══════════════════════════════════════════════════════════════════
   CLIENTS MARQUEE
═══════════════════════════════════════════════════════════════════ */
.multi-marquee {
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1rem 0;
}

.multi-marquee::before,
.multi-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.multi-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--clr-surface), transparent);
}

.multi-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--clr-surface), transparent);
}

.marquee-row {
  display: flex;
  gap: 1.5rem;
  width: max-content;
}

.marquee-left {
  animation: marqueeLeft 35s linear infinite;
}

.marquee-right {
  animation: marqueeRight 40s linear infinite;
}

.marquee-row:hover {
  animation-play-state: paused;
}

@keyframes marqueeLeft {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes marqueeRight {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.logo-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 75px;
  padding: 0.8rem 1.2rem;
  background: var(--clr-page-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  flex-shrink: 0;
  transition: all var(--transition);
  cursor: pointer;
}

.logo-pill:hover {
  border-color: var(--clr-primary-400);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.logo-pill img {
  max-width: 100%;
  max-height: 45px;
  object-fit: contain;
  filter: grayscale(0.3);
  transition: filter var(--transition);
}

.logo-pill:hover img {
  filter: grayscale(0);
}

/* ═══════════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════════ */
.site-footer {
  background: #050d1a;
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo-white {
  width: 60px;
  height: auto;
  margin-bottom: var(--sp-3);
}

.footer-column h4 {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--clr-accent);
  border-radius: 2px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
  margin-bottom: var(--sp-4);
}

.logo-link span {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.footer-brand-side p {
  font-size: var(--fs-sm);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-social-v2 {
  display: flex;
  gap: 0.75rem;
}

.footer-social-v2 a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.footer-social-v2 a:hover {
  background: var(--grad-primary);
  border-color: transparent;
  color: #fff;
  transform: translateY(-3px);
}

.footer-list li+li {
  margin-top: 0.6rem;
}

.footer-list a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition);
  padding: 0.1rem 0;
}

.footer-list a:hover {
  color: var(--clr-accent);
  padding-left: 4px;
}

.footer-list a i {
  font-size: 0.6rem;
}

.footer-contact-v2 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.f-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.f-contact-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 79, 214, 0.15);
  border-radius: var(--radius-md);
  color: var(--clr-accent);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.f-contact-info p {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.f-contact-info a {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition);
  word-break: break-word;
}

.f-contact-info a:hover {
  color: var(--clr-accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.4);
  flex-wrap: wrap;
  gap: var(--sp-3);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--clr-accent);
}

/* ═══════════════════════════════════════════════════════════════════
   FAB – Floating Action Button
═══════════════════════════════════════════════════════════════════ */
.fab-container {
  position: fixed;
  bottom: 40px !important; /* Raised higher on desktop */
  right: 35px !important; /* Shifted leftward on desktop */
  left: auto !important;
  z-index: 900;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: 12px;
}

.fab-main {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: #fff;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(26, 79, 214, 0.5);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.fab-main:hover {
  transform: scale(1.1) rotate(45deg);
  box-shadow: 0 12px 32px rgba(26, 79, 214, 0.65);
}

.fab-container.open .fab-main {
  transform: rotate(45deg);
}

.fab-list {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all var(--transition);
}

.fab-container.open .fab-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fab-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1rem 0.55rem 0.7rem;
  border-radius: var(--radius-full);
  background: var(--clr-primary-900);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  transition: all var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.fab-item i {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.9rem;
}

.fab-item.contact i {
  background: linear-gradient(135deg, #1a4fd6, #00c2ff);
}

.fab-item.email i {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
}

.fab-item.phone i {
  background: linear-gradient(135deg, #059669, #10b981);
}

.fab-item.whatsapp i {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.fab-item:hover {
  transform: translateX(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* ═══════════════════════════════════════════════════════════════════
   LIGHTBOX
═══════════════════════════════════════════════════════════════════ */
/* --- Light Mode (Default) Lightbox Styles --- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: #1f2937;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lightbox-close {
  top: 24px;
  right: 24px;
  z-index: 100001;
}

.lightbox-prev {
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100001;
}

.lightbox-next {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100001;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--brand-primary, #5f5bf6);
  border-color: transparent;
  color: #fff;
  transform: scale(1.1);
}

.lightbox-prev:hover {
  transform: translateY(-50%) scale(1.1);
}

.lightbox-next:hover {
  transform: translateY(-50%) scale(1.1);
}

.lightbox-content {
  max-width: min(500px, 85vw);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: scale(0.96);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.open .lightbox-content {
  transform: scale(1);
}

.lightbox-image-container {
  position: relative;
  border-radius: 16px;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3),
    0 0 45px rgba(95, 91, 246, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lightbox-image {
  max-width: 100%;
  max-height: 52vh;
  object-fit: contain;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.lightbox-info {
  margin-top: 1.25rem;
  text-align: center;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0.6rem 1.2rem;
  border-radius: 99px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  display: inline-flex;
  gap: 0.8rem;
  align-items: center;
}

.lightbox-counter {
  color: var(--brand-primary, #5f5bf6);
  font-weight: 700;
  font-size: 0.8rem;
}

.lightbox-title {
  color: #1f2937;
  font-weight: 500;
  font-size: 0.85rem;
}

.lightbox-controls {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0.4rem;
  border-radius: 99px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.lightbox-zoom-in,
.lightbox-zoom-out,
.lightbox-reset {
  width: 38px;
  height: 38px;
  background: transparent;
  border: none;
  color: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.9rem;
}

.lightbox-zoom-in:hover,
.lightbox-zoom-out:hover,
.lightbox-reset:hover {
  background: rgba(0, 0, 0, 0.08);
  color: #000;
}

/* --- Dark Mode Lightbox Styles --- */
[data-theme="dark"] .lightbox {
  background: rgba(1, 4, 9, 0.95);
}

[data-theme="dark"] .lightbox-close,
[data-theme="dark"] .lightbox-prev,
[data-theme="dark"] .lightbox-next {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .lightbox-close:hover,
[data-theme="dark"] .lightbox-prev:hover,
[data-theme="dark"] .lightbox-next:hover {
  background: var(--brand-primary, #5f5bf6);
  color: #fff;
}

[data-theme="dark"] .lightbox-image-container {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(95, 91, 246, 0.2);
}

[data-theme="dark"] .lightbox-info {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .lightbox-counter {
  color: var(--brand-accent, #06b6d4);
}

[data-theme="dark"] .lightbox-title {
  color: #fff;
}

[data-theme="dark"] .lightbox-controls {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .lightbox-zoom-in,
[data-theme="dark"] .lightbox-zoom-out,
[data-theme="dark"] .lightbox-reset {
  color: rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .lightbox-zoom-in:hover,
[data-theme="dark"] .lightbox-zoom-out:hover,
[data-theme="dark"] .lightbox-reset:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

/* ═══════════════════════════════════════════════════════════════════
   AOS OVERRIDE / UTILITIES
═══════════════════════════════════════════════════════════════════ */
[data-aos] {
  will-change: transform, opacity;
}

.count-num {
  display: inline-block;
}

.hero:not(.loaded) .hero-content {
  opacity: 0;
  transform: translateY(20px);
}

.hero.loaded .hero-content {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* ═══════════════════════════════════════════════════════════════════
   HERO V4 — EXACT MATCH DESIGN (Reference Screenshot)
   Dark/Light Mode | Left text | Right widgets | Globe BG
═══════════════════════════════════════════════════════════════════ */

/* Section wrapper */
.hero-v4 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-h);
  font-family: var(--font-body);
}

/* ── Background ── */
.hv4-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hv4-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: opacity 0.6s ease;
}

/* Dark mode = dark image */
.hv4-bg-dark {
  opacity: 1;
}

.hv4-bg-light {
  opacity: 0;
}

body[data-theme="light"] .hv4-bg-dark {
  opacity: 0;
}

body[data-theme="light"] .hv4-bg-light {
  opacity: 1;
}

/* Canvas particles */
.hv4-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.65;
}

/* Overlay — dark mode: left-heavy gradient */
.hv4-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(110deg,
      rgba(5, 13, 26, 0.92) 0%,
      rgba(5, 13, 26, 0.80) 35%,
      rgba(5, 13, 26, 0.35) 60%,
      rgba(5, 13, 26, 0.10) 80%,
      transparent 100%);
  transition: background 0.5s ease;
}

body[data-theme="light"] .hv4-overlay {
  background: linear-gradient(110deg,
      rgba(245, 248, 255, 0.96) 0%,
      rgba(245, 248, 255, 0.85) 35%,
      rgba(245, 248, 255, 0.45) 60%,
      rgba(245, 248, 255, 0.15) 80%,
      transparent 100%);
}

/* ── CCTV Camera (floats top-right) ── */
.hv4-camera {
  position: absolute;
  top: calc(var(--header-h) + 10px);
  right: 280px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: camFloat 5s ease-in-out infinite;
  filter: drop-shadow(0 8px 24px rgba(0, 194, 255, 0.35));
}

body[data-theme="light"] .hv4-camera {
  filter: drop-shadow(0 8px 24px rgba(26, 79, 214, 0.25));
}

.hv4-camera img {
  width: 160px;
  height: auto;
  object-fit: contain;
}

.hv4-camera-label {
  background: rgba(0, 194, 255, 0.15);
  border: 1px solid rgba(0, 194, 255, 0.4);
  color: var(--clr-accent);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 3px;
  padding: 2px 10px;
  border-radius: var(--radius-full);
  margin-top: 4px;
}

@keyframes camFloat {

  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }

  50% {
    transform: translateY(-10px) rotate(2deg);
  }
}

/* ── Main Container Grid ── */
.hv4-container {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 2rem;
  min-height: calc(100vh - var(--header-h));
  padding-block: 3rem 5rem;
}

/* ── LEFT — Text Panel ── */
.hv4-left {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  max-width: 580px;
  animation: hv4FadeUp 0.8s 0.1s ease both;
}

@keyframes hv4FadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tag row */
.hv4-tag-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.hv4-tag {
  background: rgba(0, 194, 255, 0.12);
  border: 1px solid rgba(0, 194, 255, 0.3);
  color: var(--clr-accent);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

body[data-theme="light"] .hv4-tag {
  background: rgba(26, 79, 214, 0.08);
  border-color: rgba(26, 79, 214, 0.2);
  color: var(--clr-primary-600);
}

.hv4-dot-sep {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.75rem;
  font-weight: 700;
}

body[data-theme="light"] .hv4-dot-sep {
  color: rgba(26, 79, 214, 0.35);
}

/* Title */
.hv4-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -1px;
  color: #fff;
  margin: 0;
}

body[data-theme="light"] .hv4-title {
  color: var(--clr-primary-900);
}

.hv4-blue {
  background: linear-gradient(135deg, #1a4fd6, #00c2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Description */
.hv4-desc {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

body[data-theme="light"] .hv4-desc {
  color: var(--clr-text-2);
}

/* CTA Row */
.hv4-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.hv4-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.8rem;
  background: linear-gradient(135deg, #1a4fd6, #00c2ff);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(26, 79, 214, 0.5);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.hv4-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(26, 79, 214, 0.65);
  filter: brightness(1.1);
}

.hv4-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1.5rem;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  white-space: nowrap;
}

body[data-theme="light"] .hv4-btn-outline {
  border-color: rgba(26, 79, 214, 0.35);
  color: var(--clr-primary-700);
  background: rgba(26, 79, 214, 0.06);
}

.hv4-btn-outline:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

body[data-theme="light"] .hv4-btn-outline:hover {
  background: rgba(26, 79, 214, 0.1);
}

.hv4-play-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

body[data-theme="light"] .hv4-play-circle {
  background: rgba(26, 79, 214, 0.12);
  border-color: rgba(26, 79, 214, 0.2);
}

/* Stats Row */
.hv4-stats-row {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(5, 13, 26, 0.55);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1rem 1.4rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

body[data-theme="light"] .hv4-stats-row {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(26, 79, 214, 0.12);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.hv4-stat {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0 0.8rem;
}

.hv4-stat:first-child {
  padding-left: 0;
}

.hv4-stat:last-child {
  padding-right: 0;
}

.hv4-stat i {
  font-size: 1.2rem;
  color: var(--clr-accent);
  width: 22px;
  text-align: center;
}

body[data-theme="light"] .hv4-stat i {
  color: var(--clr-primary-600);
}

.hv4-stat div {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hv4-stat strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

body[data-theme="light"] .hv4-stat strong {
  color: var(--clr-primary-800);
}

.hv4-stat span {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  white-space: nowrap;
}

body[data-theme="light"] .hv4-stat span {
  color: var(--clr-muted);
}

.hv4-stat-sep {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

body[data-theme="light"] .hv4-stat-sep {
  background: rgba(26, 79, 214, 0.12);
}

/* ── RIGHT — Widgets Panel ── */
.hv4-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: hv4FadeUp 0.8s 0.3s ease both;
}

/* Glass card base */
.hv4-card {
  background: rgba(10, 22, 46, 0.80);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.2rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  transition: all 0.3s ease;
}

body[data-theme="light"] .hv4-card {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(26, 79, 214, 0.12);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.hv4-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  border-color: rgba(0, 194, 255, 0.25);
}

body[data-theme="light"] .hv4-card:hover {
  box-shadow: 0 12px 40px rgba(26, 79, 214, 0.15);
  border-color: rgba(26, 79, 214, 0.25);
}

/* Command Center Card */

.hv4-card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.hv4-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  flex-shrink: 0;
  animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 6px #22c55e;
  }

  50% {
    opacity: 0.6;
    transform: scale(1.3);
    box-shadow: 0 0 12px #22c55e;
  }
}

.hv4-card-title {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

body[data-theme="light"] .hv4-card-title {
  color: var(--clr-text-2);
}

/* Metric rows */
.hv4-metric {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

body[data-theme="light"] .hv4-metric {
  border-bottom-color: rgba(26, 79, 214, 0.07);
}

.hv4-metric-last {
  border-bottom: none;
}

.hv4-metric-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.hv4-icon-cam {
  background: rgba(59, 130, 246, 0.18);
  color: #3b82f6;
}

.hv4-icon-motion {
  background: rgba(239, 68, 68, 0.18);
  color: #ef4444;
}

.hv4-icon-ai {
  background: rgba(34, 197, 94, 0.18);
  color: #22c55e;
}

.hv4-icon-shield {
  background: rgba(0, 194, 255, 0.18);
  color: var(--clr-accent);
}

.hv4-metric-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1;
  min-width: 0;
}

.hv4-metric-label {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  line-height: 1.2;
}

body[data-theme="light"] .hv4-metric-label {
  color: var(--clr-muted);
}

.hv4-metric-val {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

body[data-theme="light"] .hv4-metric-val {
  color: var(--clr-primary-800);
}

.hv4-val-green {
  color: #22c55e !important;
}

/* Sparklines */
.hv4-sparkline {
  width: 60px;
  height: 20px;
  flex-shrink: 0;
  overflow: hidden;
}

.hv4-sparkline svg {
  width: 100%;
  height: 100%;
}

/* ── AI Bot Widget ── */
.hv4-bot-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hv4-bot-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, #1a4fd6, #00c2ff);
  border: 2px solid rgba(0, 194, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hv4-bot-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hv4-bot-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.hv4-bot-text strong {
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

body[data-theme="light"] .hv4-bot-text strong {
  color: var(--clr-primary-800);
}

.hv4-bot-text span {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
}

body[data-theme="light"] .hv4-bot-text span {
  color: var(--clr-muted);
}

.hv4-bot-mic {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a4fd6, #00c2ff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.85rem;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 0 rgba(0, 194, 255, 0.4);
  animation: micPulse 2s infinite;
}

.hv4-bot-mic:hover {
  transform: scale(1.1);
}

@keyframes micPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 194, 255, 0.5);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(0, 194, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 194, 255, 0);
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .hv4-camera {
    right: 200px;
  }

  .hv4-camera img {
    width: 130px;
  }
}

@media (max-width: 900px) {
  .hv4-container {
    grid-template-columns: 1fr;
    padding-block: 2rem 3rem;
  }

  .hv4-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .hv4-camera {
    right: 1rem;
    top: calc(var(--header-h) + 5px);
  }

  .hv4-camera img {
    width: 90px;
  }

  .hv4-camera-label {
    display: none;
  }

  .hv4-title {
    font-size: 2rem;
  }
}

@media (max-width: 640px) {
  .hv4-right {
    grid-template-columns: 1fr;
  }

  .hv4-camera {
    display: none;
  }

  .hv4-title {
    font-size: 1.75rem;
  }

  .hv4-stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .hv4-stat-sep {
    display: none;
  }

  .hv4-stat {
    padding: 0;
  }

  .hv4-cta-row {
    flex-direction: column;
  }

  .hv4-btn-primary,
  .hv4-btn-outline {
    width: 100%;
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   CM-HERO v5  —  Pixel-Perfect Reference Match
   Camera: mix-blend-mode  |  Dark + Light globe BG
═══════════════════════════════════════════════════════════════════ */
.cm-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  padding-top: var(--header-h, 72px);
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
  background-color: #050814;
  transition: background-color 0.5s ease;
}

body[data-theme="light"] .cm-hero {
  background-color: #ffffff;
}

/* ── Full-screen BG ── */
.cm-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle at 60% 50%, #0c1c3a 0%, #050814 70%);
  transition: background 0.5s ease;
}

body[data-theme="light"] .cm-hero__bg {
  background: radial-gradient(circle at 60% 50%, #e6efff 0%, #ffffff 70%);
}

.cm-hero__bg canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  opacity: 0.45;
}

.cm-hero__bg-img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  object-fit: contain;
  transition: opacity 0.5s ease, width 0.5s ease, height 0.5s ease, right 0.5s ease;
  z-index: 1;
  pointer-events: none;
  /* Earth Rotation Animation */
  animation: cmGlobeRotate 180s linear infinite;
}

@keyframes cmGlobeRotate {
  0% {
    transform: translateY(-50%) rotate(0deg);
  }

  100% {
    transform: translateY(-50%) rotate(360deg);
  }
}

/* Sizing of Earth by Dark/Light theme */
/* Dark mode Earth: Chota (smaller) */
.cm-hero__bg-img--dark {
  opacity: 1;
  width: 44%;
  height: 70%;
  right: 17%;
}

/* Light mode Earth: Standard size */
.cm-hero__bg-img--light {
  opacity: 0;
  width: 62%;
  height: 90%;
  right: 15%;
}

body[data-theme="light"] .cm-hero__bg-img--dark {
  opacity: 0;
}

body[data-theme="light"] .cm-hero__bg-img--light {
  opacity: 1;
}

/* ── CCTV Camera ── */
.cm-hero__camera {
  position: relative;
  width: 100%;
  height: 100px;
  margin-bottom: -15px;
  z-index: 25;
  pointer-events: none;
}

.cm-hero__cam-img {
  position: absolute;
  bottom: 0;
  right: -5px;
  width: 160px;
  height: auto;
  transition: opacity 0.4s ease;
  pointer-events: none;
  animation: cmCamFloat 6s ease-in-out infinite;
}

@keyframes cmCamFloat {

  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-6px) rotate(1.5deg);
  }
}

.cm-hero__cam-dark {
  opacity: 1;
}

.cm-hero__cam-light {
  opacity: 0;
}

body[data-theme="light"] .cm-hero__cam-dark {
  opacity: 0;
}

body[data-theme="light"] .cm-hero__cam-light {
  opacity: 1;
}

/* ── Inner layout (Compact) ── */
.cm-hero__inner {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 270px;
  gap: 1.5rem;
  align-items: center;
  width: 100%;
  max-width: 1300px;
  margin-inline: auto;
  padding: 1rem 2rem 3rem;
  box-sizing: border-box;
  min-height: calc(100vh - var(--header-h, 72px));
}

/* ── LEFT panel (Compact) ── */
.cm-hero__left {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  max-width: 580px;
}

/* Staggered Animations (Triggers when slide is active) */
.hero-slide:not(.hero-slide--active) .cm-hero__tags,
.hero-slide:not(.hero-slide--active) .cm-hero__title,
.hero-slide:not(.hero-slide--active) .cm-hero__sub,
.hero-slide:not(.hero-slide--active) .cm-hero__btns,
.hero-slide:not(.hero-slide--active) .cm-hero__stats,
.hero-slide:not(.hero-slide--active) .cm-hero__camera,
.hero-slide:not(.hero-slide--active) .cm-widget--cmd,
.hero-slide:not(.hero-slide--active) .cm-widget--bot {
  opacity: 0;
  transform: translateY(25px);
}

.hero-slide--active .cm-hero__tags {
  animation: cmFadeUp 0.8s 0.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-slide--active .cm-hero__title {
  animation: cmFadeUp 0.8s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-slide--active .cm-hero__sub {
  animation: cmFadeUp 0.8s 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-slide--active .cm-hero__btns {
  animation: cmFadeUp 0.8s 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-slide--active .cm-hero__stats {
  animation: cmFadeUp 0.8s 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-slide--active .cm-hero__camera {
  animation: cmFadeIn 1s 0.2s ease both;
}

.hero-slide--active .cm-widget--cmd {
  animation: cmFadeUp 0.8s 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-slide--active .cm-widget--bot {
  animation: cmFadeUp 0.8s 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* ═══════════════════════════════════════════════════════════
   SLIDE 2 STAGGER ANIMATIONS
   ═══════════════════════════════════════════════════════════ */
.hero-slide--2:not(.hero-slide--active) .hero2__title,
.hero-slide--2:not(.hero-slide--active) .hero2__divider,
.hero-slide--2:not(.hero-slide--active) .hero2__sub,
.hero-slide--2:not(.hero-slide--active) .hero2__feat,
.hero-slide--2:not(.hero-slide--active) .hero2__cta-row,
.hero-slide--2:not(.hero-slide--active) .hero2__stats-bar {
  opacity: 0;
  transform: translateY(25px);
}

.hero-slide--2.hero-slide--active .hero2__title {
  animation: cmFadeUp 0.8s 0.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-slide--2.hero-slide--active .hero2__divider {
  animation: cmFadeUp 0.8s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-slide--2.hero-slide--active .hero2__sub {
  animation: cmFadeUp 0.8s 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-slide--2.hero-slide--active .hero2__features>*:nth-child(1) {
  animation: cmFadeUp 0.8s 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-slide--2.hero-slide--active .hero2__features>*:nth-child(2) {
  animation: cmFadeUp 0.8s 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-slide--2.hero-slide--active .hero2__features>*:nth-child(3) {
  animation: cmFadeUp 0.8s 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-slide--2.hero-slide--active .hero2__features>*:nth-child(4) {
  animation: cmFadeUp 0.8s 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-slide--2.hero-slide--active .hero2__features>*:nth-child(5) {
  animation: cmFadeUp 0.8s 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-slide--2.hero-slide--active .hero2__cta-row {
  animation: cmFadeUp 0.8s 0.65s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-slide--2.hero-slide--active .hero2__stats-bar {
  animation: cmFadeUp 0.8s 0.75s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Ken Burns background zoom on active slide */
.hero-slide--2 .hero2-bg__img {
  transform: scale(1);
  transition: transform 0.8s ease-out;
}

.hero-slide--2.hero-slide--active .hero2-bg__img {
  animation: hero2Zoom 30s ease-out infinite alternate;
}

@keyframes hero2Zoom {
  0% {
    transform: scale(1) translate(0, 0);
  }

  100% {
    transform: scale(1.08) translate(-1%, 0.5%);
  }
}

@keyframes cmFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cmFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Tags badge */
.cm-hero__tags {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.cm-tag {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #00c2ff;
  border: 1px solid rgba(0, 194, 255, 0.3);
  background: rgba(0, 194, 255, 0.06);
  padding: 3px 10px;
  border-radius: 999px;
  display: inline-block;
}

body[data-theme="light"] .cm-tag {
  color: #1a4fd6;
  border-color: rgba(26, 79, 214, 0.25);
  background: rgba(26, 79, 214, 0.05);
}

.cm-tag-dot {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.65rem;
  font-weight: 700;
}

body[data-theme="light"] .cm-tag-dot {
  color: rgba(26, 79, 214, 0.2);
}

/* Title (Compact) */
.cm-hero__title {
  margin: 0;
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.5px;
  color: #ffffff;
}

body[data-theme="light"] .cm-hero__title {
  color: #0a1e3d;
}

.cm-hero__title em {
  font-style: normal;
  background: linear-gradient(90deg, #1a4fd6, #00c2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Subtitle (Compact) */
.cm-hero__sub {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
}

body[data-theme="light"] .cm-hero__sub {
  color: #3d4f70;
}

/* Buttons */
.cm-hero__btns {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  align-items: center;
}

.cm-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.cm-btn--fill {
  background: linear-gradient(90deg, #1a4fd6 0%, #00c2ff 100%);
  color: #fff;
  box-shadow: 0 5px 15px rgba(26, 79, 214, 0.35);
}

.cm-btn--fill:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(26, 79, 214, 0.5);
  filter: brightness(1.08);
}

.cm-btn__arrow {
  font-size: 0.75rem;
  transition: transform 0.2s ease;
}

.cm-btn--fill:hover .cm-btn__arrow {
  transform: translateX(3px);
}

.cm-btn--ring {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

body[data-theme="light"] .cm-btn--ring {
  background: rgba(26, 79, 214, 0.04);
  color: #1a4fd6;
  border-color: rgba(26, 79, 214, 0.2);
}

.cm-btn--ring:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

body[data-theme="light"] .cm-btn--ring:hover {
  background: rgba(26, 79, 214, 0.08);
}

.cm-btn__play {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

body[data-theme="light"] .cm-btn__play {
  background: rgba(26, 79, 214, 0.08);
  border-color: rgba(26, 79, 214, 0.15);
}

.cm-btn--ring:hover .cm-btn__play {
  transform: scale(1.1);
}

/* Stats bar (Compact) */
.cm-hero__stats {
  display: flex;
  align-items: center;
  background: rgba(5, 12, 26, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  align-self: flex-start;
  width: fit-content;
}

body[data-theme="light"] .cm-hero__stats {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(26, 79, 214, 0.1);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.cm-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 0.75rem;
  flex: 1;
}

.cm-stat:first-child {
  padding-left: 0;
}

.cm-stat:last-child {
  padding-right: 0;
}

.cm-stat>i {
  font-size: 1.1rem;
  color: #00c2ff;
  width: 18px;
  flex-shrink: 0;
  text-align: center;
}

body[data-theme="light"] .cm-stat>i {
  color: #1a4fd6;
}

.cm-stat__text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cm-stat__text b {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
}

body[data-theme="light"] .cm-stat__text b {
  color: #0a1e3d;
}

.cm-stat__text span {
  display: block;
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
}

body[data-theme="light"] .cm-stat__text span {
  color: #6b7a99;
}

.cm-stat__sep {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

body[data-theme="light"] .cm-stat__sep {
  background: rgba(26, 79, 214, 0.1);
}

/* ── RIGHT Widgets (Compact) ── */
.cm-hero__right {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  justify-content: flex-end;
}

.cm-widget {
  background: rgba(18, 18, 21, 0.45) !important;
  backdrop-filter: blur(20px) saturate(1.4) !important;
  -webkit-backdrop-filter: blur(20px) saturate(1.4) !important;
  border: 1px solid rgba(95, 91, 246, 0.15) !important;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3) !important;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease !important;
}

body[data-theme="light"] .cm-widget {
  background: rgba(255, 255, 255, 0.45) !important;
  backdrop-filter: blur(16px) saturate(1.4) !important;
  -webkit-backdrop-filter: blur(16px) saturate(1.4) !important;
  border-color: rgba(99, 102, 241, 0.1) !important;
  box-shadow: 0 10px 28px rgba(99, 102, 241, 0.03) !important;
}

.cm-widget:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(95, 91, 246, 0.1) !important;
  border-color: rgba(95, 91, 246, 0.3) !important;
}

body[data-theme="light"] .cm-widget:hover {
  background: rgba(255, 255, 255, 0.65) !important;
  border-color: rgba(99, 102, 241, 0.25) !important;
  box-shadow: 0 15px 35px rgba(99, 102, 241, 0.08) !important;
}

.cm-widget__head {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.65rem;
}

.cm-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px #22c55e;
  animation: cmLivePulse 1.8s infinite;
  flex-shrink: 0;
}

.cm-widget__title {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

body[data-theme="light"] .cm-widget__title {
  color: #3d4f70;
}

.cm-metric {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.38rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

body[data-theme="light"] .cm-metric {
  border-bottom-color: rgba(26, 79, 214, 0.06);
}

.cm-metric--last {
  border-bottom: none !important;
}

.cm-metric__icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.cm-icon--blue {
  background: rgba(59, 130, 246, 0.14);
  color: #3b82f6;
}

.cm-icon--red {
  background: rgba(239, 68, 68, 0.14);
  color: #ef4444;
}

.cm-icon--green {
  background: rgba(34, 197, 94, 0.14);
  color: #22c55e;
}

.cm-icon--cyan {
  background: rgba(0, 194, 255, 0.12);
  color: #00c2ff;
}

.cm-metric__body {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
  min-width: 0;
}

.cm-metric__lbl {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.2;
}

body[data-theme="light"] .cm-metric__lbl {
  color: #6b7a99;
}

.cm-metric__val {
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
}

body[data-theme="light"] .cm-metric__val {
  color: #0a1e3d;
}

.cm-val--green {
  color: #22c55e !important;
}

.cm-spark {
  width: 52px;
  height: 18px;
  flex-shrink: 0;
  overflow: visible;
}

/* ── AI Bot Widget (Compact) ── */
.cm-widget--bot {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.8rem 0.9rem;
}

.cm-bot__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, #1a4fd6, #00c2ff);
  border: 2px solid rgba(0, 194, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cm-bot__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cm-bot__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.cm-bot__text strong {
  font-size: 0.68rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  display: block;
}

body[data-theme="light"] .cm-bot__text strong {
  color: #0a1e3d;
}

.cm-bot__text span {
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.45);
  display: block;
}

body[data-theme="light"] .cm-bot__text span {
  color: #6b7a99;
}

/* Audio Waveform */
.cm-bot__waveform {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 14px;
  padding-inline: 2px;
  flex-shrink: 0;
}

.cm-bot__waveform span {
  display: block;
  width: 2px;
  height: 3px;
  background-color: #00c2ff;
  border-radius: 1px;
  animation: cmAudioWave 1.2s ease-in-out infinite;
}

body[data-theme="light"] .cm-bot__waveform span {
  background-color: #1a4fd6;
}

.cm-bot__waveform span:nth-child(2) {
  animation-delay: 0.15s;
}

.cm-bot__waveform span:nth-child(3) {
  animation-delay: 0.3s;
}

.cm-bot__waveform span:nth-child(4) {
  animation-delay: 0.45s;
}

.cm-bot__waveform span:nth-child(5) {
  animation-delay: 0.6s;
}

.cm-bot__waveform span:nth-child(6) {
  animation-delay: 0.2s;
}

.cm-bot__waveform span:nth-child(7) {
  animation-delay: 0.35s;
}

@keyframes cmAudioWave {

  0%,
  100% {
    transform: scaleY(1);
  }

  50% {
    transform: scaleY(3.5);
  }
}

.cm-bot__mic {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a4fd6, #00c2ff);
  border: none;
  color: #fff;
  font-size: 0.72rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  animation: cmMicPulse 2.2s infinite;
  transition: transform 0.2s;
}

.cm-bot__mic:hover {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 1120px) {
  .cm-hero__camera {
    right: -5px;
    width: 150px;
  }

  .cm-hero__inner {
    grid-template-columns: 1fr 250px;
  }
}

@media (max-width: 900px) {
  .cm-hero__inner {
    grid-template-columns: 1fr;
    padding-bottom: 2rem;
  }

  .cm-hero__camera {
    display: none;
  }

  .cm-hero__left {
    max-width: 100%;
  }

  .cm-hero__title {
    font-size: 1.95rem;
  }

  .cm-hero__right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
}

@media (max-width: 640px) {
  .cm-hero__right {
    grid-template-columns: 1fr;
  }

  .cm-hero__title {
    font-size: 1.7rem;
  }

  .cm-hero__btns {
    flex-direction: column;
  }

  .cm-btn {
    width: 100%;
    justify-content: center;
  }

  .cm-hero__stats {
    flex-wrap: wrap;
    gap: 0.6rem;
    border-radius: 10px;
  }

  .cm-stat {
    padding: 0;
    flex: 0 0 calc(50% - 0.3rem);
  }

  .cm-stat__sep {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   PREMIUM GLOWING FUTURISTIC DESIGN SYSTEM (Sections)
   =================================================================== */

/* ── Global Section Utilities ── */
.cm-glow-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.cm-glow-blur--1 {
  top: 10%;
  left: 5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #00c2ff 0%, transparent 70%);
}

.cm-glow-blur--2 {
  bottom: 10%;
  right: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #1a4fd6 0%, transparent 70%);
}

body[data-theme="light"] .cm-glow-blur {
  opacity: 0.05;
}

.cm-section-head {
  text-align: center;
  margin-bottom: 3.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  z-index: 5;
}

.cm-badge {
  background: rgba(0, 194, 255, 0.08);
  border: 1px solid rgba(0, 194, 255, 0.25);
  color: #00c2ff;
  padding: 4px 12px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 999px;
  display: inline-block;
}

body[data-theme="light"] .cm-badge {
  background: rgba(26, 79, 214, 0.06);
  border-color: rgba(26, 79, 214, 0.2);
  color: #1a4fd6;
}

.cm-section-title {
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  font-weight: 900;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.5px;
}

body[data-theme="light"] .cm-section-title {
  color: #0a1e3d;
}

.cm-section-subtitle {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

body[data-theme="light"] .cm-section-subtitle {
  color: #5c6f8f;
}

/* ── Futuristic Bento About Section ── */
.cm-about {
  padding: 5rem 0;
  background-color: #050814;
  transition: background-color 0.4s ease;
}

body[data-theme="light"] .cm-about {
  background-color: #f8fafc;
}

.cm-about-bento {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  position: relative;
  z-index: 5;
}

@media (max-width: 1024px) {
  .cm-about-bento {
    grid-template-columns: 1fr;
  }
}

.cm-bento-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

body[data-theme="light"] .cm-bento-card {
  background: #ffffff;
  border-color: rgba(26, 79, 214, 0.08);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.cm-bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 194, 255, 0.25);
  box-shadow: 0 15px 35px rgba(0, 194, 255, 0.08);
}

body[data-theme="light"] .cm-bento-card:hover {
  border-color: rgba(26, 79, 214, 0.2);
  box-shadow: 0 12px 28px rgba(26, 79, 214, 0.06);
}

.cm-bento-card__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(800px circle at var(--x, 50%) var(--y, 50%), rgba(0, 194, 255, 0.06), transparent 40%);
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cm-bento-card:hover .cm-bento-card__glow {
  opacity: 1;
}

.cm-bento-card__inner {
  padding: 2.2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}

/* Large Card layout details */
.cm-bento-card--large {
  grid-column: span 1;
  grid-row: span 2;
}

.cm-bento-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.cm-live-badge {
  font-size: 0.65rem;
  font-weight: 800;
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(34, 197, 94, 0.06);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.cm-bento-tag {
  font-size: 0.65rem;
  font-weight: 800;
  color: #00c2ff;
  border: 1px solid rgba(0, 194, 255, 0.3);
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(0, 194, 255, 0.06);
}

body[data-theme="light"] .cm-bento-tag {
  color: #1a4fd6;
  border-color: rgba(26, 79, 214, 0.2);
  background: rgba(26, 79, 214, 0.05);
}

.cm-dashboard-preview {
  background: rgba(9, 18, 38, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 2.5rem;
}

body[data-theme="light"] .cm-dashboard-preview {
  background: #f8fafc;
  border-color: rgba(26, 79, 214, 0.08);
}

.cm-dash-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.cm-dash-col {
  display: flex;
  flex-direction: column;
}

.cm-dash-val {
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
}

body[data-theme="light"] .cm-dash-val {
  color: #0a1e3d;
}

.cm-dash-lbl {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

body[data-theme="light"] .cm-dash-lbl {
  color: #6b7a99;
}

.cm-progress-bar {
  position: relative;
  height: 24px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-left: 0.8rem;
}

body[data-theme="light"] .cm-progress-bar {
  background: rgba(26, 79, 214, 0.06);
}

.cm-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background: linear-gradient(90deg, #1a4fd6 0%, #00c2ff 100%);
  border-radius: 8px;
  z-index: 1;
}

.cm-progress-label {
  position: relative;
  z-index: 2;
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
}

.cm-bento-card__footer h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 0.5rem;
}

body[data-theme="light"] .cm-bento-card__footer h3 {
  color: #0a1e3d;
}

.cm-bento-card__footer p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

body[data-theme="light"] .cm-bento-card__footer p {
  color: #5c6f8f;
}

/* Small Card details */
.cm-pill-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(0, 194, 255, 0.08);
  border: 1px solid rgba(0, 194, 255, 0.2);
  color: #00c2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

body[data-theme="light"] .cm-pill-icon {
  background: rgba(26, 79, 214, 0.06);
  border-color: rgba(26, 79, 214, 0.15);
  color: #1a4fd6;
}

.cm-bento-card--small h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.5rem;
}

body[data-theme="light"] .cm-bento-card--small h3 {
  color: #0a1e3d;
}

.cm-bento-card--small p {
  font-size: 0.84rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 1.5rem;
}

body[data-theme="light"] .cm-bento-card--small p {
  color: #5c6f8f;
}

.cm-tech-tags {
  display: flex;
  gap: 0.5rem;
  margin-top: auto;
}

.cm-tech-tags span {
  font-size: 0.62rem;
  font-weight: 700;
  color: #00c2ff;
  background: rgba(0, 194, 255, 0.08);
  border: 1px solid rgba(0, 194, 255, 0.15);
  padding: 3px 8px;
  border-radius: 6px;
}

body[data-theme="light"] .cm-tech-tags span {
  color: #1a4fd6;
  background: rgba(26, 79, 214, 0.05);
  border-color: rgba(26, 79, 214, 0.12);
}

/* Medium Card Details */
.cm-aside-header {
  height: 28px;
  margin-bottom: 1.2rem;
}

.cm-aside-header img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.cm-aside-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 1.2rem;
}

body[data-theme="light"] .cm-aside-desc {
  color: #5c6f8f;
}

.cm-aside-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.cm-aside-checklist li {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

body[data-theme="light"] .cm-aside-checklist li {
  color: #3d4f70;
}

.cm-aside-checklist li i {
  color: #00c2ff;
}

body[data-theme="light"] .cm-aside-checklist li i {
  color: #1a4fd6;
}

.cm-signature-block {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1rem;
}

body[data-theme="light"] .cm-signature-block {
  border-top-color: rgba(26, 79, 214, 0.08);
}

.cm-signature-block strong {
  display: block;
  font-size: 0.88rem;
  color: #fff;
}

body[data-theme="light"] .cm-signature-block strong {
  color: #0a1e3d;
}

.cm-signature-block span {
  display: block;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.45);
}

body[data-theme="light"] .cm-signature-block span {
  color: #6b7a99;
}

.cm-sig-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

body[data-theme="light"] .cm-sig-arrow {
  background: rgba(26, 79, 214, 0.05);
  border-color: rgba(26, 79, 214, 0.12);
  color: #1a4fd6;
}

.cm-sig-arrow:hover {
  background: linear-gradient(135deg, #1a4fd6, #00c2ff);
  border-color: transparent;
  color: #fff;
  transform: translateX(3px);
}

/* ── Timeline ── */
.cm-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  z-index: 5;
}

@media (max-width: 768px) {
  .cm-timeline {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.cm-timeline__line {
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
  z-index: 1;
}

body[data-theme="light"] .cm-timeline__line {
  background: rgba(26, 79, 214, 0.08);
}

@media (max-width: 768px) {
  .cm-timeline__line {
    display: none;
  }
}

.cm-timeline__item {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cm-timeline__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 3px solid #050814;
  margin-bottom: 1.2rem;
}

body[data-theme="light"] .cm-timeline__dot {
  background: rgba(26, 79, 214, 0.3);
  border-color: #f8fafc;
}

.cm-timeline__dot--pulse {
  background: #00c2ff;
  box-shadow: 0 0 10px #00c2ff;
  animation: cmTimelinePulse 2s infinite;
}

body[data-theme="light"] .cm-timeline__dot--pulse {
  background: #1a4fd6;
  box-shadow: 0 0 10px #1a4fd6;
}

@keyframes cmTimelinePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 194, 255, 0.6);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(0, 194, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 194, 255, 0);
  }
}

.cm-timeline__card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 1.2rem;
  text-align: center;
  width: 100%;
}

body[data-theme="light"] .cm-timeline__card {
  background: #ffffff;
  border-color: rgba(26, 79, 214, 0.06);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.015);
}

.cm-timeline__item.active .cm-timeline__card {
  border-color: rgba(0, 194, 255, 0.3);
  background: rgba(0, 194, 255, 0.02);
}

body[data-theme="light"] .cm-timeline__item.active .cm-timeline__card {
  border-color: rgba(26, 79, 214, 0.2);
  background: rgba(26, 79, 214, 0.02);
}

.cm-timeline__year {
  font-size: 0.62rem;
  font-weight: 800;
  color: #00c2ff;
  letter-spacing: 1px;
}

body[data-theme="light"] .cm-timeline__year {
  color: #1a4fd6;
}

.cm-timeline__card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin: 0.2rem 0 0.4rem;
}

body[data-theme="light"] .cm-timeline__card h4 {
  color: #0a1e3d;
}

.cm-timeline__card p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

body[data-theme="light"] .cm-timeline__card p {
  color: #6b7a99;
}


/* ── Futuristic Services Section ── */
.cm-services {
  padding: 5rem 0;
  background-color: #030712;
  transition: background-color 0.4s ease;
  position: relative;
}

body[data-theme="light"] .cm-services {
  background-color: #f9fafb;
}

.cm-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1.5rem;
  width: 100%;
}

.cm-service-panel {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

body[data-theme="light"] .cm-service-panel {
  background: #ffffff;
  border-color: rgba(26, 79, 214, 0.07);
}

.cm-service-panel:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 194, 255, 0.3);
  box-shadow: 0 12px 30px rgba(0, 194, 255, 0.1);
}

body[data-theme="light"] .cm-service-panel:hover {
  border-color: rgba(26, 79, 214, 0.2);
  box-shadow: 0 12px 24px rgba(26, 79, 214, 0.06);
}

.cm-service-panel__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(300px circle at var(--x, 50%) var(--y, 50%), rgba(0, 194, 255, 0.08), transparent 50%);
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cm-service-panel:hover .cm-service-panel__glow {
  opacity: 1;
}

.cm-service-panel__img {
  position: relative;
  height: 155px;
  overflow: hidden;
}

.cm-service-panel__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cm-service-panel:hover .cm-service-panel__img img {
  transform: scale(1.05);
}

.cm-service-panel__icon {
  position: absolute;
  bottom: -15px;
  right: 15px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a4fd6, #00c2ff);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  border: 3px solid #030712;
  box-shadow: 0 4px 10px rgba(0, 194, 255, 0.3);
  z-index: 3;
}

body[data-theme="light"] .cm-service-panel__icon {
  border-color: #ffffff;
}

.cm-service-panel__body {
  padding: 1.3rem 1.15rem 1.15rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
  z-index: 2;
}

.cm-service-panel__body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.4rem;
}

body[data-theme="light"] .cm-service-panel__body h3 {
  color: #0a1e3d;
}

.cm-service-panel__body p {
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 1.2rem;
  flex: 1;
}

body[data-theme="light"] .cm-service-panel__body p {
  color: #5c6f8f;
}

.cm-service-panel__link {
  font-size: 0.8rem;
  font-weight: 700;
  color: #00c2ff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap 0.2s ease;
}

body[data-theme="light"] .cm-service-panel__link {
  color: #1a4fd6;
}

.cm-service-panel:hover .cm-service-panel__link {
  gap: 0.45rem;
}


/* ── Futuristic Solutions Section ── */
.cm-solutions {
  padding: 5rem 0;
  background-color: #02050c;
  transition: background-color 0.4s ease;
}

body[data-theme="light"] .cm-solutions {
  background-color: #ffffff;
}

.cm-solutions-stack {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  width: 100%;
}

.cm-solution-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (max-width: 900px) {
  .cm-solution-panel {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.cm-solution-panel:nth-child(even) .cm-solution-panel__media {
  order: 2;
}

@media (max-width: 900px) {
  .cm-solution-panel:nth-child(even) .cm-solution-panel__media {
    order: 0;
  }
}

.cm-panel-monitor {
  background: #091325;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  transition: transform 0.4s ease;
}

body[data-theme="light"] .cm-panel-monitor {
  background: #f1f5f9;
  border-color: rgba(26, 79, 214, 0.08);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.cm-solution-panel:hover .cm-panel-monitor {
  transform: translateY(-3px) scale(1.01);
}

.cm-monitor-screen {
  background: #030611;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.cm-monitor-dots {
  display: flex;
  gap: 5px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.cm-monitor-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.cm-monitor-dots span:nth-child(1) {
  background: #ef4444;
}

.cm-monitor-dots span:nth-child(2) {
  background: #eab308;
}

.cm-monitor-dots span:nth-child(3) {
  background: #22c55e;
}

.cm-monitor-screen img {
  width: 100%;
  height: auto;
  display: block;
}

.cm-solution-panel__content {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: flex-start;
}

.cm-solution-panel__content h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.5px;
}

body[data-theme="light"] .cm-solution-panel__content h3 {
  color: #0a1e3d;
}

.cm-solution-panel__content p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

body[data-theme="light"] .cm-solution-panel__content p {
  color: #5c6f8f;
}

.cm-checklist-grid {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1.2rem;
  width: 100%;
}

.cm-checklist-grid li {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

body[data-theme="light"] .cm-checklist-grid li {
  color: #3d4f70;
}

.cm-checklist-grid li i {
  color: #22c55e;
}


/* ── Futuristic Core Strengths Section ── */
.cm-strengths {
  padding: 5rem 0;
  background-color: #030712;
  transition: background-color 0.4s ease;
}

body[data-theme="light"] .cm-strengths {
  background-color: #f9fafb;
}

.cm-strengths-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  width: 100%;
}

.cm-strength-panel {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

body[data-theme="light"] .cm-strength-panel {
  background: #ffffff;
  border-color: rgba(26, 79, 214, 0.07);
}

.cm-strength-panel:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 194, 255, 0.25);
  box-shadow: 0 12px 28px rgba(0, 194, 255, 0.1);
}

body[data-theme="light"] .cm-strength-panel:hover {
  border-color: rgba(26, 79, 214, 0.2);
  box-shadow: 0 12px 24px rgba(26, 79, 214, 0.06);
}

.cm-strength-panel__blur {
  position: absolute;
  top: 10%;
  left: 10%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  filter: blur(25px);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.cm-strength-panel:hover .cm-strength-panel__blur {
  opacity: 0.15;
}

.cm-strength-panel:nth-child(1) .cm-strength-panel__blur {
  background: #ff5252;
}

.cm-strength-panel:nth-child(2) .cm-strength-panel__blur {
  background: #00c2ff;
}

.cm-strength-panel:nth-child(3) .cm-strength-panel__blur {
  background: #22c55e;
}

.cm-strength-panel__inner {
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  height: 100%;
  box-sizing: border-box;
}

.cm-strength-panel__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.2rem;
  color: #fff;
  transition: transform 0.3s ease;
}

.cm-strength-panel:hover .cm-strength-panel__icon {
  transform: scale(1.1) rotate(4deg);
}

.cm-strength-panel__icon--efficiency {
  background: linear-gradient(135deg, #ff9f43, #ff5252);
  box-shadow: 0 6px 15px rgba(255, 82, 82, 0.3);
}

.cm-strength-panel__icon--reliability {
  background: linear-gradient(135deg, #1a4fd6, #00c2ff);
  box-shadow: 0 6px 15px rgba(0, 194, 255, 0.3);
}

.cm-strength-panel__icon--commitment {
  background: linear-gradient(135deg, #22c55e, #10b981);
  box-shadow: 0 6px 15px rgba(16, 185, 129, 0.3);
}

.cm-strength-panel h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.4rem;
}

body[data-theme="light"] .cm-strength-panel h3 {
  color: #0a1e3d;
}

.cm-strength-panel p {
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 1.2rem;
}

body[data-theme="light"] .cm-strength-panel p {
  color: #5c6f8f;
}

.cm-strength-panel__tags {
  margin-top: auto;
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cm-strength-panel__tags span {
  font-size: 0.6rem;
  font-weight: 700;
  color: #00c2ff;
  background: rgba(0, 194, 255, 0.08);
  border: 1px solid rgba(0, 194, 255, 0.15);
  padding: 2px 8px;
  border-radius: 4px;
}

body[data-theme="light"] .cm-strength-panel__tags span {
  color: #1a4fd6;
  background: rgba(26, 79, 214, 0.05);
  border-color: rgba(26, 79, 214, 0.12);
}


/* ── Clients & Marquee Section ── */
.cm-clients {
  padding: 5rem 0;
  background-color: #02050c;
  transition: background-color 0.4s ease;
  overflow: hidden;
}

body[data-theme="light"] .cm-clients {
  background-color: #ffffff;
}

.cm-counters-hud {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
  margin-bottom: 4rem;
  width: 100%;
}

.cm-counter-box {
  position: relative;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  text-align: center;
  transition: border-color 0.3s ease;
}

body[data-theme="light"] .cm-counter-box {
  background: #f8fafc;
  border-color: rgba(26, 79, 214, 0.07);
}

.cm-counter-box:hover {
  border-color: rgba(0, 194, 255, 0.25);
}

body[data-theme="light"] .cm-counter-box:hover {
  border-color: rgba(26, 79, 214, 0.2);
}

.cm-counter-box h4 {
  font-size: 2.1rem;
  font-weight: 800;
  color: #00c2ff;
  margin: 0 0 0.15rem;
}

body[data-theme="light"] .cm-counter-box h4 {
  color: #1a4fd6;
}

.cm-counter-box p {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

body[data-theme="light"] .cm-counter-box p {
  color: #6b7a99;
}

.cm-logo-marquee {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.cm-marquee-track {
  display: flex;
  width: max-content;
  gap: 1.2rem;
  padding: 0.15rem 0;
}

.cm-marquee-track--left {
  animation: cmScrollLeft 45s linear infinite;
}

.cm-marquee-track--right {
  animation: cmScrollRight 45s linear infinite;
}

.cm-logo-card {
  width: 140px;
  height: 64px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

body[data-theme="light"] .cm-logo-card {
  background: #ffffff;
  border-color: rgba(26, 79, 214, 0.06);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.01);
}

.cm-logo-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(1) brightness(0.85);
  opacity: 0.65;
  transition: all 0.3s ease;
}

body[data-theme="light"] .cm-logo-card img {
  filter: grayscale(1) contrast(1.2);
  opacity: 0.55;
}

.cm-logo-card:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: rgba(0, 194, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 18px rgba(0, 194, 255, 0.08);
}

body[data-theme="light"] .cm-logo-card:hover {
  border-color: rgba(26, 79, 214, 0.25);
  box-shadow: 0 8px 18px rgba(26, 79, 214, 0.05);
}

.cm-logo-card:hover img {
  filter: grayscale(0) brightness(1);
  opacity: 1;
}


/* ── Marquee Keyframes ── */
@keyframes cmScrollLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 0.6rem));
  }
}

@keyframes cmScrollRight {
  0% {
    transform: translateX(calc(-50% - 0.6rem));
  }

  100% {
    transform: translateX(0);
  }
}


/* ── Additional Helper Classes ── */
.cm-bento-card--medium {
  grid-column: span 1;
  grid-row: span 1;
}

.cm-counter-box__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(300px circle at var(--x, 50%) var(--y, 50%), rgba(0, 194, 255, 0.04), transparent 50%);
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cm-counter-box:hover .cm-counter-box__glow {
  opacity: 1;
}

/* ═══════════════════════════════════════════════════════════════════
   COMPLETELY NEW UI DESIGN SYSTEM 2024
═══════════════════════════════════════════════════════════════════ */

/* ── New About Section Design ── */
.cm-about {
  background: var(--gradient-light);
  padding: var(--space-32) 0;
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .cm-about {
  background: var(--gradient-dark);
}

.cm-about::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--brand-primary) 0%, transparent 70%);
  opacity: 0.08;
  filter: blur(80px);
  animation: floatShape 20s ease-in-out infinite;
}

.cm-about::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--brand-accent) 0%, transparent 70%);
  opacity: 0.06;
  filter: blur(80px);
  animation: floatShape 25s ease-in-out infinite reverse;
}

.cm-section-head {
  position: relative;
  z-index: 1;
}

.cm-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
  border: 1px solid rgba(99, 102, 241, 0.2);
  color: var(--brand-primary);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
  backdrop-filter: blur(10px);
}

.cm-section-title {
  font-size: clamp(2rem, 5vw, var(--text-5xl));
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
  letter-spacing: -0.03em;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cm-section-subtitle {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

/* New Bento Grid Design */
.cm-about-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: var(--space-6);
  margin-top: var(--space-16);
  position: relative;
  z-index: 1;
}

.cm-bento-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-3xl);
  padding: var(--space-8);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-slow);
  box-shadow: var(--shadow-md);
}

[data-theme="dark"] .cm-bento-card {
  background: var(--bg-surface-dark);
  border-color: var(--border-dark);
}

.cm-bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(99, 102, 241, 0.03) 100%);
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.cm-bento-card:hover::before {
  opacity: 1;
}

.cm-bento-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
  border-color: var(--brand-primary);
}

.cm-bento-card--large {
  grid-column: span 2;
  grid-row: span 2;
}

.cm-bento-card__inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.cm-bento-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-6);
}

.cm-live-badge {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--brand-success);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.cm-live-dot {
  width: 8px;
  height: 8px;
  background: var(--brand-success);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.cm-bento-tag {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
  color: var(--brand-primary);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-md);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.cm-dashboard-preview {
  background: var(--bg-tertiary);
  border-radius: var(--radius-2xl);
  padding: var(--space-6);
  margin-bottom: var(--space-6);
  border: 1px solid var(--border-light);
}

[data-theme="dark"] .cm-dashboard-preview {
  background: var(--bg-tertiary-dark);
  border-color: var(--border-dark);
}

.cm-dash-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.cm-dash-col {
  text-align: center;
  padding: var(--space-4);
  background: var(--bg-surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
}

[data-theme="dark"] .cm-dash-col {
  background: var(--bg-surface-dark);
  border-color: var(--border-dark);
}

.cm-dash-val {
  font-size: var(--text-3xl);
  font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
}

.cm-dash-lbl {
  font-size: var(--text-xs);
  color: var(--text-tertiary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: var(--space-2);
}

.cm-progress-bar {
  height: 12px;
  background: var(--bg-tertiary);
  border-radius: var(--radius-full);
  overflow: hidden;
  position: relative;
}

[data-theme="dark"] .cm-progress-bar {
  background: var(--bg-tertiary-dark);
}

.cm-progress-fill {
  height: 100%;
  background: var(--gradient-brand);
  border-radius: var(--radius-full);
  animation: progressPulse 3s ease-in-out infinite;
}

.cm-progress-label {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-top: var(--space-3);
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}

.cm-bento-card__footer h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.cm-bento-card__footer p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.6;
}

.cm-pill-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-brand);
  border-radius: var(--radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-inverse);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-4);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.cm-tech-tags {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-top: auto;
}

.cm-tech-tags span {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(99, 102, 241, 0.1));
  border: 1px solid rgba(6, 182, 212, 0.2);
  color: var(--brand-accent);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-md);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.cm-aside-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.cm-aside-header img {
  height: 48px;
  width: auto;
}

.cm-aside-desc {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.cm-aside-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.cm-aside-checklist li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--text-primary);
  padding: var(--space-2) 0;
}

.cm-aside-checklist li i {
  color: var(--brand-primary);
  font-size: var(--text-sm);
}

.cm-signature-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: var(--space-6);
  border-top: 1px solid var(--border-light);
}

[data-theme="dark"] .cm-signature-block {
  border-color: var(--border-dark);
}

.cm-signature-block strong {
  display: block;
  font-size: var(--text-base);
  color: var(--text-primary);
  font-weight: 700;
}

.cm-signature-block span {
  display: block;
  font-size: var(--text-sm);
  color: var(--text-tertiary);
}

.cm-sig-arrow {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-xl);
  background: var(--bg-tertiary);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all var(--transition-base);
}

[data-theme="dark"] .cm-sig-arrow {
  background: var(--bg-tertiary-dark);
  border-color: var(--border-dark);
}

.cm-sig-arrow:hover {
  background: var(--gradient-brand);
  border-color: transparent;
  color: var(--text-inverse);
  transform: translateX(4px);
}

/* New Timeline Design */
.cm-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  margin-top: var(--space-24);
  z-index: 1;
}

@media (max-width: 768px) {
  .cm-timeline {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
}

.cm-timeline__line {
  position: absolute;
  top: 24px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border-light);
  z-index: 0;
}

[data-theme="dark"] .cm-timeline__line {
  background: var(--border-dark);
}

@media (max-width: 768px) {
  .cm-timeline__line {
    display: none;
  }
}

.cm-timeline__item {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cm-timeline__dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 4px solid var(--border-light);
  margin-bottom: var(--space-4);
  transition: all var(--transition-base);
}

[data-theme="dark"] .cm-timeline__dot {
  background: var(--bg-surface-dark);
  border-color: var(--border-dark);
}

.cm-timeline__dot--pulse {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.2);
  animation: cmTimelinePulse 2s infinite;
}

.cm-timeline__card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-2xl);
  padding: var(--space-6);
  text-align: center;
  width: 100%;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

[data-theme="dark"] .cm-timeline__card {
  background: var(--bg-surface-dark);
  border-color: var(--border-dark);
}

.cm-timeline__item.active .cm-timeline__card {
  border-color: var(--brand-primary);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.cm-timeline__year {
  font-size: var(--text-xs);
  font-weight: 800;
  color: var(--brand-primary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.cm-timeline__card h4 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-primary);
  margin: var(--space-2) 0 var(--space-1);
}

.cm-timeline__card p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin: 0;
}

/* ── New Services Section Design ── */
.cm-services {
  background: var(--bg-secondary);
  padding: var(--space-32) 0;
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .cm-services {
  background: var(--bg-secondary-dark);
}

.cm-services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 400px;
  background: linear-gradient(180deg, var(--bg-primary) 0%, transparent 100%);
  z-index: 0;
}

.cm-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: var(--space-8);
  position: relative;
  z-index: 1;
}

.cm-service-panel {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-3xl);
  overflow: hidden;
  transition: all var(--transition-slow);
  position: relative;
  box-shadow: var(--shadow-md);
}

[data-theme="dark"] .cm-service-panel {
  background: var(--bg-surface-dark);
  border-color: var(--border-dark);
}

.cm-service-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(99, 102, 241, 0.05) 100%);
  opacity: 0;
  transition: opacity var(--transition-slow);
  z-index: 0;
}

.cm-service-panel:hover::before {
  opacity: 1;
}

.cm-service-panel:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-2xl);
  border-color: var(--brand-primary);
}

.cm-service-panel__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(99, 102, 241, 0.1), transparent 50%);
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.cm-service-panel:hover .cm-service-panel__glow {
  opacity: 1;
}

.cm-service-panel__img {
  height: 200px;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.cm-service-panel__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.cm-service-panel:hover .cm-service-panel__img img {
  transform: scale(1.1);
}

.cm-service-panel__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
}

.cm-service-panel__icon {
  position: absolute;
  bottom: -24px;
  right: var(--space-6);
  width: 56px;
  height: 56px;
  border-radius: var(--radius-2xl);
  background: var(--gradient-brand);
  color: var(--text-inverse);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
  border: 4px solid var(--bg-surface);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  z-index: 3;
  transition: all var(--transition-base);
}

[data-theme="dark"] .cm-service-panel__icon {
  border-color: var(--bg-surface-dark);
}

.cm-service-panel:hover .cm-service-panel__icon {
  transform: translateY(-4px) scale(1.1);
}

.cm-service-panel__body {
  padding: var(--space-8) var(--space-6) var(--space-6);
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
  z-index: 2;
}

.cm-service-panel__body h3 {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: var(--space-3);
  line-height: 1.3;
}

.cm-service-panel__body p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-6);
  flex: 1;
}

.cm-service-panel__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--brand-primary);
  text-decoration: none;
  transition: all var(--transition-base);
}

.cm-service-panel__link i {
  transition: transform var(--transition-base);
}

.cm-service-panel:hover .cm-service-panel__link {
  gap: var(--space-3);
}

.cm-service-panel:hover .cm-service-panel__link i {
  transform: translateX(4px);
}

/* ── New Solutions Section Design ── */
.cm-solutions {
  background: var(--bg-primary);
  padding: var(--space-32) 0;
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .cm-solutions {
  background: var(--bg-primary-dark);
}

.cm-solutions::before {
  content: '';
  position: absolute;
  top: 20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--brand-secondary) 0%, transparent 70%);
  opacity: 0.06;
  filter: blur(100px);
  animation: floatShape 30s ease-in-out infinite;
}

.cm-solutions-stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-24);
  position: relative;
  z-index: 1;
}

.cm-solution-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

@media (max-width: 900px) {
  .cm-solution-panel {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }
}

.cm-solution-panel:nth-child(even) .cm-solution-panel__media {
  order: 2;
}

@media (max-width: 900px) {
  .cm-solution-panel:nth-child(even) .cm-solution-panel__media {
    order: 1;
  }
}

.cm-solution-panel__media {
  position: relative;
}

.cm-panel-monitor {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-3xl);
  padding: var(--space-4);
  box-shadow: var(--shadow-xl);
  transition: all var(--transition-slow);
}

[data-theme="dark"] .cm-panel-monitor {
  background: var(--bg-tertiary-dark);
  border-color: var(--border-dark);
}

.cm-solution-panel:hover .cm-panel-monitor {
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-2xl);
}

.cm-monitor-screen {
  background: var(--bg-primary);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  position: relative;
}

[data-theme="dark"] .cm-monitor-screen {
  background: var(--bg-primary-dark);
}

.cm-monitor-dots {
  display: flex;
  gap: var(--space-2);
  padding: var(--space-4);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.cm-monitor-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border-medium);
}

.cm-monitor-dots span:nth-child(1) {
  background: var(--brand-danger);
}

.cm-monitor-dots span:nth-child(2) {
  background: var(--brand-warning);
}

.cm-monitor-dots span:nth-child(3) {
  background: var(--brand-success);
}

.cm-solution-panel__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.cm-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
  border: 1px solid rgba(99, 102, 241, 0.2);
  color: var(--brand-primary);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  width: fit-content;
}

.cm-solution-panel__content h3 {
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cm-solution-panel__content p {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: 1.7;
}

.cm-checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  list-style: none;
}

.cm-checklist-grid li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--text-primary);
  padding: var(--space-3);
  background: var(--bg-secondary);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
}

[data-theme="dark"] .cm-checklist-grid li {
  background: var(--bg-secondary-dark);
  border-color: var(--border-dark);
}

.cm-checklist-grid li i {
  color: var(--brand-primary);
  font-size: var(--text-base);
}

.cm-btn-group {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.cm-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: var(--text-sm);
  text-decoration: none;
  transition: all var(--transition-base);
}

.cm-btn--fill {
  background: var(--gradient-brand);
  color: var(--text-inverse);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.cm-btn--fill:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.cm-btn--ring {
  background: transparent;
  border: 2px solid var(--border-light);
  color: var(--text-primary);
}

[data-theme="dark"] .cm-btn--ring {
  border-color: var(--border-dark);
}

.cm-btn--ring:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}

.cm-btn__arrow {
  transition: transform var(--transition-base);
}

.cm-btn:hover .cm-btn__arrow {
  transform: translateX(4px);
}

/* ── New Core Strengths Section Design ── */
.cm-strengths {
  background: var(--bg-secondary);
  padding: var(--space-32) 0;
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .cm-strengths {
  background: var(--bg-secondary-dark);
}

.cm-strengths::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--brand-accent) 0%, transparent 70%);
  opacity: 0.05;
  filter: blur(120px);
  animation: floatShape 25s ease-in-out infinite;
}

.cm-strengths-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-8);
  position: relative;
  z-index: 1;
}

.cm-strength-panel {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-3xl);
  padding: var(--space-10);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-slow);
  box-shadow: var(--shadow-md);
}

[data-theme="dark"] .cm-strength-panel {
  background: var(--bg-surface-dark);
  border-color: var(--border-dark);
}

.cm-strength-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(6, 182, 212, 0.05) 100%);
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.cm-strength-panel:hover::before {
  opacity: 1;
}

.cm-strength-panel:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-2xl);
  border-color: var(--brand-accent);
}

.cm-strength-panel__blur {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
      rgba(6, 182, 212, 0.1),
      transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
}

.cm-strength-panel:hover .cm-strength-panel__blur {
  opacity: 1;
}

.cm-strength-panel__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-6);
}

.cm-strength-panel__icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-3xl);
  color: var(--text-inverse);
  margin-bottom: var(--space-2);
}

.cm-strength-panel__icon--efficiency {
  background: var(--gradient-warm);
  box-shadow: var(--shadow-lg);
}

.cm-strength-panel__icon--reliability {
  background: var(--gradient-brand);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.cm-strength-panel__icon--commitment {
  background: var(--gradient-success);
  box-shadow: var(--shadow-lg);
}

.cm-strength-panel h3 {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.cm-strength-panel p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.6;
}

.cm-strength-panel__tags {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: auto;
}

.cm-strength-panel__tags span {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(99, 102, 241, 0.1));
  border: 1px solid rgba(6, 182, 212, 0.2);
  color: var(--brand-accent);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* ── New Clients Section Design ── */
.cm-clients {
  background: var(--bg-primary);
  padding: var(--space-32) 0;
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .cm-clients {
  background: var(--bg-primary-dark);
}

.cm-clients::before {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--brand-primary) 0%, transparent 70%);
  opacity: 0.04;
  filter: blur(100px);
  animation: floatShape 35s ease-in-out infinite;
}

.cm-counters-hud {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-6);
  margin-bottom: var(--space-24);
  position: relative;
  z-index: 1;
}

.cm-counter-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-3xl);
  padding: var(--space-8);
  text-align: center;
  transition: all var(--transition-slow);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .cm-counter-box {
  background: var(--bg-surface-dark);
  border-color: var(--border-dark);
}

.cm-counter-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(99, 102, 241, 0.05) 100%);
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.cm-counter-box:hover::before {
  opacity: 1;
}

.cm-counter-box:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.cm-counter-box h4 {
  font-size: var(--text-5xl);
  font-weight: 900;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--space-2);
}

.cm-counter-box p {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text-tertiary);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.cm-logo-marquee {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-4) 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  z-index: 1;
}

.cm-marquee-track {
  display: flex;
  width: max-content;
  gap: var(--space-6);
  padding: var(--space-2) 0;
}

.cm-marquee-track--left {
  animation: cmScrollLeft 45s linear infinite;
}

.cm-marquee-track--right {
  animation: cmScrollRight 45s linear infinite;
}

.cm-logo-card {
  width: 160px;
  height: 80px;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
  transition: all var(--transition-slow);
  box-shadow: var(--shadow-sm);
}

[data-theme="dark"] .cm-logo-card {
  background: var(--bg-surface-dark);
  border-color: var(--border-dark);
}

.cm-logo-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(1) brightness(0.85);
  opacity: 0.6;
  transition: all var(--transition-base);
}

.cm-logo-card:hover {
  transform: translateY(-8px) scale(1.05) rotate(2deg);
  border-color: var(--brand-primary);
  background: var(--bg-primary);
  box-shadow: var(--shadow-xl);
}

[data-theme="dark"] .cm-logo-card:hover {
  background: var(--bg-primary-dark);
}

.cm-logo-card:hover img {
  filter: grayscale(0) brightness(1);
  opacity: 1;
}

/* ── New Footer Design ── */
.site-footer {
  background: linear-gradient(180deg,
      var(--bg-primary-dark) 0%,
      var(--bg-secondary-dark) 50%,
      var(--bg-tertiary-dark) 100%);
  color: var(--text-secondary-dark);
  padding: var(--space-24) 0 0;
  border-top: 1px solid var(--border-dark);
  position: relative;
  overflow: hidden;
}

body[data-theme="light"] .site-footer {
  background: linear-gradient(180deg,
      var(--bg-primary) 0%,
      var(--bg-secondary) 50%,
      var(--bg-tertiary) 100%);
  color: var(--text-secondary);
  border-top-color: var(--border-light);
}

/* ── New Gallery Design ── */
.gallery {
  background: var(--bg-secondary);
  padding: var(--space-32) 0;
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .gallery {
  background: var(--bg-secondary-dark);
}

.gallery::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--brand-secondary) 0%, transparent 70%);
  opacity: 0.04;
  filter: blur(120px);
  animation: floatShape 35s ease-in-out infinite;
}

.page-heading-panel {
  text-align: center;
  margin-bottom: var(--space-12);
  position: relative;
  z-index: 1;
}

.page-title {
  font-size: clamp(2.5rem, 5vw, var(--text-6xl));
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
}

.page-subtitle {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.gallery-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  margin-bottom: var(--space-10);
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.gallery-search {
  flex: 1;
  max-width: 400px;
  position: relative;
}

.gallery-search i {
  position: absolute;
  left: var(--space-4);
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-tertiary);
  font-size: var(--text-base);
}

.gallery-search input {
  width: 100%;
  padding: var(--space-4) var(--space-4) var(--space-4) var(--space-12);
  border-radius: var(--radius-2xl);
  border: 2px solid var(--border-light);
  background: var(--bg-surface);
  color: var(--text-primary);
  font-size: var(--text-base);
  font-family: var(--font-body);
  transition: all var(--transition-base);
}

[data-theme="dark"] .gallery-search input {
  background: var(--bg-surface-dark);
  border-color: var(--border-dark);
}

.gallery-search input:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.gallery-search input::placeholder {
  color: var(--text-tertiary);
}

.gallery-counter-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
  border: 1px solid rgba(99, 102, 241, 0.2);
  color: var(--brand-primary);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 700;
}

.gallery-counter-badge span {
  font-size: var(--text-lg);
  font-weight: 800;
}

.gallery-tabs-container {
  margin-bottom: var(--space-12);
  position: relative;
  z-index: 1;
}

.gallery-tabs {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  justify-content: center;
  padding: var(--space-2);
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-2xl);
  overflow-x: auto;
}

[data-theme="dark"] .gallery-tabs {
  background: var(--bg-surface-dark);
  border-color: var(--border-dark);
}

.gallery-tabs .tab {
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-xl);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-secondary);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  position: relative;
}

.gallery-tabs .tab:hover {
  color: var(--brand-primary);
  background: var(--bg-secondary);
}

[data-theme="dark"] .gallery-tabs .tab:hover {
  background: var(--bg-secondary-dark);
}

.gallery-tabs .tab.active {
  background: var(--gradient-brand);
  color: var(--text-inverse);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}

.gallery-group {
  display: none;
  animation: fadeIn 0.4s ease;
}

.gallery-group.active {
  display: block;
}

.gallery-group-title {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: var(--space-8);
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-6);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: all var(--transition-slow);
  box-shadow: var(--shadow-md);
}

.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: 1;
}

.gallery-item:hover::before {
  opacity: 1;
}

.gallery-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-xl);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-footer::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, var(--brand-primary) 0%, transparent 70%);
  opacity: 0.03;
  filter: blur(150px);
  animation: floatShape 40s ease-in-out infinite;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: var(--space-12);
  margin-bottom: var(--space-16);
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-column h4 {
  font-size: var(--text-sm);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-6);
  position: relative;
  padding-bottom: var(--space-4);
  color: var(--text-primary-dark);
}

body[data-theme="light"] .footer-column h4 {
  color: var(--text-primary);
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--gradient-brand);
  border-radius: var(--radius-full);
}

.logo-link {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  text-decoration: none;
  margin-bottom: var(--space-6);
}

.logo-link span {
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--text-primary-dark);
}

body[data-theme="light"] .logo-link span {
  color: var(--text-primary);
}

.footer-brand-side p {
  font-size: var(--text-base);
  line-height: 1.7;
  margin-bottom: var(--space-8);
  color: var(--text-secondary-dark);
}

body[data-theme="light"] .footer-brand-side p {
  color: var(--text-secondary);
}

.footer-social-v2 {
  display: flex;
  gap: var(--space-3);
}

.footer-social-v2 a {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xl);
  background: var(--bg-tertiary-dark);
  border: 1px solid var(--border-dark);
  color: var(--text-secondary-dark);
  font-size: var(--text-lg);
  transition: all var(--transition-base);
}

body[data-theme="light"] .footer-social-v2 a {
  background: var(--bg-tertiary);
  border-color: var(--border-light);
  color: var(--text-secondary);
}

.footer-social-v2 a:hover {
  background: var(--gradient-brand);
  border-color: transparent;
  color: var(--text-inverse);
  transform: translateY(-4px) rotate(360deg);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.footer-list {
  list-style: none;
}

.footer-list li+li {
  margin-top: var(--space-3);
}

.footer-list a {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-base);
  color: var(--text-secondary-dark);
  transition: all var(--transition-base);
  padding: var(--space-2) 0;
}

body[data-theme="light"] .footer-list a {
  color: var(--text-secondary);
}

.footer-list a:hover {
  color: var(--brand-primary);
  padding-left: var(--space-2);
  transform: translateX(4px);
}

.footer-list a i {
  color: var(--brand-primary);
  font-size: var(--text-sm);
}

.footer-contact-v2 {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.f-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.f-contact-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.15));
  border: 1px solid rgba(99, 102, 241, 0.25);
  border-radius: var(--radius-xl);
  color: var(--brand-primary);
  font-size: var(--text-lg);
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.f-contact-item:hover .f-contact-icon {
  background: var(--gradient-brand);
  border-color: transparent;
  color: var(--text-inverse);
  transform: scale(1.1) rotate(10deg);
}

.f-contact-info p {
  font-size: var(--text-xs);
  color: var(--text-tertiary-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-1);
}

body[data-theme="light"] .f-contact-info p {
  color: var(--text-tertiary);
}

.f-contact-info a {
  font-size: var(--text-base);
  color: var(--text-primary-dark);
  transition: color var(--transition-base);
  word-break: break-word;
}

body[data-theme="light"] .f-contact-info a {
  color: var(--text-primary);
}

.f-contact-info a:hover {
  color: var(--brand-primary);
}

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding: var(--space-8) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--text-sm);
  color: var(--text-tertiary-dark);
  flex-wrap: wrap;
  gap: var(--space-6);
  position: relative;
  z-index: 1;
}

body[data-theme="light"] .footer-bottom {
  border-top-color: var(--border-light);
  color: var(--text-tertiary);
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-6);
}

.footer-bottom-links a {
  color: var(--text-tertiary-dark);
  transition: color var(--transition-base);
}

body[data-theme="light"] .footer-bottom-links a {
  color: var(--text-tertiary);
}

.footer-bottom-links a:hover {
  color: var(--brand-primary);
}

/* ===================================================================
   NEW SECTIONS CSS (ns-*) — Complete Redesign v1.0
   =================================================================== */

/* ── Shared Utilities ────────────────────────────────────────────── */
.ns-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-primary);
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.25);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.ns-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 0.9rem;
}

.ns-grad {
  background: linear-gradient(135deg, #6366f1, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ns-section-head {
  text-align: center;
  margin-bottom: 3.5rem;
}

.ns-section-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Shared Buttons ─────────────────────────────────────────────── */
.ns-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #6366f1, #06b6d4);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.35);
}

.ns-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
}

.ns-btn-sm {
  font-size: 0.8rem;
  padding: 0.55rem 1.2rem;
}

.ns-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid var(--border-medium);
  transition: all 0.2s ease;
}

.ns-btn-ghost:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
  background: rgba(99, 102, 241, 0.05);
}

/* ════════════════════════════════════════════════════════════════
   ABOUT SECTION
════════════════════════════════════════════════════════════════ */
.ns-about {
  position: relative;
  overflow: hidden;
  padding: 7rem 0 0;
  background: var(--bg-primary);
}

/* Orbs */
.ns-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.35;
}

.ns-orb--1 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, #6366f1, transparent 70%);
  top: -100px;
  left: -100px;
}

.ns-orb--2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #06b6d4, transparent 70%);
  bottom: 100px;
  right: -80px;
}

.ns-orb--3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, #8b5cf6, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.15;
}

body[data-theme="light"] .ns-orb {
  opacity: 0.12;
}

/* Two-column layout */
.ns-about__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.ns-about__desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Stat pills */
.ns-stat-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.ns-stat-pill {
  display: flex;
  flex-direction: column;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: 1rem;
  padding: 1rem 1.2rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.ns-stat-pill:hover {
  border-color: var(--brand-primary);
  transform: translateY(-2px);
}

.ns-stat-pill__num {
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, #6366f1, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.ns-stat-pill__lbl {
  font-size: 0.72rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-top: 0.25rem;
}

.ns-about__cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Feature grid */
.ns-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.ns-feat-card {
  border-radius: 1.25rem;
  padding: 1.5rem;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  background: var(--bg-secondary);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ns-feat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.ns-feat-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 0.9rem;
  color: #fff;
}

.ns-feat-card--blue .ns-feat-card__icon {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.ns-feat-card--purple .ns-feat-card__icon {
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
}

.ns-feat-card--cyan .ns-feat-card__icon {
  background: linear-gradient(135deg, #06b6d4, #10b981);
}

.ns-feat-card--gold .ns-feat-card__icon {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.ns-feat-card--blue {
  border-color: rgba(59, 130, 246, 0.2);
}

.ns-feat-card--purple {
  border-color: rgba(139, 92, 246, 0.2);
}

.ns-feat-card--cyan {
  border-color: rgba(6, 182, 212, 0.2);
}

.ns-feat-card--gold {
  border-color: rgba(245, 158, 11, 0.2);
}

.ns-feat-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.ns-feat-card p {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Step Pill Trail Timeline (Compact, No Circles) */
.ns-timeline-compact {
  margin-top: 3.5rem;
  padding: 1rem 0;
  position: relative;
}

.ns-tl-c-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  width: 100%;
}

.ns-tl-pill {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: 30px;
  padding: 0.65rem 1.25rem;
  gap: 0.75rem;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .ns-tl-pill {
  background: rgba(18, 18, 21, 0.25);
  border-color: var(--border-dark);
}

.ns-tl-pill::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.ns-tl-pill:hover::before {
  opacity: 1;
}

.ns-tl-pill>* {
  position: relative;
  z-index: 2;
}

.ns-tl-p-year {
  font-size: 0.85rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ns-tl-p-divider {
  width: 1px;
  height: 12px;
  background: rgba(99, 102, 241, 0.2);
}

[data-theme="dark"] .ns-tl-p-divider {
  background: rgba(255, 255, 255, 0.1);
}

.ns-tl-p-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

[data-theme="dark"] .ns-tl-p-label {
  color: var(--text-secondary-dark);
}

/* Arrow Connector */
.ns-tl-arrow {
  font-size: 0.85rem;
  color: var(--brand-accent);
  opacity: 0.6;
  animation: arrowPulse 2s infinite ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

/* Active State */
.ns-tl-pill--active {
  background: rgba(99, 102, 241, 0.06);
  border-color: var(--brand-primary);
  box-shadow: 0 0 15px rgba(99, 102, 241, 0.15);
  animation: pillGlow 3s infinite ease-in-out;
}

.ns-tl-pill--active .ns-tl-p-year {
  background: linear-gradient(135deg, var(--brand-secondary) 0%, var(--brand-accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ns-tl-pill--active .ns-tl-p-label {
  color: var(--text-primary);
  font-weight: 800;
}

[data-theme="dark"] .ns-tl-pill--active .ns-tl-p-label {
  color: var(--text-primary-dark);
}

/* Hover States */
.ns-tl-pill:hover {
  transform: translateY(-3px);
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-md), 0 5px 15px rgba(99, 102, 241, 0.1);
}

.ns-tl-pill:hover .ns-tl-p-label {
  color: var(--text-primary);
}

[data-theme="dark"] .ns-tl-pill:hover .ns-tl-p-label {
  color: var(--text-primary-dark);
}

/* Animations */
@keyframes arrowPulse {

  0%,
  100% {
    transform: translateX(0);
    opacity: 0.4;
  }

  50% {
    transform: translateX(4px);
    opacity: 1;
  }
}

@keyframes pillGlow {

  0%,
  100% {
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.1);
  }

  50% {
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.25);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .ns-tl-c-row {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }

  .ns-tl-arrow {
    transform: rotate(90deg);
    animation: arrowPulseV 2s infinite ease-in-out;
    width: auto;
    margin: 0.2rem 0;
  }

  .ns-tl-pill {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}

@keyframes arrowPulseV {

  0%,
  100% {
    transform: rotate(90deg) translate(0, 0);
    opacity: 0.4;
  }

  50% {
    transform: rotate(90deg) translate(4px, 0);
    opacity: 1;
  }
}


/* ════════════════════════════════════════════════════════════════
   SERVICES SECTION
════════════════════════════════════════════════════════════════ */
.ns-services {
  padding: 7rem 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.ns-services::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(99, 102, 241, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 20% 80%, rgba(6, 182, 212, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.ns-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.ns-srv-card {
  background: rgba(255, 255, 255, 0.45) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(99, 102, 241, 0.1) !important;
  border-radius: 1.5rem;
  padding: 1.5rem 1.5rem 1.75rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease !important;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.02) !important;
}

.ns-srv-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: rgba(255, 255, 255, 0.7) !important;
  box-shadow: 0 20px 45px rgba(99, 102, 241, 0.16) !important;
  border-color: var(--brand-primary, #5f5bf6) !important;
}

.ns-srv-card:hover .ns-srv-icon {
  transform: scale(1.15) rotate(6deg);
  box-shadow: 0 0 25px rgba(99, 102, 241, 0.4);
}

.ns-srv-card:hover .ns-srv-link {
  gap: 0.6rem;
  color: var(--brand-primary, #5f5bf6);
}

.ns-srv-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  /* Prevent blocking clicks on links/buttons inside */
}

.ns-srv-card:hover::after {
  opacity: 1;
}

.ns-srv-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.4rem;
}

.ns-srv-icon {
  width: 48px;
  height: 48px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
}

.ns-srv-icon--indigo {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.ns-srv-icon--blue {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.ns-srv-icon--cyan {
  background: linear-gradient(135deg, #06b6d4, #10b981);
}

.ns-srv-icon--purple {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.ns-srv-icon--gold {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.ns-srv-icon--green {
  background: linear-gradient(135deg, #10b981, #06b6d4);
}

.ns-srv-icon--red {
  background: linear-gradient(135deg, #ef4444, #f59e0b);
}

.ns-srv-icon--teal {
  background: linear-gradient(135deg, #14b8a6, #3b82f6);
}

.ns-srv-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--border-medium);
  line-height: 1;
  opacity: 0.5;
}

.ns-srv-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}

.ns-srv-card p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.65;
  flex: 1;
}

.ns-srv-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.ns-srv-tags span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: rgba(99, 102, 241, 0.1);
  color: var(--brand-primary);
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.ns-srv-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand-primary);
  text-decoration: none;
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border-light);
  transition: gap 0.2s ease;
}

.ns-srv-link:hover {
  gap: 0.6rem;
}

/* ════════════════════════════════════════════════════════════════
   SOLUTIONS SECTION
════════════════════════════════════════════════════════════════ */
.ns-solutions {
  padding: 7rem 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.ns-solutions::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 60% at 10% 50%, rgba(99, 102, 241, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 90% 50%, rgba(6, 182, 212, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.ns-sol-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.ns-sol-card {
  position: relative;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: 2rem;
  overflow: hidden;
  padding: 2.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ns-sol-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

.ns-sol-card__badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  color: #fff;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
}

.ns-sol-card__icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  flex-shrink: 0;
}

.ns-sol-icon--indigo {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.35);
}

.ns-sol-icon--blue {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.35);
}

.ns-sol-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.ns-sol-card__tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-primary);
}

.ns-sol-card__body h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
}

.ns-sol-card__body p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.ns-sol-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
}

.ns-sol-list li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.ns-sol-list li i {
  color: var(--brand-success);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════════
   STRENGTHS SECTION
════════════════════════════════════════════════════════════════ */
.ns-strengths {
  position: relative;
  padding: 7rem 0;
  background: var(--bg-secondary);
  overflow: hidden;
}

.ns-str-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(99, 102, 241, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 102, 241, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

body[data-theme="light"] .ns-str-bg {
  background-image:
    linear-gradient(rgba(99, 102, 241, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 102, 241, 0.06) 1px, transparent 1px);
}

.ns-str-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.ns-pillar {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: 1.5rem;
  padding: 2rem 1.5rem 1.75rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ns-pillar:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.ns-pillar__num {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  font-size: 3rem;
  font-weight: 900;
  color: var(--border-light);
  line-height: 1;
  opacity: 0.6;
  pointer-events: none;
  user-select: none;
}

[data-theme="dark"] .ns-pillar__num {
  color: var(--border-dark);
  opacity: 0.4;
}

.ns-pillar__icon-ring {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  position: relative;
  z-index: 1;
}

.ns-pillar__icon-ring--blue {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.ns-pillar__icon-ring--purple {
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.ns-pillar__icon-ring--gold {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.ns-pillar__icon-ring--cyan {
  background: linear-gradient(135deg, #06b6d4, #10b981);
  box-shadow: 0 6px 20px rgba(6, 182, 212, 0.4);
}

.ns-pillar h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.ns-pillar p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.7;
  flex: 1;
}

.ns-pillar__tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.ns-pillar__tags span {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.1);
  color: var(--brand-primary);
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.ns-pillar__line {
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
  margin-top: 0.3rem;
  opacity: 0.5;
  transition: opacity 0.25s ease;
}

.ns-pillar:hover .ns-pillar__line {
  opacity: 1;
}

/* ════════════════════════════════════════════════════════════════
   CLIENTS SECTION
════════════════════════════════════════════════════════════════ */
.ns-clients {
  padding: 0 0 7rem;
  background: var(--bg-primary);
  overflow: hidden;
}

/* Counters Strip */
.ns-counters-strip {
  background: linear-gradient(135deg, #6366f1 0%, #3b82f6 50%, #06b6d4 100%);
  padding: 2.5rem 0;
  margin-bottom: 5rem;
}

.ns-ctr-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.ns-ctr-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 3rem;
  color: #fff;
}

.ns-ctr-item>i {
  font-size: 1.8rem;
  opacity: 0.8;
}

.ns-ctr-item>div {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.ns-ctr-num {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
}

.ns-ctr-lbl {
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.85;
  color: rgba(255, 255, 255, 0.9);
}

.ns-ctr-sep {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

/* Logo Marquee */
.ns-logo-marquee {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  position: relative;
  z-index: 1;
}

.ns-logo-marquee::before,
.ns-logo-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 200px;
  z-index: 2;
  pointer-events: none;
}

.ns-logo-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-primary) 0%, transparent 100%);
}

.ns-logo-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg-primary) 0%, transparent 100%);
}

.ns-marquee-track {
  display: flex;
  gap: 1.2rem;
  width: max-content;
  padding: 0.6rem 0;
  transition: animation-play-state 0.3s ease;
}

/* Pause animation on hover for better user interaction */
.ns-logo-marquee:hover .ns-marquee-track {
  animation-play-state: paused;
}

.ns-marquee-track--left {
  animation: marqueeLeft 30s linear infinite;
}

.ns-marquee-track--right {
  animation: marqueeRight 28s linear infinite;
}

@keyframes marqueeLeft {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes marqueeRight {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.ns-logo-card {
  position: relative;
  flex-shrink: 0;
  width: 145px;
  height: 75px;
  background: #ffffff !important;
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04) !important;
  transition: background-color 0.3s ease, transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease !important;
  overflow: hidden;
}

/* Default border using mask-composite */
.ns-logo-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 1.25rem;
  padding: 1.5px;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.3s ease;
  z-index: 1;
}

/* Hover border using mask-composite */
.ns-logo-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 1.25rem;
  padding: 1.5px;
  background: linear-gradient(135deg, var(--brand-secondary) 0%, var(--brand-accent) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.ns-logo-card:hover {
  transform: translateY(-4px) scale(1.02) !important;
  background: #f7f9ff !important;
  box-shadow: 0 12px 25px rgba(99, 102, 241, 0.14) !important;
}

.ns-logo-card:hover::after {
  opacity: 1;
}

.ns-logo-card:hover::before {
  opacity: 0;
}

.ns-logo-card img {
  max-width: 100%;
  max-height: 44px;
  object-fit: contain;
  filter: none !important;
  opacity: 1 !important;
  transition: all 0.3s ease;
  z-index: 2;
}

.ns-logo-card:hover img {
  filter: none !important;
  opacity: 1 !important;
}

/* ════════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════════ */
.ns-footer {
  background: #060c1a;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding-bottom: 0;
}

.ns-footer__wave {
  color: var(--bg-primary);
  line-height: 0;
  margin-bottom: -1px;
}

.ns-footer__wave svg {
  width: 100%;
  height: 80px;
  display: block;
}

.ns-footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding: 4rem 0 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ns-footer__brand p {
  font-size: 0.85rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 1rem;
  max-width: 280px;
}

.ns-footer__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.ns-footer__logo img {
  height: 38px;
  width: auto;
}

.ns-footer__logo span {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.ns-footer__socials {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.ns-footer__col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.2rem;
}

.ns-footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.ns-footer__col ul li a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s ease, gap 0.2s ease;
}

.ns-footer__col ul li a:hover {
  color: #fff;
  gap: 0.6rem;
}

.ns-footer__col ul li a i {
  font-size: 0.65rem;
  opacity: 0.6;
}

.ns-footer__contact h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.2rem;
}

.ns-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.ns-footer__ci-icon {
  width: 36px;
  height: 36px;
  border-radius: 0.6rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--brand-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.ns-footer__contact-item>div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.ns-footer__contact-item small {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ns-footer__contact-item a,
.ns-footer__contact-item span {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
}

.ns-footer__contact-item a:hover {
  color: #fff;
}

.ns-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  gap: 1rem;
  flex-wrap: wrap;
}

.ns-footer__bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.ns-footer__bottom-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ns-footer__bottom-links a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s ease;
}

.ns-footer__bottom-links a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.ns-footer__bottom-links span {
  color: rgba(255, 255, 255, 0.2);
}

/* ===================================================================
   SOLUTIONS v2 — Split Panel Design (sol2-*)
   =================================================================== */

.sol2-section {
  padding: 6rem 0;
  background: var(--bg-primary);
  background-image:
    radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(6, 182, 212, 0.03) 0%, transparent 50%);
  overflow: hidden;
  position: relative;
}

/* ── Container Layout ─────────────────────────────────────────── */
.sol2-panel {
  display: grid;
  grid-template-columns: 340px 1fr;
  max-width: 980px;
  margin: 0 auto 2.5rem;
  align-items: stretch;
  background: rgba(30, 41, 59, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.sol2-panel:hover {
  transform: translateY(-5px);
  border-color: rgba(99, 102, 241, 0.35);
  box-shadow: 0 30px 60px -15px rgba(99, 102, 241, 0.15);
}

.sol2-panel--reverse {
  grid-template-columns: 1fr 340px;
}

/* ── Visual Side ──────────────────────────────────────────────── */
.sol2-panel__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem 1.5rem;
  height: 360px;
  overflow: hidden;
  background: #090d16;
  border-radius: 1.5rem;
  margin: 1rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Image Backdrop & Overlay */
.sol2-visual__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  z-index: 1;
  border-radius: 1.5rem;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.sol2-panel:hover .sol2-visual__img {
  transform: scale(1.06);
}

.sol2-visual__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  border-radius: 1.5rem;
  background: linear-gradient(to bottom, rgba(9, 13, 22, 0.1) 0%, rgba(9, 13, 22, 0.6) 100%);
}

body[data-theme="light"] .sol2-visual__overlay {
  background: linear-gradient(to bottom, rgba(241, 245, 249, 0.1) 0%, rgba(241, 245, 249, 0.6) 100%);
}

/* Dynamic Glowing Gradients */
.sol2-visual--indigo {
  background: radial-gradient(circle at 50% 50%, rgba(79, 70, 229, 0.25) 0%, rgba(9, 13, 22, 1) 75%),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.01) 0px, rgba(255, 255, 255, 0.01) 1px, transparent 1px, transparent 10px);
}

.sol2-visual--blue {
  background: radial-gradient(circle at 50% 50%, rgba(29, 78, 216, 0.25) 0%, rgba(9, 13, 22, 1) 75%),
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.01) 0px, rgba(255, 255, 255, 0.01) 1px, transparent 1px, transparent 10px);
}

/* Radar Scan & Pulsing Orbs */
.sol2-visual__orb {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.08);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: sol2RadarSpin 24s linear infinite;
}

.sol2-visual__orb::before {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.03);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: inset 0 0 40px rgba(99, 102, 241, 0.05);
}

@keyframes sol2RadarSpin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Icon Container */
.sol2-visual__icon-big {
  width: 130px;
  height: 130px;
  border-radius: 2.2rem;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: #fff;
  position: relative;
  z-index: 2;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4),
    inset 0 0 20px rgba(255, 255, 255, 0.05);
  animation: sol2IconFloat 6s ease-in-out infinite;
  transition: transform 0.3s;
}

.sol2-panel:hover .sol2-visual__icon-big {
  transform: scale(1.05);
  border-color: rgba(99, 102, 241, 0.3);
}

.sol2-visual--indigo .sol2-visual__icon-big {
  color: #a78bfa;
  text-shadow: 0 0 20px rgba(167, 139, 250, 0.5);
}

.sol2-visual--blue .sol2-visual__icon-big {
  color: #60a5fa;
  text-shadow: 0 0 20px rgba(96, 165, 250, 0.5);
}

@keyframes sol2IconFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* Dashboard Stats Panel (Aligned at bottom as a sleek telemetry bar) */
.sol2-visual__stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: rgba(9, 13, 22, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0 0 1.5rem 1.5rem;
  padding: 0.75rem 0;
  z-index: 3;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.25);
  margin: 0;
}

.sol2-vstat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0.4rem;
  gap: 0.15rem;
}

.sol2-vstat__n {
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.sol2-visual--indigo .sol2-vstat__n {
  color: #c084fc;
}

.sol2-visual--blue .sol2-vstat__n {
  color: #38bdf8;
}

.sol2-vstat__l {
  font-size: 0.6rem;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.sol2-vstat__sep {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

/* Status Indicator Badge */
.sol2-visual__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: auto;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  z-index: 3;
}

.sol2-visual__badge::after {
  content: '';
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px #10b981;
  animation: sol2IndicatorBlink 1.5s infinite;
}

@keyframes sol2IndicatorBlink {

  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 1;
  }
}

/* ── Content Side ──────────────────────────────────────────────── */
.sol2-panel__content {
  padding: 2rem 3.5rem 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.65rem;
  background: transparent;
}

.sol2-panel--reverse .sol2-panel__content {
  padding: 2rem 2.5rem 2rem 3.5rem;
}

.sol2-panel__title {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--text-primary);
  margin: 0;
}

.sol2-panel__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Feature grid */
.sol2-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.sol2-feat {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 0.45rem 0.65rem;
  border-radius: 0.5rem;
  transition: background 0.2s, border-color 0.2s;
}

.sol2-panel:hover .sol2-feat {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.06);
}

.sol2-feat__icon {
  width: 26px;
  height: 26px;
  border-radius: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  color: #fff;
}

.sol2-fi--blue {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
}

.sol2-fi--cyan {
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
}

.sol2-fi--purple {
  background: linear-gradient(135deg, #8b5cf6, #d946ef);
}

.sol2-fi--red {
  background: linear-gradient(135deg, #ef4444, #ec4899);
}

.sol2-fi--green {
  background: linear-gradient(135deg, #10b981, #06b6d4);
}

.sol2-fi--gold {
  background: linear-gradient(135deg, #f59e0b, #eab308);
}

.sol2-panel__actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

/* ── CTA Banner ───────────────────────────────────────────────── */
.sol2-cta-banner {
  margin-top: 4rem;
  margin-bottom: 2rem;
  background: radial-gradient(circle at 0% 0%, rgba(99, 102, 241, 0.15) 0%, rgba(6, 182, 212, 0.05) 50%, transparent 100%),
    rgba(30, 41, 59, 0.45);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2.2rem;
  padding: 3.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.sol2-cta-banner::before {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
  top: -100px;
  right: 5%;
  pointer-events: none;
}

.sol2-cta-banner__left h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.sol2-cta-banner__left p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0;
}

.sol2-cta-banner__right {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.sol2-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, #6366f1, #06b6d4);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 10px 24px rgba(99, 102, 241, 0.3);
}

.sol2-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(99, 102, 241, 0.4);
}

.sol2-cta-btn--ghost {
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.sol2-cta-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

/* ── Light Mode Adaptations ──────────────────────────────────── */
body[data-theme="light"] .sol2-panel {
  background: rgba(255, 255, 255, 0.45) !important;
  backdrop-filter: blur(16px) saturate(1.4) !important;
  -webkit-backdrop-filter: blur(16px) saturate(1.4) !important;
  border-color: rgba(99, 102, 241, 0.1) !important;
  box-shadow: 0 30px 60px -15px rgba(99, 102, 241, 0.04) !important;
}

body[data-theme="light"] .sol2-panel:hover {
  background: rgba(255, 255, 255, 0.65) !important;
  border-color: rgba(99, 102, 241, 0.25) !important;
  box-shadow: 0 40px 80px -15px rgba(99, 102, 241, 0.08) !important;
}

body[data-theme="light"] .sol2-panel__visual {
  background: #f1f5f9;
}

body[data-theme="light"] .sol2-visual--indigo {
  background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.08) 0%, #f1f5f9 80%);
}

body[data-theme="light"] .sol2-visual--blue {
  background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.08) 0%, #f1f5f9 80%);
}

body[data-theme="light"] .sol2-visual__orb {
  border-color: rgba(99, 102, 241, 0.08);
}

body[data-theme="light"] .sol2-visual__icon-big {
  background: #fff;
  border-color: rgba(99, 102, 241, 0.15);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.1);
}

body[data-theme="light"] .sol2-visual__stats {
  background: rgba(255, 255, 255, 0.85);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-left: none;
  border-right: none;
  border-bottom: none;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.03);
}

body[data-theme="light"] .sol2-visual__badge {
  background: rgba(9, 13, 22, 0.65);
  border-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

body[data-theme="light"] .sol2-vstat__n {
  color: var(--text-primary);
}

body[data-theme="light"] .sol2-vstat__sep {
  background: rgba(0, 0, 0, 0.05);
}

body[data-theme="light"] .sol2-feat {
  background: rgba(0, 0, 0, 0.02);
  border-color: rgba(0, 0, 0, 0.04);
}

body[data-theme="light"] .sol2-panel:hover .sol2-feat {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.06);
}

body[data-theme="light"] .sol2-cta-banner {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.06);
}

body[data-theme="light"] .sol2-cta-banner__left h3 {
  color: var(--text-primary);
}

body[data-theme="light"] .sol2-cta-btn--ghost {
  background: rgba(0, 0, 0, 0.02);
  color: var(--text-primary);
  border-color: rgba(0, 0, 0, 0.1);
}

body[data-theme="light"] .sol2-cta-btn--ghost:hover {
  background: rgba(0, 0, 0, 0.05);
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 1024px) {

  .sol2-panel,
  .sol2-panel--reverse {
    grid-template-columns: 1fr;
    min-height: auto;
    max-width: 600px;
    margin: 0 auto 2rem;
  }

  .sol2-panel__visual {
    height: 260px;
    padding: 2rem 1.5rem;
  }

  .sol2-panel__content,
  .sol2-panel--reverse .sol2-panel__content {
    padding: 2.5rem 1.5rem;
  }

  .sol2-panel--reverse .sol2-panel__visual {
    order: -1;
  }

  .sol2-cta-banner {
    padding: 3rem 2rem;
  }
}

@media (max-width: 640px) {
  .sol2-features {
    grid-template-columns: 1fr;
  }

  .sol2-visual__stats {
    position: absolute !important;
    bottom: 0.75rem !important;
    left: 0.75rem !important;
    right: 0.75rem !important;
    width: auto !important;
    max-width: none !important;
    flex-direction: row !important;
    /* Horizontal layout on mobile */
    justify-content: space-around !important;
    align-items: center !important;
    padding: 0.6rem 0.25rem !important;
    border-radius: 1rem !important;
    /* Rounded corners on all 4 sides */
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
  }

  body[data-theme="light"] .sol2-visual__stats {
    background: rgba(255, 255, 255, 0.92) !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05) !important;
  }

  .sol2-vstat {
    width: auto !important;
    padding: 0 !important;
    flex: 1 !important;
  }

  .sol2-vstat__n {
    font-size: 1.05rem !important;
    /* Balanced font size to fit horizontally */
  }

  .sol2-vstat__l {
    font-size: 0.68rem !important;
    letter-spacing: 0.5px !important;
  }

  .sol2-vstat__sep {
    width: 1px !important;
    /* Vertical line separator */
    height: 18px !important;
    background: rgba(255, 255, 255, 0.08) !important;
  }

  body[data-theme="light"] .sol2-vstat__sep {
    background: rgba(0, 0, 0, 0.05) !important;
  }

  .sol2-visual__icon-big {
    width: 95px;
    height: 95px;
    font-size: 2.8rem;
  }

  .sol2-cta-banner {
    flex-direction: column;
    text-align: center;
  }

  .sol2-cta-banner__right {
    justify-content: center;
  }

  .sol2-panel__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .sol2-panel__actions a {
    width: 100%;
    justify-content: center;
  }
}

/* ===================================================================
   NEW HEADER (nh-*) — Premium Glassmorphism Design
   =================================================================== */

/* ── Base ──────────────────────────────────────────────────────── */
.nh-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
  /* Default: transparent over hero */
  background: transparent;
}

/* Scrolled state — applied via JS */
.nh-header.nh-scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

[data-theme="dark"] .nh-header.nh-scrolled {
  background: rgba(15, 23, 42, 0.88);
  border-bottom-color: rgba(99, 102, 241, 0.15);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

/* ── Inner layout ──────────────────────────────────────────────── */
.nh-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 76px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* ── Logo ──────────────────────────────────────────────────────── */
.nh-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nh-logo__img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.nh-logo__img--dark {
  display: none;
}

.nh-logo__img--light {
  display: block;
}

[data-theme="dark"] .nh-logo__img--light {
  display: none;
}

[data-theme="dark"] .nh-logo__img--dark {
  display: block;
}

.nh-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.nh-logo__name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.nh-logo__accent {
  background: linear-gradient(135deg, #6366f1, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nh-logo__sub {
  font-size: 0.62rem;
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ── Desktop Nav ───────────────────────────────────────────────── */
.nh-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nh-nav__list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nh-nav__item {
  position: relative;
}

.nh-nav__link {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  padding: 0.5rem 0.85rem;
  border-radius: 0.6rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}

/* Transparent header — white text on hero */
.nh-header:not(.nh-scrolled) .nh-nav__link {
  color: rgba(255, 255, 255, 0.9);
}

.nh-nav__link:hover,
.nh-nav__item--drop:hover>.nh-nav__link {
  background: rgba(99, 102, 241, 0.08);
  color: var(--brand-primary);
}

.nh-header:not(.nh-scrolled) .nh-nav__link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.nh-drop-arrow {
  font-size: 0.6rem;
  transition: transform 0.2s ease;
}

.nh-nav__drop-btn[aria-expanded="true"] .nh-drop-arrow {
  transform: rotate(180deg);
}

/* ── Dropdown ──────────────────────────────────────────────────── */
.nh-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(24px) saturate(1.4) !important;
  -webkit-backdrop-filter: blur(24px) saturate(1.4) !important;
  border-radius: 1.25rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(99, 102, 241, 0.06);
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 100;
}

.nh-dropdown--wide {
  min-width: 520px;
  left: -40px;
  transform: translateX(0) translateY(8px);
}

.nh-nav__drop-btn[aria-expanded="true"]+.nh-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nh-nav__drop-btn[aria-expanded="true"]+.nh-dropdown--wide {
  transform: translateX(0) translateY(0);
}

/* Arrow notch */
.nh-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: var(--bg-surface);
  border-left: 1px solid var(--border-light);
  border-top: 1px solid var(--border-light);
  transform: translateX(-50%) rotate(45deg);
}

.nh-dropdown--wide::before {
  left: 60px;
  transform: translateX(0) rotate(45deg);
}

.nh-dropdown__inner {
  padding: 0.6rem;
}

.nh-dropdown__inner--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

/* ── Drop Items ────────────────────────────────────────────────── */
.nh-drop-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.9rem;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: background 0.15s ease;
  color: inherit;
}

.nh-drop-item:hover {
  background: rgba(99, 102, 241, 0.06);
}

.nh-drop-item__icon {
  width: 36px;
  height: 36px;
  border-radius: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: #fff;
  flex-shrink: 0;
}

.nh-di--indigo {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.nh-di--blue {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.nh-di--cyan {
  background: linear-gradient(135deg, #06b6d4, #10b981);
}

.nh-di--purple {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.nh-di--gold {
  background: linear-gradient(135deg, #f59e0b, #f97316);
}

.nh-di--green {
  background: linear-gradient(135deg, #10b981, #06b6d4);
}

.nh-di--red {
  background: linear-gradient(135deg, #ef4444, #f59e0b);
}

.nh-di--teal {
  background: linear-gradient(135deg, #14b8a6, #3b82f6);
}

.nh-drop-item strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.1rem;
}

.nh-drop-item span {
  display: block;
  font-size: 0.72rem;
  color: var(--text-secondary);
}

/* ── Right Actions ─────────────────────────────────────────────── */
.nh-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

/* Phone widget */
.nh-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  padding: 0.4rem 0.75rem;
  border-radius: 0.75rem;
  background: rgba(99, 102, 241, 0.06);
  border: 1px solid rgba(99, 102, 241, 0.15);
  transition: background 0.2s ease;
}

.nh-header:not(.nh-scrolled) .nh-phone {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.nh-phone:hover {
  background: rgba(99, 102, 241, 0.12);
}

.nh-phone__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1, #06b6d4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #fff;
  flex-shrink: 0;
}

.nh-phone__text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.nh-phone__text span {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.nh-header:not(.nh-scrolled) .nh-phone__text span {
  color: #fff;
}

.nh-phone__text small {
  font-size: 0.62rem;
  color: var(--text-secondary);
}

.nh-header:not(.nh-scrolled) .nh-phone__text small {
  color: rgba(255, 255, 255, 0.7);
}

/* Theme toggle */
.nh-theme-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: all 0.2s ease;
  position: relative;
}

.nh-header:not(.nh-scrolled) .nh-theme-btn {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.nh-theme-btn:hover {
  color: var(--brand-primary);
}

.nh-moon {
  display: none;
}

[data-theme="dark"] .nh-sun {
  display: none;
}

[data-theme="dark"] .nh-moon {
  display: block;
}

/* CTA button */
.nh-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, #6366f1, #06b6d4);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.4);
  white-space: nowrap;
}

.nh-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.5);
}

/* Hamburger */
.nh-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.6rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: border-color 0.2s ease;
}

.nh-scrolled .nh-burger {
  border-color: var(--border-light);
}

.nh-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.25s ease;
}

.nh-scrolled .nh-burger span {
  background: var(--text-primary);
}

.nh-burger.is-open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nh-burger.is-open span:nth-child(2) {
  opacity: 0;
}

.nh-burger.is-open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Mobile Drawer ─────────────────────────────────────────────── */
.nh-drawer {
  position: fixed;
  top: 15px;
  right: -280px; /* Positioned fully off-screen when closed to prevent overflow */
  left: auto !important;
  width: 250px; /* Compact width */
  max-width: calc(100vw - 30px);
  height: auto; /* Dynamic content-driven height (shorter at the bottom) */
  max-height: calc(100dvh - 30px); /* Restrict bounds */
  background: #090d16 !important; /* Solid opaque dark navy background */
  z-index: 1100;
  display: flex;
  flex-direction: column;
  border-radius: 20px !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05) !important;
  opacity: 0;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, visibility 0.4s ease;
  overflow-y: auto;
  visibility: hidden;
}

body[data-theme="light"] .nh-drawer {
  background: #ffffff !important; /* Solid opaque white background (No transparency) */
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
}

body[data-theme="light"] .nh-drawer__link,
body[data-theme="light"] .nh-drawer__toggle {
  color: #334155 !important;
}

body[data-theme="light"] .nh-drawer__link:hover,
body[data-theme="light"] .nh-drawer__toggle:hover {
  background: rgba(0, 0, 0, 0.04) !important;
  color: var(--brand-primary) !important;
}

body[data-theme="light"] .nh-drawer__sub a {
  color: var(--text-secondary) !important;
}

body[data-theme="light"] .nh-drawer__sub a:hover {
  color: var(--brand-primary) !important;
}

body[data-theme="light"] .nh-drawer__header {
  border-bottom-color: rgba(0, 0, 0, 0.06) !important;
}

body[data-theme="light"] .nh-drawer__close {
  background: rgba(0, 0, 0, 0.04) !important;
  color: var(--text-primary) !important;
}

body[data-theme="light"] .nh-drawer__close:hover {
  background: rgba(0, 0, 0, 0.08) !important;
}

.nh-drawer.is-open {
  right: 8px; /* Slide closer to the right edge (8px gap) */
  left: auto !important;
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}

.nh-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.2rem; /* Compact padding */
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
  width: 100%;
}

body[data-theme="light"] .nh-drawer__header {
  border-bottom-color: rgba(0, 0, 0, 0.05);
}

.nh-drawer__header .nh-logo {
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
}

.nh-drawer__header .nh-logo img {
  height: 28px !important; /* Compact logo size */
  width: auto !important;
  object-fit: contain !important;
  display: block !important;
  flex-shrink: 0 !important;
}

body[data-theme="light"] .nh-drawer__header .nh-logo img {
  content: url("../Logo.png") !important; /* Swap logo image dynamically in light theme */
}

.nh-drawer__header .nh-logo span {
  font-weight: 700 !important;
  font-size: 0.9rem !important; /* Compact text size */
  color: #fff !important;
  letter-spacing: -0.01em !important;
}

body[data-theme="light"] .nh-drawer__header .nh-logo span {
  color: #0f172a !important;
}

.nh-drawer__close {
  width: 32px; /* Smaller close button */
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.nh-drawer__close:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
  transform: rotate(90deg);
}

body[data-theme="light"] .nh-drawer__close {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.05);
  color: #0f172a;
}

body[data-theme="light"] .nh-drawer__close:hover {
  background: rgba(0, 0, 0, 0.06) !important;
  border-color: rgba(0, 0, 0, 0.12) !important;
  color: #0f172a !important;
}

.nh-drawer__nav {
  flex: 1;
  padding: 0.8rem 0; /* Compact padding */
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

/* Staggered entrance animations for links */
.nh-drawer__nav > * {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nh-drawer.is-open .nh-drawer__nav > * {
  opacity: 1;
  transform: translateY(0);
}

.nh-drawer.is-open .nh-drawer__nav > *:nth-child(1) { transition-delay: 0.05s; }
.nh-drawer.is-open .nh-drawer__nav > *:nth-child(2) { transition-delay: 0.1s; }
.nh-drawer.is-open .nh-drawer__nav > *:nth-child(3) { transition-delay: 0.15s; }
.nh-drawer.is-open .nh-drawer__nav > *:nth-child(4) { transition-delay: 0.20s; }
.nh-drawer.is-open .nh-drawer__nav > *:nth-child(5) { transition-delay: 0.25s; }

.nh-drawer__link {
  display: block;
  padding: 0.75rem 1.2rem; /* Compact spacing */
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8) !important;
  text-decoration: none;
  transition: all 0.25s ease;
  border-left: 3px solid transparent;
}

.nh-drawer__link:hover {
  background: rgba(99, 102, 241, 0.05) !important;
  color: #818cf8 !important;
  border-left-color: #818cf8 !important;
  padding-left: 1.5rem !important;
}

body[data-theme="light"] .nh-drawer__link:hover {
  background: rgba(79, 70, 229, 0.04) !important;
  color: #4f46e5 !important;
  border-left-color: #4f46e5 !important;
}

.nh-drawer__group {
  width: 100%;
}

.nh-drawer__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.2rem; /* Compact spacing */
  background: none;
  border: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  font-family: inherit;
  transition: all 0.25s ease;
  border-left: 3px solid transparent;
}

.nh-drawer__toggle:hover {
  background: rgba(99, 102, 241, 0.05) !important;
  color: #818cf8 !important;
  border-left-color: #818cf8 !important;
  padding-left: 1.5rem !important;
}

body[data-theme="light"] .nh-drawer__toggle:hover {
  background: rgba(79, 70, 229, 0.04) !important;
  color: #4f46e5 !important;
  border-left-color: #4f46e5 !important;
}

.nh-drawer__toggle i {
  font-size: 0.75rem;
  transition: transform 0.25s ease;
  opacity: 0.6;
}

.nh-drawer__group.is-open .nh-drawer__toggle i {
  transform: rotate(180deg);
}

.nh-drawer__sub {
  display: none;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.12);
  margin: 0.2rem 1.2rem 0.5rem 1.2rem; /* Compact margin */
  padding: 0.3rem 0;
  gap: 0.1rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

body[data-theme="light"] .nh-drawer__sub {
  background: rgba(0, 0, 0, 0.02);
  border-color: rgba(0, 0, 0, 0.03);
}

.nh-drawer__group.is-open .nh-drawer__sub {
  display: flex;
}

.nh-drawer__sub a {
  display: block;
  padding: 0.55rem 1.2rem; /* Compact padding */
  font-size: 0.84rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6) !important;
  text-decoration: none;
  transition: all 0.2s ease;
  border-radius: 6px;
}

.nh-drawer__sub a:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.03) !important;
  padding-left: 1.5rem !important;
}

body[data-theme="light"] .nh-drawer__sub a {
  color: #475569 !important;
}

body[data-theme="light"] .nh-drawer__sub a:hover {
  color: #4f46e5 !important;
  background: rgba(0, 0, 0, 0.02) !important;
}

.nh-drawer__footer {
  padding: 1rem 1.2rem; /* Compact padding */
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  background: rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

/* Force the drawer CTA button to be a pill shape and override circular rules on mobile */
.nh-drawer__footer .nh-cta {
  width: 100% !important;
  height: auto !important;
  padding: 0.75rem 1.5rem !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  color: #fff !important;
  white-space: nowrap !important;
  background: linear-gradient(135deg, #6366f1, #06b6d4) !important;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.4) !important;
  transform: none !important;
}

.nh-drawer__footer .nh-cta span {
  display: inline !important; /* Keep the CTA label showing */
}

body[data-theme="light"] .nh-drawer__footer {
  border-top-color: rgba(0, 0, 0, 0.05);
  background: rgba(0, 0, 0, 0.01);
}

/* Drawer Overlay */
.nh-overlay {
  position: fixed;
  inset: 0;
  background: transparent !important; /* Completely transparent background overlay */
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  backdrop-filter: none !important; /* No blur background filter */
}

.nh-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .nh-phone {
    display: none;
  }
}

@media (max-width: 900px) {

  .nh-header,
  body.cm-corporate-refresh .nh-header {
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    border-radius: 0 !important;
    margin: 0 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
  }

  .nh-nav {
    display: none;
  }

  .nh-burger {
    display: flex;
  }

  .nh-logo__sub {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .nh-logo__text {
    display: flex !important;
  }

  .nh-logo__name {
    font-size: 0.75rem !important;
  }

  .nh-logo__sub {
    display: block !important;
    font-size: 0.5rem !important;
    opacity: 0.85 !important;
    line-height: 1.1 !important;
    margin-top: 0.05rem !important;
  }
}

@media (max-width: 640px) {
  .nh-inner {
    padding: 0 1rem !important;
    gap: 0.6rem !important;
  }

  .nh-actions {
    gap: 0.6rem !important;
  }

  .nh-cta span {
    display: none;
  }

  .nh-cta {
    padding: 0.55rem 0.85rem;
  }
}

/* ===================================================================
   NH-HEADER CRITICAL OVERRIDES  (must be LAST in file)
   Ensures nothing from legacy or corporate-refresh CSS can break it.
   =================================================================== */

/* Force the new header to always be on top & visible */
.nh-header,
body.cm-corporate-refresh .nh-header {
  position: fixed !important;
  top: 20px !important;
  left: 0 !important;
  right: 0 !important;
  margin: 0 auto !important;
  width: 92% !important;
  max-width: 1320px !important;
  z-index: 1000 !important;
  height: auto !important;
  display: block !important;
  border-radius: 20px !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* The inner flex container */
.nh-header .nh-inner {
  display: flex !important;
  align-items: center !important;
  height: 76px !important;
}

/* Transparent state (over hero) */
.nh-header:not(.nh-scrolled) {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: 1px solid transparent !important;
  box-shadow: none !important;
}

/* Scrolled glass state */
.nh-header.nh-scrolled {
  background: rgba(255, 255, 255, 0.12) !important;
  backdrop-filter: blur(30px) saturate(2) !important;
  -webkit-backdrop-filter: blur(30px) saturate(2) !important;
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.08) !important;
  border: 1px solid rgba(99, 102, 241, 0.15) !important;
}

[data-theme="dark"] .nh-header.nh-scrolled {
  background: rgba(18, 18, 21, 0.2) !important;
  backdrop-filter: blur(30px) saturate(2) !important;
  -webkit-backdrop-filter: blur(30px) saturate(2) !important;
  border: 1px solid rgba(95, 91, 246, 0.15) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(95, 91, 246, 0.05) !important;
}

/* Hide header background/border when mobile drawer is open to prevent overlap visual issues */
body.nh-drawer-open .nh-header,
.nh-header:has(.nh-drawer.is-open) {
  background: transparent !important;
  border: 1px solid transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Logo image switching */
body:not([data-theme="dark"]) .nh-logo__img--dark {
  display: none !important;
}

body:not([data-theme="dark"]) .nh-logo__img--light {
  display: block !important;
}

[data-theme="dark"] .nh-logo__img--light {
  display: none !important;
}

[data-theme="dark"] .nh-logo__img--dark {
  display: block !important;
}

/* Logo text — white on transparent hero in dark mode, dark in light mode, themed when scrolled */
[data-theme="dark"] .nh-header:not(.nh-scrolled) .nh-logo__name,
[data-theme="dark"] .nh-header:not(.nh-scrolled) .nh-logo__sub {
  color: rgba(255, 255, 255, 0.92) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.92) !important;
}

body:not([data-theme="dark"]) .nh-header:not(.nh-scrolled) .nh-logo__name,
body:not([data-theme="dark"]) .nh-header:not(.nh-scrolled) .nh-logo__sub {
  color: var(--text-primary) !important;
  -webkit-text-fill-color: var(--text-primary) !important;
}

/* Logo gradient accent — always gradient */
.nh-logo__accent {
  background: linear-gradient(135deg, #818cf8, #38bdf8) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* Nav links — white on hero in dark mode, dark in light mode, themed when scrolled */
[data-theme="dark"] .nh-header:not(.nh-scrolled) .nh-nav__link {
  color: rgba(255, 255, 255, 0.92) !important;
}

body:not([data-theme="dark"]) .nh-header:not(.nh-scrolled) .nh-nav__link {
  color: var(--text-primary) !important;
}

.nh-header.nh-scrolled .nh-nav__link {
  color: var(--text-primary) !important;
}

/* Phone number container & text — white in dark mode, dark in light mode */
[data-theme="dark"] .nh-header:not(.nh-scrolled) .nh-phone {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
}

body:not([data-theme="dark"]) .nh-header:not(.nh-scrolled) .nh-phone {
  background: rgba(15, 23, 42, 0.05) !important;
  border-color: rgba(15, 23, 42, 0.1) !important;
}

[data-theme="dark"] .nh-header:not(.nh-scrolled) .nh-phone__text span {
  color: #ffffff !important;
}

body:not([data-theme="dark"]) .nh-header:not(.nh-scrolled) .nh-phone__text span {
  color: var(--text-primary) !important;
}

[data-theme="dark"] .nh-header:not(.nh-scrolled) .nh-phone__text small {
  color: rgba(255, 255, 255, 0.7) !important;
}

body:not([data-theme="dark"]) .nh-header:not(.nh-scrolled) .nh-phone__text small {
  color: var(--text-secondary) !important;
}

/* Theme button — white in dark mode, dark in light mode */
[data-theme="dark"] .nh-header:not(.nh-scrolled) .nh-theme-btn {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
}

body:not([data-theme="dark"]) .nh-header:not(.nh-scrolled) .nh-theme-btn {
  background: rgba(15, 23, 42, 0.05) !important;
  border-color: rgba(15, 23, 42, 0.1) !important;
  color: var(--text-primary) !important;
}

/* Mobile Hamburger menu button — white in dark mode, dark in light mode */
[data-theme="dark"] .nh-header:not(.nh-scrolled) .nh-burger {
  border-color: rgba(255, 255, 255, 0.2) !important;
}

body:not([data-theme="dark"]) .nh-header:not(.nh-scrolled) .nh-burger {
  border-color: rgba(15, 23, 42, 0.15) !important;
}

[data-theme="dark"] .nh-header:not(.nh-scrolled) .nh-burger span {
  background: #ffffff !important;
}

body:not([data-theme="dark"]) .nh-header:not(.nh-scrolled) .nh-burger span {
  background: var(--text-primary) !important;
}

/* Hover style for transparent header nav links in light mode */
body:not([data-theme="dark"]) .nh-header:not(.nh-scrolled) .nh-nav__link:hover {
  background: rgba(99, 102, 241, 0.08) !important;
  color: var(--brand-primary) !important;
}

/* Theme icon correct display */
.nh-sun,
.nh-moon {
  display: none;
}

body:not([data-theme="dark"]) .nh-sun {
  display: block !important;
}

[data-theme="dark"] .nh-moon {
  display: block !important;
}

/* Hero section — must start below the fixed header */
.cm-hero,
section#hero,
.hero {
  padding-top: 76px !important;
}

/* Mobile drawer always on top of everything */
.nh-drawer {
  z-index: 1100 !important;
}

.nh-overlay {
  z-index: 1050 !important;
}

/* ===================================================================
   Custom header redesign — added to modernize header across pages
   Adjusts height, logo sizing, nav spacing, and hover accents.
   =================================================================== */
.nh-header .nh-inner {
  height: 84px !important;
  padding: 0 1.5rem !important;
  gap: 1rem !important;
  transition: height 0.3s ease !important;
}

.nh-header.nh-scrolled .nh-inner {
  height: 70px !important;
}

.nh-logo__img,
.nh-logo__img--light,
.nh-logo__img--dark {
  height: 48px !important;
  transition: transform 0.22s ease, height 0.22s ease !important;
}

.nh-header.nh-scrolled .nh-logo__img,
.nh-header.nh-scrolled .nh-logo__img--light,
.nh-header.nh-scrolled .nh-logo__img--dark {
  height: 40px !important;
}

.nh-nav__link {
  font-weight: 600 !important;
  letter-spacing: 0.4px !important;
  text-transform: uppercase !important;
  padding: 0.6rem 0.85rem !important;
  font-size: 0.84rem !important;
  transition: color 0.18s ease, transform 0.18s ease !important;
}

.nh-nav__link:hover {
  color: #2563eb !important;
  /* blue accent on hover */
  transform: translateY(-2px) !important;
}

.nh-header {
  transition: background 0.25s ease, box-shadow 0.25s ease, top 0.3s ease, left 0.3s ease, right 0.3s ease, width 0.3s ease !important;
}

.nh-header.nh-scrolled {
  box-shadow: 0 6px 30px rgba(2, 6, 23, 0.08) !important;
}

@media (max-width: 900px) {
  .nh-header .nh-inner {
    height: 56px !important;
  }

  .nh-logo__img,
  .nh-logo__img--light,
  .nh-logo__img--dark {
    height: 32px !important;
  }

  .nh-nav__link {
    padding: 0.4rem 0.5rem !important;
    font-size: 0.75rem !important;
  }
}

/* ===================================================================
   AI CHAT ASSISTANT CORE STYLING
   =================================================================== */
.ai-chat {
  position: fixed;
  bottom: 85px;
  right: 20px;
  width: 380px;
  height: 520px;
  max-height: calc(100vh - 120px);
  background: rgba(10, 22, 46, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(99, 102, 241, 0.08);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), visibility 0.3s;
}

body[data-theme="light"] .ai-chat {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(26, 79, 214, 0.12);
  box-shadow: 0 20px 50px rgba(26, 79, 214, 0.1);
}

.ai-chat.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.ai-chat__header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 1.5rem 1.5rem 0 0;
}

body[data-theme="light"] .ai-chat__header {
  border-bottom-color: rgba(0, 0, 0, 0.06);
  background: rgba(0, 0, 0, 0.01);
}

.ai-chat__header h4 {
  color: #ffffff;
}

body[data-theme="light"] .ai-chat__header h4 {
  color: #0a2a6b;
}

.ai-chat__header-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ai-chat__header-avatar {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 50%;
}

.ai-chat__header-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: linear-gradient(135deg, #1a4fd6, #00c2ff);
}

.ai-chat__status-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  background: #22c55e;
  border: 2px solid #090d16;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e;
}

body[data-theme="light"] .ai-chat__status-dot {
  border-color: #fff;
}

.ai-chat__close-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color 0.2s;
}

.ai-chat__close-btn:hover {
  color: #ef4444;
}

body[data-theme="light"] .ai-chat__close-btn {
  color: rgba(0, 0, 0, 0.35);
}

body[data-theme="light"] .ai-chat__close-btn:hover {
  color: #ef4444;
}

.ai-chat__body {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  scrollbar-width: thin;
}

.ai-chat__body::-webkit-scrollbar {
  width: 4px;
}

.ai-chat__body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

.ai-msg {
  display: flex;
  gap: 0.65rem;
  max-width: 85%;
  animation: cmFadeMsg 0.3s ease both;
}

@keyframes cmFadeMsg {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ai-msg--bot {
  align-self: flex-start;
}

.ai-msg--user {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.ai-msg__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, #1a4fd6, #00c2ff);
  border: 1px solid rgba(0, 194, 255, 0.3);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-msg__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ai-msg__bubble {
  padding: 0.65rem 0.9rem;
  border-radius: 1rem;
  font-size: 0.8rem;
  line-height: 1.5;
}

.ai-msg--bot .ai-msg__bubble {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  border-top-left-radius: 0;
}

body[data-theme="light"] .ai-msg--bot .ai-msg__bubble {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.05);
  color: #334155;
}

.ai-msg--user .ai-msg__bubble {
  background: linear-gradient(135deg, #6366f1, #3b82f6);
  color: #fff;
  border-top-right-radius: 0;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.15);
}

.ai-msg__bubble a {
  color: #00c2ff;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s;
}

body[data-theme="light"] .ai-msg__bubble a {
  color: #164e63;
}

.ai-msg__bubble a:hover {
  color: #fff;
}

body[data-theme="light"] .ai-msg__bubble a:hover {
  color: #1e3a8a;
}

.ai-msg__typing-dots {
  display: flex;
  gap: 3px;
  align-items: center;
  height: 10px;
  padding: 0.2rem 0;
}

.ai-msg__typing-dots span {
  width: 5px;
  height: 5px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  animation: cmTypingDot 1.4s infinite both;
}

body[data-theme="light"] .ai-msg__typing-dots span {
  background-color: rgba(0, 0, 0, 0.4);
}

.ai-msg__typing-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.ai-msg__typing-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes cmTypingDot {

  0%,
  80%,
  100% {
    transform: scale(0.6);
    opacity: 0.4;
  }

  45% {
    transform: scale(1);
    opacity: 1;
  }
}

.ai-chat__quick-responses {
  padding: 0.5rem 1.25rem 0.5rem;
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.ai-qr-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

@media (max-width: 900px) {
  .speed-dial {
    bottom: 35px !important; /* Raised higher on tablet/mobile */
    right: 25px !important; /* Shifted leftward on tablet/mobile */
  }

  .speed-dial__trigger {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .speed-dial__actions {
    bottom: 66px !important; /* Spaced perfectly above the 50px trigger */
  }
}

body[data-theme="light"] .ai-qr-btn {
  background: rgba(26, 79, 214, 0.03);
  border-color: rgba(26, 79, 214, 0.08);
  color: #1a4fd6;
}

.ai-qr-btn:hover {
  background: rgba(99, 102, 241, 0.1);
  border-color: rgba(99, 102, 241, 0.25);
  color: #fff;
}

body[data-theme="light"] .ai-qr-btn:hover {
  background: rgba(26, 79, 214, 0.08);
  border-color: rgba(26, 79, 214, 0.2);
  color: #1a4fd6;
}

.ai-chat__footer {
  padding: 0.75rem 1.25rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

body[data-theme="light"] .ai-chat__footer {
  border-top-color: rgba(0, 0, 0, 0.06);
}

.ai-chat__input {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 0.65rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.8rem;
  font-family: inherit;
  transition: all 0.2s;
}

body[data-theme="light"] .ai-chat__input {
  background: rgba(0, 0, 0, 0.02);
  border-color: rgba(0, 0, 0, 0.06);
  color: #0f172a;
}

.ai-chat__input:focus {
  outline: none;
  border-color: rgba(99, 102, 241, 0.35);
  background: rgba(255, 255, 255, 0.05);
}

body[data-theme="light"] .ai-chat__input:focus {
  border-color: #1a4fd6;
  background: #fff;
}

.ai-chat__footer-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.ai-chat__footer-btn.mic {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.6);
}

body[data-theme="light"] .ai-chat__footer-btn.mic {
  background: rgba(0, 0, 0, 0.02);
  border-color: rgba(0, 0, 0, 0.06);
  color: #475569;
}

.ai-chat__footer-btn.mic:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #00c2ff;
}

body[data-theme="light"] .ai-chat__footer-btn.mic:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #1a4fd6;
}

.ai-chat__footer-btn.mic.listening {
  background: #ef4444 !important;
  color: #fff !important;
  animation: cmMicActivePulse 1s infinite;
}

@keyframes cmMicActivePulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
  }
}

.ai-chat__footer-btn.send {
  background: linear-gradient(135deg, #6366f1, #3b82f6);
  color: #fff;
}

.ai-chat__footer-btn.send:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
}

@media (max-width: 480px) {
  .ai-chat {
    width: calc(100vw - 20px);
    right: 10px;
    bottom: 75px;
    height: 480px;
  }
}

/* Floating AI Action Button (appears on scroll) */
.ai-float-btn {
  position: fixed;
  bottom: 40px !important; /* Raised higher on desktop */
  right: 105px !important; /* Shifted to the left of the speed dial on desktop: 35px margin + 56px button + 14px gap */
  /* Positioned directly in the bottom-right corner */
  left: auto !important;
  width: 56px;
  height: 56px;
  border-radius: 50% !important; /* Circle shape to match speed dial trigger */
  /* Squircle matching corporate refresh style */
  background: linear-gradient(135deg, #0a4bc4 0%, #24b3ff 100%);
  border: none;
  box-shadow: 0 14px 28px rgba(5, 17, 35, 0.28);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), visibility 0.3s, background-color 0.3s;
  padding: 0;
  animation: aiFloatBounce 3s ease-in-out infinite, aiFloatPulse 2.5s infinite;
}

@keyframes aiFloatBounce {

  0%,
  100% {
    margin-bottom: 0;
  }

  50% {
    margin-bottom: 6px;
  }
}

@keyframes aiFloatPulse {
  0% {
    box-shadow: 0 14px 28px rgba(5, 17, 35, 0.28), 0 0 0 0 rgba(36, 179, 255, 0.55);
  }

  70% {
    box-shadow: 0 14px 28px rgba(5, 17, 35, 0.28), 0 0 0 12px rgba(36, 179, 255, 0);
  }

  100% {
    box-shadow: 0 14px 28px rgba(5, 17, 35, 0.28), 0 0 0 0 rgba(36, 179, 255, 0);
  }
}

.ai-float-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.ai-float-btn:hover {
  transform: scale(1.1);
  background: linear-gradient(135deg, #0d55dc 0%, #3bc1ff 100%);
  box-shadow: 0 16px 36px rgba(5, 17, 35, 0.35);
}

.ai-float-btn img {
  width: 70%;
  height: 70%;
  object-fit: cover;
  border-radius: 12px;
  /* Smooth inner squircle rounded corners */
}

.ai-float-btn__ping {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 12px;
  height: 12px;
  background: #22c55e;
  border: 2px solid #090d16;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e;
  z-index: 10;
}

body[data-theme="light"] .ai-float-btn__ping {
  border-color: #fff;
}

@media (max-width: 900px) {
  .ai-float-btn {
    bottom: 35px !important; /* Raised higher on tablet/mobile */
    right: 87px !important; /* Shifted to the left of the speed dial button: 25px margin + 50px button + 12px gap */
    left: auto !important;
    width: 50px;
    height: 50px;
    border-radius: 50% !important; /* Circle shape to match speed dial trigger */
  }

  .ai-float-btn img {
    border-radius: 10px;
  }

  /* Force both speed dials to align to the bottom right */
  .speed-dial,
  .fab-container {
    bottom: 35px !important; /* Raised higher on tablet/mobile */
    right: 25px !important; /* Shifted leftward on tablet/mobile */
  }
}

/* ===================================================================
   Speed Dial Button (Right Corner)
   =================================================================== */
.speed-dial {
  position: fixed;
  bottom: 40px !important; /* Raised higher on desktop */
  right: 35px !important; /* Shifted leftward on desktop */
  z-index: 999; /* Changed to 999 so it slides behind mobile drawers and overlays */
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 10px;
}

.speed-dial__trigger {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-brand, linear-gradient(135deg, #5f5bf6 0%, #a855f7 50%, #06b6d4 100%));
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.speed-dial__trigger:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.speed-dial__trigger i {
  transition: transform 0.3s ease;
}

.speed-dial.open .speed-dial__trigger i {
  transform: rotate(45deg);
}

.speed-dial__actions {
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
  position: absolute;
  bottom: 70px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.speed-dial.open .speed-dial__actions {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.speed-dial__action {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #fff;
  color: var(--brand-primary, #5f5bf6);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, background 0.2s, color 0.2s;
  position: relative;
}

.speed-dial__action:hover {
  transform: scale(1.1);
  background: var(--brand-primary, #5f5bf6);
  color: #fff;
}

[data-theme="dark"] .speed-dial__action {
  background: #1f2937;
  color: #fff;
}

[data-theme="dark"] .speed-dial__action:hover {
  background: var(--brand-primary, #5f5bf6);
}

/* Tooltip */
.speed-dial__action::after {
  content: attr(data-tooltip);
  position: absolute;
  right: 55px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s;
  pointer-events: none;
}

[data-theme="dark"] .speed-dial__action::after {
  background: rgba(255, 255, 255, 0.9);
  color: #000;
}

.speed-dial__action:hover::after {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 900px) {
  .speed-dial {
    bottom: 35px !important; /* Raised higher on tablet/mobile to match chatbot button */
    right: 25px !important; /* Shifted leftward to match chatbot button */
  }

  .speed-dial__trigger {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .speed-dial__actions {
    bottom: 66px !important; /* Spaced perfectly above the 50px trigger */
  }
}

/* ── Lightbox Mobile Responsiveness Override ── */
@media (max-width: 768px) {

  .lightbox-prev,
  .lightbox-next {
    display: none !important;
  }

  .lightbox-close {
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
  }

  .lightbox-content {
    max-width: 90vw;
  }

  .lightbox-image {
    max-height: 48vh;
  }

  .lightbox-controls {
    bottom: 16px;
  }
}

/* ===================================================================
   RESPONSIVE DESIGN OVERRIDES (ns-* and page-specific elements)
   =================================================================== */

/* ── Tablet (≤1024px) ───────────────────────────────────────────── */
@media (max-width: 1024px) {

  /* Redesign Footer */
  .ns-footer__top {
    grid-template-columns: 1fr 1fr !important;
    gap: 2.5rem !important;
    padding: 3rem 0 2rem !important;
  }

  /* Services Grid */
  .ns-services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.25rem !important;
  }

  /* Strengths Grid */
  .ns-str-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.25rem !important;
  }

  /* About Container */
  .ns-about__container {
    grid-template-columns: 1fr !important;
    gap: 3rem !important;
  }

  .st-row {
    margin-bottom: 3.5rem !important;
  }
}

/* ── Mobile (≤768px) ────────────────────────────────────────────── */
@media (max-width: 768px) {

  /* Global Spacing and Layout Gutters */
  .container,
  body.cm-corporate-refresh .container {
    padding-inline: 1rem !important;
  }

  .section,
  .ns-about,
  .ns-services,
  .ns-solutions,
  .ns-strengths,
  .ns-clients,
  .sol2-section,
  .ip-section,
  body.cm-corporate-refresh .service-detail {
    padding-block: 2.2rem !important;
  }

  /* Section Headings Sizing */
  .ns-heading,
  .ip-hero__title,
  .about-heading-v7,
  .section-title {
    font-size: 1.55rem !important;
    line-height: 1.25 !important;
    margin-bottom: 0.6rem !important;
  }

  .ns-section-sub,
  .ip-hero__desc {
    font-size: 0.88rem !important;
    line-height: 1.6 !important;
    margin-bottom: 1.25rem !important;
  }

  /* Homepage Hero Section */
  .cm-hero {
    min-height: auto !important;
    padding-block: 2rem 3rem !important;
  }

  .cm-hero__inner {
    min-height: auto !important;
    padding-block: 1.5rem !important;
    gap: 2rem !important;
  }

  .cm-hero__left {
    padding: 0 !important;
  }

  .cm-hero__title {
    font-size: 1.65rem !important;
    line-height: 1.2 !important;
    margin-bottom: 0.85rem !important;
  }

  .cm-hero__sub {
    font-size: 0.82rem !important;
    line-height: 1.5 !important;
    margin-bottom: 1.25rem !important;
  }

  .cm-hero__sub br {
    display: none !important;
  }

  .cm-btn {
    padding: 0.7rem 1.2rem !important;
    font-size: 0.85rem !important;
  }

  /* Redesign Footer */
  .ns-footer__top {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    padding-block: 2.5rem 1.5rem !important;
  }

  .ns-footer__bottom {
    flex-direction: column !important;
    text-align: center !important;
    gap: 1rem !important;
  }

  /* Services Grid */
  .ns-services-grid {
    grid-template-columns: 1fr !important;
    gap: 1.2rem !important;
  }

  /* Solutions Grid */
  .ns-sol-row {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  /* Strengths Grid */
  .ns-str-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  /* Clients Counters Row */
  .ns-ctr-row {
    flex-direction: column !important;
    gap: 2rem !important;
  }

  .ns-ctr-sep {
    display: none !important;
  }

  .ns-ctr-item {
    padding: 0 !important;
    text-align: center !important;
    justify-content: center !important;
    width: 100% !important;
  }

  /* About US Page Milestone Timeline (Horizontal → Vertical) */
  .ns-timeline-row {
    flex-direction: column !important;
    gap: 1.5rem !important;
    align-items: flex-start !important;
    padding-left: 2rem !important;
    position: relative !important;
  }

  .ns-timeline-row::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    bottom: 0 !important;
    left: calc(2rem + 7px) !important;
    /* 7px is half of 14px dot */
    width: 2px !important;
    background: var(--brand-primary, #6366f1) !important;
    opacity: 0.3 !important;
  }

  .ns-tl-item {
    flex-direction: row !important;
    align-items: center !important;
    gap: 1.25rem !important;
    padding: 0 !important;
    text-align: left !important;
    width: 100% !important;
  }

  .ns-tl-year {
    min-width: 50px !important;
    text-align: right !important;
  }

  .ns-tl-dot {
    flex-shrink: 0 !important;
    z-index: 1 !important;
    margin: 0 !important;
  }

  .ns-tl-label {
    text-align: left !important;
  }

  .ns-tl-line {
    display: none !important;
  }

  /* Stats Strip (Vertical → Compact 2x2 Grid) */
  .ip-stats-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 1.25rem 1rem !important;
    flex-direction: row !important;
    justify-items: center !important;
  }

  .ip-stat-sep {
    display: none !important;
  }

  .ip-stat {
    padding: 0 !important;
    text-align: center !important;
  }

  .ip-stat__num {
    font-size: 1.85rem !important;
  }

  .ip-stat__label {
    font-size: 0.72rem !important;
  }

  .ip-stats-strip {
    padding: 2rem 0 !important;
  }

  /* Spacing overrides for subpage content */
  .ip-hero {
    padding: 80px 0 40px !important;
    min-height: auto !important;
  }

  .ip-overview {
    gap: 1.5rem !important;
  }

  .st-row {
    gap: 1.5rem !important;
    margin-bottom: 2.2rem !important;
  }

  .ip-cta-banner {
    margin-top: 2rem !important;
    padding: 1.75rem 1.25rem !important;
    border-radius: 1.5rem !important;
  }

  /* Service detail subpages */
  body.cm-corporate-refresh .service-hero {
    min-height: auto !important;
    padding: 5rem 0 2.2rem !important;
  }

  body.cm-corporate-refresh .service-hero h1[style] {
    font-size: 1.85rem !important;
    line-height: 1.2 !important;
  }

  body.cm-corporate-refresh .service-hero p[style] {
    font-size: 0.88rem !important;
    line-height: 1.6 !important;
  }

  body.cm-corporate-refresh .service-detail>.container[style] {
    padding: 1.25rem !important;
    border-radius: 1.25rem !important;
  }

  body.cm-corporate-refresh .service-detail li[style] {
    padding: 0.7rem 0.85rem !important;
    border-radius: 12px !important;
    font-size: 0.82rem !important;
  }

  body.cm-corporate-refresh .service-detail ul[style] {
    gap: 0.6rem !important;
  }

  /* Contact Page layouts */
  .ct-form-panel {
    padding: 1.75rem 1.25rem !important;
    border-radius: 1.25rem !important;
  }

  .ct-info-panel {
    padding: 1.75rem 1.25rem !important;
    border-radius: 1.25rem !important;
    gap: 1.5rem !important;
  }
}

/* ── Small Mobile (≤480px) ──────────────────────────────────────── */
@media (max-width: 480px) {

  /* Solutions List */
  .ns-sol-list {
    grid-template-columns: 1fr !important;
    gap: 0.5rem !important;
  }

  .ns-footer {
    padding-bottom: 1.5rem !important;
  }
}

/* ── Mobile/Tablet (≤900px) Custom Capsule Header Alignment & Button Resizing ── */
@media (max-width: 900px) {

  /* Prevent viewport container leakage and horizontal scrolling on mobile browsers */
  html,
  body {
    overflow-x: hidden !important;
  }

  /* Light mode background state overrides (Force transparent at rest, translucent blur when scrolled) */
  body:not([data-theme="dark"]) header.nh-header:not(.nh-scrolled),
  body:not([data-theme="dark"]).cm-corporate-refresh header.nh-header:not(.nh-scrolled) {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: 1px solid transparent !important;
    box-shadow: none !important;
  }

  body:not([data-theme="dark"]) header.nh-header.nh-scrolled,
  body:not([data-theme="dark"]).cm-corporate-refresh header.nh-header.nh-scrolled {
    background: rgba(255, 255, 255, 0.88) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
  }

  /* Dark mode background state overrides (Force transparent at rest, translucent blur when scrolled) */
  [data-theme="dark"] header.nh-header:not(.nh-scrolled),
  [data-theme="dark"].cm-corporate-refresh header.nh-header:not(.nh-scrolled) {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: 1px solid transparent !important;
    box-shadow: none !important;
  }

  [data-theme="dark"] header.nh-header.nh-scrolled,
  [data-theme="dark"].cm-corporate-refresh header.nh-header.nh-scrolled {
    background: rgba(18, 18, 21, 0.85) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4) !important;
  }

  /* Push logo to the left and action buttons to the right inside the floating capsule (both scrolled and rest states) */
  html body header.nh-header .nh-inner,
  html body.cm-corporate-refresh header.nh-header .nh-inner,
  body.cm-corporate-refresh header.nh-header.nh-scrolled .nh-inner,
  body header.nh-header.nh-scrolled .nh-inner,
  .nh-header.nh-scrolled .nh-inner,
  .nh-header .nh-inner {
    height: 49px !important;
    padding: 0 0.85rem !important;
    /* Spacing so logo and buttons don't touch capsule borders */
    justify-content: space-between !important;
  }

  .nh-actions {
    gap: 0.5rem !important;
    margin-left: auto !important;
    /* Push buttons to the far right side of the capsule */
  }

  /* Make header action buttons smaller and circular on mobile viewports */
  .nh-theme-btn {
    width: 32px !important;
    height: 32px !important;
    font-size: 0.75rem !important;
    border-radius: 50% !important;
  }

  /* Make CTA circular paper plane */
  .nh-cta {
    width: 32px !important;
    height: 32px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.75rem !important;
    border-radius: 50% !important;
  }

  .nh-cta span {
    display: none !important;
  }

  /* Make Hamburger menu circular */
  .nh-burger {
    width: 32px !important;
    height: 32px !important;
    padding: 6px !important;
    gap: 4px !important;
    border-radius: 50% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .nh-burger span {
    height: 2px !important;
    width: 100% !important;
  }

  /* Keep Logo scaled correctly on mobile (scrolled and at rest) */
  body header.nh-header.nh-scrolled .nh-logo__img,
  body header.nh-header.nh-scrolled .nh-logo__img--light,
  body header.nh-header.nh-scrolled .nh-logo__img--dark,
  .nh-header.nh-scrolled .nh-logo__img,
  .nh-header.nh-scrolled .nh-logo__img--light,
  .nh-header.nh-scrolled .nh-logo__img--dark,
  .nh-logo__img,
  .nh-logo__img--light,
  .nh-logo__img--dark {
    height: 28px !important;
    width: auto !important;
  }

  .nh-logo__text {
    display: flex !important;
  }

  .nh-logo__name {
    font-size: 0.8rem !important;
  }

  .nh-logo__sub {
    display: block !important;
    font-size: 0.55rem !important;
    opacity: 0.85 !important;
    line-height: 1.1 !important;
    margin-top: 0.05rem !important;
  }

  /* Make hero section tags small and compact on mobile */
  .cm-hero__tags {
    gap: 0.25rem !important;
  }

  .cm-hero__tags .cm-tag {
    font-size: 0.55rem !important;
    padding: 2px 7px !important;
    letter-spacing: 1px !important;
  }
}

/* Global Specificity scope fix for Hero Section tags */
.cm-hero__tags .cm-tag {
  font-size: 0.65rem !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  color: #00c2ff !important;
  border: 1px solid rgba(0, 194, 255, 0.3) !important;
  background: rgba(0, 194, 255, 0.06) !important;
  padding: 3px 10px !important;
  border-radius: 999px !important;
  display: inline-block !important;
}

body[data-theme="light"] .cm-hero__tags .cm-tag {
  color: #1a4fd6 !important;
  border-color: rgba(26, 79, 214, 0.25) !important;
  background: rgba(26, 79, 214, 0.05) !important;
}

/* ═══════════════════════════════════════════════════════════
   HERO SLIDER — Container, Track, Navigation
   ═══════════════════════════════════════════════════════════ */

.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-slider__track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}

.hero-slide {
  min-width: 100%;
  flex-shrink: 0;
}

/* ── Slider Navigation ── */
.hero-slider__nav {
  position: absolute;
  bottom: 6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-slider__dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.hero-slider__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.hero-slider__dot--active {
  background: #3b82f6;
  border-color: #3b82f6;
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.hero-slider__dot:hover:not(.hero-slider__dot--active) {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.2);
}

body[data-theme="light"] .hero-slider__dot {
  border-color: rgba(10, 42, 107, 0.3);
}

body[data-theme="light"] .hero-slider__dot--active {
  background: #1a4fd6;
  border-color: #1a4fd6;
  box-shadow: 0 0 10px rgba(26, 79, 214, 0.4);
}

body[data-theme="light"] .hero-slider__dot:hover:not(.hero-slider__dot--active) {
  border-color: rgba(10, 42, 107, 0.5);
  background: rgba(10, 42, 107, 0.1);
}

/* ── Arrow Buttons ── */
.hero-slider__arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.hero-slider__arrow:hover {
  background: rgba(59, 130, 246, 0.3);
  border-color: #3b82f6;
  color: #fff;
  transform: scale(1.1);
}

body[data-theme="light"] .hero-slider__arrow {
  border-color: rgba(10, 42, 107, 0.2);
  background: rgba(255, 255, 255, 0.5);
  color: #0a2a6b;
}

body[data-theme="light"] .hero-slider__arrow:hover {
  background: rgba(26, 79, 214, 0.15);
  border-color: #1a4fd6;
  color: #1a4fd6;
}


/* ═══════════════════════════════════════════════════════════
   HERO SLIDE 2 — "Secure Today, Safer Tomorrow"
   ═══════════════════════════════════════════════════════════ */

/* ── Background Images ── */
.hero2-bg {
  background: #050814 !important;
}

body[data-theme="light"] .hero2-bg {
  background: #ffffff !important;
}

.hero2-bg__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: opacity 0.5s ease;
  z-index: 1;
  pointer-events: none;
}

.hero2-bg__img--dark {
  opacity: 1;
}

.hero2-bg__img--light {
  opacity: 0;
}

body[data-theme="light"] .hero2-bg__img--dark {
  opacity: 0;
}

body[data-theme="light"] .hero2-bg__img--light {
  opacity: 1;
}

@media (max-width: 768px) {
  .hero2-bg__img {
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    right: 0 !important;
    transform: none !important;
    object-fit: cover !important;
    object-position: right center !important;
  }

  .hero2-bg__img--dark {
    opacity: 0.15 !important;
  }

  body[data-theme="light"] .hero2-bg__img--dark {
    opacity: 0 !important;
  }

  .hero2-bg__img--light {
    opacity: 0 !important;
  }

  body[data-theme="light"] .hero2-bg__img--light {
    opacity: 0.15 !important;
  }
}

.hero2-bg__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg,
      rgba(5, 8, 20, 0.95) 0%,
      rgba(5, 8, 20, 0.7) 40%,
      rgba(5, 8, 20, 0.2) 70%,
      transparent 100%);
  pointer-events: none;
}

body[data-theme="light"] .hero2-bg__overlay {
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(255, 255, 255, 0.7) 40%,
      rgba(255, 255, 255, 0.2) 70%,
      transparent 100%);
}

/* ── Inner Layout ── */
.hero2__inner {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1300px;
  margin-inline: auto;
  padding: 1.5rem 2rem 3rem;
  box-sizing: border-box;
  min-height: calc(100vh - var(--header-h, 72px) - 60px);
}

.hero2__left {
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

/* ── Title ── */
.hero2__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -1px;
  margin: 0;
}

.hero2__title em {
  font-style: normal;
  background: linear-gradient(135deg, #00c2ff, #0070f3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

body[data-theme="light"] .hero2__title {
  color: #0a1628;
}

body[data-theme="light"] .hero2__title em {
  background: linear-gradient(135deg, #1a4fd6, #0070f3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Divider Line ── */
.hero2__divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #06b6d4);
  border-radius: 2px;
}

/* ── Subtitle ── */
.hero2__sub {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.85rem, 1.5vw, 1.05rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin: 0;
}

body[data-theme="light"] .hero2__sub {
  color: rgba(10, 22, 40, 0.7);
}

/* ── Feature Icons Row ── */
.hero2__features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.2rem;
}

.hero2__feat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  min-width: 70px;
}

.hero2__feat-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #3b82f6;
  transition: all 0.3s ease;
}

.hero2__feat:hover .hero2__feat-icon {
  background: rgba(59, 130, 246, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.2);
}

body[data-theme="light"] .hero2__feat-icon {
  background: rgba(26, 79, 214, 0.08);
  border-color: rgba(26, 79, 214, 0.2);
  color: #1a4fd6;
}

.hero2__feat span {
  font-family: 'Poppins', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.3;
  text-transform: uppercase;
}

body[data-theme="light"] .hero2__feat span {
  color: rgba(10, 22, 40, 0.65);
}

/* ── CTA Row ── */
.hero2__cta-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-top: 0.2rem;
}

.hero2__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.6rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #3b82f6, #1a4fd6);
  border: none;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.hero2__cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
  background: linear-gradient(135deg, #2563eb, #1e40af);
}

.hero2__cta-btn i {
  transition: transform 0.3s ease;
}

.hero2__cta-btn:hover i {
  transform: translateX(4px);
}

body[data-theme="light"] .hero2__cta-btn {
  background: linear-gradient(135deg, #1a4fd6, #0a2a6b);
}

.hero2__email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.hero2__email:hover {
  color: #3b82f6;
}

.hero2__email i {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
}

body[data-theme="light"] .hero2__email {
  color: rgba(10, 22, 40, 0.6);
}

body[data-theme="light"] .hero2__email:hover {
  color: #1a4fd6;
}

body[data-theme="light"] .hero2__email i {
  color: rgba(10, 22, 40, 0.4);
}

/* ── Bottom Stats Bar ── */
.hero2__stats-bar {
  position: static !important;
  transform: none !important;
  width: fit-content !important;
  min-width: 0 !important;
  margin-top: 1.5rem !important;
  box-sizing: border-box !important;
  align-self: flex-start !important;
}

/* ── Slide 2 needs relative for stats bar absolute ── */
.hero-slide--2 {
  position: relative;
}

/* ═══ HERO SLIDER — Responsive ═══ */
@media (max-width: 1024px) {
  .hero2__features {
    gap: 0.8rem;
  }

  .hero2__stat {
    padding: 0 1rem;
  }

  .hero2__stat-info b {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .hero-slider {
    height: auto !important;
  }

  .cm-hero {
    min-height: auto !important;
    height: auto !important;
    padding-top: calc(var(--header-h, 72px) + 1.5rem) !important;
    padding-bottom: 4rem !important;
  }

  .hero-slide {
    height: auto !important;
  }

  .hero-slider__nav {
    bottom: 1.2rem !important;
  }

  .hero-slider__arrow {
    width: 32px;
    height: 32px;
    font-size: 0.7rem;
  }

  .hero-slider__dot {
    width: 8px;
    height: 8px;
  }

  .hero-slide--2 {
    padding-top: calc(var(--header-h, 72px) + 2.2rem) !important;
  }

  .hero2__inner {
    padding: 0 1.2rem !important;
    min-height: auto !important;
    display: flex !important;
    align-items: flex-start !important;
    position: relative !important;
    top: 0 !important;
  }

  .hero2__left {
    max-width: 100% !important;
    gap: 0.8rem !important;
  }

  .hero2__title {
    font-size: clamp(1.5rem, 6.5vw, 2.2rem) !important;
    line-height: 1.15 !important;
  }

  .hero2__sub {
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
  }

  .hero2__sub br {
    display: none;
  }

  .hero2__features {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr)) !important;
    gap: 0.6rem !important;
    width: 100% !important;
    margin-top: 0.4rem !important;
  }

  .hero2__feat {
    min-width: 0 !important;
  }

  .hero2__feat-icon {
    width: 34px !important;
    height: 34px !important;
    font-size: 0.85rem !important;
  }

  .hero2__feat span {
    font-size: 0.5rem !important;
    line-height: 1.2 !important;
  }

  .hero2__cta-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.8rem !important;
    margin-top: 0.4rem !important;
  }

  .hero2__stats-bar {
    width: 100% !important;
    align-self: stretch !important;
    margin-top: 1.2rem !important;
  }

  .hero2-bg__overlay {
    background: linear-gradient(180deg,
        rgba(5, 8, 20, 0.92) 0%,
        rgba(5, 8, 20, 0.75) 50%,
        rgba(5, 8, 20, 0.40) 100%) !important;
  }

  body[data-theme="light"] .hero2-bg__overlay {
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.80) 50%,
        rgba(255, 255, 255, 0.40) 100%) !important;
  }
}

@media (max-width: 480px) {
  .hero2__title {
    font-size: clamp(1.5rem, 8vw, 2.2rem);
  }

  .hero2__features {
    gap: 0.6rem;
  }

  .hero2__feat {
    min-width: 60px;
  }

  .hero2__feat-icon {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
    border-radius: 8px;
  }

  .hero2__feat span {
    font-size: 0.5rem;
  }

  .hero-slider__nav {
    bottom: 6rem;
  }
}

/* Optimize Hero Section Text Animations for Mobile Screens (max-width: 900px) */
@media (max-width: 900px) {
  /* Disable infinite zoom animation on background image to save CPU/GPU cycles */
  .hero-slide--2.hero-slide--active .hero2-bg__img {
    animation: none !important;
  }

  /* Simplify closed-state transitions (remove translation which stutters layout) */
  .hero-slide:not(.hero-slide--active) .cm-hero__tags,
  .hero-slide:not(.hero-slide--active) .cm-hero__title,
  .hero-slide:not(.hero-slide--active) .cm-hero__sub,
  .hero-slide:not(.hero-slide--active) .cm-hero__btns,
  .hero-slide:not(.hero-slide--active) .cm-hero__stats,
  .hero-slide:not(.hero-slide--active) .cm-hero__camera,
  .hero-slide:not(.hero-slide--active) .cm-widget--cmd,
  .hero-slide:not(.hero-slide--active) .cm-widget--bot,
  .hero-slide--2:not(.hero-slide--active) .hero2__title,
  .hero-slide--2:not(.hero-slide--active) .hero2__divider,
  .hero-slide--2:not(.hero-slide--active) .hero2__sub,
  .hero-slide--2:not(.hero-slide--active) .hero2__feat,
  .hero-slide--2:not(.hero-slide--active) .hero2__cta-row,
  .hero-slide--2:not(.hero-slide--active) .hero2__stats-bar {
    transform: none !important;
    opacity: 0 !important;
  }

  /* Speed up and clean up active entrance transitions using a fast, non-transform fade */
  .hero-slide--active .cm-hero__tags,
  .hero-slide--active .cm-hero__title,
  .hero-slide--active .cm-hero__sub,
  .hero-slide--active .cm-hero__btns,
  .hero-slide--active .cm-hero__stats,
  .hero-slide--active .cm-hero__camera,
  .hero-slide--2.hero-slide--active .hero2__title,
  .hero-slide--2.hero-slide--active .hero2__divider,
  .hero-slide--2.hero-slide--active .hero2__sub,
  .hero-slide--2.hero-slide--active .hero2__features > *,
  .hero-slide--2.hero-slide--active .hero2__cta-row,
  .hero-slide--2.hero-slide--active .hero2__stats-bar {
    animation: cmMobileFadeSnappy 0.35s ease-out forwards !important;
  }
}

@keyframes cmMobileFadeSnappy {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}