﻿/* ==========================================================================
   TECOGNIX TECHNOLOGIES — HUMAN-DESIGNED ENTERPRISE COMPONENTS & LAYOUTS
   Editorial • High Photography Density • Intentional Whitespace • Asymmetric
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. FIXED SITE HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 1000;
  transition: height var(--speed-fast), background-color var(--speed-fast), box-shadow var(--speed-fast);
}

.site-header.header-scrolled {
  height: var(--header-height-scrolled);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
  border-bottom-color: var(--border-medium);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  position: relative;
}

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

.brand-logo img {
  height: 84px;
  max-height: 84px;
  width: auto;
  object-fit: contain;
  transition: transform var(--speed-fast), height var(--speed-fast);
}

.site-header.header-scrolled .brand-logo img {
  height: 64px;
  max-height: 64px;
}

.brand-logo:hover img {
  transform: scale(1.03);
}

/* Nav Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  height: 100%;
}

.nav-link-item {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-link-item.dropdown {
  position: static;
}

.nav-link-btn {
  font-family: var(--font-stylish);
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--text-pure);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: all var(--speed-instant);
}

.nav-link-btn:hover,
.nav-link-btn.active,
.nav-link-item:hover .nav-link-btn {
  color: var(--accent-primary);
  background: var(--bg-subtle-tint);
}

.nav-link-btn svg.chevron {
  transition: transform var(--speed-fast);
  color: var(--text-muted);
}

.nav-link-item:hover .nav-link-btn svg.chevron {
  transform: rotate(180deg);
  color: var(--accent-primary);
}

/* Editorial Mega Menu — Perfectly Centered on Header Container */
.editorial-mega-menu {
  position: absolute;
  top: calc(100% - 4px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  width: min(1140px, 96vw);
  background: #FFFFFF;
  border: 1.5px solid var(--border-medium);
  border-radius: 16px;
  padding: 2.25rem 2.5rem;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 1010;
  transition: opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1), transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.2s;
}

/* Transparent Hover Bridge extending to header */
.editorial-mega-menu::before {
  content: '';
  position: absolute;
  top: -24px;
  left: 0;
  right: 0;
  height: 24px;
  background: transparent;
  display: block;
}

.nav-link-item:hover .editorial-mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.mega-grid-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.mega-category-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 1.15rem;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid #F0F9FF;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.mega-category-title a {
  text-decoration: none;
  color: var(--text-pure);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color var(--speed-fast);
}

.mega-category-title a:hover {
  color: var(--accent-primary);
}

.mega-category-title .cat-num {
  font-family: var(--font-stylish);
  font-size: 0.8rem;
  color: var(--accent-primary);
  font-weight: 800;
  background: #F0F9FF;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
}

.mega-link-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

/* Rich Micro-Card Links in Mega Menu */
.mega-card-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all var(--speed-fast);
  border: 1px solid transparent;
  background: transparent;
}

.mega-card-link:hover {
  background: #F8FAFC;
  border-color: rgba(37, 99, 235, 0.22);
  transform: translateX(4px);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.08);
}

.mega-card-icon {
  font-size: 1.15rem;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #F0F9FF;
  border: 1px solid rgba(37, 99, 235, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--speed-fast);
}

.mega-card-link:hover .mega-card-icon {
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-violet) 100%);
  border-color: transparent;
  transform: scale(1.06);
}

.mega-card-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.mega-card-title {
  font-family: var(--font-stylish);
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--text-pure);
  line-height: 1.25;
  margin-bottom: 0.15rem;
  transition: color var(--speed-fast);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mega-card-link:hover .mega-card-title {
  color: var(--accent-primary);
}

.mega-card-desc {
  font-size: 0.78rem;
  color: var(--text-medium);
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mega-bottom-strip {
  margin-top: 2rem;
  padding: 1.15rem 1.75rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg, #F8FAFC 0%, #F0F9FF 100%);
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
}

.header-right-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.header-right-actions .btn {
  white-space: nowrap;
  padding: 0.65rem 1.35rem;
  font-size: 0.92rem;
}

.mobile-menu-trigger {
  display: none;
  background: none;
  border: none;
  color: var(--text-pure);
  cursor: pointer;
  padding: 0.5rem;
}

/* --------------------------------------------------------------------------
   2. MOBILE DRAWER
   -------------------------------------------------------------------------- */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  z-index: 1990;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--speed-fast), visibility var(--speed-fast);
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 340px;
  max-width: 90vw;
  height: 100%;
  background: var(--bg-primary);
  border-left: 1px solid var(--border-medium);
  z-index: 1999;
  transform: translateX(100%);
  transition: transform var(--speed-smooth);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
}

.mobile-nav-open .mobile-nav-backdrop {
  opacity: 1;
  visibility: visible;
}

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

/* --------------------------------------------------------------------------
   2.5 FULL-WIDTH SUBPAGE HERO BANNERS WITH PHOTOGRAPHIC LIGHT OVERLAY
   -------------------------------------------------------------------------- */
.page-hero-overlay {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--border-medium);
  padding: 5.5rem 0 5rem;
  overflow: hidden;
}

.page-hero-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.82) 45%, rgba(255, 255, 255, 0.35) 75%, rgba(255, 255, 255, 0.10) 100%);
  z-index: 1;
}

.page-hero-overlay .container {
  position: relative;
  z-index: 2;
}

.page-hero-content {
  max-width: 880px;
}

.page-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.5vw, 3.9rem);
  font-weight: 700;
  line-height: 1.14;
  color: var(--text-pure);
  margin-top: 0.5rem;
  margin-bottom: 1.15rem;
  letter-spacing: -0.015em;
}

.page-hero-lead {
  font-size: 1.2rem;
  color: var(--text-high);
  line-height: 1.7;
  margin-bottom: 1.75rem;
  max-width: 780px;
}

.page-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* --------------------------------------------------------------------------
   2.5 SUBPAGE LUXURY EDITORIAL HERO BANNER (VIBRANT & ATTRACTIVE)
   -------------------------------------------------------------------------- */
.subpage-hero-luxury {
  position: relative;
  background: linear-gradient(135deg, #F8FAFC 0%, #F0F9FF 40%, #EFF6FF 75%, #F0FDF4 100%);
  border-bottom: 1.5px solid var(--border-medium);
  padding: 4.5rem 0 4rem;
  overflow: hidden;
}

.subpage-hero-luxury::after {
  content: '';
  position: absolute;
  top: -150px;
  right: -100px;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.14) 0%, rgba(56, 189, 248, 0.08) 50%, transparent 70%);
  pointer-events: none;
}

.subpage-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.subpage-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-pure);
  margin-top: 0.6rem;
  margin-bottom: 1.15rem;
  letter-spacing: -0.02em;
}

.subpage-hero-desc {
  font-size: 1.12rem;
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 1.75rem;
  max-width: 620px;
}

.subpage-hero-visual {
  position: relative;
}

.hero-software-showcase-card {
  position: relative;
  border-radius: 20px;
  overflow: visible;
  background: #FFFFFF;
  border: 1.5px solid var(--border-subtle);
  padding: 0.75rem;
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.12);
}

.software-showcase-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.software-floating-stat-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(37, 99, 235, 0.22);
  border-radius: 12px;
  padding: 0.75rem 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
  z-index: 5;
  animation: floatSlow 4s ease-in-out infinite alternate;
}

.software-floating-stat-badge.top-right {
  top: -18px;
  right: -18px;
}

.software-floating-stat-badge.bottom-left {
  bottom: -20px;
  left: -20px;
  animation-delay: 2s;
}

.badge-dot.pulse-green {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
}

.badge-icon {
  font-size: 1.25rem;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #F0F9FF;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   3. HUMAN-DESIGNED EDITORIAL HERO SECTION (DEEPER LUXURY LIGHT GRADIENT)
   -------------------------------------------------------------------------- */
.hero-human-editorial {
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--header-height) + 3.5rem);
  padding-bottom: 6.5rem;
  background: linear-gradient(135deg, #F1F5F9 0%, #E8EDF5 35%, #E0F2FE 70%, #DBEAFE 100%);
  border-bottom: 1px solid var(--border-medium);
}

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

.hero-editorial-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-headline-block {
  max-width: 680px;
}

.hero-pill-status {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #FFFFFF;
  border: 1px solid rgba(37, 99, 235, 0.28);
  padding: 0.45rem 1.1rem;
  border-radius: 9999px;
  margin-bottom: 1.75rem;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.1);
}

.hero-pill-status .pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-emerald);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-emerald);
  animation: pulse-dot 2s infinite;
}

.hero-pill-status span {
  font-family: var(--font-stylish);
  font-size: 0.84rem;
  color: var(--accent-primary);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero-display-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.2vw, 4.7rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--text-pure);
  margin-bottom: 1.5rem;
}

.hero-display-title .gradient-span {
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-violet) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-editorial-subheading {
  font-family: var(--font-stylish);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-primary);
  margin-bottom: 1.25rem;
  line-height: 1.4;
}

.hero-narrative-paragraph {
  font-size: 1.08rem;
  color: var(--text-medium);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

/* Quick Hero Highlights Pills */
.hero-highlights-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.25rem;
}

.hero-highlight-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-stylish);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-pure);
  background: #FFFFFF;
  border: 1px solid var(--border-medium);
  padding: 0.4rem 0.95rem;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.hero-highlight-pill span.icon {
  color: var(--accent-emerald);
}

.hero-button-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   Hero Right: Layered 3D Floating Tech HUD Composition
   -------------------------------------------------------------------------- */
.hero-layered-media {
  position: relative;
}

.hero-ambient-glow-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.22) 0%, rgba(37, 99, 235, 0.1) 50%, transparent 70%);
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}

.hero-main-photo-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.14);
  border: 1.5px solid rgba(37, 99, 235, 0.25);
  background: linear-gradient(135deg, #F8FAFC 0%, #F0F9FF 100%);
  z-index: 2;
}

.hero-main-photo {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform var(--speed-smooth);
}

.hero-main-photo-frame:hover .hero-main-photo {
  transform: scale(1.03);
}

/* Floating Glass HUD Card 1 (Top Floating) */
.hero-floating-hud-top {
  position: absolute;
  top: -1.5rem;
  left: -2rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-medium);
  border-radius: 12px;
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  z-index: 3;
  animation: floating-hud 4s ease-in-out infinite;
}

.hud-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-violet) 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.hud-text-title {
  font-family: var(--font-stylish);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-pure);
  line-height: 1.2;
}

.hud-text-sub {
  font-family: var(--font-stylish);
  font-size: 0.76rem;
  color: var(--accent-emerald);
  font-weight: 700;
}

/* Floating Glass HUD Card 2 (Bottom Floating) */
.hero-floating-hud-bottom {
  position: absolute;
  bottom: -1.75rem;
  right: -1.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-medium);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.14);
  z-index: 3;
  animation: floating-hud 4.5s ease-in-out infinite reverse;
}

.badge-item-title {
  font-family: var(--font-stylish);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--accent-primary);
}

.badge-item-sub {
  font-family: var(--font-stylish);
  font-size: 0.76rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
}

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

/* --------------------------------------------------------------------------
   4. RESTYLED CAPABILITIES GRID CARDS (CLEAN & BALANCED)
   -------------------------------------------------------------------------- */
.capabilities-bar {
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-medium);
  background: #FFFFFF;
  padding: 2.25rem 0;
}

.capabilities-flex {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.capability-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-stylish);
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--text-pure);
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 1.1rem 1.35rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--speed-fast);
}

.capability-item:hover {
  background: #EFF6FF;
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
}

.capability-num {
  font-family: var(--font-stylish);
  font-size: 0.8rem;
  color: var(--accent-primary);
  background: linear-gradient(135deg, #DBEAFE 0%, #E0F2FE 100%);
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  font-weight: 800;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   5. ABOUT — EDITORIAL MAGAZINE NARRATIVE
   -------------------------------------------------------------------------- */
.about-magazine-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.about-photo-layered {
  position: relative;
}

.about-photo-large {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-medium);
}

.about-inset-card {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background: var(--bg-dark);
  color: var(--text-inverse);
  padding: 1.75rem 2rem;
  border-radius: 14px;
  max-width: 320px;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.about-inset-quote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.about-inset-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--accent-emerald);
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   5.5 ABOUT — INNOVATIVE COGNITIVE FUSION & ARCHITECTURAL PILLARS
   -------------------------------------------------------------------------- */
.fusion-bento-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.fusion-synergy-matrix {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: linear-gradient(135deg, #F8FAFC 0%, #F0F9FF 100%);
  border: 1.5px solid rgba(37, 99, 235, 0.2);
  border-radius: 20px;
  padding: 2.25rem;
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.08);
}

.fusion-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--speed-fast);
}

.fusion-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-md);
}

.fusion-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}

.fusion-card-tag {
  font-family: var(--font-stylish);
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--accent-primary);
  background: var(--bg-subtle-tint);
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
}

.fusion-card-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-pure);
}

.fusion-operator-pill {
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-stylish);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--accent-violet);
  background: #FFFFFF;
  border: 1px dashed rgba(2, 132, 199, 0.4);
  padding: 0.35rem 1.25rem;
  border-radius: 9999px;
  box-shadow: var(--shadow-sm);
}

.fusion-result-banner {
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-violet) 100%);
  color: #FFFFFF;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-stylish);
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
}

/* Dual Architectural Vision & Mission Pillars */
.vm-pillars-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.vm-pillar-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border-medium);
  border-radius: 20px;
  padding: 3.25rem 2.75rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: all var(--speed-smooth);
}

.vm-pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--accent-primary) 0%, var(--accent-violet) 100%);
}

.vm-pillar-card.mission::before {
  background: linear-gradient(90deg, var(--accent-emerald) 0%, var(--accent-teal) 100%);
}

.vm-pillar-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-lg);
}

.vm-pillar-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--bg-subtle-tint);
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.vm-pillar-card.mission .vm-pillar-icon-box {
  background: var(--bg-tint-emerald);
  color: var(--accent-emerald);
  border-color: rgba(16, 185, 129, 0.2);
}

.vm-pillar-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 1.25rem;
}

.vm-pillar-quote {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--text-high);
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
}

.vm-pillar-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

.vm-check-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-stylish);
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--text-pure);
}

.vm-check-item span.dot {
  color: var(--accent-primary);
  font-size: 1.1rem;
}

.vm-pillar-card.mission .vm-check-item span.dot {
  color: var(--accent-emerald);
}

/* Agile Execution Feature Matrix */
.about-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 2rem 0;
}

.about-feature-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 1.25rem 1.4rem;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--speed-fast);
}

.about-feature-item:hover {
  background: var(--bg-subtle-tint);
  border-color: var(--accent-primary);
  transform: translateY(-2px);
}

.about-feature-icon {
  font-size: 1.2rem;
  color: var(--accent-primary);
  line-height: 1;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.about-feature-text {
  font-family: var(--font-stylish);
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--text-pure);
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   6. BRAND STATEMENT MONUMENT (LIGHT GRADIENT THEME)
   -------------------------------------------------------------------------- */
.brand-statement-monument {
  position: relative;
  background: linear-gradient(135deg, #F0F9FF 0%, #EFF6FF 50%, #ECFDF5 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 7.5rem 0;
  overflow: hidden;
  text-align: center;
}

.statement-quote-huge {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw + 0.5rem, 3.8rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.03em;
  color: #0B0F19;
  max-width: 1100px;
  margin: 0 auto;
}

.statement-quote-huge .highlight-word {
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-violet) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --------------------------------------------------------------------------
   7. MAJOR SOLUTIONS — LARGE PHOTOGRAPHY-LED SHOWCASE
   -------------------------------------------------------------------------- */
.solutions-editorial-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: start;
}

.solution-nav-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.solution-nav-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 2rem;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all var(--speed-fast);
  position: relative;
}

.solution-nav-card.active, .solution-nav-card:hover {
  border-color: var(--accent-primary);
  background: var(--bg-subtle-tint);
  box-shadow: var(--shadow-indigo);
  transform: translateY(-2px);
}

.solution-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}

.solution-card-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-pure);
}

.solution-nav-card.active .solution-card-title {
  color: var(--accent-primary);
}

.solution-card-index {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--accent-primary);
  font-weight: 700;
}

.solution-card-desc {
  font-size: 0.98rem;
  color: var(--text-medium);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.solution-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Solutions Right: Sticky High-Resolution Photography Pane */
.solution-sticky-photo-pane {
  position: sticky;
  top: 110px;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.solution-photo-frame {\r\n  height: 340px;\r\n  position: relative;\r\n  overflow: hidden;\r\n  background: linear-gradient(135deg, #F8FAFC 0%, #F0F9FF 100%);
}

.solution-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease, transform 0.4s ease;
}

.solution-photo-body {
  padding: 2.25rem;
}

/* --------------------------------------------------------------------------
   8. DEEP-DIVE VISUAL SPOTLIGHT
   -------------------------------------------------------------------------- */
.deep-dive-story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
  margin-bottom: 6rem;
}

.deep-dive-story-block:last-child {
  margin-bottom: 0;
}

.deep-dive-story-block.reversed {
  grid-template-columns: 1fr 1fr;
}

/* Equation Grid & Visual Frames for Deep Dive Pages */
.equation-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4.5rem;
  align-items: center;
}

.hero-visual-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1.5px solid var(--border-medium);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, #F8FAFC 0%, #F0F9FF 100%);
}

.hero-visual-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform var(--speed-smooth);
}

.hero-visual-frame:hover .hero-visual-img {
  transform: scale(1.03);
}

/* Fluid Outcomes Grid */
.outcomes-fluid-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.outcome-fluid-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 0.85rem 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--speed-fast);
}

.outcome-fluid-card:hover {
  border-color: var(--accent-primary);
  background: var(--bg-subtle-tint);
  transform: translateY(-2px);
}

.outcome-fluid-index {
  font-family: var(--font-stylish);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent-primary);
  background: #F0F9FF;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   17. CYBER SECURITY HUB & INTERACTIVE DEFENSE BENTO
   -------------------------------------------------------------------------- */
.cyber-domain-bento {
  background: #FFFFFF;
  border: 1.5px solid var(--border-subtle);
  border-radius: 20px;
  padding: 3.5rem;
  margin-bottom: 4rem;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  position: relative;
  overflow: hidden;
  transition: all var(--speed-smooth);
}

.cyber-domain-bento::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-primary) 0%, #38BDF8 50%, var(--accent-violet) 100%);
}

.cyber-domain-bento:hover {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 20px 45px rgba(37, 99, 235, 0.08);
}

.cyber-domain-header {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.cyber-domain-header.reversed {
  grid-template-columns: 0.75fr 1.25fr;
}

.cyber-domain-title {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--text-pure);
  margin-top: 0.5rem;
  margin-bottom: 0.85rem;
}

.cyber-domain-lead {
  font-size: 1.05rem;
  color: var(--text-medium);
  line-height: 1.7;
}

.cyber-visual-box {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid var(--border-medium);
  box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, #F8FAFC 0%, #F0F9FF 100%);
}

.cyber-visual-box img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform var(--speed-smooth);
}

.cyber-domain-bento:hover .cyber-visual-box img {
  transform: scale(1.04);
}

.cyber-cards-matrix {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.cyber-cards-matrix.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.col-span-2 {
  grid-column: span 2;
}

.cyber-card-item {
  background: var(--bg-secondary);
  border: 1.5px solid var(--border-subtle);
  border-radius: 12px;
  padding: 1.5rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: all var(--speed-fast);
  box-shadow: var(--shadow-sm);
}

.cyber-card-item:hover {
  background: #FFFFFF;
  border-color: var(--accent-primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.08);
}

.cyber-card-icon-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cyber-card-icon {
  font-size: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #FFFFFF;
  border: 1px solid var(--border-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cyber-card-item:hover .cyber-card-icon {
  background: #F0F9FF;
  border-color: rgba(37, 99, 235, 0.3);
}

.cyber-card-name {
  font-family: var(--font-stylish);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-pure);
  line-height: 1.3;
}

.cyber-card-sub {
  font-size: 0.85rem;
  color: var(--text-medium);
  line-height: 1.5;
}

/* Incident Response 4-Step Process Framework */
.incident-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.incident-step-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border-subtle);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--speed-fast);
  position: relative;
}

.incident-step-card:hover {
  border-color: var(--accent-primary);
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.1);
}

.incident-step-num {
  font-family: var(--font-stylish);
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-primary) 0%, #38BDF8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.75rem;
}

.incident-step-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 0.6rem;
}

.incident-step-desc {
  font-size: 0.92rem;
  color: var(--text-medium);
  line-height: 1.6;
}


.deep-dive-photo-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, #F8FAFC 0%, #F0F9FF 100%);
}

.deep-dive-photo-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform var(--speed-smooth);
}

.deep-dive-photo-frame:hover .deep-dive-photo-img {
  transform: scale(1.03);
}

.deep-dive-content-block {
  display: flex;
  flex-direction: column;
}

.feature-check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin: 1.75rem 0 2rem;
}

.feature-check-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-pure);
}

.feature-check-item .check-icon {
  color: var(--accent-emerald);
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   9. WHY BUSINESSES CHOOSE TECOGNIX
   -------------------------------------------------------------------------- */
.why-architectural-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 5rem;
  align-items: start;
}

.why-numbered-list {
  display: flex;
  flex-direction: column;
}

.why-numbered-row {
  display: grid;
  grid-template-columns: 70px 1.3fr 1.6fr 40px;
  gap: 1.5rem;
  align-items: baseline;
  padding: 2rem 1rem;
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--speed-instant);
  border-radius: 8px;
}

.why-numbered-row:hover {
  background: var(--bg-subtle-tint);
  border-bottom-color: var(--accent-primary);
  transform: translateX(4px);
}

.why-num-digit {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-primary);
}

.why-row-heading {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-pure);
  transition: color var(--speed-instant);
}

/* --------------------------------------------------------------------------
   11. WHY US — INNOVATIVE 6-PILLAR BENTO & MEASURABLE VALUE SHOWCASE
   -------------------------------------------------------------------------- */
.why-pillars-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.why-pillar-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border-subtle);
  border-radius: 18px;
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: all var(--speed-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.why-pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-primary) 0%, var(--accent-violet) 100%);
  opacity: 0;
  transition: opacity var(--speed-fast);
}

.why-pillar-card:hover {
  transform: translateY(-5px);
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.12);
}

.why-pillar-card:hover::before {
  opacity: 1;
}

.why-card-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.why-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #EFF6FF 0%, #E0F2FE 100%);
  border: 1px solid rgba(37, 99, 235, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: var(--shadow-sm);
}

.why-card-num {
  font-family: var(--font-stylish);
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--accent-primary);
  background: var(--bg-subtle-tint);
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
}

.why-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.why-card-desc {
  font-size: 0.98rem;
  color: var(--text-medium);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

/* Agility Advantage Cards */
.agility-advantage-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.agility-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border-subtle);
  border-radius: 14px;
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all var(--speed-fast);
}

.agility-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-md);
  background: #F8FAFC;
}

.agility-card-icon {
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.agility-card-title {
  font-family: var(--font-stylish);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-pure);
  margin-bottom: 0.35rem;
}

.agility-card-desc {
  font-size: 0.94rem;
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Measurable Business Outcomes 2x5 Grid */
.outcomes-matrix-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.outcome-matrix-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--speed-fast);
}

.outcome-matrix-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-primary);
  background: #EFF6FF;
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.1);
}

.outcome-matrix-num {
  font-family: var(--font-stylish);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent-primary);
  background: linear-gradient(135deg, #DBEAFE 0%, #E0F2FE 100%);
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  flex-shrink: 0;
}

.outcome-matrix-text {
  font-family: var(--font-stylish);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text-pure);
  line-height: 1.45;
}

.why-numbered-row:hover .why-row-heading {
  color: var(--accent-primary);
}

.why-row-text {
  font-size: 0.98rem;
  color: var(--text-medium);
  line-height: 1.6;
}

.why-row-arrow {
  display: flex;
  justify-content: flex-end;
  color: var(--text-muted);
  font-weight: 700;
  transition: transform var(--speed-fast), color var(--speed-instant);
}

.why-numbered-row:hover .why-row-arrow {
  transform: translateX(4px);
  color: var(--accent-primary);
}

/* Why Right: Sticky Agile Partner Feature */
.why-sticky-feature-card {
  position: sticky;
  top: 110px;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: 18px;
  padding: 2.75rem;
  box-shadow: var(--shadow-lg);
}

.agile-metric-item {
  border-left: 3px solid var(--accent-primary);
  padding-left: 1.25rem;
  margin-bottom: 1.5rem;
}

.agile-metric-item:last-child {
  margin-bottom: 0;
}

.agile-metric-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 0.25rem;
}

.agile-metric-desc {
  font-size: 0.92rem;
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   10. INDUSTRIES EDITORIAL MATRIX
   -------------------------------------------------------------------------- */
.industries-matrix-editorial {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.industry-item-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: all var(--speed-fast);
}

.industry-item-card:hover {
  border-color: var(--accent-primary);
  background: var(--bg-subtle-tint);
  box-shadow: var(--shadow-indigo);
  transform: translateY(-3px);
}

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

.industry-card-code {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--accent-primary);
  font-weight: 700;
}

.industry-card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 0.6rem;
}

/* --------------------------------------------------------------------------
   11. OUR PROMISE FLUID OUTCOMES
   -------------------------------------------------------------------------- */
.promise-outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.promise-outcome-row {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--speed-instant);
}

.promise-outcome-row:hover {
  border-color: var(--accent-primary);
  background: var(--bg-subtle-tint);
  transform: translateX(4px);
}

.pro  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-primary);
  flex-shrink: 0;
  background: #DBEAFE;
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
}

.promise-text-content {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-pure);
}

/* --------------------------------------------------------------------------
   12. FORM & CONTACT SECTION (CLEAN & PROPERLY STYLED)
   -------------------------------------------------------------------------- */
.contact-editorial-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4.5rem;
  align-items: start;
}

.form-editorial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: 18px;
  padding: 3rem;
  box-shadow: var(--shadow-lg);
}

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

.form-field {
  margin-bottom: 1.35rem;
  display: flex;
  flex-direction: column;
}

.field-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-pure);
  margin-bottom: 0.45rem;
  letter-spacing: 0.06em;
}

.input-editorial {
  width: 100%;
  padding: 0.95rem 1.15rem;
  background: #FFFFFF;
  border: 1.5px solid var(--border-medium);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-pure);
  display: block;
  box-sizing: border-box;
  transition: border-color var(--speed-instant), box-shadow var(--speed-instant);
}

.input-editorial:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.textarea.input-editorial {
  min-height: 110px;
  resize: vertical;
}

.select.input-editorial {
  appearance: auto;
  cursor: pointer;
}

/* Contact Info Side Card */
.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: 18px;
  padding: 2.75rem;
  box-shadow: var(--shadow-md);
}

.contact-channel-row {
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}

.contact-channel-label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--accent-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}

.contact-channel-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-pure);
}

.contact-channel-value a {
  color: var(--text-pure);
  transition: color var(--speed-instant);
}

/* --------------------------------------------------------------------------
   10. INDUSTRIES — INNOVATIVE SECTOR MATRIX & TRANSFORMATION SHOWCASE
   -------------------------------------------------------------------------- */
.industries-matrix-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.25rem;
}

.industry-sector-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border-subtle);
  border-radius: 18px;
  padding: 2.5rem 2.25rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: all var(--speed-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.industry-sector-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-primary) 0%, var(--accent-violet) 100%);
  opacity: 0;
  transition: opacity var(--speed-fast);
}

.industry-sector-card:hover {
  transform: translateY(-5px);
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.12);
}

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

.industry-card-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.industry-icon-pill {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #EFF6FF 0%, #E0F2FE 100%);
  border: 1px solid rgba(37, 99, 235, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: var(--shadow-sm);
}

.industry-sec-code {
  font-family: var(--font-stylish);
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--accent-primary);
  background: var(--bg-subtle-tint);
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
  border: 1px solid rgba(37, 99, 235, 0.15);
}9, 70, 229, 0.15);
}

.industry-card-title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.industry-card-desc {
  font-size: 1.02rem;
  color: var(--text-medium);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.industry-card-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
}

.industry-card-pills .tech-badge {
  font-size: 0.8rem;
}

/* Strategic Sector Pillars Bento */
.industry-pillars-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.industry-bento-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border-medium);
  border-radius: 18px;
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--speed-fast);
}

.industry-bento-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-md);
}

.industry-bento-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  margin-top: 1rem;
  margin-bottom: 0.75rem;
  color: var(--text-pure);
}

.industry-bento-card p {
  font-size: 0.96rem;
  color: var(--text-medium);
  line-height: 1.65;
  margin-bottom: 0;
}

/* Process Timeline Row */
.industry-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.industry-process-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all var(--speed-fast);
}

.industry-process-card:hover {
  border-color: var(--accent-primary);
  transform: translateY(-3px);
  background: #F8FAFC;
}

.process-step-num {
  font-family: var(--font-stylish);
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-violet) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.75rem;
}

.process-step-title {
  font-family: var(--font-stylish);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 0.5rem;
}

.process-step-desc {
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.55;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   13. FINAL CINEMATIC IMPACT CTA BANNER (LIGHT GRADIENT THEME)
   -------------------------------------------------------------------------- */
.final-impact-cta-section {
  position: relative;
  background: linear-gradient(135deg, #EFF6FF 0%, #E0F2FE 50%, #ECFDF5 100%);
  border-top: 1px solid var(--border-medium);
  border-bottom: 1px solid var(--border-medium);
  padding: 7.5rem 0;
  text-align: center;
  overflow: hidden;
}

.final-cta-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 3.8rem);
  font-weight: 800;
  color: #0B0F19;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}

/* --------------------------------------------------------------------------
   12. RESOURCES — INNOVATIVE CHALLENGES MATRIX & INTERACTIVE FAQ BENTO
   -------------------------------------------------------------------------- */
.challenges-transformation-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.challenge-transform-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border-subtle);
  border-radius: 18px;
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--speed-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}

.challenge-transform-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.12);
}

.challenge-box-danger {
  background: #FFF1F2;
  border: 1px solid rgba(244, 63, 94, 0.2);
  border-radius: 12px;
  padding: 1.25rem 1.4rem;
}

.challenge-tag-danger {
  font-family: var(--font-stylish);
  font-size: 0.76rem;
  font-weight: 800;
  color: #E11D48;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
}

.challenge-title-danger {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #881337;
  margin-bottom: 0.35rem;
}

.challenge-desc-danger {
  font-size: 0.92rem;
  color: #9F1239;
  line-height: 1.55;
  margin-bottom: 0;
}

.solution-box-success {
  background: linear-gradient(135deg, #ECFDF5 0%, #F0FDF4 100%);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 12px;
  padding: 1.25rem 1.4rem;
}

.solution-tag-success {
  font-family: var(--font-stylish);
  font-size: 0.76rem;
  font-weight: 800;
  color: #059669;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.solution-desc-success {
  font-family: var(--font-stylish);
  font-size: 0.96rem;
  font-weight: 700;
  color: #064E3B;
  line-height: 1.5;
  margin-bottom: 0;
}

/* FAQ 2-Column Bento Cards */
.faq-bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.faq-bento-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border-subtle);
  border-radius: 16px;
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--speed-fast);
}

.faq-bento-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-md);
  background: #F8FAFC;
}

.faq-card-category {
  display: inline-block;
  font-family: var(--font-stylish);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent-primary);
  background: var(--bg-subtle-tint);
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  margin-bottom: 0.75rem;
}

.faq-card-question {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 0.85rem;
  line-height: 1.3;
}

.faq-card-answer {
  font-size: 0.98rem;
  color: var(--text-medium);
  line-height: 1.68;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   14. LIGHT GRADIENT THEME FOOTER
   -------------------------------------------------------------------------- */
.site-footer-editorial {
  background: linear-gradient(135deg, #F8FAFC 0%, #F0F9FF 35%, #EFF6FF 70%, #F0FDF4 100%);
  border-top: 1.5px solid rgba(37, 99, 235, 0.15);
  padding: 5.5rem 0 3rem;
  color: var(--text-medium);
  position: relative;
}

.footer-editorial-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.3fr;
  gap: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(37, 99, 235, 0.12);
}

.footer-brand-box {
  background: transparent;
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.25rem;
}

.footer-brand-box img {
  height: 65px;
  max-height: 65px;
  width: auto;
  object-fit: contain;
}

.footer-col-header {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-pure);
  margin-bottom: 1.25rem;
}

.footer-links-column {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-nav-link {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--text-medium);
  transition: all var(--speed-instant);
}

.footer-nav-link:hover {
  color: var(--accent-primary);
  transform: translateX(4px);
}

.footer-bottom-bar {
  padding-top: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   15. MODAL & DIALOG
   -------------------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--speed-fast), visibility var(--speed-fast);
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-editorial-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-medium);
  border-radius: 18px;
  max-width: 620px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.75rem;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  transform: translateY(15px);
  transition: transform var(--speed-fast);
}

.modal-overlay.open .modal-editorial-card {
  transform: translateY(0);
}

.modal-close-trigger {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  color: var(--text-pure);
  width: 36px;
  height: 36px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: all var(--speed-instant);
}

.modal-close-trigger:hover {
  background: #FEE2E2;
  color: #F43F5E;
  border-color: #FCA5A5;
}

/* --------------------------------------------------------------------------
   16. SOLUTIONS HUB — ENTERPRISE BENTO ARCHITECTURE & SUB-DOMAINS
   -------------------------------------------------------------------------- */
.solution-pillar-hero-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border-subtle);
  border-radius: 20px;
  padding: 3.5rem;
  margin-bottom: 4.5rem;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  position: relative;
  overflow: hidden;
  transition: all var(--speed-smooth);
}

.solution-pillar-hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-primary) 0%, var(--accent-cyan) 50%, var(--accent-violet) 100%);
  opacity: 0.85;
}

.solution-pillar-hero-card:hover {
  box-shadow: 0 20px 45px rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.3);
}

.solution-pillar-header {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.solution-pillar-header.reversed {
  grid-template-columns: 0.8fr 1.2fr;
}

.solution-pillar-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-pure);
  margin-top: 0.75rem;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.solution-pillar-lead {
  font-size: 1.08rem;
  color: var(--text-medium);
  line-height: 1.7;
}

.solution-pillar-img-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, #F8FAFC 0%, #F0F9FF 100%);
}

.solution-pillar-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform var(--speed-smooth);
}

.solution-pillar-hero-card:hover .solution-pillar-img {
  transform: scale(1.04);
}

/* Sub-Domain Bento Grids */
.subdomain-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.subdomain-bento-grid.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.subdomain-bento-grid.grid-5 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.subdomain-card {
  background: var(--bg-secondary);
  border: 1.5px solid var(--border-subtle);
  border-radius: 14px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--speed-fast);
  position: relative;
}

.subdomain-card:hover {
  background: #FFFFFF;
  border-color: var(--accent-primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.08);
}

.subdomain-card-top {
  margin-bottom: 1.25rem;
}

.subdomain-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #FFFFFF;
  border: 1px solid var(--border-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
}

.subdomain-card:hover .subdomain-icon-box {
  background: linear-gradient(135deg, #F0F9FF 0%, #DBEAFE 100%);
  border-color: rgba(37, 99, 235, 0.3);
}

.subdomain-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 0.5rem;
}

.subdomain-desc {
  font-size: 0.94rem;
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.subdomain-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.subdomain-pill {
  font-family: var(--font-stylish);
  font-size: 0.82rem;
  font-weight: 700;
  background: #FFFFFF;
  color: var(--text-high);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  padding: 0.3rem 0.65rem;
  transition: all var(--speed-fast);
}

.subdomain-card:hover .subdomain-pill {
  background: #F0F9FF;
  border-color: rgba(37, 99, 235, 0.25);
  color: var(--accent-primary);
}

/* Vendor Logo Chips */
.vendor-chips-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.vendor-chip-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border-subtle);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--speed-fast);
}

.vendor-chip-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-primary);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.1);
  background: var(--bg-subtle-tint);
}

.vendor-chip-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 0.35rem;
}

.vendor-chip-sub {
  font-size: 0.85rem;
  color: var(--text-medium);
}

/* Solutions Quick Jump Bar */
.solutions-jump-bar {
  background: #FFFFFF;
  border: 1.5px solid var(--border-subtle);
  border-radius: 14px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 3.5rem;
  box-shadow: var(--shadow-sm);
  overflow-x: auto;
}

.jump-tab-link {
  font-family: var(--font-stylish);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-high);
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  white-space: nowrap;
  transition: all var(--speed-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.jump-tab-link:hover {
  background: #F0F9FF;
  color: var(--accent-primary);
}

.jump-tab-link.active {
  background: var(--accent-primary);
  color: #FFFFFF;
}



