/* ==========================================================================
   THE TECHPULSE — Enterprise Design System
   Brand: THE TECHPULSE | Powering Performance. Enabling Progress.
   Primary: Technology That Works for Your Business.
   ========================================================================== */

:root {
  /* Brand Color Palette */
  --tp-navy-950: #060b19;
  --tp-navy-900: #0a1128;
  --tp-navy-800: #101c3d;
  --tp-navy-700: #192a56;
  --tp-navy-600: #243a73;
  
  --tp-slate-900: #0f172a;
  --tp-slate-800: #1e293b;
  --tp-slate-700: #334155;
  --tp-slate-600: #475569;
  --tp-slate-500: #64748b;
  --tp-slate-400: #94a3b8;
  --tp-slate-300: #cbd5e1;
  --tp-slate-200: #e2e8f0;
  --tp-slate-100: #f1f5f9;
  --tp-slate-50:  #f8fafc;
  
  --tp-blue-600: #2563eb;
  --tp-blue-700: #1d4ed8;
  --tp-blue-500: #3b82f6;
  --tp-blue-50:  #eff6ff;
  --tp-cyan-500: #06b6d4;
  --tp-emerald-500: #10b981;
  
  /* Typography */
  --tp-font-sans: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --tp-font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  
  /* Spacing Scale (8px system) */
  --tp-space-1: 4px;
  --tp-space-2: 8px;
  --tp-space-3: 12px;
  --tp-space-4: 16px;
  --tp-space-5: 20px;
  --tp-space-6: 24px;
  --tp-space-8: 32px;
  --tp-space-10: 40px;
  --tp-space-12: 48px;
  --tp-space-16: 64px;
  --tp-space-20: 80px;
  --tp-space-24: 96px;
  --tp-space-32: 128px;
  
  /* Radii */
  --tp-radius-sm: 6px;
  --tp-radius-md: 10px;
  --tp-radius-lg: 16px;
  --tp-radius-xl: 24px;
  --tp-radius-pill: 9999px;
  
  /* Borders & Shadows */
  --tp-border-subtle: 1px solid rgba(15, 23, 42, 0.08);
  --tp-border-dark: 1px solid rgba(255, 255, 255, 0.1);
  --tp-border-focus: 1px solid var(--tp-blue-600);
  
  --tp-shadow-subtle: 0 1px 3px 0 rgba(0, 0, 0, 0.04), 0 1px 2px -1px rgba(0, 0, 0, 0.04);
  --tp-shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --tp-shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.07), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --tp-shadow-dropdown: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.03);
  
  /* Transitions */
  --tp-transition-fast: 150ms cubic-bezier(0.16, 1, 0.3, 1);
  --tp-transition-base: 250ms cubic-bezier(0.16, 1, 0.3, 1);
  --tp-transition-smooth: 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base resets & typography */
*, *::before, *::after {
  box-sizing: border-box;
}

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

body {
  font-family: var(--tp-font-sans);
  color: var(--tp-slate-700);
  background-color: #ffffff;
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--tp-font-sans);
  color: var(--tp-navy-900);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

p {
  margin-bottom: 0.85rem;
  color: var(--tp-slate-600);
  font-size: 0.975rem;
  line-height: 1.55;
}

a {
  color: var(--tp-blue-600);
  text-decoration: none;
  transition: color var(--tp-transition-fast);
}

a:hover {
  color: var(--tp-blue-700);
}

/* Eyebrow Label */
.tp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tp-blue-600);
  margin-bottom: 0.5rem;
}

.tp-eyebrow.text-light {
  color: #60a5fa !important;
}

.tp-eyebrow-pill {
  background: var(--tp-blue-50);
  color: var(--tp-blue-700);
  border: 1px solid rgba(37, 99, 235, 0.2);
  padding: 4px 12px;
  border-radius: var(--tp-radius-pill);
}

.tp-eyebrow-pill.dark {
  background: rgba(37, 99, 235, 0.15);
  color: #93c5fd;
  border-color: rgba(96, 165, 250, 0.25);
}

/* Button System */
.tp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--tp-font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: var(--tp-radius-md);
  transition: all var(--tp-transition-base);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}

.tp-btn-primary {
  background-color: var(--tp-navy-900);
  color: #ffffff !important;
  box-shadow: 0 2px 4px rgba(10, 17, 40, 0.12);
}

.tp-btn-primary:hover {
  background-color: var(--tp-blue-600);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(37, 99, 235, 0.25);
}

.tp-btn-secondary {
  background-color: #ffffff;
  color: var(--tp-navy-900) !important;
  border: 1px solid var(--tp-slate-300);
}

.tp-btn-secondary:hover {
  background-color: var(--tp-slate-50);
  border-color: var(--tp-slate-400);
  color: var(--tp-blue-600) !important;
  transform: translateY(-2px);
}

.tp-btn-accent {
  background-color: var(--tp-blue-600);
  color: #ffffff !important;
}

.tp-btn-accent:hover {
  background-color: var(--tp-blue-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
}

.tp-btn-dark-outline {
  background-color: transparent;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.tp-btn-dark-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.tp-btn-sm {
  padding: 6px 12px;
  font-size: 0.8rem;
}

.tp-btn-lg {
  padding: 10px 22px;
  font-size: 0.95rem;
  border-radius: var(--tp-radius-md);
}

/* ==========================================================================
   HEADER & NAVBAR DESIGN SYSTEM (PREMIUM ENTERPRISE)
   ========================================================================== */

.tp-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  background-color: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0;
}

.tp-header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px -10px rgba(10, 17, 40, 0.08), 0 1px 3px 0 rgba(0, 0, 0, 0.02);
  border-bottom-color: rgba(15, 23, 42, 0.12);
}

.tp-navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
}

/* Brand Logo */
.tp-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none !important;
  color: var(--tp-navy-900) !important;
}

.tp-logo-img {
  height: 44px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.tp-logo:hover .tp-logo-img {
  transform: translateY(-1px) scale(1.02);
}

.tp-logo-mark {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #0a1128 0%, #1e40af 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  box-shadow: 0 4px 10px rgba(30, 64, 175, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.2s ease;
}

.tp-logo:hover .tp-logo-mark {
  transform: translateY(-1px) scale(1.02);
}

.tp-logo-text {
  display: flex;
  flex-direction: column;
}

.tp-logo-title {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--tp-navy-900);
  line-height: 1.1;
}

.tp-logo-subtitle {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tp-blue-600);
}

/* Desktop Navigation List */
.tp-nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.tp-nav-item {
  position: relative;
}

.tp-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.925rem;
  font-weight: 600;
  color: #334155 !important;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.2s ease;
  text-decoration: none !important;
}

.tp-nav-link:hover, .tp-nav-link.active {
  color: #1e40af !important;
  background-color: #f1f5f9;
}

.tp-nav-link svg.tp-chevron {
  transition: transform 0.25s ease;
}

.tp-nav-item:hover .tp-nav-link svg.tp-chevron {
  transform: rotate(180deg);
}

/* Rich Mega / Dropdown Menus */
.tp-dropdown-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 16px;
  box-shadow: 0 20px 40px -15px rgba(10, 17, 40, 0.14), 0 0 0 1px rgba(0, 0, 0, 0.02);
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1060;
}

.tp-dropdown-panel::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}

.tp-nav-item:hover .tp-dropdown-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(4px);
}

.tp-dropdown-solutions {
  width: 580px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.tp-dropdown-industries {
  width: 540px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.tp-drop-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  text-decoration: none !important;
  transition: all 0.2s ease;
  background-color: transparent;
  border: 1px solid transparent;
}

.tp-drop-card:hover {
  background-color: #f8fafc;
  border-color: rgba(37, 99, 235, 0.15);
  transform: translateY(-1px);
}

.tp-drop-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #eff6ff;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.tp-drop-card:hover .tp-drop-icon {
  background: #2563eb;
  color: #ffffff;
}

.tp-drop-info {
  display: flex;
  flex-direction: column;
}

.tp-drop-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 2px;
}

.tp-drop-desc {
  font-size: 0.775rem;
  color: #64748b;
  line-height: 1.35;
  margin: 0;
}

.tp-drop-footer {
  grid-column: 1 / -1;
  border-top: 1px solid #e2e8f0;
  padding-top: 10px;
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tp-drop-footer-link {
  font-size: 0.825rem;
  font-weight: 700;
  color: #2563eb !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.tp-drop-footer-link:hover {
  color: #1d4ed8 !important;
  gap: 9px;
}

/* Header Action Right */
.tp-header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tp-header-phone-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f172a !important;
  text-decoration: none !important;
  padding: 8px 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 9999px;
  transition: all 0.2s ease;
}

.tp-header-phone-pill:hover {
  background: #eff6ff;
  border-color: rgba(37, 99, 235, 0.3);
  color: #2563eb !important;
}

.tp-header-phone-pill svg {
  color: #2563eb;
}

.tp-btn-header-cta {
  background: linear-gradient(135deg, #0a1128 0%, #1e3a8a 100%);
  color: #ffffff !important;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(10, 17, 40, 0.15);
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.tp-btn-header-cta:hover {
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.3);
}

/* Mobile Offcanvas Drawer */
.tp-offcanvas {
  background-color: #ffffff;
  width: 340px !important;
  border-left: 1px solid #e2e8f0;
}

.tp-mobile-nav-group {
  margin-bottom: 12px;
}

.tp-mobile-group-title {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94a3b8;
  padding: 8px 12px 4px 12px;
}

.tp-mobile-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1e293b !important;
  border-radius: 8px;
  text-decoration: none !important;
  transition: all 0.15s ease;
}

.tp-mobile-link:hover, .tp-mobile-link.active {
  background: #f1f5f9;
  color: #2563eb !important;
}

.tp-mobile-link-sub {
  padding-left: 36px;
  font-size: 0.875rem;
  color: #475569 !important;
}

.tp-mobile-link-sub:hover {
  color: #2563eb !important;
}

/* Sections & Spacing */
.tp-section {
  padding: 44px 0;
  position: relative;
}

.tp-section-sm {
  padding: 24px 0;
}

.tp-section-lg {
  padding: 56px 0;
}

.tp-bg-light {
  background-color: var(--tp-slate-50);
  border-top: var(--tp-border-subtle);
  border-bottom: var(--tp-border-subtle);
}

.tp-bg-dark {
  background-color: var(--tp-navy-950);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.tp-bg-dark h1, .tp-bg-dark h2, .tp-bg-dark h3, .tp-bg-dark h4 {
  color: #ffffff;
}

.tp-bg-dark p {
  color: var(--tp-slate-300);
}

/* Sector Strip */
.tp-sector-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.tp-sector-tag {
  background-color: #ffffff;
  border: 1px solid var(--tp-slate-200);
  color: var(--tp-slate-700);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--tp-radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all var(--tp-transition-fast);
}

.tp-sector-tag:hover {
  border-color: var(--tp-blue-600);
  color: var(--tp-blue-600);
  background-color: var(--tp-blue-50);
}

/* ==========================================================================
   ADVANCED DESIGN TOKENS & VISUAL UTILITIES
   ========================================================================== */

.tp-text-gradient {
  background: linear-gradient(135deg, #0a1128 0%, #1e40af 40%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.tp-text-gradient-accent {
  background: linear-gradient(135deg, #60a5fa 0%, #38bdf8 50%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.tp-text-gradient-white {
  background: linear-gradient(180deg, #ffffff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Ambient Radial Glows & Light Hero Design */
.tp-hero-wrapper {
  position: relative;
  overflow: hidden;
  padding-top: 36px;
  padding-bottom: 32px;
  background: radial-gradient(circle at 85% 15%, rgba(37, 99, 235, 0.08) 0%, transparent 45%),
              radial-gradient(circle at 10% 85%, rgba(6, 182, 212, 0.06) 0%, transparent 40%),
              linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  color: var(--tp-slate-700);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.tp-hero-wrapper h1 {
  color: var(--tp-navy-950) !important;
}

.tp-hero-wrapper h2 {
  color: var(--tp-blue-600) !important;
}

.tp-hero-wrapper p {
  color: var(--tp-slate-600) !important;
}

.tp-hero-wrapper .tp-sector-tag {
  background-color: #ffffff;
  border: 1px solid var(--tp-slate-200);
  color: var(--tp-slate-700);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.tp-hero-wrapper .tp-sector-tag:hover {
  background-color: var(--tp-blue-50);
  border-color: var(--tp-blue-600);
  color: var(--tp-blue-700);
}

.tp-ambient-glow-dark {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, rgba(14, 165, 233, 0.04) 50%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 1;
}

/* ==========================================================================
   ADVANCED HERO CONSOLE / NEXUS VISUAL (NO BORING DASHBOARD)
   ========================================================================== */

.tp-nexus-console {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 20px 40px -12px rgba(10, 17, 40, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tp-nexus-console:hover {
  box-shadow: 0 25px 50px -15px rgba(37, 99, 235, 0.15), 0 0 0 1px rgba(37, 99, 235, 0.2);
}

.tp-nexus-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  margin-bottom: 12px;
  border-bottom: 1px solid #f1f5f9;
}

.tp-nexus-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1e40af;
  background: #eff6ff;
  border: 1px solid rgba(37, 99, 235, 0.2);
  padding: 4px 10px;
  border-radius: 9999px;
}

.tp-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: tpPulse 2s infinite;
}

@keyframes tpPulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.tp-nexus-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.tp-nexus-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.tp-nexus-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: #2563eb;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.tp-nexus-card:hover {
  border-color: rgba(37, 99, 235, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px -4px rgba(37, 99, 235, 0.08);
}

.tp-nexus-card:hover::before {
  opacity: 1;
}

.tp-nexus-card-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #eff6ff;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  transition: all 0.2s ease;
}

.tp-nexus-card:hover .tp-nexus-card-icon {
  background: #2563eb;
  color: #ffffff;
}

.tp-nexus-card-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2px;
}

.tp-nexus-card-desc {
  font-size: 0.72rem;
  color: #64748b;
  margin: 0;
  line-height: 1.3;
}

.tp-nexus-center-strip {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #0a1128 0%, #1e3a8a 100%);
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  box-shadow: 0 8px 20px -4px rgba(10, 17, 40, 0.3);
}

.tp-nexus-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid #f1f5f9;
}

.tp-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #059669;
  background: #ecfdf5;
  border: 1px solid rgba(5, 150, 105, 0.2);
  padding: 3px 8px;
  border-radius: 9999px;
}

/* Hero Visual Stage with Light Modern 3D Tech Image & Floating Badges */
.tp-hero-stage {
  position: relative;
  border-radius: 18px;
  background: #ffffff;
  padding: 10px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 20px 45px -12px rgba(10, 17, 40, 0.09), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  overflow: visible;
  transition: box-shadow 0.3s ease;
}

.tp-hero-stage:hover {
  box-shadow: 0 25px 55px -12px rgba(37, 99, 235, 0.14), 0 0 0 1px rgba(37, 99, 235, 0.15);
}

.tp-hero-img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.tp-hero-img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.tp-hero-stage:hover .tp-hero-img {
  transform: scale(1.02);
}

.tp-hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 60%, rgba(248, 250, 252, 0.4) 100%);
  pointer-events: none;
}

/* Floating Glass Stat Badges */
.tp-hero-float-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 12px 28px -6px rgba(10, 17, 40, 0.12), 0 0 0 1px rgba(37, 99, 235, 0.08);
  padding: 8px 12px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: tpFloat 4s ease-in-out infinite alternate;
}

.tp-hero-float-badge:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 32px -6px rgba(37, 99, 235, 0.2);
}

.tp-float-badge-top-left {
  top: 14px;
  left: -12px;
  animation-delay: 0s;
}

.tp-float-badge-bottom-right {
  bottom: 20px;
  right: -12px;
  animation-delay: 2s;
}

.tp-float-badge-top-right {
  top: 14px;
  right: -10px;
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(37, 99, 235, 0.2);
  color: var(--tp-navy-900);
  animation-delay: 1s;
}

@keyframes tpFloat {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-6px); }
}

.tp-float-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #eff6ff;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.tp-float-badge-top-right .tp-float-icon {
  background: rgba(37, 99, 235, 0.3);
  color: #60a5fa;
}

.tp-float-val {
  font-size: 0.85rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
}

.tp-float-badge-top-right .tp-float-val {
  color: #ffffff;
}

.tp-float-sub {
  font-size: 0.68rem;
  font-weight: 600;
  color: #64748b;
  line-height: 1.2;
}

.tp-float-badge-top-right .tp-float-sub {
  color: #94a3b8;
}

/* Quick Pillar Chips below Hero Visual */
.tp-hero-pillar-chips {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 10px;
}

.tp-hero-pillar-chip {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 8px 6px;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #1e293b;
  text-decoration: none !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  transition: all 0.2s ease;
}

.tp-hero-pillar-chip:hover {
  background: #eff6ff;
  border-color: #2563eb;
  color: #1d4ed8 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px -2px rgba(37, 99, 235, 0.15);
}

.tp-hero-pillar-chip svg {
  color: #2563eb;
}

/* Image Mockup Panels */
.tp-image-mockup-frame {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px -10px rgba(10, 17, 40, 0.35);
  background: #0f172a;
}

.tp-image-mockup-frame img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.tp-image-mockup-frame:hover img {
  transform: scale(1.02);
}

/* ==========================================================================
   ELEVATED CAPABILITY CARDS (SECTION 02)
   ========================================================================== */

.tp-cap-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 20px 18px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px -2px rgba(10, 17, 40, 0.03);
}

.tp-cap-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2563eb 0%, #38bdf8 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tp-cap-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: 0 12px 24px -6px rgba(37, 99, 235, 0.1);
}

.tp-cap-card:hover::before {
  opacity: 1;
}

.tp-cap-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: all 0.25s ease;
}

.tp-cap-card:hover .tp-cap-icon-box {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: #ffffff;
  transform: scale(1.05);
}

.tp-cap-num {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #64748b;
  margin-bottom: 4px;
  display: block;
}

.tp-cap-title {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--tp-navy-900);
  line-height: 1.25;
}

.tp-cap-desc {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 14px;
  line-height: 1.45;
  flex-grow: 1;
}

.tp-cap-link {
  font-size: 0.825rem;
  font-weight: 700;
  color: #2563eb !important;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s ease;
}

.tp-cap-card:hover .tp-cap-link {
  gap: 8px;
  color: #1d4ed8 !important;
}

/* ==========================================================================
   MODERN INTERACTIVE BENTO GRID (SECTION 03 ONE PARTNER)
   ========================================================================== */

.tp-bento-hub {
  position: relative;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 15px 30px -10px rgba(10, 17, 40, 0.05);
}

.tp-hub-center-glow {
  background: linear-gradient(135deg, #0a1128 0%, #1e3a8a 100%);
  color: #ffffff;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  box-shadow: 0 10px 25px -4px rgba(30, 58, 138, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.tp-hub-center-glow::after {
  content: '';
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

.tp-hub-satellite-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px 10px;
  text-align: center;
  transition: all 0.25s ease;
}

.tp-hub-satellite-card:hover {
  background: #ffffff;
  border-color: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px -4px rgba(37, 99, 235, 0.1);
}

.tp-hub-satellite-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #0f172a;
  margin-top: 6px;
}

/* Workflow Step Visualizer */
.tp-workflow-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 20px 0;
  overflow-x: auto;
  padding: 6px 2px 12px 2px;
}

.tp-workflow-step {
  flex: 1;
  min-width: 110px;
  background: #ffffff;
  border: 1px solid var(--tp-slate-200);
  border-radius: var(--tp-radius-md);
  padding: 12px 8px;
  text-align: center;
  position: relative;
  transition: all var(--tp-transition-base);
  box-shadow: var(--tp-shadow-subtle);
}

.tp-workflow-step:hover {
  border-color: var(--tp-blue-600);
  transform: translateY(-2px);
  box-shadow: var(--tp-shadow-card);
}

.tp-workflow-step-num {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--tp-blue-600);
  background: var(--tp-blue-50);
  width: 22px;
  height: 22px;
  line-height: 22px;
  border-radius: var(--tp-radius-pill);
  margin: 0 auto 6px auto;
}

.tp-workflow-step-name {
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--tp-navy-900);
  margin: 0;
}

.tp-workflow-arrow {
  color: var(--tp-slate-400);
  font-weight: 900;
  font-size: 1.1rem;
  user-select: none;
}

/* Module Badges Grid */
.tp-module-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.tp-module-item {
  background: #ffffff;
  border: 1px solid var(--tp-slate-200);
  border-radius: var(--tp-radius-md);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--tp-slate-800);
  transition: all var(--tp-transition-fast);
}

.tp-module-item:hover {
  background: var(--tp-slate-50);
  border-color: var(--tp-blue-600);
  color: var(--tp-blue-700);
  transform: translateX(3px);
}

.tp-module-icon {
  width: 24px;
  height: 24px;
  border-radius: var(--tp-radius-sm);
  background: var(--tp-blue-50);
  color: var(--tp-blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.8rem;
}

/* Common Enterprise Capabilities Matrix */
.tp-capability-matrix {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
}

.tp-cap-matrix-item {
  background: #ffffff;
  border: var(--tp-border-subtle);
  border-radius: var(--tp-radius-md);
  padding: 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: all var(--tp-transition-base);
}

.tp-cap-matrix-item:hover {
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: var(--tp-shadow-card);
  transform: translateY(-2px);
}

.tp-matrix-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--tp-radius-md);
  background: var(--tp-slate-100);
  color: var(--tp-navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--tp-transition-fast);
}

.tp-cap-matrix-item:hover .tp-matrix-icon {
  background: var(--tp-blue-600);
  color: #ffffff;
}

.tp-matrix-title {
  font-size: 0.925rem;
  font-weight: 700;
  color: var(--tp-navy-900);
  margin-bottom: 2px;
}

.tp-matrix-sub {
  font-size: 0.8rem;
  color: var(--tp-slate-500);
  margin: 0;
}

/* SaaS Tiered Architecture Visual */
.tp-saas-arch {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--tp-radius-lg);
  padding: 20px;
}

.tp-arch-layer {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--tp-radius-md);
  padding: 12px 16px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--tp-transition-fast);
}

.tp-arch-layer:hover {
  background: rgba(37, 99, 235, 0.15);
  border-color: rgba(96, 165, 250, 0.3);
}

.tp-arch-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.tp-arch-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.tp-arch-tag {
  font-size: 0.72rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.1);
  color: #93c5fd;
  padding: 3px 8px;
  border-radius: var(--tp-radius-pill);
}

/* Industry Tabs System */
.tp-industry-nav {
  display: flex;
  background: var(--tp-slate-100);
  padding: 4px;
  border-radius: var(--tp-radius-md);
  gap: 4px;
  margin-bottom: 18px;
  border: var(--tp-border-subtle);
}

.tp-ind-btn {
  flex: 1;
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 700;
  border: none;
  background: transparent;
  color: var(--tp-slate-600);
  border-radius: var(--tp-radius-sm);
  transition: all var(--tp-transition-fast);
  cursor: pointer;
  text-align: center;
}

.tp-ind-btn.active {
  background: #ffffff;
  color: var(--tp-navy-900);
  box-shadow: var(--tp-shadow-subtle);
}

.tp-industry-panel {
  display: none;
  background: #ffffff;
  border: var(--tp-border-subtle);
  border-radius: var(--tp-radius-lg);
  padding: 24px;
  box-shadow: var(--tp-shadow-card);
}

.tp-industry-panel.active {
  display: block;
  animation: tpFadeIn 0.3s ease;
}

/* ==========================================================================
   WORKFLOW PROGRESS ENGINE (SECTION 04)
   ========================================================================== */

.tp-workflow-dark-section {
  position: relative;
  background: linear-gradient(180deg, rgba(6, 11, 25, 0.90) 0%, rgba(10, 17, 40, 0.94) 100%), url('../img/workflow-bg.jpg') center center / cover no-repeat;
  color: #ffffff;
  overflow: hidden;
}

.tp-workflow-dark-section h2, .tp-workflow-dark-section h5 {
  color: #ffffff !important;
}

.tp-workflow-dark-section p {
  color: #cbd5e1 !important;
}

.tp-workflow-pipeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin: 20px 0;
  position: relative;
}

.tp-workflow-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px 10px;
  text-align: center;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.02);
}

.tp-workflow-dark-section .tp-workflow-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.tp-workflow-card:hover {
  border-color: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px -4px rgba(37, 99, 235, 0.1);
}

.tp-workflow-dark-section .tp-workflow-card:hover {
  background: rgba(37, 99, 235, 0.18);
  border-color: rgba(96, 165, 250, 0.5);
  box-shadow: 0 12px 24px -4px rgba(37, 99, 235, 0.25);
}

.tp-workflow-step-badge {
  font-size: 0.65rem;
  font-weight: 800;
  color: #2563eb;
  background: #eff6ff;
  display: inline-block;
  padding: 2px 8px;
  border-radius: 9999px;
  margin-bottom: 8px;
}

.tp-workflow-dark-section .tp-workflow-step-badge {
  background: rgba(37, 99, 235, 0.35);
  color: #93c5fd;
  border: 1px solid rgba(96, 165, 250, 0.3);
}

.tp-workflow-step-name {
  font-size: 0.85rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 3px;
}

.tp-workflow-dark-section .tp-workflow-step-name {
  color: #ffffff;
}

.tp-workflow-step-desc {
  font-size: 0.72rem;
  color: #64748b;
  margin: 0;
  line-height: 1.35;
}

.tp-workflow-dark-section .tp-workflow-step-desc {
  color: #94a3b8;
}

.tp-workflow-dark-section .tp-module-box {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.tp-workflow-dark-section .tp-module-pill {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #e2e8f0;
}

.tp-workflow-dark-section .tp-module-pill:hover {
  background: rgba(37, 99, 235, 0.3);
  border-color: #60a5fa;
  color: #ffffff;
}

/* Module Pills Grid */
.tp-module-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tp-module-pill {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #334155;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.tp-module-pill:hover {
  background: #eff6ff;
  border-color: #93c5fd;
  color: #1e40af;
  transform: translateY(-1px);
}

.tp-pill-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #2563eb;
}

/* ==========================================================================
   ENTERPRISE STANDARDS BENTO MATRIX (SECTION 05)
   ========================================================================== */

.tp-bento-matrix {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.tp-bento-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 18px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  display: flex;
  flex-direction: column;
}

.tp-bento-card.highlight {
  background: linear-gradient(135deg, #0a1128 0%, #1e3a8a 100%);
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 10px 25px -5px rgba(30, 58, 138, 0.3);
}

.tp-bento-card.highlight h3,
.tp-bento-card.highlight p {
  color: #ffffff !important;
}

.tp-bento-card:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: 0 12px 24px -6px rgba(37, 99, 235, 0.1);
}

.tp-bento-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #eff6ff;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: all 0.2s ease;
}

.tp-bento-card:hover .tp-bento-icon {
  background: #2563eb;
  color: #ffffff;
  transform: scale(1.05);
}

.tp-bento-title {
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
}

.tp-bento-desc {
  font-size: 0.825rem;
  color: #64748b;
  margin-bottom: 0;
  line-height: 1.4;
}

/* ==========================================================================
   ADVANCED SAAS CLOUD TERMINAL (SECTION 06 DARK THEME)
   ========================================================================== */

.tp-saas-terminal {
  background: #030712;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.6);
}

.tp-terminal-top {
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tp-terminal-dots {
  display: flex;
  gap: 5px;
}

.tp-terminal-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.tp-terminal-body {
  padding: 16px;
}

.tp-terminal-stack-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s ease;
}

.tp-terminal-stack-item:hover {
  background: rgba(37, 99, 235, 0.15);
  border-color: rgba(96, 165, 250, 0.3);
  transform: translateX(3px);
}

.tp-terminal-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tp-terminal-badge {
  font-family: var(--tp-font-mono);
  font-size: 0.72rem;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.2);
  padding: 2px 7px;
  border-radius: 4px;
}

/* ==========================================================================
   MODERN SECTOR VERTICAL PANELS (SECTION 07)
   ========================================================================== */

.tp-sector-highlight-card {
  background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
  border: 1px solid #dbeafe;
  border-radius: 14px;
  padding: 18px;
}

/* ==========================================================================
   HARDWARE LIFECYCLE PIPELINE (SECTION 08)
   ========================================================================== */

.tp-hw-journey {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 20px 0;
  position: relative;
}

.tp-journey-step {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 18px 16px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.02);
}

.tp-journey-step:hover {
  transform: translateY(-3px);
  border-color: #2563eb;
  box-shadow: 0 10px 20px -4px rgba(37, 99, 235, 0.1);
}

.tp-journey-step-tag {
  font-size: 0.65rem;
  font-weight: 800;
  color: #2563eb;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: #eff6ff;
  display: inline-block;
  padding: 3px 8px;
  border-radius: 9999px;
  margin-bottom: 8px;
}

.tp-journey-step-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}

/* Offshore Engagement Cards */
.tp-engage-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--tp-radius-md);
  padding: 20px;
  height: 100%;
  transition: all var(--tp-transition-smooth);
}

.tp-engage-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(96, 165, 250, 0.4);
  transform: translateY(-3px);
}

/* Why THE TECHPULSE Accordion */
.tp-diff-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tp-diff-item {
  border: var(--tp-border-subtle);
  border-radius: var(--tp-radius-md);
  padding: 16px 18px;
  background: #ffffff;
  transition: all var(--tp-transition-base);
  cursor: pointer;
}

.tp-diff-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tp-diff-num {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--tp-blue-600);
  margin-right: 12px;
}

.tp-diff-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--tp-navy-900);
  margin: 0;
  flex-grow: 1;
}

.tp-diff-body {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--tp-slate-100);
  color: var(--tp-slate-600);
  font-size: 0.9rem;
}

/* Case Study Featured Card */
.tp-case-featured {
  background: #ffffff;
  border: var(--tp-border-subtle);
  border-radius: var(--tp-radius-lg);
  overflow: hidden;
  box-shadow: var(--tp-shadow-card);
  transition: all var(--tp-transition-base);
}

.tp-case-featured:hover {
  box-shadow: var(--tp-shadow-hover);
}

.tp-case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.tp-case-meta-box {
  background: var(--tp-slate-50);
  border: 1px solid var(--tp-slate-200);
  border-radius: var(--tp-radius-sm);
  padding: 10px 12px;
}

.tp-case-meta-label {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--tp-slate-500);
  margin-bottom: 2px;
}

.tp-case-meta-val {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--tp-navy-900);
  margin: 0;
}

/* Final CTA Section */
.tp-cta-box {
  background: linear-gradient(135deg, var(--tp-navy-950) 0%, var(--tp-navy-900) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--tp-radius-lg);
  padding: 40px 32px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.tp-cta-box::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

/* Enterprise Footer */
.tp-footer {
  background-color: var(--tp-navy-950);
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 44px 0 20px 0;
  font-size: 0.9rem;
}

.tp-footer h5 {
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.tp-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tp-footer-links li {
  margin-bottom: 8px;
}

.tp-footer-links a {
  color: var(--tp-slate-400);
  font-size: 0.875rem;
  transition: all var(--tp-transition-fast);
}

.tp-footer-links a:hover {
  color: #ffffff;
  padding-left: 3px;
}

.tp-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 28px;
  padding-top: 18px;
  font-size: 0.825rem;
  color: var(--tp-slate-500);
}

/* Page Hero Header for Subpages */
.tp-page-hero {
  background: linear-gradient(180deg, var(--tp-slate-50) 0%, #ffffff 100%);
  border-bottom: var(--tp-border-subtle);
  padding: 40px 0 32px 0;
}

.tp-page-hero.dark {
  background: linear-gradient(180deg, var(--tp-navy-950) 0%, var(--tp-navy-900) 100%);
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 0 32px 0;
}

.tp-page-hero.dark h1 {
  color: #ffffff;
}

.tp-page-hero.dark p {
  color: var(--tp-slate-300);
}

/* Breadcrumbs */
.tp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--tp-slate-500);
  margin-bottom: 10px;
}

.tp-breadcrumb a {
  color: var(--tp-slate-500);
}

.tp-breadcrumb a:hover {
  color: var(--tp-blue-600);
}

.tp-breadcrumb .sep {
  color: var(--tp-slate-400);
}

/* Form Styles */
.tp-form-group {
  margin-bottom: 14px;
}

.tp-form-label {
  display: block;
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--tp-navy-900);
  margin-bottom: 6px;
}

.tp-form-control, .tp-form-select {
  width: 100%;
  padding: 9px 12px;
  font-family: var(--tp-font-sans);
  font-size: 0.9rem;
  color: var(--tp-slate-800);
  background-color: #ffffff;
  border: 1px solid var(--tp-slate-300);
  border-radius: var(--tp-radius-md);
  transition: all var(--tp-transition-fast);
}

.tp-form-control:focus, .tp-form-select:focus {
  outline: none;
  border-color: var(--tp-blue-600);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.tp-form-control.is-invalid, .tp-form-select.is-invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.tp-invalid-feedback {
  font-size: 0.75rem;
  color: #ef4444;
  margin-top: 3px;
  display: none;
}

.tp-form-control.is-invalid ~ .tp-invalid-feedback,
.tp-form-select.is-invalid ~ .tp-invalid-feedback {
  display: block;
}

/* Delivery Timeline on About Page */
.tp-timeline {
  position: relative;
  padding-left: 28px;
}

.tp-timeline::before {
  content: '';
  position: absolute;
  left: 9px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--tp-slate-200);
}

.tp-timeline-item {
  position: relative;
  margin-bottom: 24px;
}

.tp-timeline-item:last-child {
  margin-bottom: 0;
}

.tp-timeline-dot {
  position: absolute;
  left: -28px;
  top: 3px;
  width: 20px;
  height: 20px;
  border-radius: var(--tp-radius-pill);
  background: #ffffff;
  border: 2px solid var(--tp-blue-600);
  color: var(--tp-blue-600);
  font-size: 0.65rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Keyframes */
@keyframes tpFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .tp-section { padding: 36px 0; }
  .tp-section-lg { padding: 44px 0; }
  .tp-hw-journey { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .tp-cta-box { padding: 28px 20px; }
  .tp-case-grid { grid-template-columns: 1fr; gap: 8px; }
  .tp-workflow-pipeline { grid-template-columns: repeat(3, 1fr); gap: 8px; }
}

@media (max-width: 767px) {
  .tp-section { padding: 28px 0; }
  .tp-section-sm { padding: 18px 0; }
  .tp-hero-wrapper { padding-top: 16px; padding-bottom: 16px; }
  .tp-hw-journey { grid-template-columns: 1fr; gap: 8px; }
  .tp-workflow-pipeline { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .tp-industry-nav { flex-direction: column; gap: 3px; }
  .tp-industry-panel { padding: 16px 12px; }
  .tp-bento-hub { padding: 14px 10px; }
  .tp-bento-matrix { grid-template-columns: 1fr; gap: 10px; }
  .tp-footer { padding: 30px 0 16px 0; }
  .tp-hero-trust-bar { flex-direction: column; align-items: flex-start; gap: 10px; }
}
