/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  padding: 0;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  background: transparent;
  border-bottom: 1px solid transparent;
  box-sizing: border-box;
}

.site-header.scrolled {
  background: rgba(5, 11, 31, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  box-sizing: border-box;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
  z-index: 10;
}

.site-logo .logo-icon {
  width: 44px;
  height: 44px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.site-logo .logo-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
}

.site-logo .logo-icon svg {
  width: 28px;
  height: 28px;
  fill: white;
}

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

.site-logo .logo-name {
  font-size: var(--text-xl);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.hero-section~.site-header .site-logo .logo-name,
.site-header.scrolled .logo-name {
  color: var(--color-text-white);
}

.site-logo .logo-tagline {
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--color-text-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-section~.site-header .site-logo .logo-tagline,
.site-header.scrolled .logo-tagline {
  color: var(--color-text-white-60);
}

/* Main Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.main-nav>ul {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.main-nav>ul>li {
  position: relative;
}

.main-nav>ul>li>a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.5rem 0.875rem;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  position: relative;
}

.hero-section~.site-header .main-nav>ul>li>a,
.site-header.scrolled .main-nav>ul>li>a {
  color: rgba(255, 255, 255, 0.85);
}

.main-nav>ul>li>a:hover,
.main-nav>ul>li.current-menu-item>a,
.main-nav>ul>li.current-menu-ancestor>a {
  color: var(--color-primary);
  background: rgba(0, 102, 255, 0.08);
}

.hero-section~.site-header .main-nav>ul>li>a:hover,
.hero-section~.site-header .main-nav>ul>li.current-menu-item>a,
.hero-section~.site-header .main-nav>ul>li.current-menu-ancestor>a,
.site-header.scrolled .main-nav>ul>li>a:hover,
.site-header.scrolled .main-nav>ul>li.current-menu-item>a,
.site-header.scrolled .main-nav>ul>li.current-menu-ancestor>a {
  color: var(--color-text-white);
  background: rgba(255, 255, 255, 0.08);
}

.main-nav>ul>li.current-menu-item>a::after,
.main-nav>ul>li.current-menu-ancestor>a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--color-primary);
  border-radius: var(--radius-full);
}

.nav-arrow {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-base);
  fill: currentColor;
}

.main-nav>ul>li:hover .nav-arrow {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(8, 14, 36, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(10px);
  transition: all var(--transition-base);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  z-index: var(--z-dropdown);
}

.dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: rgba(8, 14, 36, 0.98);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateX(-50%) rotate(45deg);
}

.main-nav>ul>li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-sm);
  font-weight: 500;
  transition: all var(--transition-base);
}

.dropdown-item:hover {
  background: rgba(0, 102, 255, 0.15);
  color: var(--color-text-white);
}

.dropdown-item .item-icon {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.btn-book {
  background: var(--gradient-primary);
  color: white;
  padding: 0.55rem 1.35rem;
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.4);
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 102, 255, 0.5);
  color: white;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
  z-index: 10;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.hero-section~.site-header .hamburger span,
.site-header.scrolled .hamburger span {
  background: white;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 11, 31, 0.98);
  backdrop-filter: blur(20px);
  z-index: var(--z-overlay);
  overflow-y: auto;
  padding: var(--space-6) var(--container-padding);
  transform: translateX(100%);
  transition: transform var(--transition-slow);
}

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

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.mobile-menu-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4);
  color: white;
  font-size: var(--text-base);
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.mobile-menu-nav a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-secondary);
}

.mobile-cta {
  justify-content: center;
  margin-top: var(--space-5);
}

.mobile-dropdown-items {
  padding: var(--space-2) 0 var(--space-2) var(--space-6);
  display: none;
}

.mobile-dropdown-items.open {
  display: block;
}

.mobile-dropdown-items a {
  font-size: var(--text-sm);
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu-cta {
  margin-top: var(--space-6);
}

.mobile-menu-cta .btn-primary {
  width: 100%;
  justify-content: center;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--gradient-hero);
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 40px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 102, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 102, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.hero-bg-glow-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.3) 0%, transparent 70%);
  top: -200px;
  right: -100px;
}

.hero-bg-glow-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.2) 0%, transparent 70%);
  bottom: 100px;
  left: -100px;
}

.hero-bg-glow-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(123, 97, 255, 0.15) 0%, transparent 70%);
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
}

/* Hero particles */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 0.5;
  }

  100% {
    transform: translateY(-100px) scale(1);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-8);
  align-items: flex-start;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-10) var(--container-padding) 0;
}

.hero-left {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(0, 102, 255, 0.15);
  border: 1px solid rgba(0, 102, 255, 0.3);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-secondary);
}

.hero-badge .badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-secondary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}

.hero-headline {
  margin-top: 0;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--color-text-white);
  margin-bottom: var(--space-6);
}

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

.hero-description {
  font-size: var(--text-base);
  color: var(--color-text-white-80);
  line-height: 1.8;
  margin-bottom: var(--space-8);
  max-width: 480px;
}

/* ============================================
   HERO STATS INLINE - Pixel-Perfect Reference
   ============================================ */
.hero-stats-inline {
  margin-top: var(--space-8);
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  width: 100%;
}

.hero-stats-inline .stat-card {
  flex: 1 1 0%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px 12px 8px;
  background: rgba(10, 18, 42, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  height: 105px;
  overflow: hidden;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hero-stats-inline .stat-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Row: icon LEFT - value+label RIGHT */
.hero-stats-inline .stat-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
}

.hero-stats-inline .stat-icon.round {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border-width: 1.5px;
  border-style: solid;
  flex-shrink: 0;
}

.hero-stats-inline .stat-icon.round svg {
  width: 15px;
  height: 15px;
}

.hero-stats-inline .stat-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.hero-stats-inline .stat-value {
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.hero-stats-inline .stat-label {
  font-size: 0.66rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-hero .hero-stats-inline .counter-number,
.page-hero .hero-stats-inline .stat-value {
  color: #ffffff !important;
  text-shadow: 0 2px 18px rgba(0, 102, 255, 0.32);
}

.page-hero .hero-stats-inline .counter-number + div,
.page-hero .hero-stats-inline .stat-label {
  color: rgba(255, 255, 255, 0.82) !important;
}

.page-hero .hero-stats-inline > div,
.page-hero .hero-stats-inline .stat-card {
  border-color: rgba(255, 255, 255, 0.16) !important;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
}

/* Sparkline at bottom */
.hero-stats-inline .stat-sparkline {
  display: block;
  width: 100%;
  height: 22px;
  overflow: visible;
  margin-top: auto;
  opacity: 0.7;
}


.stat-top {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dashboard Mockup */
.dashboard-mockup {
  position: relative;
  width: 100%;
  max-width: 560px;
}

.dashboard-window {
  background: rgba(13, 21, 48, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0, 102, 255, 0.1),
    0 30px 100px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(0, 102, 255, 0.15);
  position: relative;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }
}

.dashboard-titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-3) var(--space-4);
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dashboard-window.light {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.dashboard-window.light .dashboard-titlebar {
  background: #f9fafb;
  border-bottom: 1px solid #f3f4f6;
}

.titlebar-dots {
  display: flex;
  gap: 6px;
}

.titlebar-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.titlebar-dot.red {
  background: #FF5F57;
}

.titlebar-dot.yellow {
  background: #FEBC2E;
}

.titlebar-dot.green {
  background: #28C840;
}

.titlebar-search {
  flex: 1;
  max-width: 250px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f3f4f6;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.7rem;
  color: #9ca3af;
  margin: 0 16px;
}

.titlebar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.titlebar-actions .avatar {
  width: 24px;
  height: 24px;
  background: #e5e7eb;
  border-radius: 50%;
}

.dashboard-body {
  display: grid;
  grid-template-columns: 140px 1fr;
  min-height: 320px;
}

.dashboard-sidebar {
  background: rgba(0, 0, 0, 0.3);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  padding: var(--space-4);
}

.dashboard-window.light .dashboard-sidebar {
  background: #4e426a;
  /* Muted purple matching image */
  border-right: none;
}

.sidebar-logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2);
  margin-bottom: var(--space-4);
}

.sidebar-logo-icon {
  width: 28px;
  height: 28px;
  background: var(--gradient-primary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar-logo-icon svg {
  width: 18px;
  height: 18px;
  fill: white;
}

.sidebar-logo-text {
  font-size: var(--text-sm);
  font-weight: 700;
  color: white;
}

.dashboard-window.light .sidebar-logo-text {
  color: #ffffff !important;
}

.sidebar-nav-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-2);
  border-radius: 6px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 2px;
}

.sidebar-nav-item:hover,
.sidebar-nav-item.active {
  background: rgba(0, 102, 255, 0.2);
  color: white;
}

.dashboard-window.light .sidebar-nav-item {
  color: rgba(255, 255, 255, 0.6);
}

.dashboard-window.light .sidebar-nav-item:hover,
.dashboard-window.light .sidebar-nav-item.active {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.sidebar-nav-item svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  flex-shrink: 0;
}

.dashboard-main {
  padding: var(--space-4);
}

.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-4);
}

.dash-title {
  font-size: var(--text-sm);
  font-weight: 600;
  color: white;
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.dash-stat-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  padding: var(--space-3);
}

.dash-stat-label {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}

.dash-stat-value {
  font-size: var(--text-lg);
  font-weight: 700;
  color: white;
}

.dash-stat-change {
  font-size: 0.65rem;
  color: var(--color-accent-green);
  margin-top: 2px;
}

.dash-stat-change.down {
  color: #FF4D4D;
}

.dash-chart-area {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  margin-bottom: var(--space-3);
  height: 100px;
  position: relative;
  overflow: hidden;
}

.dash-chart-label {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: var(--space-2);
}

/* Chart SVG */
.chart-svg {
  width: 100%;
  height: 70px;
}

/* Mobile Device Mockups */
.mobile-mockups {
  position: absolute;
  right: -30px;
  bottom: -20px;
  display: flex;
  gap: var(--space-3);
  align-items: flex-end;
}

.phone-frame {
  background: #0b0b0f;
  border: 9px solid #0e0f14;
  /* Premium black bezel */
  border-radius: 34px;
  overflow: hidden;
  box-shadow:
    0 28px 60px -16px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.12) inset,
    0 1px 0 rgba(255, 255, 255, 0.08) inset;
  position: relative;
  transition: all 0.5s ease;
}

.phone-frame--hero {
  width: 190px;
  height: 380px;
  animation: float 6s ease-in-out 0.5s infinite;
  z-index: 5;
}

.phone-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
  z-index: 8;
}

.phone-notch {
  width: 56px;
  height: 16px;
  background: #0b0b0f;
  border-radius: 9999px;
  margin: 0 auto;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08) inset;
}

/* Glass shine overlay */
.phone-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  z-index: 9;
}

.phone-screen {
  padding: 24px var(--space-3) var(--space-3);
  background: linear-gradient(180deg, #1A1826 0%, #0A0813 100%);
  min-height: 200px;
  position: relative;
  overflow: hidden;
}

.phone-screen::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.02) 35%, transparent 60%);
  pointer-events: none;
}

.phone-stat-value {
  font-size: 1.4rem;
  font-weight: 800;
  color: white;
  margin-bottom: 2px;
}

.phone-stat-label {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--space-3);
}

/* Hero Statistics */
.hero-stats {
  position: relative;
  z-index: 2;
  background: transparent;
  padding-bottom: var(--space-8);
  margin-top: -30px;
}

.hero-stats-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-4);
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: var(--space-5);
  background: rgba(13, 21, 48, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease, background 300ms ease;
  position: relative;
  overflow: hidden;
}

.stat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(120px 120px at 20% 0%, rgba(0, 102, 255, 0.2), transparent 60%);
  opacity: 0;
  transition: opacity 300ms ease;
  pointer-events: none;
}

.hero-stats-inline .stat-card.stat-card-yellow {
  box-shadow: 0 4px 20px rgba(234, 179, 8, 0.15), inset 0 0 20px rgba(234, 179, 8, 0.05);
  border-color: rgba(234, 179, 8, 0.3);
}

.hero-stats-inline .stat-card.stat-card-yellow .stat-icon {
  border-color: rgba(234, 179, 8, 0.4);
  color: #eab308;
}

.hero-stats-inline .stat-card.stat-card-purple {
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.15), inset 0 0 20px rgba(168, 85, 247, 0.05);
  border-color: rgba(168, 85, 247, 0.3);
}

.hero-stats-inline .stat-card.stat-card-purple .stat-icon {
  border-color: rgba(168, 85, 247, 0.4);
  color: #a855f7;
}

.hero-stats-inline .stat-card.stat-card-blue {
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.15), inset 0 0 20px rgba(59, 130, 246, 0.05);
  border-color: rgba(59, 130, 246, 0.3);
}

.hero-stats-inline .stat-card.stat-card-blue .stat-icon {
  border-color: rgba(59, 130, 246, 0.4);
  color: #3b82f6;
}

.hero-stats-inline .stat-card.stat-card-pink {
  box-shadow: 0 4px 20px rgba(236, 72, 153, 0.15), inset 0 0 20px rgba(236, 72, 153, 0.05);
  border-color: rgba(236, 72, 153, 0.3);
}

.hero-stats-inline .stat-card.stat-card-pink .stat-icon {
  border-color: rgba(236, 72, 153, 0.4);
  color: #ec4899;
}

.stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 102, 255, 0.35);
  box-shadow: 0 20px 50px rgba(5, 11, 31, 0.45), 0 0 25px rgba(0, 102, 255, 0.2);
  background: rgba(14, 24, 52, 0.86);
}

.stat-card:hover::after {
  opacity: 1;
}

.stat-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
}

.stat-icon.round {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
}

.stat-info {
  flex: 1;
  min-width: 0;
}

.stat-value {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--color-text-white);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.7rem;
  color: var(--color-text-white-60);
  font-weight: 500;
  margin-top: 2px;
}

.stat-sparkline {
  width: 60px;
  height: 24px;
  flex-shrink: 0;
}

/* ============================================
   TECH PARTNERS SECTION
   ============================================ */
.tech-partners-section {
  padding: var(--space-10) 0;
  background: var(--color-bg-white);
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.tech-partners-label {
  text-align: center;
  font-size: 0.95rem;
  color: #6b7280;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-8);
}

.marquee-container {
  overflow: hidden;
  position: relative;
}

.marquee-container::before,
.marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.marquee-container::before {
  left: 0;
  background: linear-gradient(90deg, white 0%, transparent 100%);
}

.marquee-container::after {
  right: 0;
  background: linear-gradient(-90deg, white 0%, transparent 100%);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: var(--space-12);
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.partner-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-weight: 700;
  font-size: var(--text-lg);
  color: #666;
  transition: all var(--transition-base);
  white-space: nowrap;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  filter: grayscale(1) opacity(0.7);
}

.partner-logo:hover {
  filter: grayscale(0) opacity(1);
  color: var(--color-primary);
}

.partner-logo img {
  height: 28px;
  width: auto;
  object-fit: contain;
}

/* Partner Logo Colors (inline SVG style logos) */
.partner-logo.odoo {
  color: #713E8D;
}

.partner-logo.flutter {
  color: #027DFD;
}

.partner-logo.react {
  color: #61DAFB;
}

.partner-logo.laravel {
  color: #FF2D20;
}

.partner-logo.aws {
  color: #FF9900;
}

.partner-logo.azure {
  color: #0089D6;
}

.partner-logo.google-cloud {
  color: #4285F4;
}

.partner-logo.docker {
  color: #2496ED;
}

.partner-logo.kubernetes {
  color: #326CE5;
}

.partner-logo.mysql {
  color: #4479A1;
}

.partner-logo-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  padding: var(--space-24) 0;
  background: var(--color-bg-section);
  overflow: hidden;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.4vw, 34px);
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(18px, 3vw, 32px);
}

.service-card {
  background: var(--color-bg-white);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 2.2vw, 2rem);
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  min-height: 278px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.07);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  border-color: rgba(0, 102, 255, 0.2);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  font-size: 1.5rem;
  position: relative;
  z-index: 1;
  transition: all var(--transition-base);
  flex: 0 0 auto;
}

.service-icon-blue {
  background: rgba(0, 102, 255, 0.1);
  color: var(--color-primary);
}

.service-icon-purple {
  background: rgba(123, 97, 255, 0.1);
  color: var(--color-accent-purple);
}

.service-icon-green {
  background: rgba(0, 196, 140, 0.1);
  color: var(--color-accent-green);
}

.service-icon-orange {
  background: rgba(255, 107, 53, 0.1);
  color: var(--color-accent);
}

.service-icon-cyan {
  background: rgba(0, 212, 255, 0.1);
  color: var(--color-secondary);
}

.service-icon-pink {
  background: rgba(255, 72, 176, 0.1);
  color: #FF48B0;
}

.service-icon-teal {
  background: rgba(0, 180, 160, 0.1);
  color: #00B4A0;
}

.service-icon-yellow {
  background: rgba(255, 196, 0, 0.1);
  color: #FFC400;
}

.service-title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-3);
  position: relative;
  z-index: 1;
  transition: color var(--transition-base);
  line-height: 1.3;
  max-width: 100%;
}

.service-desc {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-5);
  position: relative;
  z-index: 1;
  transition: color var(--transition-base);
  max-width: 34ch;
}

.service-card-bottom {
  margin-top: auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding-top: var(--space-2);
}

.service-meta-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.service-meta-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 9px;
  border-radius: var(--radius-full);
  background: rgba(0, 102, 255, 0.06);
  border: 1px solid rgba(0, 102, 255, 0.1);
  color: #28456f;
  font-size: 0.68rem;
  font-weight: 750;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: auto -16% -28% auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.13), transparent 68%);
  opacity: 0;
  transition: opacity var(--transition-base), transform var(--transition-base);
}

.service-card:hover::before {
  opacity: 1;
  transform: translate(-10px, -10px);
}


.service-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  position: relative;
  z-index: 1;
  transition: all var(--transition-base);
  align-self: flex-start;
  justify-content: flex-start;
  min-height: auto;
}


.service-link .link-arrow {
  transition: transform var(--transition-base);
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.service-link:hover .link-arrow,
.service-card:hover .service-link .link-arrow {
  transform: translateX(4px);
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-choose-section {
  padding: var(--space-24) 0;
  background: var(--gradient-section-dark);
  position: relative;
  overflow: hidden;
}

.why-choose-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 102, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 102, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.why-choose-section::after {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.why-choose-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: var(--space-12);
  align-items: start;
}

.why-choose-left {
  max-width: 480px;
}

.why-choose-left .section-tag {
  color: var(--color-secondary);
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.2);
}

.why-choose-left .section-tag::before {
  background: var(--color-secondary);
}

.why-choose-left .section-title {
  color: var(--color-text-white);
  font-size: clamp(var(--text-3xl), 3.5vw, var(--text-4xl));
}

.why-choose-left .section-subtitle {
  color: var(--color-text-white-60);
}

.why-choose-left .btn-outline-dark {
  color: white;
  border-color: rgba(255, 255, 255, 0.2);
  margin-top: var(--space-8);
  background: rgba(255, 255, 255, 0.05);
}

.why-choose-left .btn-outline-dark:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  color: white;
}

.why-choose-right {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 0;
  row-gap: var(--space-10);
}

.feature-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  padding: 0 var(--space-6);
  position: relative;
}

.feature-item:nth-child(3n+2),
.feature-item:nth-child(3n+3) {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-item:nth-child(3n+1) {
  padding-left: 0;
}

.feature-item:nth-child(3n+3) {
  padding-right: 0;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid transparent;
}

.feature-icon-blue {
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.15) 0%, transparent 100%);
  border-color: rgba(0, 102, 255, 0.3);
  color: #60a5fa;
  box-shadow: inset 0 0 10px rgba(0, 102, 255, 0.05);
}

.feature-icon-cyan {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, transparent 100%);
  border-color: rgba(0, 212, 255, 0.3);
  color: #22d3ee;
  box-shadow: inset 0 0 10px rgba(0, 212, 255, 0.05);
}

.feature-icon-green {
  background: linear-gradient(135deg, rgba(0, 196, 140, 0.15) 0%, transparent 100%);
  border-color: rgba(0, 196, 140, 0.3);
  color: #34d399;
  box-shadow: inset 0 0 10px rgba(0, 196, 140, 0.05);
}

.feature-icon-yellow {
  background: linear-gradient(135deg, rgba(255, 196, 0, 0.15) 0%, transparent 100%);
  border-color: rgba(255, 196, 0, 0.3);
  color: #fbbf24;
  box-shadow: inset 0 0 10px rgba(255, 196, 0, 0.05);
}

.feature-icon-orange {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, transparent 100%);
  border-color: rgba(255, 107, 53, 0.3);
  color: #fb923c;
  box-shadow: inset 0 0 10px rgba(255, 107, 53, 0.05);
}

.feature-icon-purple {
  background: linear-gradient(135deg, rgba(123, 97, 255, 0.15) 0%, transparent 100%);
  border-color: rgba(123, 97, 255, 0.3);
  color: #a855f7;
  box-shadow: inset 0 0 10px rgba(123, 97, 255, 0.05);
}

.feature-content {
  display: flex;
  flex-direction: column;
}

.feature-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text-white);
  margin-bottom: 4px;
}

.feature-desc {
  font-size: 0.7rem;
  color: var(--color-text-white-60);
  line-height: 1.6;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-section {
  padding: var(--space-24) 0;
  background: var(--color-bg-white);
  overflow: hidden;
}

.process-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-16) auto;
}

.process-header .section-tag {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: var(--space-4);
  position: relative;
  margin-top: var(--space-8);
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(50px / 2);
  right: calc(50px / 2);
  height: 1px;
  background: var(--gradient-primary);
  z-index: 0;
  opacity: 0.3;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.step-number-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
}

.step-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-section);
  border: 2px solid rgba(0, 102, 255, 0.2);
  font-size: 1.25rem;
  transition: all var(--transition-base);
  position: relative;
}

.step-icon-wrap::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: -1;
}

.process-step:hover .step-icon-wrap {
  border-color: var(--color-primary);
  background: rgba(0, 102, 255, 0.05);
  transform: scale(1.1);
}

.process-step:hover .step-icon-wrap::after {
  opacity: 0.1;
}

.step-num {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 20px;
  height: 20px;
  background: var(--gradient-primary);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-label {
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: var(--space-1);
  letter-spacing: 0.05em;
}

.step-title {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-2);
  line-height: 1.3;
}

.step-desc {
  font-size: 0.7rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ============================================
   ERP MODULES SECTION
   ============================================ */
.erp-section {
  padding: var(--space-24) 0;
  background: var(--color-bg-section);
}

.erp-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.erp-left {
  position: relative;
}

.erp-dashboard {
  background: rgba(13, 21, 48, 0.95);
  border: 1px solid rgba(0, 102, 255, 0.2);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(0, 102, 255, 0.1);
}

.erp-dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.erp-dash-logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 700;
  color: white;
}

.erp-dash-controls {
  display: flex;
  gap: 8px;
}

.erp-dash-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.erp-dash-body {
  display: grid;
  grid-template-columns: 140px 1fr;
  min-height: 300px;
}

.erp-dash-sidebar {
  background: rgba(0, 0, 0, 0.3);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  padding: var(--space-3);
}

.erp-nav-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-2);
  border-radius: 6px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.erp-nav-item:hover,
.erp-nav-item.active {
  background: rgba(0, 102, 255, 0.2);
  color: white;
}

.erp-nav-item svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.erp-dash-content {
  padding: var(--space-4);
}

.erp-kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.erp-kpi {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: var(--space-3);
}

.erp-kpi-label {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 4px;
}

.erp-kpi-value {
  font-size: var(--text-base);
  font-weight: 700;
  color: white;
}

.erp-kpi-change {
  font-size: 0.6rem;
  color: #00C48C;
  margin-top: 2px;
}

.erp-chart-section {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-3);
}

.erp-chart-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: var(--space-3);
}

.erp-chart-title {
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--space-2);
}

.chart-area {
  height: 80px;
  position: relative;
}

/* ERP Right */
.erp-right .section-tag {
  color: var(--color-accent-purple);
  background: rgba(123, 97, 255, 0.1);
  border-color: rgba(123, 97, 255, 0.2);
}

.erp-right .section-tag::before {
  background: var(--color-accent-purple);
}

.erp-subtitle {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-8);
}

.erp-modules-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  column-gap: clamp(18px, 2.2vw, 26px);
  row-gap: clamp(18px, 2.2vw, 26px);
  margin-bottom: var(--space-8);
}

.module-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 112px;
  max-width: 138px;
  width: 100%;
  padding: var(--space-3);
  background: var(--color-bg-white);
  border: 1px solid rgba(113, 75, 103, 0.14);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  cursor: pointer;
  text-align: center;
  aspect-ratio: 1 / 0.82;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.075);
  overflow: hidden;
  justify-self: center;
}

.odoo-module-item {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-color: rgba(113, 75, 103, 0.16);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.075);
}

.module-item:hover {
  border-color: rgba(113, 75, 103, 0.3);
  background: #ffffff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.module-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(113, 75, 103, 0.14);
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.module-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  padding: 5px;
  image-rendering: auto;
}

.module-icon-blue {
  background: rgba(0, 102, 255, 0.1);
  color: var(--color-primary);
}

.module-icon-purple {
  background: rgba(123, 97, 255, 0.1);
  color: var(--color-accent-purple);
}

.module-icon-green {
  background: rgba(0, 196, 140, 0.1);
  color: var(--color-accent-green);
}

.module-icon-orange {
  background: rgba(255, 107, 53, 0.1);
  color: var(--color-accent);
}

.module-icon-cyan {
  background: rgba(0, 212, 255, 0.1);
  color: var(--color-secondary);
}

.module-label {
  font-size: 0.72rem;
  font-weight: 750;
  color: #2d3142;
  line-height: 1.3;
  max-width: 100%;
  overflow-wrap: anywhere;
  position: relative;
  z-index: 1;
}

/* ============================================
   MOBILE APP SECTION
   ============================================ */
.mobile-app-section {
  padding: var(--space-24) 0;
  background: var(--color-bg-white);
  overflow: hidden;
}

.mobile-app-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.mobile-app-left .section-tag {
  color: var(--color-accent-green);
  background: rgba(0, 196, 140, 0.1);
  border-color: rgba(0, 196, 140, 0.2);
}

.mobile-app-left .section-tag::before {
  background: var(--color-accent-green);
}

.mobile-app-subtitle {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-8);
}

.mobile-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.mobile-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  text-align: center;
  padding: var(--space-4) var(--space-3);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  cursor: pointer;
}

.mobile-feature-item:hover {
  background: var(--color-bg-light);
  transform: translateY(-3px);
}

.mobile-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-1);
}

.mobile-feature-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 2;
}

.mobile-feature-icon-green {
  background: rgba(0, 196, 140, 0.1);
  color: var(--color-accent-green);
}

.mobile-feature-icon-blue {
  background: rgba(0, 102, 255, 0.1);
  color: var(--color-primary);
}

.mobile-feature-icon-purple {
  background: rgba(123, 97, 255, 0.1);
  color: var(--color-accent-purple);
}

.mobile-feature-title {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.3;
}

.mobile-feature-desc {
  font-size: 0.65rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

/* Phone Mockups for Mobile Section */
.mobile-phones-display {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  padding: var(--space-8) 0;
  min-height: 520px;
}

.phone-mockup {
  background: #0b0b0f;
  border: 10px solid #0e0f14;
  /* Realistic black bezel */
  border-radius: 46px;
  overflow: hidden;
  box-shadow:
    0 32px 70px -20px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.12) inset,
    0 1px 0 rgba(255, 255, 255, 0.08) inset;
  position: relative;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Modern Dynamic Island */
.phone-mockup::before {
  content: '';
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 74px;
  height: 18px;
  background: #0b0b0f;
  border-radius: 9999px;
  z-index: 10;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08) inset;
}

/* Glass Shine Reflection */
.phone-mockup::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  z-index: 9;
}

.phone-mockup-sm {
  width: 220px;
  height: 440px;
  animation: float 6s ease-in-out 0.5s infinite;
  transform: translateX(70px) translateY(28px) scale(0.88);
  z-index: 1;
}

.phone-mockup-md {
  width: 245px;
  height: 490px;
  animation: float 6s ease-in-out infinite;
  z-index: 3;
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.6);
}

.phone-mockup-lg {
  width: 220px;
  height: 440px;
  animation: float 6s ease-in-out 1s infinite;
  transform: translateX(-70px) translateY(28px) scale(0.88);
  z-index: 2;
}

/* New Phone UI Styles */
.new-phone-ui {
  background: #f8f9fc;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.new-phone-welcome {
  background: #ffffff;
}

.phone-ui-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 45%;
  background: linear-gradient(135deg, #4F46E5, #311B92);
  z-index: 1;
}

.phone-ui-bg-white {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: 1;
}

.phone-ui-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 14px 12px 10px;
  border-radius: 36px;
  overflow: hidden;
}

.p-status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.6rem;
  font-weight: 600;
  color: white;
  margin-bottom: 12px;
  padding: 0 10px;
}

.p-status-bar.dark-text {
  color: #111;
}

.p-status-icons {
  display: flex;
  gap: 4px;
}
.p-status-icons svg {
  width: 12px;
  height: 12px;
}

.p-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  margin-bottom: 16px;
  padding: 0 4px;
}

.p-header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.p-header-title {
  font-size: 0.9rem;
  font-weight: 600;
}

.p-bell {
  width: 16px;
  height: 16px;
}

.p-hero-stats {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  color: white;
  padding: 0 4px;
  margin-bottom: -16px;
}

.p-label {
  font-size: 0.6rem;
  opacity: 0.8;
  margin-bottom: 4px;
}

.p-value {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.p-trend {
  font-size: 0.55rem;
  opacity: 0.9;
}
.p-up {
  color: #00C48C;
  font-weight: 700;
}

.p-chart-btn {
  background: rgba(255,255,255,0.15);
  padding: 6px;
  border-radius: 6px;
  backdrop-filter: blur(4px);
}

.p-card-chart {
  background: white;
  border-radius: 12px;
  padding: 12px;
  margin-top: 24px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.p-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.p-card-title {
  font-size: 0.6rem;
  color: #666;
}

.p-card-val {
  font-size: 1.1rem;
  font-weight: 800;
  color: #111;
}

.p-card-badge {
  display: inline-block;
  background: #e6f9ed;
  color: #00C48C;
  font-size: 0.5rem;
  padding: 2px 4px;
  border-radius: 4px;
  font-weight: 600;
  margin-top: 4px;
}

.p-dropdown {
  font-size: 0.55rem;
  color: #666;
  border: 1px solid #eee;
  padding: 3px 6px;
  border-radius: 4px;
}

.p-chart-area {
  position: relative;
  height: 60px;
  margin-bottom: 8px;
}

.p-line-chart {
  width: 100%;
  height: 100%;
}

.p-chart-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.45rem;
  color: #999;
}

.p-quick-actions {
  margin-top: 16px;
  padding: 0 4px;
}

.p-qa-title {
  font-size: 0.7rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
}

.p-qa-grid {
  display: flex;
  justify-content: space-between;
}

.p-qa-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.p-qa-icon {
  width: 36px;
  height: 36px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.p-qa-item span {
  font-size: 0.5rem;
  color: #666;
  font-weight: 500;
}

.p-bottom-nav {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: white;
  display: flex;
  justify-content: space-around;
  padding: 12px 0 20px;
  border-top: 1px solid #eee;
  z-index: 5;
}

.p-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: #999;
}

.p-nav-item.active {
  color: #4F46E5;
}

.p-nav-item span {
  font-size: 0.5rem;
  font-weight: 600;
}

/* Welcome Body */
.p-welcome-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 16px;
  text-align: center;
}

.p-welcome-logo {
  width: 60px;
  height: 60px;
  background: #f4f5fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

.p-welcome-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 4px;
}

.p-welcome-sub {
  font-size: 0.65rem;
  color: #666;
  margin-bottom: 20px;
}

.p-input-group {
  width: 100%;
  display: flex;
  align-items: center;
  background: #f8f9fc;
  padding: 10px 12px;
  border-radius: 8px;
  margin-bottom: 12px;
  font-size: 0.65rem;
  color: #888;
  border: 1px solid #edf0f5;
}

.p-input-group svg {
  margin-right: 8px;
}

.p-login-options {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.55rem;
  color: #666;
  margin-bottom: 20px;
}

.p-login-options a {
  color: #4F46E5;
  font-weight: 600;
}

.p-btn-primary {
  width: 100%;
  background: #4F46E5;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  cursor: pointer;
  text-decoration: none;
}

.p-divider {
  width: 100%;
  text-align: center;
  border-bottom: 1px solid #eee;
  line-height: 0.1em;
  margin-bottom: 20px;
}

.p-divider span {
  background: #fff;
  padding: 0 10px;
  font-size: 0.55rem;
  color: #999;
}

.p-btn-outline {
  width: 100%;
  background: white;
  color: #111;
  border: 1px solid #eee;
  padding: 10px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  display: block;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
}

/* Transactions */
.p-transactions {
  margin-top: 16px;
  padding: 0 4px;
}

.p-tx-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.p-tx-header span {
  font-size: 0.65rem;
  font-weight: 700;
  color: #111;
}

.p-tx-header a {
  font-size: 0.55rem;
  font-weight: 600;
  color: #4F46E5;
}

.p-tx-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.p-tx-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.p-tx-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-tx-icon.green { background: #e6f9ed; color: #00C48C; }
.p-tx-icon.red { background: #ffebeb; color: #FF5F57; }

.p-tx-info {
  flex: 1;
}

.p-tx-title {
  font-size: 0.65rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 2px;
}

.p-tx-date {
  font-size: 0.45rem;
  color: #999;
}

.p-tx-amt {
  font-size: 0.65rem;
  font-weight: 700;
}
.p-tx-amt.green { color: #00C48C; }
.p-tx-amt.red { color: #FF5F57; }

/* ============================================
   INDUSTRIES SECTION
   ============================================ */
.industries-section {
  padding: var(--space-24) 0;
  background:
    linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
  position: relative;
  overflow: hidden;
}

.industries-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 102, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 102, 255, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}

.industries-section .container {
  position: relative;
  z-index: 1;
}

.industries-map {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.35fr);
  gap: var(--space-8);
  align-items: stretch;
}

.industries-map-hero {
  min-height: 100%;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(5, 11, 31, 0.98), rgba(13, 30, 74, 0.96)),
    var(--gradient-section-dark);
  color: var(--color-text-white);
  position: relative;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(5, 11, 31, 0.28);
  display: flex;
  flex-direction: column;
}

.industries-map-hero::after {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  right: -120px;
  bottom: -120px;
  background:
    conic-gradient(from 180deg, rgba(0, 212, 255, 0.35), rgba(0, 102, 255, 0.08), rgba(255, 255, 255, 0.18), rgba(0, 212, 255, 0.35));
  border-radius: 50%;
  filter: blur(4px);
  opacity: 0.75;
}

.industries-map-kicker {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
  color: var(--color-secondary);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.industries-map-kicker::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--color-secondary);
  box-shadow: 0 0 18px rgba(0, 212, 255, 0.8);
}

.industries-map-hero h3 {
  position: relative;
  z-index: 1;
  max-width: 520px;
  color: var(--color-text-white);
  font-size: clamp(1.85rem, 3vw, 2.75rem);
  line-height: 1.08;
  font-weight: 800;
  margin-bottom: var(--space-5);
}

.industries-map-hero p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.76);
  font-size: var(--text-base);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: var(--space-8);
}

.industries-map-metrics {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  margin-top: auto;
}

.industries-map-metrics span {
  min-height: 88px;
  padding: var(--space-4);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.68);
  font-size: var(--text-xs);
  font-weight: 700;
}

.industries-map-metrics strong {
  display: block;
  color: white;
  font-size: var(--text-2xl);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.industries-orbit {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
  margin-top: var(--space-5);
  padding: var(--space-4);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(0, 212, 255, 0.05)),
    rgba(255, 255, 255, 0.04);
}

.industries-orbit::before {
  content: '';
  position: absolute;
  inset: 50% var(--space-4) auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.55), transparent);
}

.industries-orbit span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.55rem 0.7rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  font-size: var(--text-xs);
  font-weight: 800;
}

.industries-map-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.industry-lane {
  display: grid;
  grid-template-columns: 44px 52px minmax(0, 1fr) auto;
  gap: var(--space-4);
  align-items: center;
  min-height: 108px;
  padding: var(--space-4) var(--space-5);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(0, 102, 255, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 35px rgba(5, 11, 31, 0.07);
  color: inherit;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background 260ms ease;
}

.industry-lane:hover,
.industry-lane:focus-visible {
  transform: translateX(8px);
  border-color: rgba(0, 102, 255, 0.32);
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(5, 11, 31, 0.12), 0 0 0 4px rgba(0, 102, 255, 0.06);
  outline: none;
}

.industry-lane-index {
  color: rgba(10, 15, 44, 0.32);
  font-size: var(--text-xs);
  font-weight: 800;
}

.industry-lane-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  color: var(--color-primary);
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.11), rgba(0, 212, 255, 0.12));
}

.industry-lane-icon svg {
  width: 24px;
  height: 24px;
}

.industry-lane-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 2px;
}

.industry-lane-copy strong {
  color: var(--color-text-primary);
  font-size: var(--text-lg);
  line-height: 1.25;
}

.industry-lane-copy > span:last-child {
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  line-height: 1.55;
}

.industry-lane-meta {
  color: var(--color-primary);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.industry-lane-stat {
  justify-self: end;
  padding: 0.45rem 0.7rem;
  border-radius: var(--radius-full);
  background: rgba(0, 196, 140, 0.09);
  color: #047857;
  font-size: var(--text-xs);
  font-weight: 800;
  white-space: nowrap;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
  padding: var(--space-24) 0;
  background: var(--color-bg-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.testimonial-card {
  background: var(--color-bg-section);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  position: relative;
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  background: var(--color-bg-white);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 102, 255, 0.15);
  transform: translateY(-4px);
}

/* Premium hover treatment for cards */
.service-card,
.module-item,
.testimonial-card {
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease, background 300ms ease;
  position: relative;
}

.service-card::after,
.module-item::after,
.testimonial-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.12) 0%, rgba(0, 212, 255, 0.08) 35%, transparent 70%);
  opacity: 0;
  transition: opacity 300ms ease;
  pointer-events: none;
  border-radius: inherit;
}

.service-card:hover,
.module-item:hover,
.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 102, 255, 0.28);
  box-shadow: 0 20px 50px rgba(5, 11, 31, 0.18), 0 0 20px rgba(0, 102, 255, 0.18);
  background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
}

.service-card:hover::after,
.module-item:hover::after,
.testimonial-card:hover::after {
  opacity: 1;
}

.erp-modules-grid .module-item:hover {
  transform: translateY(-5px);
  border-color: rgba(113, 75, 103, 0.28);
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.13), 0 0 0 3px rgba(113, 75, 103, 0.055);
}

.erp-modules-grid .module-item::after {
  background: linear-gradient(135deg, rgba(113, 75, 103, 0.08), rgba(0, 160, 157, 0.07) 45%, transparent 76%);
}

.erp-modules-grid .module-item:hover .module-icon {
  transform: scale(1.04);
  box-shadow: 0 14px 30px rgba(113, 75, 103, 0.18);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: var(--space-4);
  color: #FFC107;
  font-size: 1rem;
}

.testimonial-content {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: var(--space-6);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--gradient-primary);
}

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

.author-name {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text-primary);
}

.author-role {
  font-size: var(--text-xs);
  color: var(--color-text-light);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  padding: var(--space-24) 0;
  background: var(--gradient-section-dark);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 102, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 102, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.contact-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-16);
  align-items: center;
}

.contact-left {
  max-width: 480px;
}

.contact-left .section-tag {
  color: var(--color-secondary);
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.2);
}

.contact-left .section-tag::before {
  background: var(--color-secondary);
}

.contact-left .section-title {
  color: white;
}

.contact-left .section-subtitle {
  color: var(--color-text-white-60);
  margin-bottom: var(--space-8);
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--color-secondary);
  flex-shrink: 0;
}

.contact-info-text {
  display: flex;
  flex-direction: column;
}

.contact-info-label {
  font-size: var(--text-xs);
  color: var(--color-text-white-60);
}

.contact-info-val {
  font-size: var(--text-sm);
  color: white;
  font-weight: 600;
}

/* Contact Form Card */
.contact-right {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  box-shadow: var(--shadow-xl);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}

.contact-form .form-group-full {
  grid-column: span 2;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-label {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-white-80);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem var(--space-4);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  color: white;
  font-size: var(--text-sm);
  transition: all var(--transition-base);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--color-primary-light);
  box-shadow: 0 0 10px rgba(0, 102, 255, 0.2);
}

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

.contact-form .btn-primary {
  grid-column: span 2;
  justify-content: center;
  padding: 1rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
  padding: var(--space-20) 0;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.2), transparent 55%);
  opacity: 0.6;
  pointer-events: none;
}

.cta-grid {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  text-align: center;
  gap: var(--space-12);
  align-items: start;
}

.cta-title {
  font-size: clamp(2rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: var(--space-4);
  line-height: 1.2;
}

.cta-subtitle {
  color: #94a3b8;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: var(--space-6);
}

.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
}

.cta-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-7);
}

.cta-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.cta-list-item span {
  color: white;
}

.cta-button {
  align-self: center;
}

.cta-heading {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: var(--space-5);
}

.cta-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: var(--space-4);
}

.cta-contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(79, 70, 229, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #818cf8;
}

.cta-contact-link,
.cta-contact-text {
  color: #cbd5e1;
  font-size: 0.9rem;
  line-height: 1.5;
  padding-top: 6px;
}

.cta-note {
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: var(--space-4);
}

.newsletter-input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: white;
  font-size: 0.9rem;
  margin-bottom: 12px;
  outline: none;
}

.newsletter-input:focus {
  border-color: rgba(255, 255, 255, 0.35);
}

.newsletter-button {
  width: 100%;
  padding: 12px;
  background: #4f46e5;
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.newsletter-button:hover {
  background: #4338ca;
  transform: translateY(-1px);
}

.newsletter-note {
  color: #64748b;
  font-size: 0.75rem;
  margin-top: 8px;
}

/* ============================================
   SITE FOOTER
   ============================================ */
.site-footer {
  background: var(--color-bg-dark);
  color: var(--color-text-white-80);
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-20);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--space-12);
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding) var(--space-16);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  max-width: 320px;
}

.footer-brand .site-logo .logo-name {
  color: white;
}

.footer-brand .site-logo .logo-tagline {
  color: var(--color-text-white-60);
}

.social-links {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
  align-items: center;
  margin-top: 16px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.65);
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease,
              transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  flex-shrink: 0;
  position: relative;
  text-decoration: none;
}

.social-link svg {
  width: 17px;
  height: 17px;
  display: block;
}

.social-link:hover {
  transform: translateY(-4px) scale(1.08);
  color: white;
}

/* LinkedIn - Official Blue */
.social-link.social-linkedin:hover {
  background: #0A66C2;
  border-color: #0A66C2;
  box-shadow: 0 8px 20px rgba(10, 102, 194, 0.45);
}

/* Facebook - Official Blue */
.social-link.social-facebook:hover {
  background: #1877F2;
  border-color: #1877F2;
  box-shadow: 0 8px 20px rgba(24, 119, 242, 0.45);
}

/* X / Twitter - Black (post-rebrand) */
.social-link.social-twitter:hover {
  background: #000000;
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

/* Instagram - Gradient */
.social-link.social-instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(220, 39, 67, 0.45);
}

/* WhatsApp */
.social-link.social-whatsapp:hover {
  background: #25D366;
  border-color: #25D366;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.42);
}

/* Telegram - Cyan Blue */
.social-link.social-telegram:hover {
  background: #229ED9;
  border-color: #229ED9;
  box-shadow: 0 8px 20px rgba(34, 158, 217, 0.45);
}

/* TikTok - Black with accent glow */
.social-link.social-tiktok:hover {
  background: #010101;
  border-color: #69C9D0; /* TikTok teal accent */
  box-shadow: 0 8px 20px rgba(105, 201, 208, 0.35);
}


.footer-desc {
  font-size: var(--text-sm);
  color: var(--color-text-white-60);
  line-height: 1.7;
}

.footer-title {
  font-size: var(--text-sm);
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-6);
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  border-radius: var(--radius-full);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-links a {
  font-size: var(--text-sm);
  color: var(--color-text-white-60);
  transition: all var(--transition-base);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.footer-links a:hover {
  color: white;
  transform: translateX(4px);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.footer-contact-item {
  display: flex;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-white-60);
  line-height: 1.5;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  fill: var(--color-primary-light);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Footer Bottom */
.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: var(--space-6) 0;
}

.footer-bottom-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-xs);
  color: var(--color-text-white-60);
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-6);
}

.footer-bottom-links a:hover {
  color: white;
}

/* ============================================
   FINAL ENTERPRISE POLISH LAYER
   ============================================ */
:where(a, button, input, textarea, select, [tabindex]):focus-visible {
  outline: 3px solid rgba(0, 212, 255, 0.55);
  outline-offset: 3px;
}

.btn,
.btn-book,
.cta-button,
.service-link,
.cs-read-link {
  min-height: 44px;
  justify-content: center;
}

.services-grid .service-link {
  min-height: auto;
  justify-content: flex-start;
  align-self: flex-start;
}

.btn:active,
.btn-book:active,
.industry-lane:active,
.service-card:active,
.module-item:active {
  transform: translateY(0) scale(0.99);
}

.btn svg,
.btn-book svg,
.cta-button svg,
.service-link svg,
.mobile-feature-icon svg,
.industry-lane-icon svg {
  flex-shrink: 0;
}

.section-subtitle,
.service-card p,
.industry-lane-copy > span:last-child,
.testimonial-content,
.mobile-app-subtitle,
.erp-subtitle {
  color: #3f4a5f;
}

.contact-left .section-subtitle,
.hero-description {
  color: rgba(255, 255, 255, 0.82);
}

.service-card,
.module-item,
.testimonial-card,
.contact-right,
.industries-map-hero,
.industry-lane {
  will-change: transform;
}

.form-input,
.form-textarea,
select {
  color: var(--color-text-primary);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #7b8798;
}

.mobile-menu-nav a,
.main-nav>ul>li>a,
.btn,
.industry-lane,
.service-card,
.testimonial-card,
.module-item {
  -webkit-tap-highlight-color: transparent;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Footer refinement */
.site-footer {
  background:
    radial-gradient(circle at 12% 0%, rgba(0, 212, 255, 0.14), transparent 30%),
    linear-gradient(135deg, #050b1f 0%, #08132d 100%);
}
.footer-inner {
  align-items: flex-start;
}
.footer-col,
.footer-brand {
  min-width: 0;
}
.footer-col-title {
  color: #ffffff;
  letter-spacing: 0;
}
.footer-links a,
.footer-contact-item a,
.footer-contact-item span,
.footer-description {
  color: rgba(255, 255, 255, 0.72);
}
.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 3px 0;
}
.footer-links a::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--color-secondary);
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 200ms ease, transform 200ms ease;
}
.footer-links a:hover::before {
  opacity: 1;
  transform: scale(1);
}
.footer-contact-item svg {
  color: var(--color-secondary);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.social-link svg {
  color: var(--color-secondary);
}
.social-link {
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
}
.footer-bottom {
  background: rgba(0,0,0,0.26);
}
.footer-legal-links a {
  color: var(--color-secondary);
  font-weight: 800;
}
.footer-legal-links a:hover {
  color: #ffffff;
}

/* Global motion and button refinement */
:root {
  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
  --motion-fast: 180ms;
  --motion-base: 260ms;
}

.btn,
.btn-book,
.cta-button,
button.btn,
a.btn {
  min-height: 42px;
  border-radius: 10px;
  gap: 0.55rem;
  transition: transform var(--motion-base) var(--ease-premium), box-shadow var(--motion-base) var(--ease-premium), background var(--motion-base) ease, border-color var(--motion-base) ease, color var(--motion-base) ease;
}

.btn svg,
.btn-book svg,
.cta-button svg,
.btn .btn-arrow {
  width: 14px !important;
  height: 14px !important;
  margin-left: 0 !important;
  flex-shrink: 0;
}

.btn-lg {
  padding: 0.86rem 1.65rem;
  font-size: 0.96rem;
}

.hero-actions .btn svg {
  width: 15px !important;
  height: 15px !important;
}

.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
  transition-duration: 720ms;
  transition-timing-function: var(--ease-premium);
}

.reveal { transform: translateY(22px); }
.reveal-left { transform: translateX(-24px); }
.reveal-right { transform: translateX(24px); }
.reveal-scale { transform: scale(0.96); }

.service-card,
.module-item,
.testimonial-card,
.industry-lane,
.contact-method-card,
.premium-card {
  transition-timing-function: var(--ease-premium);
}

.main-nav>ul>li>a:hover,
.mobile-menu-nav a:hover,
.dropdown-item:hover {
  transition-timing-function: var(--ease-premium);
}

/* Media and surface polish */
img,
.dashboard-window,
.phone-mockup,
.team-member-avatar,
.whitepaper-card,
.rh-type-card {
  transition: transform var(--motion-base) var(--ease-premium), filter var(--motion-base) ease, box-shadow var(--motion-base) var(--ease-premium);
}

a:hover img,
.team-member-card:hover .team-member-avatar,
.whitepaper-card:hover,
.rh-type-card:hover {
  transform: translateY(-3px) scale(1.01);
}

.section-header,
.premium-sticky-copy,
.service-group-intro,
.comparison-copy,
.insight-copy,
.faq-intro {
  text-wrap: balance;
}

@media (prefers-reduced-motion: reduce) {
  img,
  .dashboard-window,
  .phone-mockup,
  .premium-card,
  .service-upgrade-card,
  .industry-story-card,
  .contact-method-card {
    transform: none !important;
  }
}

/* ==========================================================
   CYBERSECURITY TRANSFORMATION CUSTOM STYLES
   ========================================================== */

/* 1. Hero Preview Layered Mockup */
.cybersecurity-mockup-wrapper {
  position: relative;
  width: 100%;
  max-width: 580px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.dashboard-preview-container {
  width: 90%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 102, 255, 0.15);
  animation: float 6s ease-in-out infinite;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 14, 36, 0.8);
}

.dashboard-preview-img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.phone-preview-container {
  position: absolute;
  right: -5%;
  bottom: -10%;
  width: 35%;
  max-width: 180px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 212, 255, 0.2);
  animation: float 6s ease-in-out 0.5s infinite;
  border: 4px solid #080e24;
  z-index: 5;
}

.phone-preview-img {
  width: 100%;
  display: block;
}

/* 2. Premium Cybersecurity Process Steps Redesign */
.process-steps-redesign {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-6);
  position: relative;
  margin-top: var(--space-10);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.process-steps-redesign::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 50%, var(--color-primary) 100%);
  z-index: 0;
  border-radius: var(--radius-full);
  opacity: 0.2;
}

.process-step-card {
  background: rgba(10, 18, 42, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-4);
  position: relative;
  z-index: 1;
  text-align: center;
  transition: all var(--transition-base);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  backdrop-filter: blur(10px);
}

.process-step-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 102, 255, 0.4);
  background: rgba(10, 18, 42, 0.7);
  box-shadow: 0 15px 35px rgba(0, 102, 255, 0.2);
}

.process-step-card .step-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  background: rgba(8, 14, 36, 0.9);
  border: 2px solid var(--color-border);
  box-shadow: 0 0 20px rgba(0, 102, 255, 0.1);
  transition: all var(--transition-base);
}

.process-step-card:hover .step-icon-wrap {
  border-color: var(--color-primary);
  box-shadow: 0 0 30px rgba(0, 102, 255, 0.3);
  transform: scale(1.05);
}

.process-step-card .step-number {
  font-size: var(--text-xs);
  font-weight: 850;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: var(--space-2);
}

.process-step-card .step-title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-3);
}

.process-step-card .step-desc {
  font-size: var(--text-sm);
  color: var(--color-text-white-60);
  line-height: 1.5;
}

/* Responsive updates for the process timeline */
@media (max-width: 992px) {
  .process-steps-redesign {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
  }
  .process-steps-redesign::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .process-steps-redesign {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
}

/* ============================================================
   PREMIUM CYBER SERVICE PAGES
   ============================================================ */

/* ---------- Premium Hero ---------- */
.premium-hero {
  padding: var(--space-20) 0 var(--space-16);
  background: var(--color-bg-dark);
  position: relative;
  overflow: hidden;
}

.premium-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 20%, rgba(99,102,241,.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(16,185,129,.10) 0%, transparent 60%);
  pointer-events: none;
}

.premium-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
  position: relative;
  z-index: 1;
}

.premium-hero .hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--color-text-white);
  line-height: 1.15;
  margin-bottom: var(--space-5);
}

.premium-hero .hero-description {
  font-size: var(--text-lg);
  color: var(--color-text-white-70);
  line-height: 1.7;
  margin-bottom: var(--space-8);
  max-width: 540px;
}

.premium-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
}

/* ---------- Hero Orbit Panel ---------- */
.premium-orbit-panel {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-2xl);
  padding: var(--space-10);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
  backdrop-filter: blur(12px);
  position: relative;
}

.premium-orbit-panel::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(99,102,241,.4), transparent 50%, rgba(16,185,129,.2));
  z-index: -1;
}

.orbit-core {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(99,102,241,.4);
}

.orbit-core span {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.orbit-core small {
  font-size: 0.65rem;
  color: rgba(255,255,255,.8);
  text-align: center;
  margin-top: 4px;
}

.floating-kpi {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  width: 100%;
}

.floating-kpi strong {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-primary-light);
  min-width: 60px;
}

.floating-kpi span {
  font-size: var(--text-sm);
  color: var(--color-text-white-70);
  line-height: 1.3;
}

/* ---------- Content Block Sections ---------- */
.content-block-section {
  padding: var(--space-16) 0;
}

.content-block-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
  margin-bottom: var(--space-16);
}

.content-block-row:last-child {
  margin-bottom: 0;
}

.content-block-row:nth-child(even) .content-block-media {
  order: 2;
}

.content-block-row:nth-child(even) .content-block-text {
  order: 1;
}

.content-block-media {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.content-block-media svg {
  width: 100%;
  height: auto;
  display: block;
}

.content-block-text .section-tag {
  display: inline-block;
  margin-bottom: var(--space-3);
}

.content-block-text h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.25;
  margin-bottom: var(--space-4);
}

.content-block-text p {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin-bottom: var(--space-5);
}

.content-block-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.content-block-features-list li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-primary);
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--color-border-light);
}

.content-block-features-list li:last-child {
  border-bottom: none;
}

.content-block-features-list li svg {
  color: var(--color-accent-green);
  flex-shrink: 0;
}

/* ---------- Premium Features Grid ---------- */
.premium-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-10);
}

.premium-features-grid .card-gradient-border {
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative;
  overflow: hidden;
}

.premium-features-grid .card-gradient-border::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99,102,241,.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s ease;
}

.premium-features-grid .card-gradient-border:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-primary-light);
}

.premium-features-grid .card-gradient-border:hover::before {
  opacity: 1;
}

.feature-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
}

.feature-icon-wrapper svg {
  width: 24px;
  height: 24px;
  color: #fff;
}

/* ---------- FAQ Accordion ---------- */
.faq-accordion {
  max-width: 800px;
  margin: var(--space-10) auto 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .3s ease;
}

.faq-item.active {
  border-color: var(--color-primary-light);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  background: var(--color-bg-white);
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: background .2s ease;
}

.faq-trigger:hover {
  background: var(--color-bg-light);
}

.faq-trigger span {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.4;
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-primary);
  transition: transform .3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  background: var(--color-bg-light);
}

.faq-content p {
  padding: var(--space-5) var(--space-6);
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin: 0;
}

.faq-item.active .faq-content {
  max-height: 300px;
}

/* ============================================================
   RESPONSIVE – CYBER SERVICE PAGES
   ============================================================ */

@media (max-width: 1200px) {
  .premium-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .premium-hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .premium-hero .hero-description {
    max-width: 100%;
  }

  .premium-orbit-panel {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding: var(--space-6);
    gap: var(--space-4);
  }

  .floating-kpi {
    width: auto;
    flex: 1 1 180px;
  }

  .content-block-row {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .content-block-row:nth-child(even) .content-block-media,
  .content-block-row:nth-child(even) .content-block-text {
    order: unset;
  }
}

@media (max-width: 768px) {
  .premium-hero {
    padding: var(--space-14) 0 var(--space-10);
  }

  .premium-hero .hero-title {
    font-size: 1.85rem;
  }

  .premium-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .premium-actions .btn {
    text-align: center;
    justify-content: center;
  }

  .premium-features-grid {
    grid-template-columns: 1fr;
  }

  .premium-orbit-panel {
    flex-direction: column;
    align-items: stretch;
  }

  .floating-kpi {
    width: 100%;
  }

  .faq-accordion {
    margin-top: var(--space-6);
  }

  .content-block-section {
    padding: var(--space-10) 0;
  }

  .content-block-row {
    margin-bottom: var(--space-10);
  }
}

@media (max-width: 480px) {
  .premium-hero .hero-title {
    font-size: 1.5rem;
  }

  .faq-trigger span {
    font-size: var(--text-sm);
  }

  .faq-trigger {
    padding: var(--space-4);
  }

  .premium-features-grid .card-gradient-border {
    padding: var(--space-6);
  }
}

/* ==========================================================
   PREMIUM CYBERSECURITY LANDING REFINEMENT
   ========================================================== */

.process-section .process-steps {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
  max-width: 1180px;
  margin-inline: auto;
}

.process-section .process-step {
  padding: var(--space-4);
  border-radius: var(--radius-lg);
}

.process-section .process-step:hover {
  background: transparent;
}

.process-section .process-step:hover .step-icon-wrap,
.process-section .step-icon-wrap:hover {
  transform: scale(1.07);
  background: rgba(0, 102, 255, 0.07);
  border-color: rgba(0, 212, 255, 0.42);
  box-shadow: 0 16px 38px rgba(0, 102, 255, 0.16), 0 0 0 7px rgba(0, 212, 255, 0.055);
}

.cyber-page {
  background: #f6f9fc;
}

.cyber-page section {
  position: relative;
}

.cyber-hero {
  padding: clamp(7rem, 11vw, 11rem) 0 clamp(4rem, 7vw, 7rem);
  background:
    linear-gradient(135deg, #050b1f 0%, #071832 52%, #092a37 100%),
    linear-gradient(90deg, rgba(0, 212, 255, 0.08), rgba(0, 196, 140, 0.06));
  color: #fff;
  overflow: hidden;
}

.cyber-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.85), transparent 92%);
  pointer-events: none;
}

.cyber-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.cyber-hero h1 {
  max-width: 760px;
  margin: var(--space-5) 0;
  color: #fff;
  font-size: clamp(2.55rem, 6vw, 5.25rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.cyber-hero p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.8;
}

.cyber-anchor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: var(--space-8);
}

.cyber-anchor-nav a {
  padding: 0.72rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.86);
  font-size: var(--text-sm);
  font-weight: 750;
}

.cyber-command-center {
  padding: clamp(1.2rem, 2vw, 1.75rem);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 35px 120px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(22px);
}

.command-header,
.command-signal {
  display: flex;
  align-items: center;
  gap: 10px;
}

.command-header {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: var(--space-5);
}

.command-header span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
}

.command-header strong {
  margin-left: auto;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.command-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 14px;
}

.command-score,
.command-signal {
  border-radius: 18px;
  background: rgba(5, 11, 31, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-4);
}

.command-score {
  grid-row: span 3;
}

.command-score strong {
  display: block;
  font-size: clamp(4rem, 8vw, 6.8rem);
  line-height: 0.95;
  color: #67e8f9;
}

.command-score span,
.command-signal {
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--text-sm);
}

.command-signal span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #00c48c;
  box-shadow: 0 0 18px rgba(0, 196, 140, 0.75);
}

.command-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: var(--space-5);
}

.command-timeline i {
  height: 72px;
  border-radius: 16px;
  background: linear-gradient(to top, rgba(0, 212, 255, 0.32), rgba(255, 255, 255, 0.08));
}

.command-timeline i:nth-child(even) {
  transform: translateY(18px);
  background: linear-gradient(to top, rgba(0, 196, 140, 0.34), rgba(255, 255, 255, 0.08));
}

.cyber-stats-section {
  margin-top: -44px;
  z-index: 2;
}

.cyber-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.cyber-stat-card {
  padding: clamp(1.25rem, 2vw, 1.8rem);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(0, 102, 255, 0.1);
  box-shadow: 0 18px 55px rgba(8, 23, 52, 0.09);
  backdrop-filter: blur(18px);
}

.cyber-stat-card strong {
  display: block;
  color: #071832;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1;
}

.cyber-stat-card span {
  display: block;
  margin-top: 8px;
  color: #526173;
  font-size: var(--text-sm);
}

.cyber-services-section,
.cyber-framework-section,
.cyber-process-section,
.cyber-industries-section,
.cyber-faq-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.cyber-service-story {
  display: grid;
  gap: clamp(18px, 2vw, 26px);
  margin-top: var(--space-12);
}

.cyber-service-panel {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) minmax(240px, 0.72fr) 130px;
  gap: clamp(1rem, 2.4vw, 2rem);
  align-items: center;
  padding: clamp(1.25rem, 3vw, 2.4rem);
  border-radius: 26px;
  border: 1px solid rgba(0, 102, 255, 0.11);
  box-shadow: 0 20px 70px rgba(8, 23, 52, 0.08);
}

.cyber-service-panel.is-dark {
  background: linear-gradient(135deg, #071026, #0e2442);
  color: #fff;
}

.cyber-service-panel.is-light {
  background: linear-gradient(135deg, #fff, #eef7ff);
}

.cyber-service-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: rgba(0, 212, 255, 0.12);
  color: #0ea5e9;
}

.cyber-service-icon svg {
  width: 32px;
  height: 32px;
}

.cyber-service-copy span {
  color: #00a3ff;
  font-size: var(--text-xs);
  font-weight: 850;
  letter-spacing: 0.08em;
}

.cyber-service-copy h3 {
  margin: 8px 0 10px;
  font-size: clamp(1.35rem, 2.6vw, 2.2rem);
  line-height: 1.16;
}

.cyber-service-copy p,
.cyber-service-list li,
.cyber-service-metric span {
  color: #526173;
  line-height: 1.7;
}

.is-dark .cyber-service-copy p,
.is-dark .cyber-service-list li,
.is-dark .cyber-service-metric span {
  color: rgba(255, 255, 255, 0.72);
}

.cyber-service-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cyber-service-list li {
  position: relative;
  padding-left: 18px;
  font-size: var(--text-sm);
}

.cyber-service-list li::before {
  content: '';
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00c48c;
}

.cyber-service-metric {
  justify-self: end;
  text-align: right;
}

.cyber-service-metric strong {
  display: block;
  color: #00c4ff;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.cyber-framework-section {
  background: #071026;
  color: #fff;
  overflow: hidden;
}

.cyber-framework-grid,
.cyber-faq-grid,
.cyber-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.cyber-framework-copy h2,
.cyber-faq-intro h2,
.cyber-cta-card h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.cyber-framework-copy p,
.cyber-cta-card p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

.cyber-framework-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cyber-framework-cloud span {
  padding: 1rem 1.15rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

.cyber-process-section {
  background: #fff;
}

.cyber-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-top: var(--space-12);
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(0, 102, 255, 0.1);
  box-shadow: 0 22px 70px rgba(8, 23, 52, 0.08);
}

.cyber-timeline-step {
  min-height: 180px;
  padding: clamp(1.25rem, 2vw, 1.8rem);
  background: linear-gradient(180deg, #fff, #f5f9ff);
  border-right: 1px solid rgba(0, 102, 255, 0.1);
}

.cyber-timeline-step:last-child {
  border-right: 0;
}

.cyber-timeline-step span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #071026;
  color: #67e8f9;
  font-weight: 850;
  margin-bottom: var(--space-5);
}

.cyber-timeline-step strong {
  display: block;
  color: #071832;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.3;
}

.cyber-industries-section {
  background: #eef5f8;
}

.cyber-industries-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  margin-top: var(--space-12);
}

.cyber-industry-card {
  min-height: 230px;
  padding: clamp(1.25rem, 2vw, 1.8rem);
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(0, 102, 255, 0.1);
  box-shadow: 0 18px 55px rgba(8, 23, 52, 0.07);
}

.cyber-industry-card h3 {
  margin-bottom: var(--space-3);
  color: #071832;
}

.cyber-industry-card p,
.cyber-faq-intro p {
  color: #526173;
  line-height: 1.7;
}

.cyber-cta-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: #071026;
}

.cyber-cta-card {
  padding: clamp(1.5rem, 4vw, 3.2rem);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.28), rgba(0, 196, 140, 0.14));
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24);
}

.cyber-cta-card .btn {
  justify-self: end;
}

.cyber-faq-section {
  background: #fff;
}

.cyber-faq-section .faq-item {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 102, 255, 0.1);
  box-shadow: 0 14px 44px rgba(8, 23, 52, 0.06);
}

@media (max-width: 1200px) {
  .cyber-service-panel {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .cyber-service-list,
  .cyber-service-metric {
    grid-column: 2;
    justify-self: stretch;
    text-align: left;
  }
}

@media (max-width: 992px) {
  .process-section .process-steps,
  .cyber-timeline,
  .cyber-industries-grid,
  .cyber-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cyber-hero-grid,
  .cyber-framework-grid,
  .cyber-faq-grid,
  .cyber-cta-card {
    grid-template-columns: 1fr;
  }

  .cyber-cta-card .btn {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .process-section .process-steps,
  .cyber-stats-grid,
  .cyber-timeline,
  .cyber-industries-grid {
    grid-template-columns: 1fr;
  }

  .cyber-service-panel {
    grid-template-columns: 1fr;
  }

  .cyber-service-list,
  .cyber-service-metric {
    grid-column: auto;
  }

  .cyber-command-center {
    display: none;
  }

  .cyber-anchor-nav a,
  .cyber-hero .btn,
  .cyber-cta-card .btn {
    width: 100%;
    justify-content: center;
  }

  .cyber-stats-section {
    margin-top: 0;
    padding-top: var(--space-4);
    background: #071026;
  }
}

/* ==========================================================
   ENTERPRISE POLISH PASS: BRANDING, SERVICES, CYBER PAGES
   ========================================================== */

.site-logo {
  gap: 10px;
  padding: 7px 10px 7px 7px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.site-logo .logo-mark-wrap {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 34px rgba(0, 102, 255, 0.16);
}

.site-logo .logo-mark-wrap img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.site-logo .logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1px;
  min-width: 98px;
}

.site-logo .logo-name {
  font-size: 1.12rem;
  font-weight: 850;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1;
  text-shadow: 0 0 18px rgba(0, 212, 255, 0.24);
}

.site-logo .logo-tagline {
  font-size: 0.57rem;
  font-weight: 750;
  color: rgba(255, 255, 255, 0.66);
  letter-spacing: 0.16em;
  line-height: 1.15;
}

.service-matrix-section {
  padding: clamp(4rem, 7vw, 6.5rem) 0;
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.service-matrix-section .section-header {
  max-width: 880px;
  margin-inline: auto;
}

.service-matrix-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  margin-top: var(--space-12);
}

.service-matrix-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: clamp(1.25rem, 2vw, 1.8rem);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 102, 255, 0.1);
  box-shadow: 0 18px 52px rgba(8, 23, 52, 0.075);
  overflow: hidden;
  position: relative;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.service-matrix-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.08), rgba(0, 212, 255, 0.06), transparent 64%);
  opacity: 0;
  transition: opacity 240ms ease;
  pointer-events: none;
}

.service-matrix-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 102, 255, 0.22);
  box-shadow: 0 24px 70px rgba(8, 23, 52, 0.12);
}

.service-matrix-card:hover::before {
  opacity: 1;
}

.service-matrix-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--color-primary);
  background: rgba(0, 102, 255, 0.08);
  margin-bottom: var(--space-5);
  position: relative;
  z-index: 1;
}

.service-matrix-icon svg {
  width: 28px;
  height: 28px;
}

.service-matrix-copy,
.service-matrix-details,
.service-matrix-link {
  position: relative;
  z-index: 1;
}

.service-matrix-copy span {
  color: var(--color-primary);
  font-size: var(--text-xs);
  font-weight: 850;
  letter-spacing: 0.1em;
}

.service-matrix-copy h3 {
  margin: var(--space-2) 0 var(--space-3);
  color: #071832;
  font-size: clamp(1.18rem, 1.7vw, 1.45rem);
  line-height: 1.2;
}

.service-matrix-copy p {
  color: #526173;
  font-size: var(--text-sm);
  line-height: 1.65;
}

.service-matrix-details {
  display: grid;
  gap: 7px;
  margin-top: var(--space-4);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 260ms ease, opacity 220ms ease;
}

.service-matrix-card:hover .service-matrix-details,
.service-matrix-card:focus-within .service-matrix-details {
  max-height: 150px;
  opacity: 1;
}

.service-matrix-details small {
  color: #28456f;
  font-weight: 750;
}

.service-matrix-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-weight: 850;
  margin-top: auto;
  min-height: 44px;
}

.service-matrix-link svg {
  width: 16px;
  height: 16px;
}

.services-capability-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-weight: 850;
}

.services-capability-card a svg {
  width: 16px;
  height: 16px;
}

.cyber-service-hero {
  padding: clamp(7.5rem, 12vw, 12rem) 0 clamp(4rem, 7vw, 7rem);
  color: #fff;
  background: linear-gradient(135deg, #050b1f, #09233d 58%, #07313c);
  overflow: hidden;
}

.cyber-service-managed .cyber-service-hero { background: linear-gradient(135deg, #050b1f, #082446 56%, #0f3a4b); }
.cyber-service-detection .cyber-service-hero { background: linear-gradient(135deg, #070b1f, #1a2350 56%, #082f49); }
.cyber-service-grc .cyber-service-hero { background: linear-gradient(135deg, #071026, #102b3f 56%, #163826); }
.cyber-service-cloud .cyber-service-hero { background: linear-gradient(135deg, #04111f, #082d45 54%, #063c45); }

.cyber-service-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 70px 70px;
  pointer-events: none;
}

.cyber-service-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.cyber-service-hero h1 {
  max-width: 780px;
  margin: var(--space-5) 0;
  color: #fff;
  font-size: clamp(2.45rem, 5.8vw, 5rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.cyber-service-hero p {
  max-width: 680px;
  color: rgba(255,255,255,0.78);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.8;
}

.cyber-service-visual {
  min-height: 420px;
  border-radius: 32px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 35px 120px rgba(0,0,0,0.32);
  backdrop-filter: blur(20px);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.cyber-service-orb {
  width: 150px;
  height: 150px;
  border-radius: 38px;
  display: grid;
  place-items: center;
  color: #67e8f9;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 0 80px rgba(0,212,255,0.28);
}

.cyber-service-orb svg {
  width: 72px;
  height: 72px;
}

.cyber-service-console {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 10px;
}

.cyber-service-console span {
  padding: 0.78rem 1rem;
  border-radius: 12px;
  background: rgba(5, 11, 31, 0.72);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.78);
  font-weight: 750;
  font-size: var(--text-sm);
}

.cyber-service-stat-band {
  margin-top: -42px;
  position: relative;
  z-index: 2;
}

.cyber-service-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.cyber-service-stat,
.cyber-capability-card,
.cyber-service-tech,
.cyber-service-outcomes {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(0,102,255,0.1);
  box-shadow: 0 20px 65px rgba(8,23,52,0.08);
}

.cyber-service-stat {
  padding: clamp(1.2rem, 2vw, 1.7rem);
  border-radius: 18px;
}

.cyber-service-stat strong {
  display: block;
  color: #071832;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1;
}

.cyber-service-stat span {
  display: block;
  margin-top: 8px;
  color: #526173;
  font-weight: 700;
}

.cyber-service-capabilities,
.cyber-service-workflow,
.cyber-service-proof,
.cyber-service-faq {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.cyber-capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  margin-top: var(--space-12);
}

.cyber-capability-card {
  min-height: 250px;
  padding: clamp(1.25rem, 2vw, 1.8rem);
  border-radius: 22px;
}

.cyber-capability-card span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #071026;
  color: #67e8f9;
  font-weight: 850;
}

.cyber-capability-card h3 {
  margin: var(--space-5) 0 var(--space-3);
  color: #071832;
  font-size: var(--text-xl);
}

.cyber-capability-card p {
  color: #526173;
  line-height: 1.72;
}

.cyber-service-workflow {
  background: #071026;
  color: #fff;
}

.cyber-service-workflow-grid,
.cyber-service-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.cyber-service-workflow h2,
.cyber-service-proof h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.cyber-service-workflow p {
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
}

.cyber-service-flow {
  display: grid;
  gap: 12px;
}

.cyber-service-flow div {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 1rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}

.cyber-service-flow span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0,212,255,0.13);
  color: #67e8f9;
  font-weight: 850;
}

.cyber-service-proof {
  background: #f5f9fc;
}

.cyber-service-outcomes,
.cyber-service-tech {
  border-radius: 26px;
  padding: clamp(1.4rem, 3vw, 2.4rem);
}

.cyber-service-outcomes ul {
  display: grid;
  gap: 10px;
  margin: var(--space-6) 0 0;
  padding: 0;
  list-style: none;
}

.cyber-service-outcomes li {
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: rgba(0,102,255,0.055);
  color: #28456f;
  font-weight: 750;
}

.cyber-service-tech h3 {
  margin-bottom: var(--space-5);
  color: #071832;
}

.cyber-service-tech div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cyber-service-tech span {
  padding: 0.72rem 0.9rem;
  border-radius: 999px;
  background: #071026;
  color: rgba(255,255,255,0.86);
  font-size: var(--text-sm);
  font-weight: 800;
}

.cyber-service-cta {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: #071026;
}

.services-command-hero {
  background: linear-gradient(135deg, #050b1f 0%, #071832 54%, #0a313f 100%);
}

.services-command-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.services-command-panel div,
.services-capability-card {
  border: 1px solid rgba(0,102,255,0.11);
  box-shadow: 0 20px 65px rgba(8,23,52,0.08);
}

.services-command-panel div {
  min-height: 150px;
  padding: var(--space-5);
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.14);
  backdrop-filter: blur(18px);
}

.services-command-panel strong {
  display: block;
  color: #fff;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
}

.services-command-panel span {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

.services-capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  margin-top: var(--space-12);
}

.services-capability-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  padding: clamp(1.25rem, 2vw, 1.8rem);
  border-radius: 24px;
  background: #fff;
}

.services-capability-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--color-primary);
  background: rgba(0,102,255,0.08);
  margin-bottom: var(--space-5);
}

.services-capability-icon svg {
  width: 28px;
  height: 28px;
}

.services-capability-card > span {
  color: var(--color-primary);
  font-size: var(--text-xs);
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.services-capability-card h3 {
  margin: var(--space-2) 0 var(--space-3);
  color: #071832;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.22;
}

.services-capability-card p {
  color: #526173;
  line-height: 1.7;
}

.services-capability-card ul {
  display: grid;
  gap: 8px;
  margin: var(--space-5) 0;
  padding: 0;
  list-style: none;
}

.services-capability-card li {
  color: #28456f;
  font-size: var(--text-sm);
  font-weight: 750;
}

.services-capability-card a {
  margin-top: auto;
}

.services-coverage-section {
  background: #eef5f8;
}

.services-coverage-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.services-coverage-copy h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.12;
}

.services-coverage-copy p {
  color: #526173;
  line-height: 1.8;
}

.services-coverage-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.services-coverage-list span {
  padding: 1rem;
  border-radius: 15px;
  background: #fff;
  border: 1px solid rgba(0,102,255,0.1);
  color: #28456f;
  font-weight: 800;
  box-shadow: 0 14px 38px rgba(8,23,52,0.06);
}

.premium-section,
.services-section,
.process-section,
.why-choose-section,
.erp-section,
.mobile-app-section,
.industries-section,
.testimonials-section,
.contact-section {
  scroll-margin-top: 96px;
}

.btn,
.btn-book,
.services-capability-card a {
  min-height: 44px;
}

.premium-card,
.service-card,
.services-capability-card,
.cyber-capability-card,
.cyber-industry-card {
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.premium-card:hover,
.services-capability-card:hover,
.cyber-capability-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 80px rgba(8,23,52,0.12);
  border-color: rgba(0,102,255,0.22);
}

@media (max-width: 1180px) {
  .services-capability-grid,
  .cyber-capability-grid,
  .service-matrix-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 992px) {
  .cyber-service-hero-grid,
  .cyber-service-workflow-grid,
  .cyber-service-proof-grid,
  .services-coverage-grid {
    grid-template-columns: 1fr;
  }

  .cyber-service-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .site-logo {
    padding: 5px 7px 5px 5px;
  }

  .site-logo .logo-mark-wrap {
    width: 42px;
    height: 42px;
  }

  .site-logo .logo-mark-wrap img {
    width: 33px;
    height: 33px;
  }

  .site-logo .logo-name {
    font-size: 0.98rem;
  }

  .site-logo .logo-tagline {
    font-size: 0.5rem;
  }

  .services-command-panel,
  .services-capability-grid,
  .service-matrix-grid,
  .cyber-capability-grid,
  .services-coverage-list,
  .cyber-service-stats {
    grid-template-columns: 1fr;
  }

  .services-capability-card {
    min-height: auto;
  }

  .cyber-service-stat-band {
    margin-top: 0;
    padding-top: var(--space-4);
    background: #071026;
  }

  .cyber-service-visual {
    min-height: 320px;
  }
}

@media (max-width: 420px) {
  .site-logo .logo-text {
    display: none;
  }
}

/* ==========================================================
   DISTINCT CYBER SERVICE PAGE IDENTITIES
   ========================================================== */

.ops-hero,
.threat-hero,
.grc-hero,
.cloud-hero {
  padding: clamp(7.5rem, 12vw, 11rem) 0 clamp(4rem, 7vw, 7rem);
  overflow: hidden;
  color: #fff;
}

.ops-hero {
  background: linear-gradient(135deg, #030816, #061a34 56%, #052d36);
}

.threat-hero {
  background: linear-gradient(135deg, #060817, #16164a 48%, #082f49);
}

.grc-hero {
  background: linear-gradient(135deg, #f7fbff, #eef6ff);
  color: #071832;
}

.cloud-hero {
  background: linear-gradient(135deg, #eefaff, #ffffff 46%, #eaf5ff);
  color: #071832;
}

.ops-hero-grid,
.threat-hero-grid,
.grc-hero-grid,
.cloud-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.threat-hero-grid,
.cloud-hero-grid {
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
}

.ops-hero h1,
.threat-hero h1,
.grc-hero h1,
.cloud-hero h1 {
  margin: var(--space-5) 0;
  font-size: clamp(2.55rem, 5.8vw, 4.8rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.ops-hero p,
.threat-hero p,
.grc-hero p,
.cloud-hero p {
  max-width: 680px;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.8;
}

.ops-hero p,
.threat-hero p {
  color: rgba(255, 255, 255, 0.76);
}

.grc-hero p,
.cloud-hero p {
  color: #526173;
}

.ops-dashboard,
.threat-radar,
.grc-scorecard,
.cloud-architecture {
  min-height: 380px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 34px 110px rgba(0,0,0,0.28);
  position: relative;
  overflow: hidden;
}

.ops-dashboard {
  display: grid;
  gap: 12px;
  padding: clamp(1.2rem, 2vw, 1.8rem);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
}

.ops-status,
.ops-feed {
  border-radius: 18px;
  background: rgba(5,11,31,0.72);
  border: 1px solid rgba(255,255,255,0.1);
  padding: var(--space-4);
}

.ops-status strong {
  display: block;
  color: #67e8f9;
  font-size: clamp(4rem, 8vw, 6.2rem);
  line-height: 0.95;
}

.ops-status span,
.ops-feed {
  color: rgba(255,255,255,0.75);
}

.ops-feed {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ops-feed span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #00c48c;
  box-shadow: 0 0 18px rgba(0,196,140,0.75);
}

.ops-stat-strip {
  margin-top: -34px;
  position: relative;
  z-index: 2;
}

.ops-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.ops-stat {
  padding: 1.1rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(0,102,255,0.1);
  color: #071832;
  font-weight: 850;
  box-shadow: 0 18px 50px rgba(8,23,52,0.08);
}

.ops-monitoring-section,
.threat-chain-section,
.threat-response-section,
.grc-framework-section,
.grc-maturity-section,
.cloud-layer-section,
.cloud-platform-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.ops-monitor-grid,
.threat-response-grid,
.cloud-layer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  margin-top: var(--space-12);
}

.ops-monitor-card,
.threat-response-card,
.cloud-layer-card {
  min-height: 230px;
  padding: clamp(1.1rem, 2vw, 1.6rem);
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(0,102,255,0.1);
  box-shadow: 0 18px 50px rgba(8,23,52,0.07);
}

.ops-monitor-card span,
.cloud-layer-card span {
  color: var(--color-primary);
  font-size: var(--text-xs);
  font-weight: 850;
  letter-spacing: 0.08em;
}

.ops-monitor-card h3,
.threat-response-card h3,
.cloud-layer-card h3 {
  margin: var(--space-3) 0;
  color: #071832;
  line-height: 1.2;
}

.ops-monitor-card p,
.threat-response-card p {
  color: #526173;
  line-height: 1.7;
}

.ops-flow-section,
.cloud-platform-section {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background: #071026;
  color: #fff;
}

.ops-flow-grid,
.cloud-platform-grid,
.grc-framework-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.ops-flow-grid h2,
.cloud-platform-grid h2,
.grc-framework-grid h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
}

.ops-flow,
.cloud-platform-list,
.grc-framework-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ops-flow span,
.cloud-platform-list span {
  padding: 0.9rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.86);
  font-weight: 800;
}

.threat-radar {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle, rgba(103,232,249,0.22) 0 3px, transparent 4px),
    radial-gradient(circle, rgba(0,212,255,0.14), transparent 55%),
    rgba(255,255,255,0.07);
  backdrop-filter: blur(18px);
}

.threat-radar i {
  position: absolute;
  border: 1px solid rgba(103,232,249,0.28);
  border-radius: 50%;
}

.threat-radar i:nth-child(1) { width: 36%; height: 36%; }
.threat-radar i:nth-child(2) { width: 58%; height: 58%; }
.threat-radar i:nth-child(3) { width: 80%; height: 80%; }

.threat-radar strong {
  color: #67e8f9;
  letter-spacing: 0.12em;
}

.threat-chain {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-top: var(--space-12);
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(0,102,255,0.1);
}

.threat-chain div {
  min-height: 170px;
  padding: var(--space-5);
  background: linear-gradient(180deg, #fff, #f5f9ff);
  border-right: 1px solid rgba(0,102,255,0.1);
}

.threat-chain span {
  display: block;
  color: var(--color-primary);
  font-weight: 850;
  margin-bottom: var(--space-6);
}

.threat-chain strong {
  color: #071832;
  font-size: var(--text-lg);
}

.threat-cta,
.cloud-cta,
.grc-roadmap-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: #f5f9fc;
}

.threat-cta .container,
.cloud-cta .container,
.grc-roadmap {
  display: flex;
  justify-content: space-between;
  gap: var(--space-6);
  align-items: center;
}

.threat-cta h2,
.cloud-cta h2,
.grc-roadmap h2 {
  max-width: 760px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.12;
}

.grc-scorecard {
  padding: clamp(1.4rem, 3vw, 2.4rem);
  background: #fff;
  border-color: rgba(0,102,255,0.12);
  box-shadow: 0 24px 80px rgba(8,23,52,0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.grc-scorecard strong {
  color: var(--color-primary);
  font-size: clamp(4rem, 8vw, 6rem);
  line-height: 1;
}

.grc-scorecard span {
  color: #526173;
  font-weight: 800;
  margin-bottom: var(--space-6);
}

.grc-framework-section,
.cloud-layer-section {
  background: #fff;
}

.grc-framework-cloud span {
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: #071026;
  color: rgba(255,255,255,0.88);
  font-weight: 850;
}

.grc-maturity-section {
  background: #eef5f8;
}

.grc-maturity {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: var(--space-12);
}

.grc-maturity div {
  min-height: 180px;
  padding: var(--space-5);
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(0,102,255,0.1);
  box-shadow: 0 16px 46px rgba(8,23,52,0.07);
}

.grc-maturity span {
  color: var(--color-primary);
  font-weight: 850;
}

.grc-maturity strong {
  display: block;
  margin-top: var(--space-6);
  color: #071832;
  line-height: 1.2;
}

.cloud-architecture {
  display: grid;
  gap: 12px;
  padding: clamp(1.2rem, 2vw, 1.8rem);
  background: rgba(255,255,255,0.72);
  border-color: rgba(0,102,255,0.14);
  box-shadow: 0 24px 80px rgba(8,23,52,0.1);
}

.cloud-architecture span {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0.8rem 1rem;
  border-radius: 14px;
  background: linear-gradient(135deg, #fff, #eef8ff);
  border: 1px solid rgba(0,102,255,0.1);
  color: #28456f;
  font-weight: 850;
}

.cloud-layer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cloud-layer-card {
  min-height: 170px;
}

@media (max-width: 1100px) {
  .ops-monitor-grid,
  .threat-response-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .threat-chain,
  .grc-maturity,
  .cloud-layer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .ops-hero-grid,
  .threat-hero-grid,
  .grc-hero-grid,
  .cloud-hero-grid,
  .ops-flow-grid,
  .cloud-platform-grid,
  .grc-framework-grid {
    grid-template-columns: 1fr;
  }

  .ops-stat-grid,
  .ops-monitor-grid,
  .threat-response-grid,
  .threat-chain,
  .grc-maturity,
  .cloud-layer-grid {
    grid-template-columns: 1fr;
  }

  .threat-cta .container,
  .cloud-cta .container,
  .grc-roadmap {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==========================================================
   FINAL QUALITY PASS: RHYTHM, MOTION, COMPONENT CONSISTENCY
   ========================================================== */

:root {
  --ui-radius-card: 20px;
  --ui-radius-control: 12px;
  --ui-shadow-card: 0 16px 44px rgba(8, 23, 52, 0.075);
  --ui-shadow-card-hover: 0 22px 60px rgba(8, 23, 52, 0.105);
  --ui-border-soft: rgba(0, 102, 255, 0.1);
  --ui-motion: 220ms;
  --ui-ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-section,
.services-section,
.why-choose-section,
.process-section,
.erp-section,
.mobile-app-section,
.industries-section,
.testimonials-section,
.contact-section {
  padding-top: clamp(4.75rem, 8vw, 7rem);
  padding-bottom: clamp(4.75rem, 8vw, 7rem);
}

.section-header {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(2.25rem, 4vw, 3.5rem);
}

.section-title {
  line-height: 1.12;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-subtitle,
.hero-description,
.mobile-app-subtitle,
.contact-subtitle {
  max-width: 68ch;
  line-height: 1.72;
}

.btn,
.btn-book,
.cta-button,
.premium-actions .btn {
  min-height: 46px;
  border-radius: var(--ui-radius-control);
  font-weight: 800;
  letter-spacing: 0;
  transition:
    transform var(--ui-motion) var(--ui-ease),
    box-shadow var(--ui-motion) var(--ui-ease),
    background-color var(--ui-motion) ease,
    border-color var(--ui-motion) ease,
    color var(--ui-motion) ease;
}

.btn:hover,
.btn-book:hover,
.cta-button:hover {
  transform: translateY(-1px);
}

.service-matrix-card,
.premium-card,
.card-gradient-border,
.feature-item,
.module-item,
.testimonial-card,
.industry-lane,
.contact-info-item,
.cyber-capability-card,
.ops-monitor-card,
.threat-response-card,
.cloud-layer-card,
.grc-maturity div {
  border-radius: var(--ui-radius-card);
  border-color: var(--ui-border-soft);
  box-shadow: var(--ui-shadow-card);
}

.service-matrix-card:hover,
.premium-card:hover,
.card-gradient-border:hover,
.module-item:hover,
.testimonial-card:hover,
.industry-lane:hover,
.cyber-capability-card:hover,
.ops-monitor-card:hover,
.threat-response-card:hover,
.cloud-layer-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--ui-shadow-card-hover);
}

.hero-stats-inline .stat-card:hover,
.stat-card:hover,
.erp-modules-grid .module-item:hover,
.mobile-feature-item:hover,
.social-link:hover {
  transform: translateY(-2px);
}

.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
  transition-duration: 560ms;
  transition-timing-function: var(--ui-ease);
}

.reveal {
  transform: translateY(14px);
}

.reveal-left {
  transform: translateX(-16px);
}

.reveal-right {
  transform: translateX(16px);
}

.process-section {
  background: linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}

.process-section .process-steps {
  gap: clamp(14px, 1.8vw, 22px);
  align-items: stretch;
}

.process-section .process-step {
  min-height: 190px;
  padding: clamp(1rem, 2vw, 1.35rem);
  border: 1px solid transparent;
  background: transparent;
}

.process-section .step-number-wrapper {
  margin-bottom: var(--space-3);
}

.process-section .step-icon-wrap {
  width: 58px;
  height: 58px;
  transition:
    transform var(--ui-motion) var(--ui-ease),
    box-shadow var(--ui-motion) var(--ui-ease),
    background-color var(--ui-motion) ease,
    border-color var(--ui-motion) ease;
}

.process-section .step-label {
  margin-bottom: 6px;
  font-size: 0.68rem;
  font-weight: 850;
}

.process-section .step-title {
  min-height: 2.5em;
  margin-bottom: 8px;
  font-size: clamp(0.9rem, 1vw, 1rem);
}

.process-section .step-desc {
  max-width: 24ch;
  margin-inline: auto;
  color: #647084;
  font-size: 0.76rem;
  line-height: 1.55;
}

.service-matrix-section {
  padding-top: clamp(4.5rem, 7vw, 6.25rem);
  padding-bottom: clamp(4.5rem, 7vw, 6.25rem);
}

.service-matrix-grid {
  margin-top: clamp(2rem, 4vw, 3rem);
}

.service-matrix-card {
  min-height: 305px;
}

.service-matrix-copy p {
  max-width: 38ch;
}

.service-matrix-link {
  align-self: flex-start;
}

.why-choose-section {
  background:
    linear-gradient(180deg, #071026 0%, #081833 100%);
}

.erp-section {
  background: linear-gradient(180deg, #f6f9fc 0%, #fff 100%);
}

.industries-section {
  background: linear-gradient(180deg, #fff 0%, #f3f8fb 100%);
}

.contact-section {
  background: linear-gradient(180deg, #071026 0%, #050b1f 100%);
}

.ops-monitor-card,
.threat-response-card,
.cloud-layer-card,
.grc-maturity div {
  transition:
    transform var(--ui-motion) var(--ui-ease),
    box-shadow var(--ui-motion) var(--ui-ease),
    border-color var(--ui-motion) ease;
}

@media (hover: none) {
  .service-matrix-details {
    max-height: none;
    opacity: 1;
  }

  .service-matrix-card:hover,
  .premium-card:hover,
  .card-gradient-border:hover,
  .module-item:hover,
  .testimonial-card:hover,
  .industry-lane:hover,
  .cyber-capability-card:hover {
    transform: none;
  }
}

@media (max-width: 992px) {
  .hero-section,
  .services-section,
  .why-choose-section,
  .process-section,
  .erp-section,
  .mobile-app-section,
  .industries-section,
  .testimonials-section,
  .contact-section {
    padding-top: clamp(3.5rem, 9vw, 5rem);
    padding-bottom: clamp(3.5rem, 9vw, 5rem);
  }

  .section-header {
    margin-bottom: var(--space-8);
  }
}

@media (max-width: 768px) {
  .process-section .process-step {
    min-height: auto;
    padding: var(--space-4);
  }

  .process-section .step-title {
    min-height: 0;
  }

  .process-section .step-desc {
    max-width: 34ch;
  }

  .service-matrix-card {
    min-height: auto;
  }

  .service-matrix-details {
    max-height: none;
    opacity: 1;
  }

  .premium-actions,
  .hero-actions,
  .cta-actions {
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

/* Final production polish: footer brand system */
.site-footer {
  background:
    radial-gradient(circle at 12% 0%, rgba(0, 212, 255, 0.12), transparent 34%),
    radial-gradient(circle at 88% 8%, rgba(0, 102, 255, 0.14), transparent 32%),
    linear-gradient(145deg, #040918 0%, #07132b 52%, #050b1f 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: clamp(4.5rem, 7vw, 7rem);
}

.footer-inner {
  grid-template-columns: minmax(260px, 1.45fr) minmax(150px, 0.8fr) minmax(180px, 0.95fr) minmax(220px, 1.05fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  padding-bottom: clamp(3rem, 5vw, 5rem);
}

.footer-brand {
  gap: 1.15rem;
  max-width: 390px;
}

.footer-logo.site-logo {
  width: fit-content;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.footer-logo.site-logo .logo-name {
  color: #ffffff;
  text-shadow: 0 0 18px rgba(0, 212, 255, 0.2);
}

.footer-logo.site-logo .logo-tagline {
  color: rgba(255, 255, 255, 0.68);
}

.footer-description {
  max-width: 38ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.96rem;
  line-height: 1.75;
}

.footer-col {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 1rem;
}

.footer-col-title {
  margin: 0;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-col-title::after {
  content: '';
  display: block;
  width: 34px;
  height: 2px;
  margin-top: 0.75rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
}

.footer-links,
.footer-contact-list {
  display: grid;
  gap: 0.55rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links a,
.footer-contact-item a,
.footer-contact-item span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.94rem;
  line-height: 1.5;
  text-decoration: none;
}

.footer-links a {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  gap: 0.55rem;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-links a::before {
  content: '';
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 999px;
  background: var(--color-secondary);
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 180ms ease, transform 180ms ease;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(2px);
}

.footer-links a:hover::before {
  opacity: 1;
  transform: scale(1);
}

.footer-contact-item {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  color: var(--color-secondary);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.footer-contact-item a:hover {
  color: #ffffff;
}

.social-links {
  gap: 0.65rem;
  margin-top: 0.35rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(0, 0, 0, 0.16);
}

.footer-bottom-inner {
  min-height: 76px;
}

.footer-copyright,
.footer-legal-links a {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
}

.footer-legal-links a:hover {
  color: #ffffff;
}

