/* ==========================================================================
   PROADEXA - World-Class Modern Agency Design System
   Font: Plus Jakarta Sans for Crisp Clean Typography (Zero Squish/Distortion)
   Palette: Pure White (#FFFFFF), Soft Slate (#F8FAFC), Charcoal (#0F172A)
   Accents: Electric Blue (#0284C7), Neon Cyan (#06B6D4), Vivid Purple (#7C3AED)
   ========================================================================== */

:root {
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Color Palette */
  --bg-main: #f8fafc;
  --bg-surface: #ffffff;
  --bg-subtle: #f1f5f9;
  --border-color: #e2e8f0;
  --border-glow: rgba(2, 132, 199, 0.3);

  /* Text Colors */
  --text-primary: #0f172a;
  --text-secondary: #334155;
  --text-muted: #475569;
  --text-dim: #64748b;

  /* Brand Colors */
  --primary-blue: #0284c7;
  --primary-cyan: #06b6d4;
  --primary-purple: #7c3aed;

  /* Gradients */
  --grad-primary: linear-gradient(135deg, #0284c7 0%, #06b6d4 50%, #7c3aed 100%);
  --grad-accent: linear-gradient(135deg, #0284c7 0%, #7c3aed 100%);
  --grad-soft: linear-gradient(135deg, rgba(2, 132, 199, 0.06) 0%, rgba(124, 58, 237, 0.06) 100%);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 25px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.1);
  --shadow-glow: 0 12px 30px rgba(2, 132, 199, 0.15);

  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
}

/* Global Reset & Base */
body {
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Max Width Helpers for Text Area Containers */
.max-w-1200 {
  max-width: 1200px;
  margin: 0 auto;
}

.max-w-800 {
  max-width: 840px !important;
  margin-left: auto;
  margin-right: auto;
}

.max-w-700 {
  max-width: 760px !important;
  margin-left: auto;
  margin-right: auto;
}

/* Premium Ultra-Clean Typography Scale (Plus Jakarta Sans - Perfect Balanced Sizing) */
h1, .h1, .display-3 {
  font-family: var(--font-heading) !important;
  font-size: 2.45rem !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
  letter-spacing: -0.025em !important;
  color: var(--text-primary) !important;
}

h2, .h2, .display-4, .display-5 {
  font-family: var(--font-heading) !important;
  font-size: 2.0rem !important;
  font-weight: 800 !important;
  line-height: 1.28 !important;
  letter-spacing: -0.02em !important;
  color: var(--text-primary) !important;
}

h3, .h3, .display-6 {
  font-family: var(--font-heading) !important;
  font-size: 1.4rem !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  letter-spacing: -0.015em !important;
  color: var(--text-primary) !important;
}

h4, .h4 {
  font-family: var(--font-heading) !important;
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
  color: var(--text-primary) !important;
}

h5, .h5 {
  font-family: var(--font-heading) !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
  color: var(--text-primary) !important;
}

h6, .h6 {
  font-family: var(--font-heading) !important;
  font-size: 0.92rem !important;
  font-weight: 600 !important;
  line-height: 1.45 !important;
  color: var(--text-primary) !important;
}

/* Clean Modern Paragraph Formatting - Natural Left Alignment */
p, .lead, .footer-desc, .glass-card p, .accordion-body {
  color: #334155 !important;
  font-size: 1.02rem !important;
  line-height: 1.65 !important;
  font-weight: 450;
  text-align: left;
  hyphens: manual !important;
  -webkit-hyphens: manual !important;
  -ms-hyphens: manual !important;
  word-break: normal !important;
  overflow-wrap: break-word !important;
  letter-spacing: normal !important;
}

/* Center-align paragraphs inside .text-center containers */
.text-center p, 
.text-center .lead, 
.text-center .text-muted {
  text-align: center !important;
}

.text-muted {
  color: #475569 !important;
}

.text-dim {
  color: #64748b !important;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Gradient Text Effect */
.gradient-text {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.gradient-bg {
  background: var(--grad-primary);
}

.text-cyan {
  color: #0284c7 !important;
}

.text-blue {
  color: var(--primary-blue) !important;
}

.text-purple {
  color: var(--primary-purple) !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 85px;
}

/* FLOATING GLASS CAPSULE HEADER DESIGN */
.header-floating-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  padding: 14px 16px;
  pointer-events: none;
}

.navbar-floating {
  pointer-events: auto;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 50px;
  padding: 7px 22px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-floating:hover {
  box-shadow: 0 14px 35px rgba(2, 132, 199, 0.12);
  border-color: rgba(2, 132, 199, 0.3);
}

.navbar-floating .navbar-brand img {
  height: 28px !important;
  max-width: 175px !important;
  width: auto;
  object-fit: contain;
}

.navbar-floating .nav-link {
  color: #0a0a0a !important;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 7px 15px !important;
  border-radius: 30px;
  position: relative;
  white-space: nowrap !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.navbar-floating .nav-link:hover {
  color: #0284c7 !important;
  background: rgba(2, 132, 199, 0.08);
  transform: translateY(-2px);
  text-shadow: 0 2px 10px rgba(2, 132, 199, 0.3);
}

.navbar-floating .nav-link.active {
  color: #0284c7 !important;
  background: rgba(2, 132, 199, 0.1);
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.15);
}

.btn-nav-cta {
  white-space: nowrap !important;
  font-size: 0.88rem !important;
  padding: 8px 20px !important;
  border-radius: 50px !important;
  flex-shrink: 0 !important;
  width: auto !important;
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.3) !important;
}

@media (max-width: 991px) {
  .btn-nav-cta {
    width: 100% !important;
    padding: 12px 20px !important;
    font-size: 0.93rem !important;
  }
}

/* MEGA DROPDOWN MENU REDESIGN (4-COLUMN LAYOUT) */
@media (min-width: 992px) {
  .navbar-nav .dropdown:hover .dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
  }
  
  .navbar-nav .dropdown-menu-mega {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0;
    left: 50% !important;
    transform: translateX(-50%) translateY(12px) !important;
  }

  .navbar-nav .dropdown:hover .dropdown-menu-mega {
    transform: translateX(-50%) translateY(0) !important;
  }
}

.dropdown-menu-mega {
  width: 1040px !important;
  min-width: 1040px !important;
  background: #ffffff !important;
  border: 1px solid rgba(226, 232, 240, 0.9) !important;
  border-radius: 24px !important;
  padding: 24px !important;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
}

.dropdown-mega-header {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0284c7;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 6px;
  border-bottom: 2px solid rgba(2, 132, 199, 0.15);
}

.dropdown-item-mega {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 12px;
  color: #0a0a0a !important;
  text-decoration: none;
  background: transparent;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-item-mega:hover, .dropdown-item-mega:focus {
  background: rgba(2, 132, 199, 0.08) !important;
  color: #0284c7 !important;
  transform: translateX(4px);
}

.dropdown-icon-box {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.0rem;
  color: #0284c7;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.03);
}

.dropdown-item-mega:hover .dropdown-icon-box {
  background: var(--grad-primary);
  color: #ffffff !important;
  border-color: transparent;
  transform: scale(1.08);
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35);
}

.dropdown-item-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  color: #0a0a0a;
  line-height: 1.25;
}

.dropdown-item-mega:hover .dropdown-item-title {
  color: #0284c7 !important;
}

.dropdown-item-sub {
  font-size: 0.76rem;
  color: #64748b;
  line-height: 1.2;
}

/* High Legibility Modern Buttons */
.btn-proadexa {
  background: var(--grad-primary);
  color: #ffffff !important;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
  padding: 11px 26px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 4px 18px rgba(2, 132, 199, 0.35);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 1;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-proadexa:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.45);
  color: #ffffff !important;
}

.btn-proadexa-outline {
  background: #ffffff;
  color: var(--text-primary) !important;
  border: 1px solid var(--border-color);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
  padding: 11px 26px;
  border-radius: 50px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.btn-proadexa-outline:hover {
  background: #f8fafc;
  border-color: var(--primary-blue);
  color: var(--primary-blue) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Universal Hero & Section CTA Button Group */
.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 1.5rem;
}

/* ==========================================================================
   DYNAMIC MOVING HERO CANVAS & LIQUID AURORA BACKGROUND
   ========================================================================== */
.hero-section-redesign,
.hero-workspace {
  position: relative;
  background-color: #ffffff;
  padding: 140px 0 80px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.hero-section-redesign .container,
.hero-workspace .container {
  position: relative;
  z-index: 10;
}

/* Dedicated Unified ROI Calculator Page Hero */
.roi-calculator-hero-page {
  position: relative;
  background-color: #ffffff;
  padding-top: 145px;
  padding-bottom: 90px;
  overflow: hidden;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

/* Rotating Liquid Aurora Mesh Background */
.hero-aurora-bg {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 30% 30%, rgba(2, 132, 199, 0.15) 0%, transparent 45%),
    radial-gradient(circle at 70% 60%, rgba(124, 58, 237, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 40% 85%, rgba(6, 182, 212, 0.12) 0%, transparent 45%);
  animation: auroraRotate 28s linear infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes auroraRotate {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.12); }
  100% { transform: rotate(360deg) scale(1); }
}

/* Real-Time HTML5 Particle Constellation Canvas */
.hero-canvas-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.badge-pill-custom {
  background: rgba(2, 132, 199, 0.08);
  border: 1px solid rgba(2, 132, 199, 0.25);
  color: var(--primary-blue);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.badge-pill-custom .pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary-blue);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--primary-blue);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(2, 132, 199, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(2, 132, 199, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(2, 132, 199, 0); }
}

/* Premium Hero Typography & Gradient Balancing */
.hero-main-title {
  font-family: var(--font-heading) !important;
  font-size: clamp(2.3rem, 4.2vw, 3.65rem) !important;
  font-weight: 800 !important;
  line-height: 1.18 !important;
  letter-spacing: -0.035em !important;
  color: #0f172a !important;
  text-wrap: balance;
  margin-bottom: 1.25rem !important;
}

.gradient-text {
  background: linear-gradient(135deg, #0284c7 0%, #2563eb 45%, #7c3aed 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  display: inline !important;
  font-weight: 850 !important;
}

.hero-subtitle {
  font-size: clamp(1.02rem, 1.2vw, 1.15rem) !important;
  line-height: 1.68 !important;
  color: #475569 !important;
  font-weight: 450 !important;
  max-width: 590px;
  margin-bottom: 1.85rem !important;
}

.hero-trust-chips {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.hero-trust-chip-item {
  font-size: 0.82rem;
  font-weight: 600;
  color: #475569;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Dedicated Mobile Responsive Typography & Overlap Prevention */
@media (max-width: 991px) {
  .hero-workspace,
  .hero-section-redesign {
    padding-top: 115px !important;
    padding-bottom: 50px !important;
  }
}

@media (max-width: 767px) {
  .hero-workspace,
  .hero-section-redesign {
    padding-top: 125px !important;
    padding-bottom: 45px !important;
  }

  /* 1. Mobile Top Badge */
  .badge-pill-custom {
    font-size: 0.76rem !important;
    padding: 6px 14px !important;
    margin-bottom: 16px !important;
    max-width: 100% !important;
    line-height: 1.3 !important;
  }

  /* 2. Mobile Main Headline - Clean 3-line balance */
  .hero-main-title {
    font-size: 1.88rem !important;
    line-height: 1.22 !important;
    letter-spacing: -0.025em !important;
    margin-bottom: 1rem !important;
    padding: 0 4px !important;
  }

  /* 3. Mobile Subtitle */
  .hero-subtitle {
    font-size: 0.95rem !important;
    line-height: 1.62 !important;
    margin-bottom: 1.45rem !important;
    padding: 0 4px !important;
    color: #475569 !important;
  }

  /* 4. Mobile CTA Buttons */
  .hero-workspace .btn-lg,
  .hero-section-redesign .btn-lg {
    padding: 12px 18px !important;
    font-size: 0.95rem !important;
    width: 100% !important;
  }

  /* 5. Mobile Trust Chips */
  .hero-trust-chips {
    gap: 0.75rem !important;
    justify-content: center !important;
    margin-top: 0.25rem !important;
    margin-bottom: 1.5rem !important;
  }

  .hero-trust-chip-item {
    font-size: 0.76rem !important;
  }
}

@media (max-width: 480px) {
  .hero-workspace,
  .hero-section-redesign {
    padding-top: 130px !important;
  }

  .hero-main-title {
    font-size: 1.74rem !important;
    line-height: 1.24 !important;
  }
}

/* Animated 3D Hero Infographic Frame (TRANSPARENT ISOLATED ARTWORK) */
.hero-infographic-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.hero-infographic-img {
  width: 100%;
  height: auto;
  border-radius: 0;
  border: none !important;
  box-shadow: none !important;
  filter: drop-shadow(0 25px 45px rgba(2, 132, 199, 0.22));
  animation: float3dHero 6s ease-in-out infinite;
  transition: all 0.3s ease;
  background: transparent !important;
}

.hero-infographic-frame:hover .hero-infographic-img {
  filter: drop-shadow(0 35px 55px rgba(124, 58, 237, 0.38));
}

@keyframes float3dHero {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(0.5deg); }
}

/* Floating Overlay Badges - High Contrast Glass */
.hero-float-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 30px;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #0f172a;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.12);
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.hero-float-badge.badge-1 {
  top: -15px;
  left: -15px;
  animation: floatBadge1 5s ease-in-out infinite;
}

.hero-float-badge.badge-4 {
  top: -15px;
  right: -15px;
  animation: floatBadge4 5.2s ease-in-out infinite;
}

.hero-float-badge.badge-3 {
  top: 45%;
  right: -20px;
  animation: floatBadge3 5.5s ease-in-out infinite;
}

.hero-float-badge.badge-2 {
  bottom: -15px;
  left: -10px;
  animation: floatBadge2 6s ease-in-out infinite;
}

@keyframes floatBadge1 {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-10px) translateX(6px); }
}

@keyframes floatBadge2 {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(10px) translateX(-6px); }
}

@keyframes floatBadge3 {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-8px) translateX(-8px); }
}

@keyframes floatBadge4 {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-12px) translateX(-5px); }
}

/* Modern Card Component with Optimized Padding & Width Dimensions */
.glass-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Special Inner Area Dimensions for 4-Column and 3-Column Grids */
.col-lg-3 .glass-card, 
.col-md-6 .glass-card {
  padding: 24px 20px !important;
}

.glass-card:hover {
  background: #ffffff;
  border-color: rgba(2, 132, 199, 0.4);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.glass-card .icon-box {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(2, 132, 199, 0.08);
  border: 1px solid rgba(2, 132, 199, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary-blue);
  margin-bottom: 18px;
  transition: all 0.3s ease;
}

.glass-card:hover .icon-box {
  background: var(--grad-primary);
  color: #ffffff;
  border-color: transparent;
}

/* Small Icon Box Helper */
.icon-box.sm {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.15rem !important;
  background: #ffffff !important;
  border: 1px solid var(--border-color) !important;
  box-shadow: var(--shadow-sm) !important;
}

.pillar-card-num {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 2px;
}

.pillar-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 3.8vw, 1.42rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
}

/* Stats Counter Card */
.stat-box {
  text-align: center;
  padding: 22px 16px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  height: 100%;
}

.stat-box:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(2, 132, 199, 0.3);
}

.stat-box .stat-num {
  font-family: var(--font-heading) !important;
  font-size: 2.3rem !important;
  font-weight: 800;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}

.stat-box .stat-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 6px;
  font-weight: 600;
}

/* ROI CALCULATOR DEDICATED TOOL UI */
.roi-calculator-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 28px;
  padding: 36px 32px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08), 0 4px 15px rgba(2, 132, 199, 0.04);
  position: relative;
  overflow: hidden;
}

.roi-calculator-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-primary);
  border-radius: 28px 28px 0 0;
}

.calc-icon-badge {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(2, 132, 199, 0.1);
  border: 1px solid rgba(2, 132, 199, 0.25);
  color: var(--primary-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.calc-slider-group {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 16px 18px;
  transition: all 0.3s ease;
}

.calc-slider-group:focus-within {
  border-color: rgba(2, 132, 199, 0.4);
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(2, 132, 199, 0.08);
}

.calc-slider-label {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: #0f172a;
}

.calc-value-pill {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  padding: 4px 12px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(2, 132, 199, 0.2);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  display: inline-block;
}

.calc-value-pill.text-purple {
  border-color: rgba(124, 58, 237, 0.25);
  background: rgba(124, 58, 237, 0.04);
}

.calc-scale-labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  font-size: 0.76rem;
  color: #64748b;
  font-weight: 600;
}

.roi-preset-btn {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #334155;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.03);
}

.roi-preset-btn:hover, .roi-preset-btn.active {
  background: var(--grad-primary);
  border-color: transparent;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35);
  transform: translateY(-1px);
}

.currency-select-pill {
  background-color: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 20px;
  padding: 5px 28px 5px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #0f172a;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
  transition: all 0.25s ease;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%230284c7' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 10px 10px;
  appearance: none;
  -webkit-appearance: none;
}

.currency-select-pill:hover,
.currency-select-pill:focus {
  border-color: #0284c7;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.12);
  outline: none;
}

.form-range-custom {
  accent-color: var(--primary-blue);
  height: 8px;
  border-radius: 4px;
  background: #e2e8f0;
  cursor: pointer;
  margin: 10px 0 6px 0;
}

/* Luxury Result Metrics Container */
.calc-result-box {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 20px;
}

.calc-metric-highlight-card {
  background: #ffffff;
  border: 1px solid rgba(2, 132, 199, 0.2);
  border-radius: 16px;
  padding: 16px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.06);
  margin-bottom: 12px;
}

.calc-submetrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}

.calc-submetric-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 14px 10px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
}

.roi-health-meter {
  height: 7px;
  border-radius: 4px;
  background: linear-gradient(90deg, #0284c7 0%, #06b6d4 50%, #7c3aed 100%);
  width: 100%;
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.3);
}

/* CTA Bottom Banner Card */
.cta-banner-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 28px;
  padding: 48px 36px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08), 0 4px 15px rgba(2, 132, 199, 0.04);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-banner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-primary);
  border-radius: 28px 28px 0 0;
}

.cta-banner-title {
  font-size: clamp(1.45rem, 4.5vw, 2.3rem);
  font-weight: 800;
  line-height: 1.25;
  color: #0f172a;
  margin-bottom: 1rem;
  word-break: normal;
  overflow-wrap: break-word;
}

.cta-banner-desc {
  color: #475569;
  font-size: clamp(0.9rem, 2.5vw, 1.05rem);
  line-height: 1.62;
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
  word-break: normal;
  overflow-wrap: break-word;
}

@media (max-width: 767px) {
  .cta-banner-card {
    padding: 24px 16px !important;
    border-radius: 20px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .cta-banner-card .badge {
    font-size: 0.7rem !important;
    white-space: normal !important;
    line-height: 1.35 !important;
    display: inline-block !important;
    max-width: 100% !important;
    padding: 6px 12px !important;
  }
  .cta-banner-title {
    font-size: 1.32rem !important;
    line-height: 1.3 !important;
  }
  .cta-banner-desc {
    font-size: 0.88rem !important;
    line-height: 1.55 !important;
  }
  .cta-banner-card .btn {
    width: 100% !important;
    font-size: 0.92rem !important;
    padding: 12px 18px !important;
    border-radius: 25px !important;
  }
  .roi-calculator-card {
    padding: 22px 16px !important;
    border-radius: 22px !important;
  }
  .calc-slider-group {
    padding: 14px 12px !important;
    border-radius: 16px !important;
  }
  .calc-value-pill {
    font-size: 1.02rem !important;
    padding: 3px 10px !important;
  }
  .roi-preset-btn {
    flex: 1 1 calc(50% - 6px) !important;
    text-align: center !important;
    font-size: 0.78rem !important;
    padding: 8px 6px !important;
  }
}

/* Form Controls High Clarity */
.form-control-custom, .form-select-custom {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  color: var(--text-primary) !important;
  padding: 12px 16px;
  font-size: 0.93rem;
  font-weight: 500;
  transition: all 0.25s ease;
}

.form-control-custom:focus, .form-select-custom:focus {
  background: #ffffff;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3.5px rgba(2, 132, 199, 0.12);
  color: var(--text-primary) !important;
  outline: none;
}

.form-control-custom::placeholder {
  color: #94a3b8;
  font-size: 0.88rem;
}

.form-select-custom {
  cursor: pointer;
  background-position: right 14px center;
}

@media (max-width: 576px) {
  .form-control-custom, .form-select-custom {
    padding: 10px 14px !important;
    font-size: 0.88rem !important;
    border-radius: 10px !important;
  }
}

/* Case Study / Portfolio Card */
.portfolio-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  height: 100%;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  border-color: rgba(2, 132, 199, 0.3);
  box-shadow: var(--shadow-lg);
}

.portfolio-img-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #f1f5f9;
}

.portfolio-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-img-wrapper img {
  transform: scale(1.05);
}

.portfolio-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  color: var(--primary-blue);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
}

.portfolio-body {
  padding: 22px;
}

.portfolio-body h5, 
.portfolio-body .h5 {
  color: var(--text-primary) !important;
}

.portfolio-body .text-white {
  color: var(--text-primary) !important;
}

.glass-card:not([style*="background: linear-gradient(135deg, #0f172a"]) .text-white {
  color: var(--text-primary) !important;
}

.metric-pill {
  background: rgba(2, 132, 199, 0.08);
  border: 1px solid rgba(2, 132, 199, 0.2);
  border-radius: 8px;
  padding: 6px 12px;
  display: inline-block;
  color: var(--primary-blue);
  font-weight: 800;
  font-size: 0.88rem;
}

/* Section Spacing & Subtitles */
.section-padding {
  padding: 85px 0;
}

.bg-darker {
  background-color: #f1f5f9 !important;
}

.section-subtitle {
  color: var(--primary-blue);
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  margin-bottom: 10px;
  display: block;
}

/* ==========================================================================
   OFF-WHITE GLOSSY FULL-WIDTH FOOTER DESIGN (GLOSSY BLACK TYPOGRAPHY)
   ========================================================================== */
.footer-proadexa-glossy {
  position: relative;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  color: #0a0a0a;
  padding: 85px 0 35px 0;
  border-top: 1px solid #e2e8f0;
  width: 100%;
  overflow-x: hidden;
}

.footer-proadexa-glossy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0284c7 0%, #06b6d4 50%, #7c3aed 100%);
  z-index: 10;
}

/* Glossy Deep Black Typography */
.footer-proadexa-glossy h5, 
.footer-proadexa-glossy h6 {
  color: #0a0a0a !important;
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.015em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.footer-proadexa-glossy p, 
.footer-proadexa-glossy .footer-desc {
  color: #1e293b !important;
  font-size: 0.93rem;
  line-height: 1.65;
  font-weight: 500;
}

/* List Links with Glossy Black & Dynamic Micro-Interaction Hovering */
.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-proadexa-glossy ul li a {
  color: #0a0a0a !important;
  font-size: 0.92rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-proadexa-glossy ul li a:hover {
  color: #0284c7 !important;
  transform: translateX(6px);
  text-shadow: 0 2px 10px rgba(2, 132, 199, 0.3);
}

/* Bottom Footer Strip Chips (ROI Calculator, Privacy Policy, Terms of Service, Contact Us) */
.footer-bottom-chip {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 650;
  color: #334155 !important;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.02);
}

.footer-bottom-chip:hover {
  background: #ffffff;
  border-color: #0284c7;
  color: #0284c7 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.12);
}

.footer-bottom-link {
  color: #0a0a0a !important;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  padding: 5px 12px;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
}

.footer-bottom-link:hover {
  color: #0284c7 !important;
  background: rgba(2, 132, 199, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.12);
  text-shadow: 0 2px 10px rgba(2, 132, 199, 0.25);
}

.footer-glossy-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  transition: all 0.3s ease;
}

.footer-glossy-card:hover {
  box-shadow: 0 14px 35px rgba(2, 132, 199, 0.1);
  border-color: rgba(2, 132, 199, 0.3);
}

.footer-icon-badge-glossy {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(2, 132, 199, 0.08);
  border: 1px solid rgba(2, 132, 199, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  color: #0284c7;
  transition: all 0.25s ease;
}

.footer-proadexa-glossy ul li a:hover .footer-icon-badge-glossy {
  background: var(--grad-primary);
  color: #ffffff;
  border-color: transparent;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.35);
}

.footer-social-glossy {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0a0a0a;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.footer-social-glossy:hover {
  background: var(--grad-primary);
  border-color: transparent;
  color: #ffffff !important;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 20px rgba(2, 132, 199, 0.35);
}

.footer-logo-img-glossy {
  height: 32px !important;
  max-width: 210px !important;
  width: auto;
  object-fit: contain;
  background: transparent !important;
}

/* ==========================================================================
   ULTRA-PREMIUM WORLD-CLASS MOBILE UI/UX DESIGN SYSTEM & ENGINE
   ========================================================================== */

/* Luxury Hero Mobile Showcase Card with Premium Animation Engine */
.hero-mobile-showcase-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.94) 100%);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 26px;
  padding: 22px 16px;
  box-shadow: 0 18px 45px rgba(2, 132, 199, 0.12), 0 0 30px rgba(124, 58, 237, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  margin: 15px auto 0 auto;
  max-width: 380px;
  animation: cardSoftBreathing 6s ease-in-out infinite;
}

@keyframes cardSoftBreathing {
  0%, 100% {
    box-shadow: 0 16px 45px rgba(2, 132, 199, 0.1), 0 0 20px rgba(124, 58, 237, 0.04);
  }
  50% {
    box-shadow: 0 22px 55px rgba(2, 132, 199, 0.18), 0 0 35px rgba(124, 58, 237, 0.12);
  }
}

.hero-mobile-showcase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3.5px;
  background: linear-gradient(90deg, #0284c7, #06b6d4, #7c3aed, #0284c7);
  background-size: 300% 100%;
  border-radius: 26px 26px 0 0;
  animation: animatedTopGradient 4s linear infinite;
  z-index: 10;
}

@keyframes animatedTopGradient {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

/* Ambient Radial Engine Aura Behind Rocket */
.hero-rocket-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
  min-height: 190px;
}

.hero-rocket-ambient-aura {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 210px;
  height: 210px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.28) 0%, rgba(124, 58, 237, 0.16) 45%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  animation: rocketAuraPulse 4s ease-in-out infinite;
}

@keyframes rocketAuraPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(0.88);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 1;
  }
}

.hero-mobile-rocket-img {
  max-height: 195px;
  width: auto;
  filter: drop-shadow(0 16px 32px rgba(2, 132, 199, 0.32));
  animation: floatRocketMobile 5s ease-in-out infinite alternate;
  transform-origin: center center;
  position: relative;
  z-index: 2;
}

@keyframes floatRocketMobile {
  0% {
    transform: translateY(0px) rotate(0deg) scale(1);
    filter: drop-shadow(0 14px 25px rgba(2, 132, 199, 0.28));
  }
  50% {
    transform: translateY(-8px) rotate(0.8deg) scale(1.02);
    filter: drop-shadow(0 22px 38px rgba(124, 58, 237, 0.38));
  }
  100% {
    transform: translateY(0px) rotate(0deg) scale(1);
    filter: drop-shadow(0 14px 25px rgba(2, 132, 199, 0.28));
  }
}

.hero-micro-chip-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 100%;
  position: relative;
  z-index: 5;
}

.hero-micro-chip {
  padding: 7px 11px;
  border-radius: 20px;
  font-size: 0.76rem;
  font-weight: 750;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.hero-micro-chip.meta {
  background: rgba(2, 132, 199, 0.08);
  border: 1px solid rgba(2, 132, 199, 0.28);
  color: #0284c7;
  animation: chipFloatA 3.6s ease-in-out infinite;
}

.hero-micro-chip.google {
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.28);
  color: #0891b2;
  animation: chipFloatB 4.2s ease-in-out infinite 0.4s;
}

.hero-micro-chip.velocity {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.28);
  color: #059669;
  animation: chipFloatA 3.8s ease-in-out infinite 0.2s;
}

.hero-micro-chip.global {
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.28);
  color: #7c3aed;
  animation: chipFloatB 4.4s ease-in-out infinite 0.6s;
}

@keyframes chipFloatA {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

@keyframes chipFloatB {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(3px); }
}

/* Shimmer flare passing over chips */
.hero-micro-chip::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  transform: skewX(-20deg);
  animation: chipShimmerSweep 5s infinite;
}

.hero-micro-chip.google::after {
  animation-delay: 1.2s;
}
.hero-micro-chip.velocity::after {
  animation-delay: 2.4s;
}
.hero-micro-chip.global::after {
  animation-delay: 3.6s;
}

@keyframes chipShimmerSweep {
  0% { left: -120%; }
  25%, 100% { left: 220%; }
}

/* Bento Stat Cards (Live Stats Section) */
.bento-stat-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 16px 12px;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04);
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.bento-stat-card:hover {
  border-color: rgba(2, 132, 199, 0.4);
  box-shadow: 0 8px 25px rgba(2, 132, 199, 0.12);
  transform: translateY(-2px);
}

.bento-stat-num {
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 5vw, 1.85rem);
  font-weight: 800;
  line-height: 1.1;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bento-stat-badge {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--primary-blue);
  background: rgba(2, 132, 199, 0.08);
  padding: 2px 8px;
  border-radius: 10px;
  display: inline-block;
  margin-bottom: 4px;
}

.bento-stat-label {
  font-size: 0.76rem;
  font-weight: 600;
  color: #475569;
  line-height: 1.25;
  margin-top: 4px;
}

/* Mobile Comparison Cards */
.mobile-comparison-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

.mobile-comparison-card:hover {
  border-color: rgba(2, 132, 199, 0.3);
  box-shadow: var(--shadow-md);
}

.mobile-comp-header {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile-comp-proadexa {
  background: rgba(2, 132, 199, 0.06);
  border: 1px solid rgba(2, 132, 199, 0.22);
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 8px;
}

.mobile-comp-proadexa .comp-badge-title {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary-blue);
  display: block;
  margin-bottom: 4px;
}

.mobile-comp-proadexa .comp-desc {
  font-size: 0.85rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.mobile-comp-traditional {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 10px 12px;
}

.mobile-comp-traditional .comp-badge-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  display: block;
  margin-bottom: 4px;
}

.mobile-comp-traditional .comp-desc {
  font-size: 0.82rem;
  font-weight: 500;
  color: #64748b;
  margin-bottom: 0;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

/* Feature Tag Chips */
.feature-tag-chip {
  background: rgba(241, 245, 249, 0.95);
  border: 1px solid #e2e8f0;
  color: #1e293b;
  font-size: 0.74rem;
  font-weight: 650;
  padding: 4px 10px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s ease;
}

/* Luxury Pillar Cards for 360 Growth Engine */
.pillar-card-luxury {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pillar-card-luxury::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 24px 24px 0 0;
}

.pillar-card-luxury.pillar-1::before { background: linear-gradient(90deg, #0284c7, #06b6d4); }
.pillar-card-luxury.pillar-2::before { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.pillar-card-luxury.pillar-3::before { background: linear-gradient(90deg, #0891b2, #10b981); }
.pillar-card-luxury.pillar-4::before { background: linear-gradient(90deg, #7c3aed, #a855f7); }

.pillar-card-luxury:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(2, 132, 199, 0.1);
  border-color: rgba(2, 132, 199, 0.35);
}

.pillar-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
  flex-shrink: 0;
}

.pillar-card-luxury.pillar-1 .pillar-icon-box {
  background: rgba(2, 132, 199, 0.08);
  border: 1px solid rgba(2, 132, 199, 0.25);
  color: #0284c7;
}

.pillar-card-luxury.pillar-2 .pillar-icon-box {
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.25);
  color: #d97706;
}

.pillar-card-luxury.pillar-3 .pillar-icon-box {
  background: rgba(8, 145, 178, 0.08);
  border: 1px solid rgba(8, 145, 178, 0.25);
  color: #0891b2;
}

.pillar-card-luxury.pillar-4 .pillar-icon-box {
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.25);
  color: #7c3aed;
}

.pillar-desc {
  color: #475569;
  font-size: 0.93rem;
  line-height: 1.62;
  margin: 14px 0 18px 0;
}

.pillar-chips-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.pillar-action-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 750;
  font-size: 0.88rem;
  color: #0284c7;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(2, 132, 199, 0.06);
  border: 1px solid rgba(2, 132, 199, 0.15);
  transition: all 0.25s ease;
  width: fit-content;
}

.pillar-action-link:hover {
  background: var(--grad-primary);
  color: #ffffff !important;
  border-color: transparent;
  transform: translateX(4px);
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.3);
}

/* Responsive Breakpoints */
@media (max-width: 991px) {
  .header-floating-wrapper {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    padding: 10px 14px !important;
    background: transparent !important;
    border-bottom: none !important;
    box-shadow: none !important;
    pointer-events: none !important;
    z-index: 1050 !important;
  }
  .navbar-floating {
    pointer-events: auto !important;
    background: rgba(255, 255, 255, 0.94) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(226, 232, 240, 0.9) !important;
    border-radius: 50px !important;
    padding: 8px 18px !important;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08) !important;
  }
  .navbar-floating .navbar-brand img {
    height: 26px !important;
    max-width: 155px !important;
  }
  .navbar-collapse {
    background: #ffffff;
    padding: 18px 16px;
    border-radius: 20px;
    margin-top: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
    max-height: 80vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .dropdown-menu-mega {
    width: 100% !important;
    min-width: 100% !important;
    left: 0 !important;
    transform: none !important;
    box-shadow: none !important;
    padding: 8px 4px !important;
    border: none !important;
    background: transparent !important;
  }
  .dropdown-mega-header {
    font-size: 0.8rem;
    padding-top: 10px;
    margin-bottom: 8px;
  }
  .dropdown-item-mega {
    padding: 10px 8px !important;
    border-radius: 10px;
    margin-bottom: 2px;
  }
  .hero-section-redesign {
    padding: 100px 0 35px 0 !important;
  }
  .roi-calculator-hero-page {
    padding-top: 100px !important;
    padding-bottom: 35px !important;
  }
  .contact-hero-section {
    padding-top: 105px !important;
    padding-bottom: 40px !important;
  }
  .hero-infographic-frame {
    max-width: 320px;
    margin: 20px auto 0 auto;
  }
  .hero-float-badge {
    display: none !important;
  }
  h1, .h1, .display-3 {
    font-size: clamp(1.75rem, 5.5vw, 2.2rem) !important;
    line-height: 1.25 !important;
  }
  h2, .h2, .display-4, .display-5 {
    font-size: clamp(1.45rem, 4.5vw, 1.85rem) !important;
    line-height: 1.28 !important;
  }
  .pillar-card-luxury {
    padding: 22px 18px !important;
    border-radius: 20px !important;
    margin-bottom: 12px !important;
  }
  .pillar-action-link {
    width: 100% !important;
    justify-content: center !important;
    padding: 10px 16px !important;
  }
}

@media (max-width: 576px) {
  html, body {
    overflow-x: hidden !important;
  }
  
  .container {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .badge-pill-custom {
    font-size: 0.74rem !important;
    padding: 5px 12px !important;
    max-width: 100% !important;
    white-space: normal !important;
    word-break: break-word !important;
    line-height: 1.35 !important;
    border-radius: 20px !important;
    text-align: center !important;
    display: inline-flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    margin-bottom: 12px !important;
  }

  h1, .h1, .display-3 {
    font-size: clamp(1.6rem, 6.2vw, 1.95rem) !important;
    line-height: 1.24 !important;
    letter-spacing: -0.025em !important;
    margin-bottom: 0.85rem !important;
  }

  h2, .h2, .display-4, .display-5 {
    font-size: clamp(1.32rem, 5.2vw, 1.6rem) !important;
    line-height: 1.28 !important;
    letter-spacing: -0.02em !important;
  }

  h3, .h3, .display-6 {
    font-size: 1.15rem !important;
    line-height: 1.3 !important;
  }

  h4, .h4 {
    font-size: 1.05rem !important;
  }

  p, .lead {
    font-size: 0.92rem !important;
    line-height: 1.58 !important;
  }

  .btn-proadexa, .btn-proadexa-outline {
    width: 100% !important;
    max-width: 100% !important;
    white-space: nowrap !important;
    padding: 12px 20px !important;
    font-size: 0.93rem !important;
    font-weight: 750 !important;
    min-height: 48px !important;
    justify-content: center !important;
    text-align: center !important;
    border-radius: 50px !important;
    display: inline-flex !important;
    align-items: center !important;
    box-sizing: border-box !important;
  }

  .hero-cta-group,
  .d-flex.justify-content-center.gap-3,
  .d-flex.justify-content-center.gap-3.flex-wrap {
    flex-direction: column !important;
    width: 100% !important;
    gap: 10px !important;
  }
  .hero-cta-group > .btn,
  .d-flex.justify-content-center.gap-3 > .btn,
  .d-flex.justify-content-center.gap-3.flex-wrap > .btn {
    width: 100% !important;
  }

  .portfolio-filter-btn {
    width: auto !important;
    min-height: 38px !important;
    padding: 7px 16px !important;
    font-size: 0.82rem !important;
    border-radius: 25px !important;
    flex: 0 0 auto !important;
  }
  .d-flex.flex-wrap.justify-content-center.gap-2 {
    flex-direction: row !important;
    gap: 6px !important;
  }

  .glass-card {
    padding: 18px 15px !important;
    border-radius: 16px !important;
  }

  .bento-stat-card, .stat-box {
    padding: 14px 10px !important;
    border-radius: 16px !important;
  }

  .bento-stat-num, .stat-box .stat-num {
    font-size: clamp(1.22rem, 4.8vw, 1.65rem) !important;
    white-space: nowrap !important;
    line-height: 1.1 !important;
  }

  .bento-stat-badge {
    font-size: 0.6rem !important;
    padding: 2px 6px !important;
    letter-spacing: 0.04em !important;
  }

  .bento-stat-label, .stat-box .stat-label {
    font-size: 0.74rem !important;
    line-height: 1.25 !important;
    margin-top: 4px !important;
  }

  .section-padding {
    padding: 42px 0 !important;
  }

  .portfolio-img-wrapper {
    height: 175px !important;
  }

  .portfolio-body {
    padding: 16px !important;
  }

  .accordion-button {
    padding: 13px 15px !important;
    font-size: 0.92rem !important;
    line-height: 1.35 !important;
  }

  .accordion-body {
    padding: 0 15px 15px 15px !important;
    font-size: 0.88rem !important;
  }

  .footer-proadexa-glossy {
    padding: 40px 0 20px 0 !important;
  }

  .footer-proadexa-glossy .footer-links-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 7px !important;
  }

  .footer-proadexa-glossy ul li a {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 8px 12px !important;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid rgba(226, 232, 240, 0.9) !important;
    font-size: 0.86rem !important;
    font-weight: 600 !important;
    color: #1e293b !important;
    transition: all 0.2s ease !important;
    width: 100% !important;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.02) !important;
  }

  .footer-proadexa-glossy ul li a:hover,
  .footer-proadexa-glossy ul li a:active {
    background: #ffffff !important;
    border-color: #0284c7 !important;
    color: #0284c7 !important;
    transform: translateX(4px) !important;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.12) !important;
  }

  .footer-proadexa-glossy ul li a span:not(.footer-icon-badge-glossy) {
    overflow: visible !important;
    text-overflow: clip !important;
    white-space: normal !important;
    flex: 1 !important;
  }

  .footer-icon-badge-glossy {
    width: 26px !important;
    height: 26px !important;
    min-width: 26px !important;
    font-size: 0.78rem !important;
    border-radius: 8px !important;
  }

  .footer-glossy-card {
    padding: 18px 14px !important;
    border-radius: 16px !important;
    margin-top: 8px !important;
  }

  .footer-desc {
    font-size: 0.85rem !important;
    line-height: 1.55 !important;
  }

  .footer-legal-links {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    width: 100% !important;
    margin-top: 4px;
  }

  .footer-bottom-chip {
    padding: 7px 10px !important;
    font-size: 0.76rem !important;
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
    white-space: nowrap !important;
  }
}

/* ==========================================================================
   CONTACT PAGE UI/UX REDESIGN STYLES
   ========================================================================== */
.contact-hero-section {
  position: relative;
  background-color: #ffffff;
  padding: 130px 0 70px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.contact-info-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  height: 100%;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.contact-info-card:hover {
  border-color: rgba(2, 132, 199, 0.4);
  box-shadow: 0 16px 40px rgba(2, 132, 199, 0.12);
  transform: translateY(-4px);
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-primary);
  border-radius: 24px 24px 0 0;
}

.contact-icon-bubble {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: rgba(2, 132, 199, 0.08);
  border: 1px solid rgba(2, 132, 199, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--primary-blue);
  transition: all 0.3s ease;
}

.contact-tile {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 14px 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: all 0.3s ease;
  overflow: hidden;
  max-width: 100%;
}

.contact-tile:hover {
  background: #ffffff;
  border-color: rgba(2, 132, 199, 0.4);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.05);
  transform: translateY(-2px);
}

.contact-tile-content {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.contact-tile-content .badge {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  white-space: nowrap;
}

.contact-info-item:hover .contact-icon-bubble {
  background: var(--grad-primary);
  color: #ffffff;
  border-color: transparent;
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 6px 18px rgba(2, 132, 199, 0.3);
}

.contact-form-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-primary);
  border-radius: 24px 24px 0 0;
}

@media (max-width: 576px) {
  .contact-form-card, .contact-info-card {
    padding: 20px 16px !important;
    border-radius: 20px !important;
  }
}

.contact-form-card:hover {
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
  border-color: rgba(2, 132, 199, 0.3);
}

.contact-trust-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
  max-width: 100%;
}

@media (max-width: 576px) {
  .contact-trust-bar {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    margin-top: 16px !important;
    width: 100% !important;
    padding: 0 4px !important;
  }
}

.contact-trust-pill {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 30px;
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #334155;
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

@media (max-width: 576px) {
  .contact-trust-pill {
    font-size: clamp(0.68rem, 2.5vw, 0.76rem) !important;
    padding: 7px 8px !important;
    justify-content: center !important;
    text-align: center !important;
    border-radius: 20px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    gap: 5px !important;
  }
  .contact-trust-pill i {
    font-size: 0.78rem !important;
    flex-shrink: 0 !important;
  }
}

.contact-trust-pill:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(2, 132, 199, 0.12);
}

.process-step-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  position: relative;
  transition: all 0.35s ease;
  height: 100%;
  box-shadow: var(--shadow-sm);
}

.process-step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(2, 132, 199, 0.35);
  box-shadow: var(--shadow-glow);
}

.step-num-badge {
  position: absolute;
  top: 18px;
  right: 20px;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: rgba(2, 132, 199, 0.12);
  line-height: 1;
}

.process-step-card:hover .step-num-badge {
  color: rgba(2, 132, 199, 0.3);
}

.contact-sla-banner {
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
  border: 1px solid rgba(2, 132, 199, 0.2);
  border-radius: 14px;
  padding: 16px 18px;
}

/* International Tel Input (Flags & Dial Codes) Integration */
.phone-input-wrapper {
  position: relative;
  width: 100%;
}

.iti {
  width: 100% !important;
  display: block !important;
  position: relative;
}

.iti__flag-container {
  z-index: 5;
}

.iti__selected-flag {
  border-radius: 10px 0 0 10px !important;
  padding: 0 10px 0 12px !important;
  background: #f8fafc !important;
  border-right: 1.5px solid #e2e8f0 !important;
  transition: all 0.2s ease;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
}

.iti__selected-flag:hover {
  background: #f1f5f9 !important;
}

.phone-input-wrapper .iti input#phone,
.iti--separate-dial-code input#phone,
.iti input#phone.form-control-custom,
input#phone.form-control-custom {
  padding-left: 92px !important;
  letter-spacing: 0.02em;
}

.iti__country-list {
  border-radius: 14px !important;
  box-shadow: 0 15px 45px rgba(15, 23, 42, 0.15) !important;
  border: 1px solid #e2e8f0 !important;
  font-family: var(--font-body) !important;
  font-size: 0.9rem !important;
  max-height: 220px !important;
  z-index: 100 !important;
}

.iti__country-list .iti__country {
  padding: 8px 14px !important;
}

.iti__country-list .iti__country:hover,
.iti__country-list .iti__country.iti__highlight {
  background-color: rgba(2, 132, 199, 0.08) !important;
  color: var(--primary-blue) !important;
}

.iti--separate-dial-code .iti__selected-dial-code {
  font-weight: 700 !important;
  color: #0f172a !important;
  font-size: 0.92rem !important;
  margin-left: 5px !important;
}

@media (max-width: 576px) {
  .phone-input-wrapper .iti input#phone,
  .iti--separate-dial-code input#phone,
  .iti input#phone.form-control-custom,
  input#phone.form-control-custom {
    padding-left: 88px !important;
    font-size: 0.88rem !important;
  }
  .iti__selected-flag {
    padding: 0 6px 0 10px !important;
  }
  .iti--separate-dial-code .iti__selected-dial-code {
    font-size: 0.86rem !important;
    margin-left: 4px !important;
  }
}

/* Top Scroll Progress Indicator Bar */
#scrollProgressBar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3.5px;
  background: linear-gradient(90deg, #0284c7 0%, #06b6d4 50%, #7c3aed 100%);
  z-index: 99999;
  box-shadow: 0 0 10px rgba(2, 132, 199, 0.6);
  transition: width 0.1s linear;
}

/* Scroll Reveal Animations */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}
