/* ==========================================================================
   LeadGenIT - Modern Antigravity SaaS & IT Agency Design System
   ========================================================================== */

:root {
  /* Brand Identity Core Colors - Light Ice-Blue & Pale Silver Enterprise Theme */
  --bg-dark-navy: #F0F6FC;
  --bg-deep-space: #E6F0FA;
  --bg-card-navy: #FFFFFF;
  --bg-card-glass: rgba(255, 255, 255, 0.88);
  --bg-card-light: #FFFFFF;
  --bg-surface-gray: #F8FAFC;

  /* Accent & Gradients based on Official Logo */
  --accent-cyan: #0088CC;
  --accent-royal: #0052CC;
  --accent-blue: #0066FF;
  --accent-dark-blue: #0A2560;
  --accent-indigo: #4F46E5;
  --accent-purple: #7E22CE;
  --accent-emerald: #059669;
  --accent-amber: #D97706;
  --accent-gold: #D97706;
  --accent-gold-hover: #B45309;

  /* High-Contrast Clear Slate Typography */
  --text-white: #0F172A;
  --text-light-slate: #334155;
  --text-muted-slate: #64748B;
  --text-dark-navy: #070B19;
  --text-gray-body: #475569;

  /* Gradients */
  --grad-hero-text: linear-gradient(135deg, #0052CC 0%, #0284C7 50%, #2563EB 100%);
  --grad-primary-btn: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
  --grad-royal-cyan: linear-gradient(135deg, #0052CC 0%, #0284C7 100%);
  --grad-cyan-blue: linear-gradient(135deg, #0284C7 0%, #0052CC 100%);
  --grad-card-border: linear-gradient(135deg, rgba(0, 136, 204, 0.35) 0%, rgba(0, 82, 204, 0.2) 100%);

  /* Border & Shadows */
  --border-glass: rgba(186, 218, 245, 0.7);
  --border-glow-cyan: rgba(0, 136, 204, 0.4);
  --border-glow-royal: rgba(0, 82, 204, 0.35);
  --shadow-glass: 0 10px 30px -5px rgba(15, 42, 85, 0.08);
  --shadow-glow-cyan: 0 0 25px rgba(0, 136, 204, 0.2);
  --shadow-glow-royal: 0 0 25px rgba(0, 82, 204, 0.2);
  --shadow-elevated-card: 0 16px 36px -10px rgba(15, 42, 85, 0.1);

  /* Layout & Spacing - Expansive Full-Width System */
  --container-max-width: 1560px;
  --container-wide: 1720px;
  --container-ultrawide: 1880px;
  --header-height: 80px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Typography */
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Plus Jakarta Sans', var(--font-main);
  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ==========================================================================
   CSS Reset & Base Styles
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body.antigravity-body {
  font-family: var(--font-main);
  background-color: var(--bg-dark-navy);
  color: var(--text-light-slate);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Antigravity Interactive Background Canvas */
#antigravity-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
}

/* Ambient Glowing Nebulae */
.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
  animation: pulse-ambient 10s ease-in-out infinite alternate;
}

.glow-1 {
  top: 5%;
  right: 5%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(147, 197, 253, 0.35) 0%, rgba(199, 210, 254, 0.15) 70%, transparent 100%);
}

.glow-2 {
  top: 25%;
  left: -10%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(186, 230, 253, 0.4) 0%, rgba(147, 197, 253, 0.12) 70%, transparent 100%);
}

.glow-3 {
  bottom: 10%;
  right: 15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(233, 213, 255, 0.25) 0%, rgba(251, 207, 232, 0.1) 70%, transparent 100%);
}

@keyframes pulse-ambient {
  0% { transform: scale(1) translate(0, 0); opacity: 0.35; }
  50% { transform: scale(1.15) translate(-30px, 20px); opacity: 0.55; }
  100% { transform: scale(0.95) translate(20px, -20px); opacity: 0.35; }
}

.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 3.5vw, 3.5rem);
  padding-right: clamp(1.25rem, 3.5vw, 3.5rem);
  position: relative;
  z-index: 1;
}

.container-wide {
  width: 100%;
  max-width: var(--container-wide);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 3.5vw, 3.5rem);
  padding-right: clamp(1.25rem, 3.5vw, 3.5rem);
  position: relative;
  z-index: 1;
}

.container-fluid {
  width: 100%;
  max-width: 100%;
  padding-left: clamp(1.25rem, 4vw, 4rem);
  padding-right: clamp(1.25rem, 4vw, 4rem);
  position: relative;
  z-index: 1;
}

/* Typography & Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-white);
  line-height: 1.2;
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

ul {
  list-style: none;
}

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

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

/* Utility Colors & Text */
.text-cyan { color: var(--accent-cyan) !important; }
.text-purple { color: var(--accent-purple) !important; }
.text-gold { color: var(--accent-gold) !important; }
.text-green { color: var(--accent-emerald) !important; }
.text-white { color: #FFF !important; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.w-full { width: 100%; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }

.section-eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-description {
  font-size: clamp(1rem, 1.15vw, 1.125rem);
  color: var(--text-muted-slate);
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

/* ==========================================================================
   Buttons & Micro-Interactions
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-gold-pill {
  background: var(--grad-primary-btn);
  color: #0F172A;
  box-shadow: 0 4px 18px rgba(245, 158, 11, 0.35);
  font-weight: 700;
}

.btn-gold-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.55);
}

.btn-hero-primary {
  background: var(--grad-primary-btn);
  color: #0F172A;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.9rem 2rem;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.45);
}

.btn-hero-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.65);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.85);
  color: #0F172A;
  border: 1px solid rgba(186, 218, 245, 0.9);
  backdrop-filter: blur(10px);
  font-size: 1.05rem;
  padding: 0.9rem 1.8rem;
  box-shadow: 0 4px 14px rgba(15, 42, 85, 0.05);
}

.btn-hero-secondary:hover {
  background: #FFFFFF;
  border-color: var(--accent-cyan);
  color: var(--accent-royal);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 42, 85, 0.1);
}

.btn-outline-glow {
  border: 1px solid rgba(0, 136, 204, 0.4);
  color: var(--accent-cyan);
  background: rgba(0, 136, 204, 0.06);
}

.btn-outline-glow:hover {
  background: rgba(0, 136, 204, 0.12);
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-glow-cyan);
  transform: translateY(-2px);
}

.btn-outline-light {
  border: 1px solid rgba(186, 218, 245, 0.8);
  color: #0F172A;
  background: rgba(255, 255, 255, 0.7);
}

.btn-outline-light:hover {
  background: #FFFFFF;
  border-color: var(--accent-cyan);
  color: var(--accent-royal);
  transform: translateY(-2px);
}

/* ==========================================================================
   Header & Navbar
   ========================================================================== */

.navbar-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition-smooth);
  background: rgba(240, 246, 252, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(186, 218, 245, 0.65);
}

.navbar-wrapper.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(186, 218, 245, 0.85);
  box-shadow: 0 10px 30px rgba(15, 42, 85, 0.08);
  height: 72px;
}

.nav-container {
  max-width: var(--container-wide);
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 3.5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-logo-img {
  height: 44px;
  width: auto;
  max-width: 210px;
  object-fit: contain;
  display: block;
  transition: var(--transition-smooth);
}

.brand-logo:hover .brand-logo-img {
  transform: translateY(-1px) scale(1.02);
  filter: drop-shadow(0 4px 12px rgba(0, 136, 204, 0.25));
}

.footer-logo-img {
  height: 46px;
  max-width: 220px;
}

.logo-symbol {
  width: 40px;
  height: 40px;
}

.brand-text-block {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0F172A;
  line-height: 1.1;
}

.brand-accent {
  color: var(--accent-cyan);
}

.brand-tagline {
  font-size: 0.65rem;
  color: var(--text-muted-slate);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-royal);
}

.nav-arrow {
  font-size: 0.7rem;
  transition: transform 0.2s ease;
}

.nav-dropdown-parent:hover .nav-arrow {
  transform: rotate(180deg);
}

/* Mega Dropdown */
.nav-dropdown-parent {
  position: relative;
}

.mega-dropdown {
  position: absolute;
  top: 100%;
  left: -140px;
  width: 660px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(186, 218, 245, 0.8);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: 0 25px 60px rgba(15, 42, 85, 0.15), 0 0 30px rgba(56, 189, 248, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition-smooth);
}

.nav-dropdown-parent:hover .mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.mega-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.7rem 0.85rem;
  border-radius: var(--radius-sm);
  background: rgba(241, 245, 249, 0.6);
  border: 1px solid transparent;
  transition: var(--transition-smooth);
}

.mega-item:hover {
  background: rgba(224, 242, 254, 0.8);
  border-color: rgba(56, 189, 248, 0.4);
  transform: translateX(3px);
}

.mega-dropdown-footer {
  margin-top: 0.9rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mega-all-link {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--accent-royal);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.mega-all-link:hover {
  color: #0284C7;
  gap: 0.6rem;
}

.mega-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.bg-blue { background: rgba(56, 189, 248, 0.18); color: #0284C7; }
.bg-purple { background: rgba(168, 85, 247, 0.18); color: #7E22CE; }
.bg-teal { background: rgba(20, 184, 166, 0.18); color: #0D9488; }
.bg-indigo { background: rgba(99, 102, 241, 0.18); color: #4338CA; }
.bg-amber { background: rgba(245, 158, 11, 0.18); color: #B45309; }
.bg-rose { background: rgba(244, 63, 94, 0.18); color: #BE123C; }

.mega-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0F172A;
}

.mega-desc {
  font-size: 0.75rem;
  color: var(--text-muted-slate);
}

.nav-action-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-phone-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0F172A;
}

.nav-phone-link:hover {
  color: var(--accent-royal);
}

.phone-pulse-icon {
  width: 32px;
  height: 32px;
  background: rgba(0, 136, 204, 0.12);
  color: var(--accent-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  position: relative;
}

.phone-pulse-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid var(--accent-cyan);
  animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.9); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
}

.mobile-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #0F172A;
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--header-height));
  background: rgba(240, 246, 252, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.mobile-drawer.open {
  transform: translateX(0);
}

.mobile-drawer-inner {
  padding: 2rem 1.5rem;
}

.mobile-nav-list li {
  margin-bottom: 1.25rem;
}

.mobile-nav-link {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0F172A;
}

/* ==========================================================================
   Hero Section & Enterprise Animated Background
   ========================================================================== */

.hero-section {
  padding-top: calc(var(--header-height) + 3.5rem);
  padding-bottom: 5.5rem;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: radial-gradient(ellipse 90% 70% at 50% -10%, rgba(219, 234, 254, 0.85) 0%, rgba(240, 246, 252, 1) 75%);
}

/* Multi-Layered Enterprise Technology Background */
.hero-bg-layers {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* Layer 1: Technology Orthogonal Grid */
.hero-tech-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(to right, rgba(0, 102, 255, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 102, 255, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 30%, black 35%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 85% 75% at 50% 30%, black 35%, transparent 85%);
  z-index: 1;
}

/* Layer 2: Subtle Perspective Horizon Floor */
.hero-perspective-floor {
  position: absolute;
  bottom: -25%;
  left: -20%;
  width: 140%;
  height: 55%;
  background-image: 
    linear-gradient(to right, rgba(0, 136, 204, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 82, 204, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  transform: perspective(550px) rotateX(68deg);
  mask-image: linear-gradient(to top, black 25%, transparent 95%);
  -webkit-mask-image: linear-gradient(to top, black 25%, transparent 95%);
  z-index: 1;
  opacity: 0.7;
}

/* Layer 3: Soft Light Radial Glows */
.hero-ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 1;
}

.hero-glow-royal {
  top: 10%;
  left: 20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(147, 197, 253, 0.4) 0%, rgba(199, 210, 254, 0.15) 60%, transparent 80%);
  animation: enterprise-glow-1 16s ease-in-out infinite alternate;
}

.hero-glow-cyan {
  top: 25%;
  right: 10%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(186, 230, 253, 0.45) 0%, rgba(147, 197, 253, 0.12) 60%, transparent 80%);
  animation: enterprise-glow-2 18s ease-in-out infinite alternate;
}

.hero-glow-deep {
  bottom: 5%;
  left: 45%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(199, 210, 254, 0.35) 0%, rgba(224, 242, 254, 0.15) 70%, transparent 80%);
  animation: enterprise-glow-3 20s ease-in-out infinite alternate;
}

@keyframes enterprise-glow-1 {
  0% { transform: translate(0, 0) scale(1); opacity: 0.35; }
  50% { transform: translate(-30px, 25px) scale(1.1); opacity: 0.5; }
  100% { transform: translate(25px, -20px) scale(0.95); opacity: 0.38; }
}

@keyframes enterprise-glow-2 {
  0% { transform: translate(0, 0) scale(1); opacity: 0.3; }
  50% { transform: translate(35px, -30px) scale(1.12); opacity: 0.45; }
  100% { transform: translate(-20px, 25px) scale(0.92); opacity: 0.32; }
}

@keyframes enterprise-glow-3 {
  0% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.15) translate(20px, -15px); opacity: 0.45; }
  100% { transform: scale(0.95) translate(-15px, 15px); opacity: 0.3; }
}

/* Layer 4: Content Readability Vignette Mask */
.hero-readability-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse 65% 85% at 26% 45%, rgba(240, 246, 252, 0.85) 0%, rgba(240, 246, 252, 0.4) 55%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}

.hero-container {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 4.5vw, 5.5rem);
  align-items: center;
  max-width: var(--container-wide);
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.15rem;
  background: rgba(0, 136, 204, 0.08);
  border: 1px solid rgba(0, 136, 204, 0.25);
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}

.eyebrow-beacon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-cyan);
  box-shadow: 0 0 10px var(--accent-cyan);
  animation: beacon-blink 1.5s ease-in-out infinite alternate;
}

@keyframes beacon-blink {
  0% { opacity: 0.4; transform: scale(0.8); }
  100% { opacity: 1; transform: scale(1.2); }
}

.eyebrow-text {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent-cyan);
}

.hero-title {
  font-size: clamp(2.5rem, 4.1vw, 4.2rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #0F172A;
  margin-bottom: 1.5rem;
}

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

.hero-subtitle {
  font-size: clamp(1.05rem, 1.2vw, 1.2rem);
  color: var(--text-muted-slate);
  line-height: 1.7;
  max-width: 680px;
  margin-bottom: 2.25rem;
}

.hero-action-buttons {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

/* 4 Hero Floating Stats */
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.hero-stat-card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(186, 218, 245, 0.7);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 1.25rem 0.8rem;
  text-align: center;
  transition: var(--transition-bounce);
  position: relative;
  box-shadow: 0 10px 25px rgba(15, 42, 85, 0.06);
}

.hero-stat-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-cyan);
  box-shadow: 0 16px 35px rgba(15, 42, 85, 0.12), 0 0 20px rgba(0, 136, 204, 0.15);
}

.stat-icon-wrapper {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  margin: 0 auto 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.blue-glow { background: rgba(0, 136, 204, 0.12); color: #0284C7; }
.purple-glow { background: rgba(126, 34, 206, 0.12); color: #7E22CE; }
.green-glow { background: rgba(5, 150, 105, 0.12); color: #059669; }
.amber-glow { background: rgba(217, 119, 6, 0.12); color: #D97706; }

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted-slate);
  font-weight: 500;
}

/* ==========================================================================
   Hero Visual Column: 3D Isometric Antigravity Floating Stage
   ========================================================================== */

.hero-visual-col {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 520px;
}

.isometric-stage {
  position: relative;
  width: 100%;
  height: 500px;
  perspective: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Halo Atmospheric Energy Rings */
.halo-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(0, 136, 204, 0.25);
  pointer-events: none;
}

.halo-1 {
  width: 440px;
  height: 440px;
  animation: orbit-rotate 40s linear infinite;
}

.halo-2 {
  width: 520px;
  height: 520px;
  border-color: rgba(126, 34, 206, 0.2);
  animation: orbit-rotate-reverse 55s linear infinite;
}

@keyframes orbit-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes orbit-rotate-reverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

/* Floating 3D Laptop */
.laptop-floating-wrapper {
  position: absolute;
  top: 12%;
  left: 8%;
  z-index: 10;
  animation: float-zero-gravity 6s ease-in-out infinite alternate;
}

@keyframes float-zero-gravity {
  0% { transform: translateY(0px) rotateX(10deg) rotateY(-12deg) rotateZ(3deg); }
  100% { transform: translateY(-18px) rotateX(6deg) rotateY(-8deg) rotateZ(1deg); }
}

.laptop-3d {
  width: 360px;
  background: #FFFFFF;
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 25px 60px -10px rgba(15, 42, 85, 0.18), 0 0 35px rgba(0, 136, 204, 0.2);
  border: 1px solid rgba(186, 218, 245, 0.8);
  position: relative;
}

.laptop-screen {
  background: #0B1021;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.screen-glare {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, transparent 40%);
  pointer-events: none;
  z-index: 5;
}

.dashboard-mockup {
  padding: 8px;
}

.dash-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dash-dots {
  display: flex;
  gap: 4px;
}

.dash-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.dot.red { background: #EF4444; }
.dot.yellow { background: #F59E0B; }
.dot.green { background: #10B981; }

.dash-search-bar {
  font-size: 0.65rem;
  color: var(--text-muted-slate);
  background: rgba(255, 255, 255, 0.05);
  padding: 2px 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.dash-body {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.dash-sidebar {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dash-nav-item {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--text-muted-slate);
}

.dash-nav-item.active {
  background: rgba(56, 189, 248, 0.2);
  color: var(--accent-cyan);
}

.dash-main-area {
  flex: 1;
}

.dash-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 8px;
}

.dash-mini-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  padding: 6px;
}

.dash-mini-card .label {
  display: block;
  font-size: 0.55rem;
  color: var(--text-muted-slate);
}

.dash-mini-card .val {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-white);
}

.mini-bar {
  height: 3px;
  border-radius: 2px;
  margin-top: 4px;
}

.mini-bar.green { background: #10B981; }
.mini-bar.purple { background: #A855F7; }

.dash-chart-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
  padding: 6px;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.55rem;
  color: var(--text-muted-slate);
  margin-bottom: 4px;
}

.badge-growth {
  color: #10B981;
  font-weight: 700;
}

.chart-svg {
  width: 100%;
  height: 50px;
}

.laptop-keyboard-base {
  height: 8px;
  background: #334155;
  border-radius: 0 0 10px 10px;
  margin-top: 4px;
  position: relative;
  display: flex;
  justify-content: center;
}

.touchpad {
  width: 40px;
  height: 3px;
  background: #475569;
  border-radius: 2px;
  margin-top: 2px;
}

/* Floating Connected Smartphone */
.phone-floating-wrapper {
  position: absolute;
  bottom: 8%;
  left: 2%;
  z-index: 15;
  animation: float-phone 5s ease-in-out infinite alternate-reverse;
}

@keyframes float-phone {
  0% { transform: translateY(0px) rotateX(12deg) rotateY(-8deg) rotateZ(-4deg); }
  100% { transform: translateY(-22px) rotateX(8deg) rotateY(-4deg) rotateZ(-2deg); }
}

.phone-3d {
  width: 150px;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 6px;
  border: 1px solid rgba(186, 218, 245, 0.8);
  box-shadow: 0 20px 45px rgba(15, 42, 85, 0.12), 0 0 25px rgba(126, 34, 206, 0.15);
}

.phone-screen {
  background: #0F172A;
  border-radius: 16px;
  padding: 8px;
}

.phone-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.55rem;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.phone-icons {
  display: flex;
  gap: 4px;
  font-size: 0.5rem;
}

.phone-widget {
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid rgba(168, 85, 247, 0.25);
  border-radius: 8px;
  padding: 6px;
  margin-bottom: 6px;
}

.phone-widget-title {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--accent-purple);
}

.phone-widget-metric {
  font-size: 0.55rem;
  color: #CBD5E1;
}

.phone-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  padding: 4px 6px;
  border-radius: 4px;
  margin-bottom: 4px;
}

.badge-ok {
  background: rgba(16, 185, 129, 0.2);
  color: #10B981;
  padding: 1px 4px;
  border-radius: 3px;
  font-weight: 700;
}

.badge-fast {
  background: rgba(245, 158, 11, 0.2);
  color: #F59E0B;
  padding: 1px 4px;
  border-radius: 3px;
  font-weight: 700;
}

/* Orbiting Glassmorphism Badges */
.orbit-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(186, 218, 245, 0.85);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-md);
  padding: 0.6rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 15px 35px rgba(15, 42, 85, 0.1);
  z-index: 20;
}

.orbit-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.badge-cloud {
  top: 5%;
  right: 5%;
  animation: float-badge-1 7s ease-in-out infinite alternate;
}

.badge-cloud .orbit-icon {
  background: rgba(0, 136, 204, 0.15);
  color: var(--accent-cyan);
}

.badge-ai {
  bottom: 22%;
  right: 0%;
  animation: float-badge-2 6.5s ease-in-out infinite alternate;
}

.badge-ai .orbit-icon {
  background: rgba(126, 34, 206, 0.15);
  color: var(--accent-purple);
}

.badge-revenue {
  top: 48%;
  left: -5%;
  animation: float-badge-3 8s ease-in-out infinite alternate;
}

.badge-revenue .orbit-icon {
  background: rgba(5, 150, 105, 0.15);
  color: var(--accent-emerald);
}

.orbit-text strong {
  display: block;
  font-size: 0.8rem;
  color: #0F172A;
}

.orbit-text span {
  font-size: 0.68rem;
  color: var(--text-muted-slate);
}

@keyframes float-badge-1 {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-16px) rotate(2deg); }
}

@keyframes float-badge-2 {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-20px) rotate(-3deg); }
}

@keyframes float-badge-3 {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-14px) rotate(3deg); }
}

/* Holographic Globe */
.floating-holo-globe {
  position: absolute;
  top: 2%;
  right: 18%;
  width: 140px;
  height: 140px;
  z-index: 5;
  animation: float-globe 9s ease-in-out infinite alternate;
}

@keyframes float-globe {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-25px) rotate(15deg); }
}

.globe-svg {
  width: 100%;
  height: 100%;
}

.pulse-point {
  animation: pulse-glow-dot 2s ease-in-out infinite alternate;
}

@keyframes pulse-glow-dot {
  0% { r: 3; opacity: 0.5; }
  100% { r: 5; opacity: 1; }
}

/* ==========================================================================
   Tech Stack Banner
   ========================================================================== */

.tech-stack-section {
  padding: 2rem 0;
  position: relative;
  width: 100%;
}

.tech-bar-container {
  max-width: var(--container-wide);
  width: 100%;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(186, 218, 245, 0.75);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 1.5rem clamp(1.5rem, 3vw, 3rem);
  box-shadow: 0 10px 30px rgba(15, 42, 85, 0.06);
}

.tech-bar-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent-cyan);
  margin-bottom: 1.25rem;
}

.tech-badges-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.tech-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(241, 245, 249, 0.7);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: var(--transition-smooth);
}

.tech-badge:hover {
  background: #FFFFFF;
  border-color: var(--accent-cyan);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(15, 42, 85, 0.08);
}

.tech-badge span {
  font-size: 0.875rem;
  font-weight: 600;
  color: #334155;
}

.tech-icon {
  font-size: 1.25rem;
}

.tech-icon-svg {
  width: 20px;
  height: 20px;
}

.color-react { color: #0284C7; }
.color-node { color: #16A34A; }
.color-php { color: #4F46E5; }
.color-python { color: #2563EB; }
.color-aws { color: #D97706; }
.color-mysql { color: #0284C7; }

/* ==========================================================================
   Services Grid (Clean White / Light Cards with Curved Asymmetric Cutouts)
   ========================================================================== */

.services-section {
  padding: 4.5rem 0;
  position: relative;
  background: linear-gradient(180deg, transparent 0%, rgba(224, 242, 254, 0.35) 50%, transparent 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
  margin-top: 2.25rem;
}

/* Responsive columns handled in media queries */

.asymmetric-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 1.25rem 1.2rem 1.15rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px -5px rgba(15, 42, 85, 0.07), 0 0 0 1px rgba(186, 218, 245, 0.45);
  transition: var(--transition-bounce);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 290px;
  cursor: pointer;
}

.asymmetric-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 18px 35px -8px rgba(15, 42, 85, 0.14), 0 0 20px rgba(0, 136, 204, 0.15);
}

/* Distinct Top Curved Asymmetric Cutout */
.card-cutout-notch {
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  background: var(--bg-dark-navy);
  border-bottom-left-radius: 16px;
  border-bottom: 1px solid rgba(186, 218, 245, 0.6);
  border-left: 1px solid rgba(186, 218, 245, 0.6);
}

/* Micro-Gradients on Cards */
.card-cyan { background: linear-gradient(180deg, #F0F9FF 0%, #FFFFFF 60%); }
.card-purple { background: linear-gradient(180deg, #FAF5FF 0%, #FFFFFF 60%); }
.card-teal { background: linear-gradient(180deg, #F0FDFA 0%, #FFFFFF 60%); }
.card-blue { background: linear-gradient(180deg, #EFF6FF 0%, #FFFFFF 60%); }
.card-amber { background: linear-gradient(180deg, #FFFBEB 0%, #FFFFFF 60%); }
.card-rose { background: linear-gradient(180deg, #FFF1F2 0%, #FFFFFF 60%); }

.service-icon-3d {
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 2;
}

.icon-sphere {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  box-shadow: 0 6px 14px rgba(15, 42, 85, 0.06);
  transition: transform 0.4s ease;
}

.asymmetric-card:hover .icon-sphere {
  transform: rotateY(180deg) scale(1.08);
}

.cyan-sphere { background: rgba(56, 189, 248, 0.18); color: #0284C7; }
.purple-sphere { background: rgba(168, 85, 247, 0.18); color: #7E22CE; }
.teal-sphere { background: rgba(20, 184, 166, 0.18); color: #0D9488; }
.blue-sphere { background: rgba(37, 99, 235, 0.18); color: #2563EB; }
.amber-sphere { background: rgba(245, 158, 11, 0.18); color: #D97706; }
.rose-sphere { background: rgba(244, 63, 94, 0.18); color: #E11D48; }

.service-title {
  color: #0F172A;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 0.4rem;
}

.service-text {
  color: #64748B;
  font-size: 0.8125rem;
  line-height: 1.45;
  margin-bottom: 0.75rem;
}

.service-tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.9rem;
}

.service-tech-tags span {
  font-size: 0.68rem;
  font-weight: 600;
  color: #0369A1;
  background: rgba(224, 242, 254, 0.7);
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
}

.learn-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #0066FF;
  transition: var(--transition-smooth);
}

.learn-more-btn:hover {
  gap: 0.6rem;
  color: #0052CC;
}

/* ==========================================================================
   Interactive Feature Hub (Neural Synapse Graph)
   ========================================================================== */

.feature-hub-section {
  padding: 6rem 0;
  position: relative;
  background: radial-gradient(circle at 50% 50%, rgba(224, 242, 254, 0.55) 0%, var(--bg-dark-navy) 100%);
}

.feature-hub-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: clamp(2rem, 3.5vw, 3.5rem);
  align-items: center;
  max-width: var(--container-wide);
  width: 100%;
  margin: 0 auto;
}

.hub-heading {
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0F172A;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hub-subtext {
  font-size: 0.95rem;
  color: var(--text-muted-slate);
  margin-bottom: 1.75rem;
}

.synapse-nodes-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.synapse-node-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(186, 218, 245, 0.7);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  box-shadow: 0 6px 20px rgba(15, 42, 85, 0.06);
}

.synapse-node-card:hover, .synapse-node-card.active {
  background: #FFFFFF;
  border-color: var(--accent-cyan);
  box-shadow: 0 10px 30px rgba(15, 42, 85, 0.12), 0 0 15px rgba(0, 136, 204, 0.15);
  transform: translateX(6px);
}

.synapse-node-card.right-card:hover {
  transform: translateX(-6px);
  border-color: rgba(126, 34, 206, 0.4);
}

.node-icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 136, 204, 0.12);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.node-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 0.2rem;
}

.node-info p {
  font-size: 0.775rem;
  color: var(--text-muted-slate);
  line-height: 1.4;
}

/* Central Glowing Orb & Synapses SVG */
.hub-center-col {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.orb-container {
  position: relative;
  width: 100%;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.synapse-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.synapse-path {
  stroke-dasharray: 8 4;
  animation: dash-flow 20s linear infinite;
}

@keyframes dash-flow {
  to { stroke-dashoffset: -100; }
}

.central-core-orb {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.orb-pulsar {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 136, 204, 0.35) 0%, rgba(126, 34, 206, 0.2) 60%, transparent 100%);
  animation: orb-pulse 3s ease-in-out infinite alternate;
  filter: blur(10px);
}

@keyframes orb-pulse {
  0% { transform: scale(0.9); opacity: 0.6; }
  100% { transform: scale(1.3); opacity: 1; }
}

.orb-inner-glass {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid var(--accent-cyan);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 35px rgba(0, 136, 204, 0.3), inset 0 0 20px rgba(126, 34, 206, 0.1);
  position: relative;
  z-index: 2;
}

.orb-brand-icon {
  font-size: 1.8rem;
  color: var(--accent-cyan);
  margin-bottom: 0.25rem;
  filter: drop-shadow(0 0 8px var(--accent-cyan));
}

.orb-brand-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: #0F172A;
}

.orb-value-pill {
  position: absolute;
  bottom: -15px;
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  color: #0B1021;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
  z-index: 15;
}

/* ==========================================================================
   Case Studies Section (Elevated Floating Cards & Mockups)
   ========================================================================== */

.case-studies-section {
  padding: 6rem 0;
  position: relative;
}

.case-studies-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.elevated-floating-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 35px -8px rgba(15, 42, 85, 0.1), 0 0 0 1px rgba(186, 218, 245, 0.4);
  transition: var(--transition-bounce);
  display: flex;
  flex-direction: column;
}

.elevated-floating-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px -10px rgba(15, 42, 85, 0.18), 0 0 25px rgba(0, 136, 204, 0.15);
}

.case-device-mockup {
  height: 220px;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.mockup-ecommerce { background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%); }
.mockup-healthcare { background: linear-gradient(135deg, #1E1B4B 0%, #2E1065 100%); }
.mockup-ai { background: linear-gradient(135deg, #0B1021 0%, #0F2847 100%); }

.mockup-screen-layer {
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.mockup-header-bar {
  display: flex;
  align-items: center;
  gap: 4px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mock-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.mock-url {
  font-size: 0.6rem;
  color: var(--text-muted-slate);
  margin-left: 6px;
}

.mockup-content-preview {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.floating-badge-metric {
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(56, 189, 248, 0.4);
  backdrop-filter: blur(10px);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #38BDF8;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  animation: float-badge-1 4s ease-in-out infinite alternate;
}

.badge-vital { border-color: rgba(168, 85, 247, 0.4); color: #C084FC; }
.badge-ai-engine { border-color: rgba(16, 185, 129, 0.4); color: #34D399; }

.ai-3d-layers {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
}

.ai-layer {
  width: 70px;
  height: 14px;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.layer-top {
  background: #38BDF8;
  color: #0B1021;
  font-weight: 800;
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.layer-mid { background: #6366F1; width: 60px; }
.layer-bot { background: #A855F7; width: 50px; }

.case-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.case-category {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #0066FF;
  margin-bottom: 0.5rem;
}

.case-title {
  color: #0F172A;
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.case-desc {
  color: #64748B;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.case-metrics-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  border-top: 1px solid #E2E8F0;
  padding-top: 1.25rem;
}

.metric-val {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #0F172A;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.metric-lbl {
  font-size: 0.75rem;
  color: #64748B;
  font-weight: 600;
}

/* ==========================================================================
   Process Flow (Concentric Orbital Ring Diagram) & Testimonials
   ========================================================================== */

.process-testimonials-section {
  padding: 6rem 0;
  position: relative;
  background: linear-gradient(180deg, transparent 0%, rgba(224, 242, 254, 0.45) 100%);
}

.two-col-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2.5rem, 4vw, 4.5rem);
  align-items: center;
  max-width: var(--container-wide);
  width: 100%;
}

.orbital-process-container {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: clamp(2rem, 3.5vw, 3.5rem);
  align-items: center;
  margin-top: 2.5rem;
  max-width: var(--container-wide);
  width: 100%;
}

.orbital-diagram-wrap {
  position: relative;
  width: 290px;
  height: 290px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0 auto;
}

.orbital-center-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #FFFFFF 0%, #EBF4FA 100%);
  border: 2px solid var(--accent-cyan);
  box-shadow: 0 0 25px rgba(0, 136, 204, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.6rem 0.5rem;
  z-index: 10;
  backdrop-filter: blur(8px);
}

.orb-step-label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.25;
  text-align: center;
  max-width: 96px;
  display: block;
  word-break: normal;
}

.orb-step-sub {
  font-size: 1rem;
  font-weight: 800;
  color: var(--accent-cyan);
  margin-top: 4px;
  display: block;
  letter-spacing: 0.05em;
}

.concentric-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(0, 136, 204, 0.22);
  transition: var(--transition-smooth);
  pointer-events: none;
}

.ring-1 { width: 150px; height: 150px; }
.ring-2 { width: 185px; height: 185px; }
.ring-3 { width: 220px; height: 220px; }
.ring-4 { width: 255px; height: 255px; }
.ring-5 { width: 290px; height: 290px; }

.concentric-ring.active {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 20px rgba(0, 136, 204, 0.3), inset 0 0 12px rgba(0, 136, 204, 0.12);
  border-width: 2px;
}

.satellite-pin {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1.5px solid var(--accent-cyan);
  color: #0F172A;
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 15;
  box-shadow: 0 4px 12px rgba(15, 42, 85, 0.12);
}

.pin-1 { top: 0%; left: 50%; transform: translate(-50%, -50%); }
.pin-2 { top: 34.55%; left: 97.55%; transform: translate(-50%, -50%); }
.pin-3 { top: 90.45%; left: 79.39%; transform: translate(-50%, -50%); }
.pin-4 { top: 90.45%; left: 20.61%; transform: translate(-50%, -50%); }
.pin-5 { top: 34.55%; left: 2.45%; transform: translate(-50%, -50%); }

.satellite-pin.active, .satellite-pin:hover {
  background: var(--accent-cyan);
  color: #FFFFFF;
  font-weight: 800;
  border-color: #ffffff;
  box-shadow: 0 0 20px rgba(0, 136, 204, 0.45);
}

.pin-1.active, .pin-1:hover { transform: translate(-50%, -50%) scale(1.25); }
.pin-2.active, .pin-2:hover { transform: translate(-50%, -50%) scale(1.25); }
.pin-3.active, .pin-3:hover { transform: translate(-50%, -50%) scale(1.25); }
.pin-4.active, .pin-4:hover { transform: translate(-50%, -50%) scale(1.25); }
.pin-5.active, .pin-5:hover { transform: translate(-50%, -50%) scale(1.25); }

.process-steps-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.process-step-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(186, 218, 245, 0.6);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.process-step-item:hover, .process-step-item.active {
  background: #FFFFFF;
  border-color: var(--accent-cyan);
  box-shadow: 0 8px 25px rgba(15, 42, 85, 0.08);
  transform: translateX(6px);
}

.step-num-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 136, 204, 0.12);
  color: var(--accent-cyan);
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.process-step-item.active .step-num-badge {
  background: var(--accent-cyan);
  color: #FFFFFF;
  box-shadow: 0 0 15px rgba(0, 136, 204, 0.35);
}

.step-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 0.2rem;
}

.step-content p {
  font-size: 0.8125rem;
  color: var(--text-muted-slate);
  line-height: 1.45;
}

/* Testimonials Masonry */
.testimonials-masonry {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.testimonial-glass-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(186, 218, 245, 0.7);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  position: relative;
  box-shadow: 0 10px 30px rgba(15, 42, 85, 0.06);
  transition: var(--transition-smooth);
}

.testimonial-glass-card:hover {
  background: #FFFFFF;
  border-color: var(--accent-cyan);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(15, 42, 85, 0.12);
}

.testimonial-glass-card.offset-card {
  margin-left: 1.5rem;
}

.quote-mark {
  font-size: 1.5rem;
  color: var(--accent-cyan);
  margin-bottom: 0.5rem;
}

.star-rating {
  color: #F59E0B;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  display: flex;
  gap: 3px;
}

.testimonial-quote {
  font-size: 0.9375rem;
  color: #334155;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.client-profile {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.client-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--accent-cyan);
  background-size: cover;
  background-position: center;
}

.av-1 { background-image: url('https://images.unsplash.com/photo-1534528741775-53994a69daeb?w=150&auto=format&fit=crop&q=80'); }
.av-2 { background-image: url('https://images.unsplash.com/photo-1580489944761-15a19d654956?w=150&auto=format&fit=crop&q=80'); }
.av-3 { background-image: url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=150&auto=format&fit=crop&q=80'); }

.client-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: #0F172A;
}

.client-role {
  font-size: 0.75rem;
  color: var(--text-muted-slate);
}

/* ==========================================================================
   Latest Insights & Tech Blog Grid
   ========================================================================== */

.insights-section {
  padding: 6rem 0;
  position: relative;
}

.insights-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.insight-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(186, 218, 245, 0.7);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 42, 85, 0.06);
  transition: var(--transition-bounce);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.insight-card:hover {
  transform: translateY(-8px);
  background: #FFFFFF;
  border-color: var(--accent-cyan);
  box-shadow: 0 18px 40px rgba(15, 42, 85, 0.12);
}

.insight-thumb {
  height: 160px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.thumb-ai { background: linear-gradient(135deg, #0F172A 0%, #1E1B4B 100%); }
.thumb-cloud { background: linear-gradient(135deg, #0B1021 0%, #0369A1 100%); }
.thumb-web { background: linear-gradient(135deg, #1E1B4B 0%, #4C1D95 100%); }
.thumb-marketing { background: linear-gradient(135deg, #31102F 0%, #881337 100%); }

.thumb-glow-sphere {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.5;
}

.thumb-ai .thumb-glow-sphere { background: #38BDF8; }
.thumb-cloud .thumb-glow-sphere { background: #60A5FA; }
.thumb-web .thumb-glow-sphere { background: #C084FC; }
.thumb-marketing .thumb-glow-sphere { background: #FB7185; }

.thumb-icon-overlay {
  font-size: 2.5rem;
  color: #FFFFFF;
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease;
}

.insight-card:hover .thumb-icon-overlay {
  transform: scale(1.2);
}

.insight-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.insight-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}

.badge-teal { background: rgba(20, 184, 166, 0.15); color: #0D9488; }
.badge-blue { background: rgba(0, 136, 204, 0.15); color: #0284C7; }
.badge-purple { background: rgba(168, 85, 247, 0.15); color: #7E22CE; }
.badge-rose { background: rgba(244, 63, 94, 0.15); color: #BE123C; }

.insight-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.35;
  margin: 0.75rem 0 1rem;
}

.insight-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--text-muted-slate);
}

/* ==========================================================================
   High-Impact Rocket Launch CTA Bar
   ========================================================================== */

/* ==========================================================================
   High-Impact Rocket Launch CTA Bar
   ========================================================================== */

.cta-launch-section {
  padding: 5rem 0;
  position: relative;
}

.cta-banner-card {
  background: linear-gradient(135deg, #E0F2FE 0%, #EFF6FF 50%, #E2EDF9 100%);
  border: 1.5px solid rgba(186, 218, 245, 0.95);
  border-radius: var(--radius-xl);
  padding: clamp(3rem, 5vw, 4.5rem);
  position: relative;
  overflow: hidden;
  max-width: var(--container-wide);
  margin: 0 auto;
  box-shadow: 0 25px 60px rgba(15, 42, 85, 0.08), 0 0 35px rgba(0, 136, 204, 0.06);
}

.cta-banner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #0088CC, #0052CC, #F59E0B);
}

.cta-banner-glow {
  position: absolute;
  top: -50%;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 136, 204, 0.12) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.cta-content-wrapper {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: clamp(2rem, 3.5vw, 3.5rem);
  align-items: center;
  position: relative;
  z-index: 2;
}

.cta-headline-tag {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 0.75rem;
}

.cta-phone-link {
  color: #0052CC;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: var(--transition-smooth);
}

.cta-phone-link:hover {
  color: #0088CC;
}

.cta-main-title {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 800;
  color: #0F172A;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.cta-desc {
  font-size: clamp(1rem, 1.15vw, 1.125rem);
  color: #334155;
  max-width: 620px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.cta-buttons-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.btn-cta-secondary {
  background: #FFFFFF;
  border: 1.5px solid #CBD5E1;
  color: #0F172A;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(15, 42, 85, 0.04);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-cta-secondary:hover {
  background: #F0F6FC;
  border-color: #0088CC;
  color: #0088CC;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 136, 204, 0.15);
}

/* Floating Rocket Visual */
.cta-rocket-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.rocket-wrapper {
  position: relative;
  width: 170px;
  height: 270px;
}

.floating-rocket-anim {
  animation: rocket-launch 5s ease-in-out infinite alternate;
}

@keyframes rocket-launch {
  0% { transform: translateY(0) rotate(-6deg); }
  100% { transform: translateY(-25px) rotate(4deg); }
}

.rocket-flame-anim {
  animation: flame-pulse 0.4s ease-in-out infinite alternate;
}

@keyframes flame-pulse {
  0% { transform: scaleY(0.9); opacity: 0.8; }
  100% { transform: scaleY(1.15); opacity: 1; }
}

.sparkle {
  position: absolute;
  color: #FDE047;
  font-size: 1.2rem;
  animation: sparkle-float 3s ease-in-out infinite;
}

.sp-1 { top: 20%; left: -10px; animation-delay: 0.2s; }
.sp-2 { top: 50%; right: -15px; animation-delay: 1.2s; }
.sp-3 { bottom: 20%; left: 10px; color: #38BDF8; animation-delay: 0.7s; }

@keyframes sparkle-float {
  0%, 100% { transform: scale(0.6) rotate(0deg); opacity: 0.3; }
  50% { transform: scale(1.3) rotate(45deg); opacity: 1; }
}

/* ==========================================================================
   Light Orange & White Gradient Footer
   ========================================================================== */

.footer-dark {
  background: linear-gradient(180deg, #FFFDFB 0%, #FFF7ED 35%, #FFEDD5 70%, #FFF8F1 100%);
  border-top: 2px solid rgba(251, 146, 60, 0.4);
  padding: 5.5rem 0 2rem;
  position: relative;
  box-shadow: 0 -20px 50px rgba(249, 115, 22, 0.06);
}

.footer-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #F59E0B 0%, #FB923C 50%, #EA580C 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.1fr 1.1fr 1.4fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  max-width: var(--container-wide);
  margin: 0 auto 4rem;
}

.footer-logo {
  margin-bottom: 1.25rem;
}

.footer-desc {
  font-size: 0.92rem;
  color: #334155;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.social-links-row {
  display: flex;
  gap: 0.75rem;
}

.social-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1.5px solid rgba(251, 146, 60, 0.4);
  color: #0F172A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 4px 10px rgba(15, 42, 85, 0.05);
  transition: var(--transition-smooth);
}

.social-icon-btn:hover {
  background: linear-gradient(135deg, #F59E0B, #EA580C);
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(234, 88, 12, 0.35);
  border-color: #EA580C;
}

.footer-col-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.footer-nav-list li {
  margin-bottom: 0.75rem;
}

.footer-nav-list a {
  font-size: 0.9rem;
  color: #334155;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.footer-nav-list a:hover {
  color: #EA580C;
  padding-left: 5px;
  font-weight: 600;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #334155;
  margin-bottom: 1rem;
  font-weight: 500;
}

.footer-contact-list a {
  color: #334155;
  transition: var(--transition-smooth);
}

.footer-contact-list a:hover {
  color: #EA580C;
}

.newsletter-sub {
  font-size: 0.9rem;
  color: #475569;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.newsletter-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.newsletter-input {
  width: 100%;
  background: #FFFFFF;
  border: 1.5px solid rgba(251, 146, 60, 0.4);
  border-radius: var(--radius-full);
  padding: 0.75rem 3.2rem 0.75rem 1.25rem;
  color: #0F172A;
  font-size: 0.9rem;
  outline: none;
  box-shadow: 0 4px 12px rgba(15, 42, 85, 0.04);
  transition: var(--transition-smooth);
}

.newsletter-input::placeholder {
  color: #94A3B8;
}

.newsletter-input:focus {
  border-color: #EA580C;
  box-shadow: 0 0 16px rgba(234, 88, 12, 0.25);
  background: #FFFFFF;
}

.newsletter-submit-btn {
  position: absolute;
  right: 5px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F59E0B, #EA580C);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.35);
  transition: var(--transition-smooth);
}

.newsletter-submit-btn:hover {
  background: linear-gradient(135deg, #FB923C, #C2410C);
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.5);
}

.legal-mini-links {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: #475569;
}

.legal-mini-links a:hover {
  color: #EA580C;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(251, 146, 60, 0.25);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #475569;
  max-width: var(--container-wide);
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 1rem;
  font-weight: 500;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-bottom-links a {
  color: #475569;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.footer-bottom-links a:hover {
  color: #EA580C;
  text-decoration: underline;
}

.footer-bottom-links span {
  color: rgba(15, 23, 42, 0.25);
}

/* ==========================================================================
   Back To Top Floating Button
   ========================================================================== */

.back-to-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--grad-primary-btn);
  color: #0B1021;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4);
  z-index: 990;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition-bounce);
}

.back-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top-btn:hover {
  transform: translateY(-4px) scale(1.1);
}

/* ==========================================================================
   Interactive Modals (Quote Estimator & Service Deep Dive)
   ========================================================================== */

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(16px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #FFFFFF;
  border: 1px solid rgba(186, 218, 245, 0.85);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 25px 60px rgba(15, 42, 85, 0.2), 0 0 40px rgba(0, 136, 204, 0.1);
  transform: scale(0.95);
  transition: var(--transition-smooth);
}

.modal-backdrop.active .modal-card {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #F1F5F9;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.modal-close-btn:hover {
  background: #EF4444;
  color: #FFF;
}

.modal-header {
  text-align: center;
  margin-bottom: 2rem;
}

.modal-icon-glow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 136, 204, 0.12);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin: 0 auto 0.75rem;
  box-shadow: 0 0 20px rgba(0, 136, 204, 0.2);
}

.modal-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 0.4rem;
}

.modal-subtitle {
  font-size: 0.875rem;
  color: var(--text-muted-slate);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 0.5rem;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  background: #F8FAFC;
  border: 1px solid #CBD5E1;
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: #0F172A;
  font-family: inherit;
  font-size: 0.875rem;
  outline: none;
  transition: var(--transition-smooth);
}

.form-select option {
  background: #FFFFFF;
  color: #0F172A;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent-cyan);
  background: #FFFFFF;
  box-shadow: 0 0 15px rgba(0, 136, 204, 0.2);
}

.checkbox-pills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.pill-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #F1F5F9;
  border: 1px solid #CBD5E1;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  color: #334155;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.pill-checkbox:hover {
  background: #E2E8F0;
}

.pill-checkbox input[type="checkbox"]:checked + span {
  color: var(--accent-cyan);
  font-weight: 700;
}

.service-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: #334155;
  margin-bottom: 0.75rem;
}

.modal-tech-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.modal-tech-pills span {
  background: rgba(0, 136, 204, 0.1);
  border: 1px solid rgba(0, 136, 204, 0.25);
  color: var(--accent-cyan);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
}

/* Live Toast Container */
.toast-container {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 2100;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}

.toast-item {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(186, 218, 245, 0.85);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 10px 30px rgba(15, 42, 85, 0.12);
  pointer-events: auto;
  animation: slide-toast 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  max-width: 360px;
}

.toast-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 136, 204, 0.15);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.toast-text {
  font-size: 0.8125rem;
  color: #475569;
  line-height: 1.35;
}

.toast-text strong {
  color: #0F172A;
  display: block;
}

@keyframes slide-toast {
  from { transform: translateX(-50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1400px) {
  .nav-links {
    gap: 1.25rem;
  }
  .nav-link {
    font-size: 0.9rem;
  }
}

@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .insights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-action-buttons {
    justify-content: center;
  }
  .hero-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-hub-layout {
    grid-template-columns: 1fr;
  }
  .hub-header-block.text-right-md {
    text-align: left;
  }
  .cases-grid {
    grid-template-columns: 1fr;
  }
  .two-col-grid {
    grid-template-columns: 1fr;
  }
  .cta-content-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .cta-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .cta-buttons-row {
    justify-content: center;
  }
  .nav-menu {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.4rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .orbital-process-container {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .testimonial-glass-card.offset-card {
    margin-left: 0;
  }
  .insights-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .form-row-2 {
    grid-template-columns: 1fr;
  }
  .checkbox-pills-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom-bar {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats-grid {
    grid-template-columns: 1fr;
  }
  .cta-banner-card {
    padding: 2rem 1.5rem;
  }
}

/* ==========================================================================
   Multi-Page Subpage Layout & Core Components
   ========================================================================== */

/* Subpage Hero Banner */
.page-hero {
  padding: 150px 0 70px;
  position: relative;
  overflow: hidden;
  text-align: center;
  background: radial-gradient(circle at 50% 20%, rgba(219, 234, 254, 0.8) 0%, rgba(240, 246, 252, 0) 70%);
}

.page-hero .container {
  max-width: var(--container-wide);
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted-slate);
  margin-bottom: 1.25rem;
}

.breadcrumb-nav a {
  color: var(--text-muted-slate);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.breadcrumb-nav a:hover {
  color: var(--accent-cyan);
}

.breadcrumb-nav .divider {
  color: #94A3B8;
  font-size: 0.75rem;
}

.breadcrumb-nav .current {
  color: var(--accent-cyan);
  font-weight: 600;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.3vw, 3.8rem);
  font-weight: 800;
  line-height: 1.18;
  color: #0F172A;
  margin-bottom: 1.25rem;
}

.page-hero-subtitle {
  font-size: clamp(1.05rem, 1.2vw, 1.2rem);
  color: var(--text-light-slate);
  line-height: 1.7;
  max-width: 920px;
  margin: 0 auto 2.25rem;
}

.page-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Subpage Sections General */
.subpage-section {
  padding: 85px 0;
  position: relative;
  z-index: 1;
}

.subpage-section.bg-subtle {
  background: rgba(224, 242, 254, 0.25);
  border-top: 1px solid rgba(186, 218, 245, 0.5);
  border-bottom: 1px solid rgba(186, 218, 245, 0.5);
}

/* Core Values / Pillars Grid */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pillar-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(186, 218, 245, 0.7);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.25rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(15, 42, 85, 0.06);
  transition: var(--transition-smooth);
}

.pillar-card:hover {
  transform: translateY(-6px);
  background: #FFFFFF;
  border-color: var(--accent-cyan);
  box-shadow: 0 15px 35px rgba(15, 42, 85, 0.12), 0 0 20px rgba(0, 136, 204, 0.15);
}

.pillar-icon-box {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  background: rgba(0, 136, 204, 0.12);
  color: var(--accent-cyan);
  border: 1px solid rgba(0, 136, 204, 0.25);
}

.pillar-card h3 {
  font-size: 1.25rem;
  color: #0F172A;
  margin-bottom: 0.75rem;
}

.pillar-card p {
  color: var(--text-muted-slate);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* Timeline & Milestones */
.timeline-track {
  position: relative;
  max-width: 1100px;
  margin: 3.5rem auto 0;
  padding-left: 2rem;
}

.timeline-track::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, #0284C7, #4F46E5, #7E22CE);
  border-radius: var(--radius-full);
}

.timeline-milestone {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2.5rem;
}

.timeline-marker {
  position: absolute;
  left: 14px;
  top: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 3px solid var(--accent-cyan);
  box-shadow: 0 0 15px rgba(0, 136, 204, 0.4);
  transform: translateX(-50%);
}

.timeline-milestone-content {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(186, 218, 245, 0.7);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  box-shadow: 0 8px 20px rgba(15, 42, 85, 0.05);
  transition: var(--transition-smooth);
}

.timeline-milestone:hover .timeline-milestone-content {
  background: #FFFFFF;
  border-color: var(--accent-cyan);
  transform: translateX(6px);
  box-shadow: 0 12px 30px rgba(15, 42, 85, 0.1);
}

.milestone-year {
  display: inline-block;
  background: linear-gradient(135deg, #0284C7, #4F46E5);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.5rem;
}

.timeline-milestone-content h4 {
  font-size: 1.15rem;
  color: #0F172A;
  margin-bottom: 0.4rem;
}

.timeline-milestone-content p {
  color: var(--text-muted-slate);
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Team Grid & Leadership */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-member-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(186, 218, 245, 0.7);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(15, 42, 85, 0.06);
}

.team-member-card:hover {
  transform: translateY(-8px);
  background: #FFFFFF;
  border-color: var(--accent-cyan);
  box-shadow: 0 20px 40px rgba(15, 42, 85, 0.12);
}

.team-avatar-frame {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0284C7, #7E22CE);
  padding: 3px;
}

.team-avatar-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #F0F6FC;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--accent-cyan);
}

.team-member-card h3 {
  font-size: 1.2rem;
  color: #0F172A;
  margin-bottom: 0.25rem;
}

.team-role {
  color: var(--accent-cyan);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.team-bio {
  color: var(--text-muted-slate);
  font-size: 0.825rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.team-skills-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.team-skills-tags span {
  font-size: 0.7rem;
  background: #F1F5F9;
  border: 1px solid #CBD5E1;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-full);
  color: #334155;
}

.team-social-links {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.team-social-links a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #F1F5F9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #334155;
  font-size: 0.85rem;
  transition: var(--transition-smooth);
}

.team-social-links a:hover {
  background: var(--accent-cyan);
  color: #FFFFFF;
}

/* Certifications & Trust Badges */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.cert-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(186, 218, 245, 0.7);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 20px rgba(15, 42, 85, 0.05);
  transition: var(--transition-smooth);
}

.cert-card:hover {
  background: #FFFFFF;
  border-color: var(--accent-cyan);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(15, 42, 85, 0.1);
}

.cert-icon {
  font-size: 2rem;
  color: var(--accent-gold);
}

.cert-card h4 {
  font-size: 1rem;
  color: #0F172A;
}

.cert-card p {
  font-size: 0.8rem;
  color: var(--text-muted-slate);
}

/* Filter Controls Bar */
.filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(186, 218, 245, 0.7);
  color: #334155;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(15, 42, 85, 0.04);
  transition: var(--transition-smooth);
}

.filter-btn:hover {
  background: #FFFFFF;
  border-color: var(--accent-cyan);
  color: var(--accent-royal);
}

.filter-btn.active {
  background: linear-gradient(135deg, #0284C7, #0052CC);
  border-color: transparent;
  color: #FFFFFF;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0, 136, 204, 0.35);
}

/* Service Detail Cards on services.html */
.service-full-card {
  background: #FFFFFF;
  border: 1px solid rgba(186, 218, 245, 0.7);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 3.5vw, 3.5rem);
  margin-bottom: 3rem;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px -8px rgba(15, 42, 85, 0.08);
  transition: var(--transition-smooth);
}

.service-full-card:hover {
  border-color: var(--accent-cyan);
  box-shadow: 0 20px 45px rgba(15, 42, 85, 0.12);
}

.service-full-card.reverse {
  grid-template-columns: 1fr 1.25fr;
}

.service-full-card.reverse .service-full-visual {
  order: -1;
}

.service-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 136, 204, 0.1);
  border: 1px solid rgba(0, 136, 204, 0.25);
  color: var(--accent-cyan);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.service-full-content h3 {
  font-size: 1.75rem;
  color: #0F172A;
  margin-bottom: 1rem;
}

.service-full-content p {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.service-feature-checklist {
  list-style: none;
  margin-bottom: 1.75rem;
}

.service-feature-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #334155;
  margin-bottom: 0.75rem;
}

.service-feature-checklist li i {
  color: var(--accent-cyan);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.service-full-visual {
  background: #F8FAFC;
  border: 1px solid rgba(186, 218, 245, 0.7);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  position: relative;
}

.service-architecture-box {
  background: #0B1021;
  border: 1px dashed rgba(0, 136, 204, 0.4);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.8rem;
  color: #38BDF8;
}

.arch-header {
  font-weight: bold;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.arch-step {
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.arch-step:last-child {
  border-bottom: none;
}

/* Tech Matrix on services.html */
.tech-matrix-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.tech-cat-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(186, 218, 245, 0.7);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: 0 8px 20px rgba(15, 42, 85, 0.05);
}

.tech-cat-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.1rem;
  color: #0F172A;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.tech-cat-title i {
  color: var(--accent-cyan);
}

.tech-pills-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tech-pill-badge {
  background: #F1F5F9;
  border: 1px solid #CBD5E1;
  color: #334155;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition-smooth);
}

.tech-pill-badge:hover {
  background: rgba(0, 136, 204, 0.12);
  border-color: var(--accent-cyan);
  color: #0052CC;
}

/* Industry Specific Detail Cards */
.industry-full-card {
  background: #FFFFFF;
  border: 1px solid rgba(186, 218, 245, 0.7);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 3vw, 3rem);
  margin-bottom: 2.5rem;
  display: grid;
  grid-template-columns: 85px 1.25fr 1fr;
  gap: clamp(2rem, 3.5vw, 3.5rem);
  align-items: center;
  box-shadow: 0 15px 35px -8px rgba(15, 42, 85, 0.08);
  transition: var(--transition-smooth);
}

.industry-full-card:hover {
  border-color: var(--accent-cyan);
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(15, 42, 85, 0.12);
}

.industry-icon-huge {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.industry-info h3 {
  font-size: 1.35rem;
  color: #0F172A;
  margin-bottom: 0.5rem;
}

.industry-info p {
  color: #475569;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.compliance-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.compliance-tag {
  background: rgba(5, 150, 105, 0.1);
  border: 1px solid rgba(5, 150, 105, 0.25);
  color: #059669;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-full);
}

.industry-solutions-box {
  background: #F8FAFC;
  border-radius: var(--radius-md);
  padding: 1.25rem;
  border: 1px solid rgba(186, 218, 245, 0.6);
}

.industry-solutions-box h4 {
  font-size: 0.9rem;
  color: #0F172A;
  margin-bottom: 0.5rem;
}

.industry-solutions-box ul {
  list-style: none;
}

.industry-solutions-box li {
  font-size: 0.8rem;
  color: #334155;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.industry-solutions-box li i {
  color: var(--accent-cyan);
}

/* Careers Job Board */
.job-board-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.job-card {
  background: #FFFFFF;
  border: 1px solid rgba(186, 218, 245, 0.7);
  border-radius: var(--radius-md);
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  box-shadow: 0 10px 25px rgba(15, 42, 85, 0.05);
  transition: var(--transition-smooth);
}

.job-card:hover {
  border-color: var(--accent-cyan);
  transform: translateX(6px);
  box-shadow: 0 15px 35px rgba(15, 42, 85, 0.1);
}

.job-info h3 {
  font-size: 1.25rem;
  color: #0F172A;
  margin-bottom: 0.4rem;
}

.job-meta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8125rem;
  color: var(--text-muted-slate);
  margin-bottom: 0.75rem;
}

.job-meta-row span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.job-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.job-tag {
  background: #F1F5F9;
  border: 1px solid #CBD5E1;
  color: #334155;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
}

/* Perks Grid */
.perks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.perk-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(186, 218, 245, 0.7);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  text-align: center;
  box-shadow: 0 8px 20px rgba(15, 42, 85, 0.05);
  transition: var(--transition-smooth);
}

.perk-card:hover {
  transform: translateY(-5px);
  background: #FFFFFF;
  border-color: var(--accent-cyan);
  box-shadow: 0 12px 30px rgba(15, 42, 85, 0.1);
}

.perk-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  background: rgba(0, 136, 204, 0.1);
  color: var(--accent-cyan);
}

.perk-card h4 {
  font-size: 1.1rem;
  color: #0F172A;
  margin-bottom: 0.5rem;
}

.perk-card p {
  font-size: 0.85rem;
  color: var(--text-muted-slate);
  line-height: 1.5;
}

/* Interactive Project Cost Estimator & Calculator */
.estimator-wrapper {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(186, 218, 245, 0.85);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 4rem);
  max-width: var(--container-wide);
  margin: 2rem auto 0;
  box-shadow: 0 20px 50px rgba(15, 42, 85, 0.1), 0 0 30px rgba(0, 136, 204, 0.1);
}

.calculator-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.calc-section-title {
  font-size: 1.1rem;
  color: #0F172A;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.calc-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.calc-option-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #F8FAFC;
  border: 1px solid #CBD5E1;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.calc-option-label:hover {
  background: rgba(0, 136, 204, 0.08);
  border-color: var(--accent-cyan);
}

.calc-option-label input {
  accent-color: var(--accent-cyan);
}

.calc-option-label span {
  font-size: 0.875rem;
  color: #334155;
}

.calc-slider-container {
  margin-bottom: 1.75rem;
}

.calc-slider-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  color: #334155;
}

.calc-range-slider {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: #E2E8F0;
  outline: none;
  accent-color: var(--accent-cyan);
  cursor: pointer;
}

.calc-summary-card {
  background: #0B132B;
  border: 1px solid rgba(0, 136, 204, 0.4);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  text-align: center;
  position: sticky;
  top: 100px;
  box-shadow: 0 15px 35px rgba(7, 21, 59, 0.2);
}

.calc-badge-live {
  display: inline-block;
  background: rgba(0, 136, 204, 0.2);
  color: #38BDF8;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.calc-price-display {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

.calc-timeline-display {
  font-size: 1rem;
  color: #E2E8F0;
  margin-bottom: 1.5rem;
}

.calc-features-list {
  text-align: left;
  list-style: none;
  margin-bottom: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.25rem;
}

.calc-features-list li {
  font-size: 0.8125rem;
  color: #E2E8F0;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.calc-features-list li i {
  color: var(--accent-cyan);
}

/* FAQs Accordion Component */
.faq-accordion-wrap {
  max-width: 1100px;
  margin: 3rem auto 0;
}

.faq-item {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(186, 218, 245, 0.7);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(15, 42, 85, 0.04);
  transition: var(--transition-smooth);
}

.faq-item.open {
  border-color: var(--accent-cyan);
  background: #FFFFFF;
  box-shadow: 0 10px 25px rgba(15, 42, 85, 0.08);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  color: #0F172A;
  font-size: 1.05rem;
  font-weight: 700;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question i {
  color: var(--accent-cyan);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  padding: 0 1.5rem;
  color: #475569;
  font-size: 0.9375rem;
  line-height: 1.65;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 1.5rem;
}

/* Location & Channels Grid */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.location-card {
  background: #FFFFFF;
  border: 1px solid rgba(186, 218, 245, 0.7);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: 0 10px 25px rgba(15, 42, 85, 0.06);
  transition: var(--transition-smooth);
}

.location-card:hover {
  border-color: var(--accent-cyan);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(15, 42, 85, 0.12);
}

.location-badge {
  display: inline-block;
  background: rgba(0, 136, 204, 0.1);
  color: var(--accent-cyan);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.location-card h3 {
  font-size: 1.35rem;
  color: #0F172A;
  margin-bottom: 1rem;
}

.location-details {
  list-style: none;
}

.location-details li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #334155;
  margin-bottom: 0.85rem;
}

.location-details li i {
  color: var(--accent-cyan);
  margin-top: 0.2rem;
}

/* Search Bar Component */
.search-filter-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.search-box {
  position: relative;
  min-width: 280px;
  flex: 1;
  max-width: 400px;
}

.search-box input {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  border-radius: var(--radius-full);
  padding: 0.65rem 1.25rem 0.65rem 2.75rem;
  color: #0F172A;
  font-size: 0.875rem;
  outline: none;
  transition: var(--transition-smooth);
}

.search-box input:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 15px rgba(0, 136, 204, 0.2);
}

.search-box i {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted-slate);
  font-size: 0.9rem;
}

/* Responsive Overrides for Subpages */
@media (max-width: 992px) {
  .service-full-card,
  .service-full-card.reverse {
    grid-template-columns: 1fr;
  }
  .service-full-card.reverse .service-full-visual {
    order: 0;
  }
  .industry-full-card {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .calculator-grid {
    grid-template-columns: 1fr;
  }
  .calc-summary-card {
    position: static;
  }
  .calc-options-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .estimator-wrapper {
    padding: 1.75rem 1.25rem;
  }
  .job-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .timeline-track {
    padding-left: 1.5rem;
  }
  .timeline-track::before {
    left: 12px;
  }
  .timeline-marker {
    left: 3px;
  }
  .timeline-milestone {
    padding-left: 2rem;
  }
}

/* ==========================================================================
   Dedicated Service Subpages Styling
   ========================================================================== */

.service-hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.service-stat-item {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(186, 218, 245, 0.7);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  text-align: center;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 20px rgba(15, 42, 85, 0.05);
  transition: var(--transition-smooth);
}

.service-stat-item:hover {
  background: #FFFFFF;
  border-color: var(--accent-cyan);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(15, 42, 85, 0.1);
}

.service-stat-item .stat-val {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent-cyan);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.service-stat-item .stat-lbl {
  font-size: 0.8rem;
  color: var(--text-muted-slate);
  font-weight: 500;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}

.deliverable-card {
  background: #FFFFFF;
  border: 1px solid rgba(186, 218, 245, 0.7);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(15, 42, 85, 0.06);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.deliverable-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-cyan);
  box-shadow: 0 20px 40px rgba(15, 42, 85, 0.12), 0 0 25px rgba(0, 136, 204, 0.15);
}

.deliverable-card .card-top-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.deliverable-card h3 {
  font-size: 1.3rem;
  color: #0F172A;
  margin-bottom: 0.75rem;
}

.deliverable-card p {
  color: var(--text-muted-slate);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.deliverable-checklist {
  list-style: none;
  margin-bottom: 1.5rem;
}

.deliverable-checklist li {
  font-size: 0.85rem;
  color: #334155;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.deliverable-checklist li i {
  color: var(--accent-cyan);
  font-size: 0.75rem;
}

.service-workflow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  margin-top: 3.5rem;
}

.workflow-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(186, 218, 245, 0.7);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  position: relative;
  box-shadow: 0 8px 20px rgba(15, 42, 85, 0.05);
  transition: var(--transition-smooth);
}

.workflow-card:hover {
  background: #FFFFFF;
  border-color: var(--accent-cyan);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(15, 42, 85, 0.1);
}

.workflow-step-num {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: rgba(15, 23, 42, 0.1);
}

.workflow-card h4 {
  font-size: 1.15rem;
  color: #0F172A;
  margin: 1rem 0 0.5rem;
}

.workflow-card p {
  font-size: 0.85rem;
  color: var(--text-muted-slate);
  line-height: 1.55;
}

.service-faq-grid {
  max-width: 1100px;
  margin: 3.5rem auto 0;
}

/* ==========================================================================
   Dedicated Blog Post & Article Reading Styles (High SEO & Rich Layout)
   ========================================================================== */

.blog-post-hero {
  padding: clamp(5rem, 8vw, 8rem) 0 clamp(2.5rem, 4vw, 4rem);
  background: radial-gradient(circle at 50% 20%, rgba(219, 234, 254, 0.8) 0%, transparent 65%),
              radial-gradient(circle at 80% 40%, rgba(233, 213, 255, 0.5) 0%, transparent 50%),
              var(--bg-dark-navy);
  border-bottom: 1px solid rgba(186, 218, 245, 0.65);
  position: relative;
  overflow: hidden;
}

.blog-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted-slate);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.blog-breadcrumb a {
  color: #334155;
  text-decoration: none;
  transition: var(--transition-fast);
}

.blog-breadcrumb a:hover {
  color: var(--accent-cyan);
}

.blog-breadcrumb i {
  font-size: 0.65rem;
  color: var(--text-muted-slate);
}

.blog-post-hero-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1.22;
  color: #0F172A;
  margin: 1rem 0 1.25rem;
  letter-spacing: -0.02em;
  max-width: 950px;
}

.blog-post-hero-sub {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: #475569;
  line-height: 1.6;
  max-width: 850px;
  margin-bottom: 2rem;
}

.blog-post-meta-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(186, 218, 245, 0.65);
}

.author-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-pill-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 0 15px rgba(0, 136, 204, 0.3);
}

.author-pill-info {
  display: flex;
  flex-direction: column;
}

.author-pill-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: #0F172A;
}

.author-pill-role {
  font-size: 0.78rem;
  color: var(--text-muted-slate);
}

.blog-meta-badge-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.85rem;
  color: var(--text-muted-slate);
}

.blog-meta-badge-group span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Article Container & Sticky Sidebar */
.blog-article-section {
  padding: 4rem 0 6rem;
  background: var(--bg-dark-navy);
}

.blog-article-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(2.5rem, 4vw, 4.5rem);
  align-items: start;
}

.blog-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.blog-toc-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(186, 218, 245, 0.75);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 20px rgba(15, 42, 85, 0.05);
}

.blog-toc-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0F172A;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-toc-title i {
  color: var(--accent-cyan);
}

.blog-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.blog-toc-list li a {
  color: var(--text-muted-slate);
  text-decoration: none;
  font-size: 0.85rem;
  line-height: 1.45;
  transition: var(--transition-fast);
  display: block;
  padding-left: 0.75rem;
  border-left: 2px solid transparent;
}

.blog-toc-list li a:hover,
.blog-toc-list li a.active {
  color: var(--accent-cyan);
  border-left-color: var(--accent-cyan);
  padding-left: 1rem;
}

.blog-sidebar-cta {
  background: linear-gradient(135deg, rgba(0, 136, 204, 0.08), rgba(99, 102, 241, 0.08));
  border: 1px solid rgba(186, 218, 245, 0.8);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
}

.blog-sidebar-cta h4 {
  font-size: 1.05rem;
  color: #0F172A;
  margin-bottom: 0.5rem;
}

.blog-sidebar-cta p {
  font-size: 0.8rem;
  color: var(--text-muted-slate);
  line-height: 1.45;
  margin-bottom: 1.25rem;
}

/* Article Body Typography */
.article-content {
  color: #334155;
  font-size: 1.05rem;
  line-height: 1.85;
  max-width: 820px;
}

.article-lead-p {
  font-size: 1.18rem;
  line-height: 1.8;
  color: #1E293B;
  margin-bottom: 2rem;
  font-weight: 400;
  border-left: 3px solid var(--accent-cyan);
  background: rgba(224, 242, 254, 0.35);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.article-content h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #0F172A;
  margin: 3rem 0 1.25rem;
  letter-spacing: -0.01em;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.article-content h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #0F172A;
  margin: 2.25rem 0 1rem;
}

.article-content h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1E293B;
  margin: 1.75rem 0 0.75rem;
}

.article-content p {
  margin-bottom: 1.5rem;
}

.article-content ul,
.article-content ol {
  margin-bottom: 1.75rem;
  padding-left: 1.5rem;
}

.article-content li {
  margin-bottom: 0.65rem;
  line-height: 1.75;
}

.article-content strong {
  color: #0F172A;
  font-weight: 700;
}

.article-content a {
  color: var(--accent-cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: var(--transition-fast);
}

.article-content a:hover {
  color: var(--accent-royal);
}

/* Callout Boxes */
.key-takeaways-box {
  background: rgba(224, 242, 254, 0.5);
  border: 1px solid rgba(186, 218, 245, 0.8);
  border-left: 4px solid var(--accent-cyan);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  margin: 2.5rem 0;
  box-shadow: 0 10px 25px rgba(15, 42, 85, 0.04);
}

.key-takeaways-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent-cyan);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.key-takeaways-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.key-takeaways-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.55;
  margin-bottom: 0;
}

.key-takeaways-list li i {
  color: var(--accent-cyan);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.pro-tip-box {
  background: rgba(243, 232, 255, 0.5);
  border: 1px solid rgba(216, 180, 254, 0.8);
  border-left: 4px solid var(--accent-purple);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
}

.pro-tip-title {
  font-weight: 800;
  color: #7E22CE;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pro-tip-box p {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: #334155;
}

/* Code Snippet Blocks */
.code-block-wrap {
  background: #0B1120;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  margin: 2rem 0;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(15, 42, 85, 0.12);
}

.code-block-header {
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #94A3B8;
}

.code-lang-tag {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono, monospace);
  font-weight: 600;
  color: #38BDF8;
}

.code-block-pre {
  margin: 0;
  padding: 1.25rem 1.5rem;
  overflow-x: auto;
  font-family: 'Fira Code', 'Courier New', Courier, monospace;
  font-size: 0.875rem;
  line-height: 1.65;
  color: #E2E8F0;
}

.code-block-pre code {
  font-family: inherit;
}

/* Author Bio Card at footer of article */
.author-bio-box {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(186, 218, 245, 0.75);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin: 3.5rem 0 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  box-shadow: 0 10px 25px rgba(15, 42, 85, 0.05);
}

.author-bio-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 1.6rem;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(0, 136, 204, 0.3);
}

.author-bio-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 0.25rem;
}

.author-bio-role {
  font-size: 0.85rem;
  color: var(--accent-cyan);
  font-weight: 600;
  margin-bottom: 0.65rem;
}

.author-bio-desc {
  font-size: 0.9rem;
  color: var(--text-muted-slate);
  line-height: 1.55;
  margin: 0;
}

/* Related Posts Section */
.related-posts-section {
  padding: 4rem 0 6rem;
  border-top: 1px solid rgba(186, 218, 245, 0.7);
  background: rgba(240, 246, 252, 0.5);
}

@media (max-width: 992px) {
  .blog-article-grid {
    grid-template-columns: 1fr;
  }
  .blog-sidebar {
    position: static;
    order: 2;
  }
}

/* ==========================================================================
   Home Page - Contact & Consultation Section (Top of Blogs)
   ========================================================================== */
.home-contact-section {
  padding: 6.5rem 0 5.5rem;
  position: relative;
  background: radial-gradient(circle at 80% 20%, rgba(219, 234, 254, 0.6) 0%, transparent 60%),
              radial-gradient(circle at 10% 80%, rgba(233, 213, 255, 0.4) 0%, transparent 60%),
              #F0F6FC;
  border-top: 1px solid rgba(186, 218, 245, 0.65);
  border-bottom: 1px solid rgba(186, 218, 245, 0.65);
  overflow: hidden;
}

.home-contact-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3.5rem;
}

.home-contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 3.5vw, 3.5rem);
  align-items: stretch;
}

/* Left Column: Info & Trust Card */
.home-contact-info-card {
  position: relative;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(186, 218, 245, 0.85);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 3vw, 2.75rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 20px 45px rgba(15, 42, 85, 0.08);
  overflow: hidden;
}

.contact-info-glow {
  position: absolute;
  top: -80px;
  left: -80px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(0, 136, 204, 0.15) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(40px);
}

.contact-info-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #D97706;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.contact-info-title {
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 800;
  color: #0F172A;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.contact-info-desc {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Value Props / Benefit Items */
.contact-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.25rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.bg-blue-glow {
  background: rgba(0, 136, 204, 0.1);
  border: 1px solid rgba(0, 136, 204, 0.25);
  color: var(--accent-cyan);
}

.bg-purple-glow {
  background: rgba(126, 34, 206, 0.1);
  border: 1px solid rgba(126, 34, 206, 0.25);
  color: #7E22CE;
}

.bg-teal-glow {
  background: rgba(5, 150, 105, 0.1);
  border: 1px solid rgba(5, 150, 105, 0.25);
  color: #059669;
}

.benefit-item:hover .benefit-icon {
  transform: translateY(-2px) scale(1.05);
}

.benefit-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 0.2rem;
}

.benefit-text {
  font-size: 0.85rem;
  color: #64748B;
  line-height: 1.5;
  margin: 0;
}

/* Direct Channels */
.contact-direct-channels {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.channels-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.85rem;
}

.channels-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.channel-chip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #F8FAFC;
  border: 1px solid rgba(186, 218, 245, 0.7);
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  position: relative;
  transition: var(--transition-smooth);
}

.channel-chip:hover {
  background: #FFFFFF;
  border-color: var(--accent-cyan);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 42, 85, 0.05);
}

.channel-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.channel-meta {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.channel-label {
  font-size: 0.7rem;
  color: var(--text-muted-slate);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.channel-val {
  font-size: 0.82rem;
  font-weight: 700;
  color: #0F172A;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.channel-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 8px #10B981;
  position: absolute;
  top: 10px;
  right: 10px;
  animation: pulse-live 2s infinite ease-in-out;
}

@keyframes pulse-live {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
}

.channel-arrow {
  font-size: 0.75rem;
  color: var(--text-muted-slate);
  margin-left: auto;
  transition: var(--transition-smooth);
}

.channel-chip:hover .channel-arrow {
  color: var(--accent-cyan);
  transform: translate(2px, -2px);
}

/* Trust Rating Footer */
.contact-trust-footer {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #F8FAFC;
  border: 1px dashed rgba(186, 218, 245, 0.9);
  padding: 0.65rem 1rem;
  border-radius: var(--radius-sm);
}

.trust-stars {
  color: #F59E0B;
  font-size: 0.8rem;
  display: flex;
  gap: 0.15rem;
}

.trust-text {
  font-size: 0.8rem;
  color: var(--text-muted-slate);
}

.trust-text strong {
  color: #0F172A;
}

/* Right Column: Form Card */
.home-contact-form-card {
  position: relative;
  background: #FFFFFF;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(186, 218, 245, 0.85);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 3.2vw, 2.75rem);
  box-shadow: 0 25px 60px rgba(15, 42, 85, 0.1), 0 0 35px rgba(0, 136, 204, 0.06);
}

.form-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 136, 204, 0.1);
  border: 1px solid rgba(0, 136, 204, 0.25);
  color: var(--accent-cyan);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.85rem;
}

.form-card-title {
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 0.4rem;
}

.form-card-subtitle {
  font-size: 0.88rem;
  color: #475569;
  margin-bottom: 1.75rem;
  line-height: 1.5;
}

/* Form Input Groups with Icons */
.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 1rem;
  color: var(--text-muted-slate);
  font-size: 0.9rem;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.form-input.icon-padded,
.form-select.icon-padded {
  padding-left: 2.75rem;
}

.input-with-icon:focus-within .input-icon {
  color: var(--accent-cyan);
}

.required-star {
  color: #F43F5E;
}

/* Budget Selector Pills */
.budget-pills-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.budget-pill-btn {
  background: #F1F5F9;
  border: 1px solid #CBD5E1;
  border-radius: var(--radius-sm);
  color: #334155;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.55rem 0.35rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  outline: none;
}

.budget-pill-btn:hover {
  background: #E2E8F0;
  border-color: var(--accent-cyan);
  color: #0F172A;
}

.budget-pill-btn.active {
  background: linear-gradient(135deg, rgba(0, 136, 204, 0.15), rgba(99, 102, 241, 0.15));
  border-color: var(--accent-cyan);
  color: #0052CC;
  font-weight: 700;
  box-shadow: 0 0 14px rgba(0, 136, 204, 0.2);
}

/* Home Submit Button */
.btn-home-submit {
  margin-top: 0.5rem;
  padding: 0.95rem 1.75rem;
  font-size: 0.98rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.35);
  cursor: pointer;
}

.btn-home-submit i {
  transition: var(--transition-smooth);
}

.btn-home-submit:hover i {
  transform: translateX(4px) translateY(-2px);
}

.form-security-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-muted-slate);
  margin-top: 1rem;
  text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .home-contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 640px) {
  .home-contact-section {
    padding: 4.5rem 0 3.5rem;
  }
  .channels-grid {
    grid-template-columns: 1fr;
  }
  .budget-pills-row {
    grid-template-columns: 1fr 1fr;
  }
}

/* ==========================================================================
   Dedicated Contact Page & Form Design System (Light Ice-Blue Overhaul)
   ========================================================================== */

.contact-page-section {
  padding: 3rem 0 5rem;
  position: relative;
  z-index: 1;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-consultation-card {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid rgba(186, 218, 245, 0.9);
  border-radius: var(--radius-xl);
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  box-shadow: 0 20px 45px rgba(15, 42, 85, 0.07), 0 2px 8px rgba(0, 136, 204, 0.04);
  position: relative;
  overflow: hidden;
}

.contact-consultation-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-accent-cyan);
}

.contact-form-title {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 0.6rem;
  line-height: 1.25;
}

.contact-form-desc {
  font-size: 0.95rem;
  color: #475569;
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.form-group {
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: #1E293B;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.form-label .required-star {
  color: #EF4444;
  font-size: 0.9rem;
}

.form-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.form-input-icon {
  position: absolute;
  left: 1rem;
  color: #94A3B8;
  font-size: 0.95rem;
  pointer-events: none;
  transition: color 0.2s ease;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: #F8FAFC;
  border: 1.5px solid #CBD5E1;
  border-radius: var(--radius-md);
  color: #0F172A;
  font-family: var(--font-main);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  outline: none;
}

.form-input-with-icon {
  padding-left: 2.75rem;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  background: #FFFFFF;
  border-color: #0088CC;
  box-shadow: 0 0 0 4px rgba(0, 136, 204, 0.15);
}

.form-input:focus + .form-input-icon,
.form-input-wrapper:focus-within .form-input-icon {
  color: #0088CC;
}

.form-input::placeholder, .form-textarea::placeholder {
  color: #94A3B8;
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2364748B' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 14px 14px;
  padding-right: 2.5rem;
}

.form-textarea {
  resize: vertical;
  min-height: 105px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.contact-hubs-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-hubs-title {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 0.6rem;
  line-height: 1.25;
}

.location-card {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid rgba(186, 218, 245, 0.9);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: 0 15px 40px rgba(15, 42, 85, 0.06);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.location-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(15, 42, 85, 0.1);
  border-color: var(--accent-cyan);
}

.location-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 700;
  background: rgba(0, 136, 204, 0.1);
  color: #0077B6;
  border: 1px solid rgba(0, 136, 204, 0.25);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.location-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #16A34A;
  background: #F0FDF4;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.location-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 8px #22C55E;
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.location-card h3 {
  font-size: 1.28rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.location-details {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.location-details li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.55;
}

.location-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 136, 204, 0.08);
  color: #0088CC;
  flex-shrink: 0;
  font-size: 1rem;
  border: 1px solid rgba(0, 136, 204, 0.18);
}

.location-details a {
  color: #0052CC;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.location-details a:hover {
  color: #0088CC;
  text-decoration: underline;
}

.location-timings {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px dashed #CBD5E1;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.84rem;
  color: #64748B;
}

/* WhatsApp Direct Connect Card */
.whatsapp-direct-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #F0FDF4 100%);
  border: 1.5px solid rgba(34, 197, 94, 0.4);
  border-radius: var(--radius-xl);
  padding: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
  box-shadow: 0 12px 32px rgba(34, 197, 94, 0.1);
  transition: var(--transition-smooth);
}

.whatsapp-direct-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(34, 197, 94, 0.18);
  border-color: #22C55E;
}

.whatsapp-left-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.whatsapp-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
  flex-shrink: 0;
}

.whatsapp-title {
  font-weight: 800;
  font-size: 1.05rem;
  color: #0F172A;
  margin-bottom: 0.2rem;
}

.whatsapp-subtitle {
  font-size: 0.82rem;
  color: #475569;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #1EBE5D 100%);
  color: #FFFFFF !important;
  font-weight: 700;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
  transition: var(--transition-smooth);
  font-size: 0.92rem;
}

.btn-whatsapp:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.5);
  color: #FFFFFF !important;
}

/* Quick Calendar / Discovery Call Card */
.calendar-direct-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1.5px solid rgba(186, 218, 245, 0.9);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
  box-shadow: 0 12px 30px rgba(15, 42, 85, 0.05);
  transition: var(--transition-smooth);
}

.calendar-direct-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent-cyan);
  box-shadow: 0 16px 36px rgba(15, 42, 85, 0.09);
}

.calendar-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0052CC 0%, #0088CC 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 6px 18px rgba(0, 136, 204, 0.3);
  flex-shrink: 0;
}

/* Trust Badges in Form */
.trust-badges-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid #E2E8F0;
  font-size: 0.82rem;
  color: #64748B;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 500;
}

/* Responsive Grid */
@media (max-width: 992px) {
  .contact-main-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ==========================================================================
   Industry Cards & Vertical Engineering Matrix (industries.html)
   ========================================================================== */

.industry-full-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1.5px solid rgba(186, 218, 245, 0.85);
  border-radius: var(--radius-xl);
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  box-shadow: 0 15px 40px rgba(15, 42, 85, 0.06);
  display: grid;
  grid-template-columns: auto 1fr 360px;
  gap: 2.25rem;
  align-items: center;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
}

.industry-full-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0088CC, #0052CC, #6366F1);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.industry-full-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 136, 204, 0.7);
  box-shadow: 0 25px 60px rgba(0, 136, 204, 0.12);
}

.industry-full-card:hover::before {
  opacity: 1;
}

.industry-icon-huge {
  width: 76px;
  height: 76px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.industry-full-card:hover .industry-icon-huge {
  transform: scale(1.08) rotate(3deg);
}

.industry-icon-teal {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(5, 150, 105, 0.2));
  border: 1.5px solid rgba(16, 185, 129, 0.4);
  color: #059669 !important;
}

.industry-icon-blue {
  background: linear-gradient(135deg, rgba(0, 136, 204, 0.15), rgba(0, 82, 204, 0.2));
  border: 1.5px solid rgba(0, 136, 204, 0.4);
  color: #0052CC !important;
}

.industry-icon-purple {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(124, 58, 237, 0.2));
  border: 1.5px solid rgba(139, 92, 246, 0.4);
  color: #7C3AED !important;
}

.industry-icon-indigo {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.15), rgba(67, 56, 202, 0.2));
  border: 1.5px solid rgba(79, 70, 229, 0.4);
  color: #4F46E5 !important;
}

.industry-icon-amber {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(217, 119, 6, 0.2));
  border: 1.5px solid rgba(245, 158, 11, 0.4);
  color: #D97706 !important;
}

.industry-icon-rose {
  background: linear-gradient(135deg, rgba(244, 63, 94, 0.15), rgba(225, 29, 72, 0.2));
  border: 1.5px solid rgba(244, 63, 94, 0.4);
  color: #E11D48 !important;
}

.industry-info h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 0.65rem;
  letter-spacing: -0.01em;
}

.industry-info p {
  color: #334155;
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.compliance-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.compliance-tag {
  background: #F0FDF4;
  color: #166534;
  border: 1px solid #BBF7D0;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  box-shadow: 0 2px 6px rgba(22, 101, 52, 0.04);
}

.industry-solutions-box {
  background: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  border-radius: 16px;
  padding: 1.4rem;
  box-shadow: 0 4px 14px rgba(15, 42, 85, 0.03);
}

.industry-solutions-box h4 {
  font-size: 0.92rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 0.85rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.industry-solutions-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.industry-solutions-box li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: #334155;
  line-height: 1.5;
  font-weight: 500;
}

.industry-solutions-box li i {
  color: #0088CC;
  margin-top: 3px;
  font-size: 0.9rem;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .industry-full-card {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

@media (max-width: 600px) {
  .form-row-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-consultation-card {
    padding: 1.5rem;
  }
  .whatsapp-direct-card, .calendar-direct-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .btn-whatsapp {
    width: 100%;
    justify-content: center;
  }
}



