/* ==========================================================================
   Previndex Design System — Home Page
   1. Typography System (Antonio, Space Grotesk, Public Sans)
   2. Color System (Main, Secondary, Neutral, Tertiary & Pantone Tokens)
   ========================================================================== */

/* --------------------------------------------------------------------------
   Google Fonts Import
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Antonio:wght@500;600;700&family=Public+Sans:ital,wght@0,100..900;1,100..900&family=Space+Grotesk:wght@300..700&display=swap');

/* --------------------------------------------------------------------------
   Design Tokens & CSS Variables
   -------------------------------------------------------------------------- */
:root {
  /* ------------------------------------------------------------------------
     TYPOGRAPHY TOKENS
     ------------------------------------------------------------------------ */
  --font-antonio: 'Antonio', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-space-grotesk: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-public-sans: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Semantic Typography Roles */
  --font-family-display: var(--font-antonio);
  --font-family-heading: var(--font-space-grotesk);
  --font-family-body: var(--font-public-sans);

  /* ------------------------------------------------------------------------
     COLOR SYSTEM TOKENS (PANTONE CODES & HEX SPECIFICATIONS)
     ------------------------------------------------------------------------ */

  /* Main Colors */
  --color-main-blue: #0342B9;
  /* Pantone 2728 C */
  --color-main-red: #E4203A;
  /* Pantone 1788 C */

  /* Secondary Colors */
  --color-secondary-orange: #FF6112;
  /* Pantone 1585 C */
  --color-secondary-yellow: #FFCF45;
  /* Pantone 122 C */
  --color-secondary-cyan: #35A0E0;
  /* Pantone 279 C (Sky Blue) */
  --color-secondary-sky-blue: #35A0E0;
  /* Alias for Cyan */
  --color-secondary-violet: #57335C;
  /* Pantone 519 C */
  --color-violet-dark: #381C3E;
  /* Revolver Light Shade 02 */

  /* Neutral Colors */
  --color-neutral-white: #FCFBFA;
  /* Pantone 7436 C */
  --color-pure-white: #FFFFFF;
  --color-neutral-black: #221F24;
  /* Pantone Neutral Black C */

  /* Tertiary Colors */
  --color-tertiary-deep-navy: #061040;
  /* Pantone 282 C (Middle of Blue & Off-Black) */

  /* Semantic Color Mapping */
  --color-primary: var(--color-main-blue);
  --color-accent-red: var(--color-main-red);
  --color-accent-orange: var(--color-secondary-orange);
  --color-accent-yellow: var(--color-secondary-yellow);
  --color-accent-cyan: var(--color-secondary-cyan);
  --color-accent-violet: var(--color-secondary-violet);
  --color-bg-light: var(--color-neutral-white);
  --color-text-dark: var(--color-neutral-black);
  --color-bg-navy: var(--color-tertiary-deep-navy);

  /* Bootstrap / Framework Variable Overrides */
  --bs-primary: #0342B9;
  --bs-primary-rgb: 3, 66, 185;
  --bs-secondary: #35A0E0;
  --bs-secondary-rgb: 53, 160, 224;
  --bs-danger: #E4203A;
  --bs-danger-rgb: 228, 32, 58;
  --bs-warning: #FFCF45;
  --bs-warning-rgb: 255, 207, 69;
  --bs-dark: #221F24;
  --bs-dark-rgb: 34, 31, 36;
}

/* Global Body Background Specification */
body {
  background-color: #FCFBFA !important;
}

[data-bs-theme="dark"] body {
  background-color: #151624 !important;
}

/* ==========================================================================
   PART I. TYPOGRAPHY SYSTEM RULES
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. ANTONIO — Display Typography, Main Headlines, Brand Statements
   Role: Display typography, main headlines, brand statements, hero text
   Weights: Medium (500) -> SemiBold (600) -> Bold (700)
   Usage: H1 (Main Headlines) -> ALWAYS UPPERCASE
          Brand Statements / Taglines -> UPPERCASE
   -------------------------------------------------------------------------- */

h1,
.h1,
.hero-title,
.brand-statement,
.tagline,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6,
.font-antonio {
  font-family: var(--font-family-display) !important;
  font-weight: 700;
  text-transform: uppercase !important;
  letter-spacing: 0.03em;
}

h1,
.h1,
.hero-title {
  font-family: var(--font-family-display) !important;
  text-transform: uppercase !important;
}

.brand-statement,
.tagline {
  font-family: var(--font-family-display) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em;
}

.font-antonio.fw-medium {
  font-weight: 500 !important;
}

.font-antonio.fw-semibold {
  font-weight: 600 !important;
}

.font-antonio.fw-bold {
  font-weight: 700 !important;
}


/* --------------------------------------------------------------------------
   2. SPACE GROTESK — Subheadings, Supporting Headlines, Section Titles
   Role: Subheadings, supporting headlines, section titles
   Weights: All weights (300, 400, 500, 600, 700)
   Usage: H2–H4 (Subheadings) -> UPPERCASE AND Sentence Case
          Section Labels -> Sentence Case
   -------------------------------------------------------------------------- */

h2,
.h2,
h3,
.h3,
h4,
.h4,
.subheading,
.section-title,
.hero-sub-title,
.font-space-grotesk {
  font-family: var(--font-family-heading) !important;
}

h2,
.h2,
h3,
.h3,
h4,
.h4,
.subheading,
.section-title {
  font-family: var(--font-family-heading) !important;
  font-weight: 600;
  text-transform: none;
  /* Sentence Case default */
}

.subheading-uppercase,
h2.text-uppercase,
h3.text-uppercase,
h4.text-uppercase,
.section-title.text-uppercase {
  text-transform: uppercase !important;
  letter-spacing: 0.02em;
}

.subheading-sentencecase,
h2.text-sentencecase,
h3.text-sentencecase,
h4.text-sentencecase,
.section-title.text-sentencecase {
  text-transform: none !important;
}

.section-label,
.label-section {
  font-family: var(--font-family-heading) !important;
  font-weight: 500;
  text-transform: none !important;
}

.font-space-grotesk.fw-light {
  font-weight: 300 !important;
}

.font-space-grotesk.fw-normal {
  font-weight: 400 !important;
}

.font-space-grotesk.fw-medium {
  font-weight: 500 !important;
}

.font-space-grotesk.fw-semibold {
  font-weight: 600 !important;
}

.font-space-grotesk.fw-bold {
  font-weight: 700 !important;
}


/* --------------------------------------------------------------------------
   3. PUBLIC SANS — Body Copy, Navigation, Buttons, Forms & UI Elements
   Role: Body copy, descriptions, captions, navigation, buttons, forms, UI
   Weights: All weights (100 -> 900)
   Usage: Body Copy -> Sentence Case
          UI / Navigation -> Sentence Case or Uppercase
          Buttons / Labels -> Sentence Case (or Uppercase on emphasis)
   -------------------------------------------------------------------------- */

body,
html,
p,
li,
span,
div,
.body-copy,
.description,
caption,
.caption,
nav,
.navbar,
.nav-link,
button,
.btn,
input,
select,
textarea,
.form-control,
.form-label,
.ui-element,
.font-public-sans {
  font-family: var(--font-family-body);
}

body,
p,
.body-copy,
.description {
  font-weight: 400;
  text-transform: none;
}

caption,
.caption {
  font-size: 0.875rem;
  font-weight: 400;
  text-transform: none;
}

nav,
.navbar,
.nav-link,
.ui-element {
  font-weight: 500;
  text-transform: none;
}

.nav-link.text-uppercase,
.ui-element.text-uppercase,
.navbar.text-uppercase {
  text-transform: uppercase !important;
  letter-spacing: 0.04em;
}

button,
.btn,
.btn-label,
.form-label {
  font-family: var(--font-family-body) !important;
  font-weight: 600;
  text-transform: none;
}

.btn-emphasis,
.btn.btn-uppercase,
.btn.text-uppercase,
.form-label.text-uppercase {
  text-transform: uppercase !important;
  letter-spacing: 0.04em;
}

.font-public-sans.fw-thin {
  font-weight: 100 !important;
}

.font-public-sans.fw-extralight {
  font-weight: 200 !important;
}

.font-public-sans.fw-light {
  font-weight: 300 !important;
}

.font-public-sans.fw-normal {
  font-weight: 400 !important;
}

.font-public-sans.fw-medium {
  font-weight: 500 !important;
}

.font-public-sans.fw-semibold {
  font-weight: 600 !important;
}

.font-public-sans.fw-bold {
  font-weight: 700 !important;
}

.font-public-sans.fw-extrabold {
  font-weight: 800 !important;
}

.font-public-sans.fw-black {
  font-weight: 900 !important;
}


/* ==========================================================================
   PART II. COLOR SYSTEM RULES & UTILITY CLASSES
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TEXT COLOR UTILITIES
   -------------------------------------------------------------------------- */
.text-main-blue,
.text-blue {
  color: var(--color-main-blue) !important;
}

.text-main-red,
.text-red {
  color: var(--color-main-red) !important;
}

.text-secondary-orange,
.text-orange {
  color: var(--color-secondary-orange) !important;
}

.text-secondary-yellow,
.text-yellow {
  color: var(--color-secondary-yellow) !important;
}

.text-secondary-cyan,
.text-cyan,
.text-sky-blue {
  color: var(--color-secondary-cyan) !important;
}

.text-secondary-violet,
.text-violet {
  color: var(--color-secondary-violet) !important;
}

.text-violet-dark {
  color: var(--color-violet-dark) !important;
}

.text-neutral-white,
.text-white-pantone {
  color: var(--color-neutral-white) !important;
}

.text-neutral-black,
.text-black-pantone {
  color: var(--color-neutral-black) !important;
}

.text-tertiary-navy,
.text-deep-navy {
  color: var(--color-tertiary-deep-navy) !important;
}

/* --------------------------------------------------------------------------
   2. BACKGROUND COLOR UTILITIES
   -------------------------------------------------------------------------- */
.bg-main-blue,
.bg-blue {
  background-color: var(--color-main-blue) !important;
}

.bg-main-red,
.bg-red {
  background-color: var(--color-main-red) !important;
}

.bg-secondary-orange,
.bg-orange {
  background-color: var(--color-secondary-orange) !important;
}

.bg-secondary-yellow,
.bg-yellow {
  background-color: var(--color-secondary-yellow) !important;
}

.bg-secondary-cyan,
.bg-cyan,
.bg-sky-blue {
  background-color: var(--color-secondary-cyan) !important;
}

.bg-secondary-violet,
.bg-violet {
  background-color: var(--color-secondary-violet) !important;
}

.bg-violet-dark {
  background-color: var(--color-violet-dark) !important;
}

.bg-neutral-white,
.bg-white-pantone {
  background-color: var(--color-neutral-white) !important;
}

.bg-neutral-black,
.bg-black-pantone {
  background-color: var(--color-neutral-black) !important;
}

.bg-tertiary-navy,
.bg-deep-navy {
  background-color: var(--color-tertiary-deep-navy) !important;
}

/* Soft / Subtle Background Tint Variants */
.bg-blue-subtle {
  background-color: rgba(3, 66, 185, 0.08) !important;
}

.bg-red-subtle {
  background-color: rgba(228, 32, 58, 0.08) !important;
}

.bg-orange-subtle {
  background-color: rgba(255, 97, 18, 0.08) !important;
}

.bg-yellow-subtle {
  background-color: rgba(255, 207, 69, 0.12) !important;
}

.bg-cyan-subtle {
  background-color: rgba(53, 160, 224, 0.10) !important;
}

.bg-violet-subtle {
  background-color: rgba(87, 51, 92, 0.10) !important;
}

.bg-navy-subtle {
  background-color: rgba(6, 16, 64, 0.06) !important;
}

/* --------------------------------------------------------------------------
   3. BORDER COLOR UTILITIES
   -------------------------------------------------------------------------- */
.border-main-blue,
.border-blue {
  border-color: var(--color-main-blue) !important;
}

.border-main-red,
.border-red {
  border-color: var(--color-main-red) !important;
}

.border-secondary-orange,
.border-orange {
  border-color: var(--color-secondary-orange) !important;
}

.border-secondary-yellow,
.border-yellow {
  border-color: var(--color-secondary-yellow) !important;
}

.border-secondary-cyan,
.border-cyan,
.border-sky-blue {
  border-color: var(--color-secondary-cyan) !important;
}

.border-secondary-violet,
.border-violet {
  border-color: var(--color-secondary-violet) !important;
}

.border-neutral-white {
  border-color: var(--color-neutral-white) !important;
}

.border-neutral-black {
  border-color: var(--color-neutral-black) !important;
}

.border-tertiary-navy,
.border-deep-navy {
  border-color: var(--color-tertiary-deep-navy) !important;
}

/* --------------------------------------------------------------------------
   4. CUSTOM BUTTON VARIANTS WITH COLOR SYSTEM
   -------------------------------------------------------------------------- */
.btn-main-blue,
.btn-blue {
  background-color: var(--color-main-blue) !important;
  border-color: var(--color-main-blue) !important;
  color: #ffffff !important;
}

.btn-main-blue:hover,
.btn-blue:hover {
  background-color: #023699 !important;
  border-color: #023699 !important;
}

.btn-main-red,
.btn-red {
  background-color: var(--color-main-red) !important;
  border-color: var(--color-main-red) !important;
  color: #ffffff !important;
}

.btn-main-red:hover,
.btn-red:hover {
  background-color: #ca182f !important;
  border-color: #ca182f !important;
}

.btn-secondary-cyan,
.btn-cyan,
.btn-sky-blue {
  background-color: var(--color-secondary-cyan) !important;
  border-color: var(--color-secondary-cyan) !important;
  color: #ffffff !important;
}

.btn-secondary-cyan:hover,
.btn-cyan:hover {
  background-color: #298dca !important;
  border-color: #298dca !important;
}

.btn-tertiary-navy,
.btn-deep-navy {
  background-color: var(--color-tertiary-deep-navy) !important;
  border-color: var(--color-tertiary-deep-navy) !important;
  color: #ffffff !important;
}

.btn-tertiary-navy:hover,
.btn-deep-navy:hover {
  background-color: #030825 !important;
  border-color: #030825 !important;
}

/* Outline Button Variants */
.btn-outline-main-blue,
.btn-outline-blue {
  background-color: transparent !important;
  border: 1px solid var(--color-main-blue) !important;
  color: var(--color-main-blue) !important;
}

.btn-outline-main-blue:hover,
.btn-outline-blue:hover {
  background-color: var(--color-main-blue) !important;
  color: #ffffff !important;
}

.btn-outline-main-red,
.btn-outline-red {
  background-color: transparent !important;
  border: 1px solid var(--color-main-red) !important;
  color: var(--color-main-red) !important;
}

.btn-outline-main-red:hover,
.btn-outline-red:hover {
  background-color: var(--color-main-red) !important;
  color: #ffffff !important;
}

/* --------------------------------------------------------------------------
   5. BADGES & CHIPS WITH COLOR SYSTEM
   -------------------------------------------------------------------------- */
.badge-blue {
  background-color: var(--color-main-blue);
  color: #ffffff;
}

.badge-red {
  background-color: var(--color-main-red);
  color: #ffffff;
}

.badge-orange {
  background-color: var(--color-secondary-orange);
  color: #ffffff;
}

.badge-yellow {
  background-color: var(--color-secondary-yellow);
  color: var(--color-neutral-black);
}

.badge-cyan {
  background-color: var(--color-secondary-cyan);
  color: #ffffff;
}

.badge-violet {
  background-color: var(--color-secondary-violet);
  color: #ffffff;
}

.badge-navy {
  background-color: var(--color-tertiary-deep-navy);
  color: #ffffff;
}


/* ==========================================================================
   PART III. GENERAL UTILITY HELPERS
   ========================================================================== */

.font-antonio {
  font-family: var(--font-antonio) !important;
}

.font-space-grotesk {
  font-family: var(--font-space-grotesk) !important;
}

.font-public-sans {
  font-family: var(--font-public-sans) !important;
}

.font-display {
  font-family: var(--font-family-display) !important;
}

.font-heading {
  font-family: var(--font-family-heading) !important;
}

.font-body {
  font-family: var(--font-family-body) !important;
}

.text-sentencecase {
  text-transform: none !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

/* ==========================================================================
   PART IV. HERO & NAVBAR FLOW DESIGN REFINEMENTS
   ========================================================================== */

/* 1. Sharp UI Navbar Styling (Full Container Width + Logo Chamfered Geometry) */
.navbar-flow-wrapper {
  position: fixed;
  top: 1.25rem;
  left: 0;
  right: 0;
  z-index: 1070;
  width: 100%;
}

.landing-navbar-sharp {
  position: relative !important;
  width: 100% !important;
  max-width: 100% !important;
  min-height: 72px !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0.75rem 2.2rem !important;
  margin: 0;
  overflow: visible !important;
  z-index: 1;
  display: flex !important;
  align-items: center !important;
}

/* App Brand & Logo Scale */
.landing-navbar-sharp .app-brand-link {
  display: inline-flex !important;
  align-items: center !important;
}

.landing-navbar-sharp .home-logo {
  height: 24px !important;
  max-height: 40px !important;
  width: auto !important;
  object-fit: contain !important;
  transition: transform 0.25s ease;
}

.landing-navbar-sharp .home-logo:hover {
  transform: scale(1.03);
}

/* Background Layer (clean full rectangle container without border clip) */
.landing-navbar-sharp::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(252, 251, 250, 0.95);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(3, 66, 185, 0.16);
  border-radius: 0 !important;
  transition: all 0.3s ease;
  pointer-events: none;
}

[data-bs-theme="dark"] .landing-navbar-sharp::before {
  background: rgba(21, 22, 36, 0.95);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 35px -10px rgba(0, 0, 0, 0.5);
}

.landing-navbar-sharp .navbar-nav.nav-pill-center {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  gap: 0.35rem;
  margin-left: auto;
  margin-right: auto;
  align-items: center !important;
}

.landing-navbar-sharp .nav-link {
  font-family: var(--font-public-sans) !important;
  font-weight: 600 !important;
  font-size: 0.86rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  color: #334155 !important;
  padding: 0.55rem 1.05rem !important;
  border-radius: 0 !important;
  white-space: nowrap !important;
  transition: all 0.25s ease;
  display: inline-flex !important;
  align-items: center !important;
}

[data-bs-theme="dark"] .landing-navbar-sharp .nav-link {
  color: #cbd5e1 !important;
}

.landing-navbar-sharp .nav-link:hover {
  color: var(--color-main-blue) !important;
  background: rgba(3, 66, 185, 0.08) !important;
}

.landing-navbar-sharp .nav-link.active {
  color: var(--color-main-blue) !important;
  background: rgba(3, 66, 185, 0.12) !important;
  font-weight: 700 !important;
  box-shadow: inset 0 -2px 0 var(--color-main-blue);
}

[data-bs-theme="dark"] .landing-navbar-sharp .nav-link:hover,
[data-bs-theme="dark"] .landing-navbar-sharp .nav-link.active {
  color: #35A0E0 !important;
  background: rgba(53, 160, 224, 0.15) !important;
}

.nav-theme-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 0 !important;
  color: #475569;
  transition: all 0.2s ease;
}

.nav-theme-btn:hover {
  background: rgba(3, 66, 185, 0.08);
  color: var(--color-main-blue);
}

.nav-ghost-btn {
  color: var(--color-main-blue) !important;
  font-family: var(--font-public-sans) !important;
  font-weight: 600 !important;
  font-size: 0.82rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  white-space: nowrap !important;
  padding: 0.55rem 1.15rem !important;
  border-radius: 0 !important;
  border: 1px solid rgba(3, 66, 185, 0.2) !important;
  transition: all 0.25s ease !important;
  display: inline-flex;
  align-items: center;
}

.nav-ghost-btn:hover {
  background-color: rgba(3, 66, 185, 0.08) !important;
  border-color: var(--color-main-blue) !important;
}

.nav-cta-btn {
  position: relative;
  background-color: var(--color-main-blue) !important;
  border: 1px solid var(--color-main-blue) !important;
  color: #ffffff !important;
  font-family: var(--font-public-sans) !important;
  font-weight: 600 !important;
  font-size: 0.82rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  white-space: nowrap !important;
  border-radius: 0 !important;
  border: none;
  padding: 0.55rem 1.25rem !important;
  transition: all 0.25s ease !important;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  overflow: hidden !important;
}

.nav-cta-btn:hover {
  background-color: #023699 !important;
  border-color: #023699 !important;
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(3, 66, 185, 0.4) !important;
}
}

/* ==========================================================================
   BENTO GRID MEGA MENU STYLING (FULL WIDTH & SHARP PREVINDEX GEOMETRY)
   ========================================================================== */

.landing-navbar-sharp .mega-dropdown {
  position: static !important;
}

.landing-navbar-sharp .mega-dropdown>.dropdown-menu,
.bento-mega-menu {
  width: 100% !important;
  max-width: 100% !important;
  left: 0 !important;
  right: 0 !important;
  transform: none !important;
  background: #ffffff !important;
  border: 1px solid rgba(3, 66, 185, 0.18) !important;
  border-radius: 0 !important;
  box-shadow: 0 18px 45px -10px rgba(6, 16, 64, 0.18), 0 0 1px rgba(3, 66, 185, 0.2) !important;
  overflow: hidden !important;
  margin-top: 0.75rem !important;
}

[data-bs-theme="dark"] .bento-mega-menu {
  background: #151624 !important;
  border-color: rgba(255, 255, 255, 0.14) !important;
  box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.6) !important;
}

/* Sharp Bento Cards */
.bento-card {
  border-radius: 0 !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  position: relative;
  overflow: hidden;
}

/* Light Gray Variant */
.bento-card-light {
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
}

[data-bs-theme="dark"] .bento-card-light {
  background: #1e1f32 !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

.bento-card-light:hover {
  background: #f1f5f9 !important;
  border-color: rgba(3, 66, 185, 0.3) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(3, 66, 185, 0.1);
}

[data-bs-theme="dark"] .bento-card-light:hover {
  background: #25273e !important;
  border-color: rgba(53, 160, 224, 0.4) !important;
}

/* Vibrant Blue Variant */
.bento-card-blue {
  background: linear-gradient(135deg, #0342B9 0%, #023699 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 8px 24px rgba(3, 66, 185, 0.3) !important;
}

.bento-card-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(3, 66, 185, 0.45) !important;
}

/* Deep Navy Variant */
.bento-card-navy {
  background: linear-gradient(135deg, #061040 0%, #151624 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 8px 24px rgba(6, 16, 64, 0.4) !important;
}

.bento-card-navy:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(6, 16, 64, 0.6) !important;
}

/* Badges & Icons */
.bento-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 0 !important;
  background: rgba(3, 66, 185, 0.1);
  color: var(--color-main-blue);
  font-size: 1.3rem;
}

.bento-badge-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 0 !important;
  background: rgba(3, 66, 185, 0.1);
  color: var(--color-main-blue);
  font-size: 1.15rem;
}

/* Typography inside Bento Cards */
.bento-title {
  font-family: var(--font-public-sans) !important;
  font-weight: 700 !important;
  font-size: 0.92rem !important;
  color: #0f172a !important;
}

[data-bs-theme="dark"] .bento-title {
  color: #f8fafc !important;
}

.bento-desc {
  font-family: var(--font-space-grotesk) !important;
  font-size: 0.78rem !important;
  line-height: 1.45 !important;
  color: #64748b !important;
}

[data-bs-theme="dark"] .bento-desc {
  color: #94a3b8 !important;
}

.bento-title-white {
  font-family: var(--font-public-sans) !important;
  font-weight: 700 !important;
  font-size: 0.92rem !important;
  color: #ffffff !important;
}

.bento-desc-white {
  font-family: var(--font-space-grotesk) !important;
  font-size: 0.76rem !important;
  line-height: 1.4 !important;
  color: rgba(255, 255, 255, 0.85) !important;
}

.bento-tag-white {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.18rem 0.55rem;
  border-radius: 0 !important;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.bento-tag-sky {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.18rem 0.55rem;
  border-radius: 0 !important;
  background: rgba(53, 160, 224, 0.25);
  color: #35A0E0;
}

.bento-icon-box-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 0 !important;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 1.1rem;
}

.bento-link-item {
  display: flex;
  align-items: center;
  padding: 0.4rem 0.7rem;
  border-radius: 0 !important;
  font-size: 0.8rem;
  font-weight: 600;
  color: #334155;
  text-decoration: none !important;
  background: rgba(255, 255, 255, 0.7);
  transition: all 0.2s ease;
}

[data-bs-theme="dark"] .bento-link-item {
  background: rgba(255, 255, 255, 0.06);
  color: #e2e8f0;
}

.bento-link-item:hover {
  background: var(--color-main-blue) !important;
  color: #ffffff !important;
}

.bento-link-item:hover i {
  color: #ffffff !important;
}

.bento-chip {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 0 !important;
  background: rgba(3, 66, 185, 0.1);
  color: var(--color-main-blue);
}

/* Mobile Responsiveness for Sharp UI Navbar */
@media (max-width: 991.98px) {
  .navbar-flow-wrapper {
    top: 0.5rem;
  }

  .landing-navbar-sharp {
    border-radius: 0 !important;
    padding: 0.6rem 1rem !important;
  }

  .landing-nav-menu {
    background: rgba(252, 251, 250, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(3, 66, 185, 0.15) !important;
    padding: 1.25rem !important;
    margin-top: 0.5rem !important;
    box-shadow: 0 15px 35px rgba(6, 16, 64, 0.15) !important;
  }

  [data-bs-theme="dark"] .landing-nav-menu {
    background: rgba(21, 22, 36, 0.98) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
  }

  .landing-navbar-sharp .nav-link {
    padding: 0.65rem 1rem !important;
  }
}

/* 2. Left-Aligned Modern Flow Hero Section */
.hero-flow-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #FCFBFA;
}

[data-bs-theme="dark"] .hero-flow-section {
  background-color: #151624;
}

/* ==========================================================================
   ANIMATED DOT MATRIX GRID BACKGROUND
   ========================================================================== */

.animated-dot-grid-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

/* Moving Dot Matrix Grid Pattern (Pure Dots Grid) */
.dot-grid-pattern {
  position: absolute;
  inset: -10%;
  width: 120%;
  height: 120%;
  background-image: radial-gradient(rgba(3, 66, 185, 0.25) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at 50% 40%, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.15) 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.15) 80%);
  animation: dotGridDrift 24s linear infinite alternate, dotGridPulse 6s ease-in-out infinite alternate;
  will-change: transform, opacity;
}

[data-bs-theme="dark"] .dot-grid-pattern {
  background-image: radial-gradient(rgba(53, 160, 224, 0.35) 1.5px, transparent 1.5px);
}

/* Keyframe Animations for Point Grid */
@keyframes dotGridDrift {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(16px, 16px) scale(1.02);
  }

  100% {
    transform: translate(-16px, 32px) scale(1);
  }
}

@keyframes dotGridPulse {
  0% {
    opacity: 0.55;
  }

  50% {
    opacity: 0.95;
  }

  100% {
    opacity: 0.6;
  }
}

@keyframes orbPulse1 {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.5;
  }

  50% {
    transform: translate(80px, 40px) scale(1.15);
    opacity: 0.75;
  }

  100% {
    transform: translate(-40px, 80px) scale(0.95);
    opacity: 0.55;
  }
}

@keyframes orbPulse2 {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }

  50% {
    transform: translate(-90px, -50px) scale(1.2);
    opacity: 0.85;
  }

  100% {
    transform: translate(50px, -40px) scale(0.9);
    opacity: 0.6;
  }
}

/* Animated Background Container */
.hero-animated-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(100% 100% at 50% 0%, #f0f4fc 0%, #fafbfc 60%, #edf2f8 100%);
}

[data-bs-theme="dark"] .hero-animated-bg {
  background: radial-gradient(100% 100% at 50% 0%, #17182b 0%, #151624 60%, #0d0e18 100%);
}

/* Moving Mesh Gradient Base */
.hero-bg-gradient-mesh {
  position: absolute;
  inset: -40%;
  width: 180%;
  height: 180%;
  background: radial-gradient(circle at 20% 25%, rgba(3, 66, 185, 0.16), transparent 50%),
    radial-gradient(circle at 80% 35%, rgba(53, 160, 224, 0.18), transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(228, 32, 58, 0.08), transparent 55%),
    radial-gradient(circle at 75% 75%, rgba(6, 16, 64, 0.1), transparent 50%);
  animation: heroMeshRotate 20s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
  filter: blur(50px);
}

[data-bs-theme="dark"] .hero-bg-gradient-mesh {
  background: radial-gradient(circle at 20% 25%, rgba(3, 66, 185, 0.38), transparent 50%),
    radial-gradient(circle at 80% 35%, rgba(53, 160, 224, 0.32), transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(228, 32, 58, 0.18), transparent 55%),
    radial-gradient(circle at 75% 75%, rgba(15, 23, 42, 0.6), transparent 50%);
}

/* Floating Light Orbs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(65px);
  opacity: 0.75;
  will-change: transform;
}

.hero-blob-1 {
  width: 520px;
  height: 520px;
  top: -12%;
  left: 10%;
  background: radial-gradient(circle, rgba(3, 66, 185, 0.38) 0%, rgba(53, 160, 224, 0.08) 70%);
  animation: floatOrb1 16s ease-in-out infinite alternate;
}

.hero-blob-2 {
  width: 620px;
  height: 620px;
  bottom: -18%;
  right: 8%;
  background: radial-gradient(circle, rgba(53, 160, 224, 0.38) 0%, rgba(3, 66, 185, 0.12) 70%);
  animation: floatOrb2 20s ease-in-out infinite alternate;
}

.hero-blob-3 {
  width: 420px;
  height: 420px;
  top: 30%;
  left: 40%;
  background: radial-gradient(circle, rgba(228, 32, 58, 0.18) 0%, rgba(3, 66, 185, 0.1) 70%);
  animation: floatOrb3 14s ease-in-out infinite alternate;
}

/* Geometric Dot & Line Grid Pattern Overlay */
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(rgba(3, 66, 185, 0.12) 1px, transparent 1px),
    linear-gradient(to right, rgba(3, 66, 185, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(3, 66, 185, 0.04) 1px, transparent 1px);
  background-size: 36px 36px, 36px 36px, 36px 36px;
  mask-image: radial-gradient(ellipse at 50% 50%, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0) 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0) 80%);
  opacity: 0.75;
}

[data-bs-theme="dark"] .hero-grid-pattern {
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px),
    linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
}

/* Keyframe Animations */
@keyframes heroMeshRotate {
  0% {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: rotate(180deg) scale(1.15);
  }

  100% {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes floatOrb1 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(120px, 80px) scale(1.2);
  }

  100% {
    transform: translate(-60px, 140px) scale(0.9);
  }
}

@keyframes floatOrb2 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-140px, -100px) scale(1.25);
  }

  100% {
    transform: translate(80px, -60px) scale(0.85);
  }
}

@keyframes floatOrb3 {
  0% {
    transform: translate(0, 0) scale(0.9);
  }

  50% {
    transform: translate(-100px, 90px) scale(1.3);
  }

  100% {
    transform: translate(110px, -80px) scale(1);
  }
}

.hero-flow-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-inline: auto;
  z-index: 1;
  text-align: start;
}

/* ==========================================================================
   ABSOLUTE POSITIONED PLATFORM SCREENSHOT AT RIGHT BOTTOM
   ========================================================================== */

#hero-animation {
  position: relative !important;
  min-height: 780px;
}

.hero-abs-screenshot-wrap {
  position: absolute !important;
  right: 2%;
  bottom: -2%;
  width: 48%;
  max-width: 720px;
  z-index: 2;
  pointer-events: auto;
}

.hero-abs-dashboard-frame {
  position: relative !important;
  border-radius: 0px !important;
  border: 1px solid rgba(3, 66, 185, 0.2) !important;
  background: #ffffff !important;
  box-shadow: none !important;
  overflow: hidden !important;
}

[data-bs-theme="dark"] .hero-abs-dashboard-frame {
  background: #1e1f32 !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
  box-shadow: none !important;
}

/* Hero Bottom Fade-to-Transparent Overlay */
.hero-bottom-fade {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 180px !important;
  background: linear-gradient(to top, #FCFBFA 0%, rgba(252, 251, 250, 0.85) 45%, rgba(252, 251, 250, 0) 100%) !important;
  pointer-events: none !important;
  z-index: 3 !important;
}

[data-bs-theme="dark"] .hero-bottom-fade {
  background: linear-gradient(to top, #151624 0%, rgba(21, 22, 36, 0.85) 45%, rgba(21, 22, 36, 0) 100%) !important;
}

/* Badge above Headline (Glassmorphic Sharp Badge) */
.hero-badge-pill,
.hero-badge-sharp {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
  padding: 0.55rem 1rem !important;
  background: rgba(252, 251, 250, 0.85) !important;
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(3, 66, 185, 0.22) !important;
  border-radius: 0 !important;
  color: var(--color-main-blue) !important;
  font-family: var(--font-space-grotesk) !important;
  font-size: 0.825rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  margin-bottom: 1.5rem !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  position: relative !important;
  overflow: hidden !important;
}

[data-bs-theme="dark"] .hero-badge-pill,
[data-bs-theme="dark"] .hero-badge-sharp {
  background: rgba(21, 22, 36, 0.85) !important;
  border-color: rgba(53, 160, 224, 0.3) !important;
  color: var(--color-secondary-cyan) !important;
  box-shadow: 0 6px 20px -6px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.05) !important;
}

.hero-badge-pill:hover,
.hero-badge-sharp:hover {
  background: #ffffff !important;
  border-color: var(--color-main-blue) !important;
}

[data-bs-theme="dark"] .hero-badge-pill:hover,
[data-bs-theme="dark"] .hero-badge-sharp:hover {
  background: #1e1f32 !important;
  border-color: var(--color-secondary-cyan) !important;
}

.hero-badge-pill i,
.hero-badge-sharp i {
  color: var(--color-main-blue) !important;
  font-size: 1.05rem !important;
  transition: transform 0.3s ease !important;
}

[data-bs-theme="dark"] .hero-badge-pill i,
[data-bs-theme="dark"] .hero-badge-sharp i {
  color: var(--color-secondary-cyan) !important;
}

.hero-badge-pill::after,
.hero-badge-sharp::after {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: -150% !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(90deg, transparent, rgba(3, 66, 185, 0.15), transparent) !important;
  transform: skewX(-20deg) !important;
  transition: left 0.65s cubic-bezier(0.19, 1, 0.22, 1) !important;
  pointer-events: none !important;
}

.hero-badge-pill:hover::after,
.hero-badge-sharp:hover::after {
  left: 150% !important;
}

/* Hero Headline */
.hero-flow-title {
  font-family: var(--font-antonio) !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  font-size: clamp(2.4rem, 5.5vw, 3.25rem);
  width: 50%;
  line-height: 1.2;
  color: var(--color-neutral-black);
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

[data-bs-theme="dark"] .hero-flow-title {
  color: var(--color-neutral-white);
}

/* Hero Subtitle */
.hero-flow-subtitle {
  font-family: var(--font-space-grotesk) !important;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.6;
  color: #566a7f;
  margin-bottom: 2.25rem;
  max-width: 760px;
}

[data-bs-theme="dark"] .hero-flow-subtitle {
  color: #a1acb8;
}

/* Hero Action Buttons Container */
.hero-flow-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

/* ==========================================================================
   RESPONSIVE OVERRIDES FOR HERO & NAVBAR (PLACED AFTER ALL BASE STYLES)
   ========================================================================== */

@media (max-width: 991.98px) {
  #hero-animation {
    min-height: auto !important;
    padding-top: 6.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  #landingHero {
    padding-top: 0.5rem !important;
  }

  .hero-flow-content {
    align-items: flex-start !important;
    text-align: left !important;
    width: 100% !important;
  }

  .hero-flow-title {
    width: 100% !important;
    font-size: clamp(1.85rem, 6vw, 2.75rem) !important;
    line-height: 1.2 !important;
    margin-bottom: 1rem !important;
  }

  .hero-flow-subtitle {
    font-size: 1rem !important;
    line-height: 1.55 !important;
    margin-bottom: 1.75rem !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero-flow-actions {
    width: 100% !important;
    margin-bottom: 2rem !important;
  }

  .hero-abs-screenshot-wrap {
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
    clear: both !important;
    display: block !important;
  }

  .hero-bottom-fade {
    height: 90px !important;
  }
}

@media (max-width: 575.98px) {
  #hero-animation {
    padding-top: 5.75rem !important;
  }

  .hero-badge-pill,
  .hero-badge-sharp {
    font-size: 0.75rem !important;
    padding: 0.45rem 0.85rem !important;
    gap: 0.5rem !important;
    margin-bottom: 1.25rem !important;
  }

  .hero-flow-title {
    font-size: clamp(1.65rem, 7vw, 2.1rem) !important;
    margin-bottom: 0.85rem !important;
  }

  .hero-flow-subtitle {
    font-size: 0.925rem !important;
    line-height: 1.5 !important;
    margin-bottom: 1.5rem !important;
  }

  .hero-flow-actions {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.75rem !important;
    width: 100% !important;
  }

  .hero-btn-primary,
  .hero-btn-secondary,
  .btn-sharp-primary,
  .btn-sharp-secondary {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
    padding: 0.85rem 1.25rem !important;
    font-size: 0.85rem !important;
  }

  .hero-abs-screenshot-wrap {
    margin-top: 1rem !important;
  }
}

/* ==========================================================================
   BUTTON STYLING (SHARP BORDER UI)
   ========================================================================== */

.btn-sharp,
.hero-btn-primary,
.hero-btn-secondary,
.btn-sharp-primary,
.btn-sharp-secondary {
  position: relative;
  font-family: var(--font-public-sans) !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0 !important;
  padding: 0.95rem 2.4rem !important;
  font-size: 0.95rem !important;
  overflow: hidden !important;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.3s ease,
    box-shadow 0.3s ease !important;
  z-index: 1;
}

/* Light Flare / Shimmer Sheen Animation on Hover */
.btn-sharp::after,
.hero-btn-primary::after,
.hero-btn-secondary::after,
.btn-sharp-primary::after,
.btn-sharp-secondary::after,
.nav-cta-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.35) 50%,
      transparent 100%);
  transform: skewX(-25deg);
  transition: left 0.75s cubic-bezier(0.19, 1, 0.22, 1);
  pointer-events: none;
  z-index: 3;
}

.btn-sharp:hover::after,
.hero-btn-primary:hover::after,
.hero-btn-secondary:hover::after,
.btn-sharp-primary:hover::after,
.btn-sharp-secondary:hover::after,
.nav-cta-btn:hover::after {
  left: 150%;
}



/* Hover States with Micro-Lift & Red Glow Accent Scale */
.hero-btn-primary,
.btn-sharp-primary {
  background-color: var(--color-main-blue) !important;
  color: #ffffff !important;
}

.hero-btn-primary:hover,
.btn-sharp-primary:hover {
  background-color: #023699 !important;
  color: #ffffff !important;
  transform: translateY(-3px) scale(1.02);
}

.hero-btn-primary:hover::before,
.btn-sharp-primary:hover::before {
  transform: scale(1.35);
  opacity: 1;
}

.hero-btn-secondary,
.btn-sharp-secondary {
  background-color: var(--color-tertiary-deep-navy) !important;
  color: #ffffff !important;
  box-shadow: 0 10px 25px -8px rgba(6, 16, 64, 0.35) !important;
}

.hero-btn-secondary:hover,
.btn-sharp-secondary:hover {
  background-color: #030825 !important;
  color: #ffffff !important;
  transform: translateY(-3px) scale(1.02);
}

.hero-btn-secondary:hover::before,
.btn-sharp-secondary:hover::before {
  transform: scale(1.35);
  opacity: 1;
}

.btn-sharp:active,
.hero-btn-primary:active,
.hero-btn-secondary:active,
.nav-cta-btn:active {
  transform: translateY(-1px) scale(0.99) !important;
}

/* Dashboard Image Window Card Frame */
.hero-dashboard-frame {
  position: relative;
  z-index: 1;
  background: var(--color-neutral-white);
  border-radius: 20px;
  border: 1px solid rgba(6, 16, 64, 0.12);
  box-shadow: 0 30px 70px -15px rgba(6, 16, 64, 0.18), 0 0 0 1px rgba(3, 66, 185, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

[data-bs-theme="dark"] .hero-dashboard-frame {
  background: #2b2c40;
}

/* ==========================================================================
   PART V. TRUST BAND & CLIENT REASONS SECTION
   ========================================================================== */

.trust-section {
  background-color: #FCFBFA;
  position: relative;
}

[data-bs-theme="dark"] .trust-section {
  background-color: #151624;
}

.trust-title {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--color-neutral-black);
}

[data-bs-theme="dark"] .trust-title {
  color: var(--color-neutral-white);
}

.trust-subtitle {
  max-width: 680px;
  font-size: 1rem;
}

/* Client Card */
.trust-client-card {
  background: #ffffff;
  border: 1px solid rgba(3, 66, 185, 0.16);
  border-radius: 0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

[data-bs-theme="dark"] .trust-client-card {
  background: #1e1f32;
  border-color: rgba(255, 255, 255, 0.12);
}

.trust-client-card:hover {
  border-color: var(--color-main-blue);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(3, 66, 185, 0.12);
}

.trust-client-icon i {
  font-size: 1.8rem;
  color: var(--color-main-blue);
}

.trust-client-name {
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  color: var(--color-neutral-black);
}

[data-bs-theme="dark"] .trust-client-name {
  color: var(--color-neutral-white);
}

/* 75% Stat Box */
.trust-stat-box {
  background: #ffffff;
  border: 1px solid rgba(3, 66, 185, 0.2);
  border-radius: 0;
  box-shadow: 0 10px 30px -10px rgba(3, 66, 185, 0.08);
}

[data-bs-theme="dark"] .trust-stat-box {
  background: #1e1f32;
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.4);
}

.trust-stat-number {
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  line-height: 1;
  color: var(--color-main-blue);
}

.trust-stat-lead {
  font-size: 1.05rem;
  color: var(--color-neutral-black);
  line-height: 1.45;
}

[data-bs-theme="dark"] .trust-stat-lead {
  color: var(--color-neutral-white);
}

/* Reason Item */
.trust-reason-item {
  background: rgba(3, 66, 185, 0.04);
  border-left: 3px solid var(--color-main-blue);
  transition: all 0.25s ease;
}

[data-bs-theme="dark"] .trust-reason-item {
  background: rgba(53, 160, 224, 0.06);
  border-left-color: var(--color-secondary-cyan);
}

.trust-reason-num {
  width: 28px;
  height: 28px;
  background: var(--color-main-blue);
  color: #ffffff;
  font-family: var(--font-space-grotesk);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.875rem;
}

/* Quote Cards */
.trust-quote-card {
  background: #ffffff;
  border: 1px solid rgba(3, 66, 185, 0.16);
  border-radius: 0;
  position: relative;
  transition: all 0.3s ease;
}

[data-bs-theme="dark"] .trust-quote-card {
  background: #1e1f32;
  border-color: rgba(255, 255, 255, 0.12);
}

.trust-quote-card:hover {
  border-color: var(--color-main-blue);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(3, 66, 185, 0.12);
}

.trust-quote-mark {
  font-family: var(--font-antonio);
  font-size: 3.5rem;
  line-height: 0.6;
  color: var(--color-main-blue);
  opacity: 0.4;
}

.trust-quote-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #334155;
}

[data-bs-theme="dark"] .trust-quote-text {
  color: #cbd5e1;
}

[data-bs-theme="dark"] .hero-dashboard-frame {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 70px -15px rgba(0, 0, 0, 0.6);
}

.hero-dashboard-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 38px 80px -15px rgba(3, 66, 185, 0.24), 0 0 0 1px rgba(53, 160, 224, 0.2);
}

/* ==========================================================================
   TRUST BAND ATTACHMENT EXACT MATCH STYLING
   ========================================================================== */

.trust-band-exact {
  background-color: #ffffff !important;
}

[data-bs-theme="dark"] .trust-band-exact {
  background-color: #151624 !important;
}

.trust-exact-title {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  color: #1e293b;
  line-height: 1.35;
}

[data-bs-theme="dark"] .trust-exact-title {
  color: #f8fafc;
}

.trust-exact-btn {
  background-color: #090a0f !important;
  color: #ffffff !important;
  border-radius: 6px !important;
  padding: 0.65rem 1.4rem !important;
  font-family: var(--font-public-sans) !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.4rem !important;
  border: none !important;
  transition: all 0.25s ease !important;
}

.trust-exact-btn:hover {
  background-color: var(--color-main-blue) !important;
  color: #ffffff !important;
  transform: translateY(-1px);
}

[data-bs-theme="dark"] .trust-exact-btn {
  background-color: #ffffff !important;
  color: #090a0f !important;
}

[data-bs-theme="dark"] .trust-exact-btn:hover {
  background-color: var(--color-secondary-cyan) !important;
  color: #090a0f !important;
}

.trust-logo-box {
  background-color: #f7f6f3;
  border-radius: 10px;
  padding: 2.2rem 1.25rem;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.25s ease;
}

[data-bs-theme="dark"] .trust-logo-box {
  background-color: #1e1f32;
  border-color: rgba(255, 255, 255, 0.06);
}

.trust-logo-box:hover {
  background-color: #ffffff;
  border-color: rgba(3, 66, 185, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

[data-bs-theme="dark"] .trust-logo-box:hover {
  background-color: #25273d;
  border-color: rgba(53, 160, 224, 0.3);
}

.trust-logo-icon {
  font-size: 1.8rem;
  color: #0f172a;
}

[data-bs-theme="dark"] .trust-logo-icon {
  color: #35A0E0;
}

.trust-logo-name {
  font-size: 0.9rem;
  color: #0f172a;
  letter-spacing: -0.01em;
}

[data-bs-theme="dark"] .trust-logo-name {
  color: #f8fafc;
}

/* ==========================================================================
   PART V. TRUST BAND V2 ATTACHMENT MOCKUP EXACT MATCH STYLING
   ========================================================================== */

.trust-band-v2 {
  background-color: #fff !important;
}

[data-bs-theme="dark"] .trust-band-v2 {
  background-color: #151624 !important;
}

.trust-header-tag {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.trust-brand-logo {
  display: inline-flex;
  align-items: center;
  font-size: 0.95rem;
  color: #1e293b;
  transition: transform 0.25s ease;
}

.trust-brand-logo:hover {
  transform: translateY(-2px);
}

[data-bs-theme="dark"] .trust-brand-logo {
  color: #f8fafc;
}

.trust-big-stat {
  font-size: clamp(3.8rem, 6vw, 5rem) !important;
  color: var(--color-main-blue) !important;
  line-height: 0.9 !important;
}

.trust-stat-text {
  font-size: 0.875rem !important;
  line-height: 1.5 !important;
  color: #475569 !important;
}

[data-bs-theme="dark"] .trust-stat-text {
  color: #cbd5e1 !important;
}

.trust-section-title {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem) !important;
  color: var(--color-main-blue) !important;
  line-height: 1.25 !important;
  letter-spacing: 0.02em !important;
}

[data-bs-theme="dark"] .trust-section-title {
  color: var(--color-secondary-cyan) !important;
}

.trust-section-desc {
  font-size: 0.925rem !important;
  line-height: 1.6 !important;
  color: #475569 !important;
}

[data-bs-theme="dark"] .trust-section-desc {
  color: #cbd5e1 !important;
}

/* Testimonial Card V2 */
.trust-card-v2 {
  background: #ffffff !important;
  border-radius: 16px !important;
  border: 1px solid rgba(3, 66, 185, 0.1) !important;
  box-shadow: 0 10px 30px -5px rgba(6, 16, 64, 0.05) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

[data-bs-theme="dark"] .trust-card-v2 {
  background: #1e1f32 !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.4) !important;
}

.trust-card-v2:hover {
  transform: translateY(-4px) !important;
  border-color: var(--color-main-blue) !important;
  box-shadow: 0 15px 35px -5px rgba(3, 66, 185, 0.15) !important;
}

.trust-card-text {
  font-size: 0.925rem !important;
  line-height: 1.55 !important;
  color: #1e293b !important;
}

[data-bs-theme="dark"] .trust-card-text {
  color: #f8fafc !important;
}

/* Dots Indicator */
.trust-dot-pill {
  width: 24px;
  height: 6px;
  background-color: var(--color-main-blue);
  border-radius: 10px;
}

.trust-dot {
  width: 6px;
  height: 6px;
  background-color: rgba(3, 66, 185, 0.25);
  border-radius: 50%;
}

[data-bs-theme="dark"] .trust-dot {
  background-color: rgba(255, 255, 255, 0.25);
}

@media (min-width: 992px) {
  .border-end-lg {
    border-right: 1px solid rgba(0, 0, 0, 0.08) !important;
  }

  [data-bs-theme="dark"] .border-end-lg {
    border-right-color: rgba(255, 255, 255, 0.1) !important;
  }
}