/* ==========================================================================
   Y2K Solutions - Split Product Screenshot Carousel Showcase
   Left: Product Selection Menu | Right: Real Screenshot Carousel Frame
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

:root {
  --bg-page: #F8FAFC;
  --bg-surface: #FFFFFF;
  --bg-surface-subtle: #F1F5F9;
  
  --primary: #2563EB;
  --primary-dark: #1D4ED8;
  --primary-light: #3B82F6;
  --primary-subtle: #EFF6FF;
  
  --accent-purple: #7C3AED;
  --accent-cyan: #06B6D4;
  --accent-gold: #F59E0B;
  --accent-emerald: #10B981;
  
  --brand-navy: #0B1B3D;
  --text-main: #0B132B;
  --text-muted: #475569;
  --text-dim: #94A3B8;
  
  --border-light: #E2E8F0;
  --border-subtle: #EDF2F7;
  
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  
  --shadow-subtle: 0 4px 20px -2px rgba(11, 19, 43, 0.04);
  --shadow-card: 0 14px 34px -4px rgba(11, 19, 43, 0.06), 0 4px 14px -2px rgba(11, 19, 43, 0.03);
  --shadow-hover: 0 24px 48px -8px rgba(37, 99, 235, 0.15);
  
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Outfit', var(--font-main);
  --font-mono: 'JetBrains Mono', monospace;
}

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

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

body.showcase-body {
  background-color: var(--bg-page);
  color: var(--text-main);
  font-family: var(--font-main);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Ambient Background Mesh & Dynamic Orbs */
.ambient-glow-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1050px;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.ambient-circle-1 {
  position: absolute;
  top: -100px;
  left: 10%;
  width: 800px;
  height: 650px;
  background: radial-gradient(circle, rgba(53, 68, 238, 0.15) 0%, rgba(139, 92, 246, 0.08) 50%, transparent 75%);
  filter: blur(100px);
  border-radius: 50%;
  animation: floatOrb1 18s ease-in-out infinite alternate;
}

.ambient-circle-2 {
  position: absolute;
  top: 150px;
  right: -80px;
  width: 700px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 110, 74, 0.12) 0%, rgba(124, 58, 237, 0.06) 60%, transparent 80%);
  filter: blur(100px);
  border-radius: 50%;
  animation: floatOrb2 22s ease-in-out infinite alternate;
}

.ambient-circle-3 {
  position: absolute;
  top: 450px;
  left: 25%;
  width: 550px;
  height: 450px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  filter: blur(95px);
  border-radius: 50%;
}

@keyframes floatOrb1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(60px, 40px) scale(1.08); }
}

@keyframes floatOrb2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-50px, 60px) scale(1.06); }
}

.ambient-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(to right, rgba(226, 232, 240, 0.6) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(226, 232, 240, 0.6) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 75% 55% at 50% 25%, #000 35%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 75% 55% at 50% 25%, #000 35%, transparent 90%);
}

.app-wrapper {
  position: relative;
  z-index: 1;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography & Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.hero-gradient-text {
  background: linear-gradient(135deg, #0B132B 0%, #3544EE 35%, #7C3AED 70%, #FF6E4A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

/* ==========================================================================
   Header / Floating Luxury Navbar
   ========================================================================== */
.showcase-navbar {
  position: fixed;
  top: 18px;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 20px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-floating-pill {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-full);
  box-shadow: 0 10px 30px -6px rgba(11, 19, 43, 0.08), 0 0 0 1px rgba(226, 232, 240, 0.6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.showcase-navbar.scrolled .nav-floating-pill {
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 40px -8px rgba(11, 19, 43, 0.12), 0 0 0 1px rgba(53, 68, 238, 0.12);
  transform: translateY(-4px);
}

.nav-left-cluster {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-mobile-toggle,
.mobile-drawer-overlay,
.mobile-drawer-pane,
.curved-reference-drawer {
  display: none;
}

.nav-brand-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-main-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.04));
  transition: transform 0.25s ease;
}

.nav-brand-wrap:hover .brand-main-logo {
  transform: scale(1.05);
}

.brand-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  background: rgba(53, 68, 238, 0.08);
  border: 1px solid rgba(53, 68, 238, 0.18);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  color: #3544EE;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.nav-items-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  background: #F1F5F9;
  padding: 4px 5px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.03);
}

.nav-items-menu li {
  position: relative;
}

.nav-items-menu li a {
  text-decoration: none;
  color: #475569;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: var(--radius-full);
  transition: all 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  position: relative;
  border: 1px solid transparent;
  user-select: none;
}

.nav-items-menu li a i {
  font-size: 0.95rem;
  transition: transform 0.25s ease;
}

.nav-items-menu li a:hover {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.85);
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(11, 19, 43, 0.05);
}

.nav-items-menu li a:hover i {
  transform: scale(1.18);
}

/* Elevated Active Pill State */
.nav-items-menu li a.active {
  color: #1E3A8A;
  background: #FFFFFF;
  font-weight: 700;
  border-color: rgba(37, 99, 235, 0.28);
  box-shadow: 0 4px 14px -2px rgba(37, 99, 235, 0.18), 0 2px 5px rgba(0, 0, 0, 0.04);
  transform: scale(1.02);
}

.nav-items-menu li a.active i {
  transform: scale(1.15);
}

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

.btn-portal-luxury {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 24px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #FFFFFF !important;
  background: linear-gradient(135deg, #3544EE 0%, #7C3AED 55%, #FF6E4A 100%);
  background-size: 200% auto;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px -2px rgba(53, 68, 238, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.25);
  position: relative;
  overflow: hidden;
}

.btn-portal-luxury:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px -2px rgba(53, 68, 238, 0.55), 0 0 16px rgba(255, 110, 74, 0.35);
}

.btn-portal-luxury i {
  transition: transform 0.2s ease;
}

.btn-portal-luxury:hover i {
  transform: translateX(3px);
}

/* ==========================================================================
   Hero Section (Next-Gen SaaS & High-Energy Styling)
   ========================================================================== */
.hero-stage {
  padding: 132px 0 35px;
  text-align: center;
  position: relative;
}

.hero-content {
  max-width: 1020px;
  margin: 0 auto;
}

/* Glowing Live Architecture Pill */
.hero-tech-beacon-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 22px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(53, 68, 238, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  color: #1E293B;
  box-shadow: 0 4px 18px -2px rgba(53, 68, 238, 0.12);
  margin-bottom: 22px;
  transition: all 0.3s ease;
}

.hero-tech-beacon-pill:hover {
  border-color: #3544EE;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -2px rgba(53, 68, 238, 0.2);
}

.live-pulse-dot {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #10B981;
}

.live-pulse-dot::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.4);
  animation: pulseBeacon 1.8s infinite;
}

@keyframes pulseBeacon {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

.hero-stage h1 {
  font-size: clamp(2.6rem, 5.2vw, 4.35rem);
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 16px;
  line-height: 1.12;
}

.hero-stage p.hero-description {
  font-size: 1.14rem;
  color: #475569;
  line-height: 1.85;
  max-width: 960px;
  margin: 0 auto;
  font-weight: 450;
}

/* Hero Action CTA Buttons */
.hero-buttons-lux {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  padding: 13px 28px;
  font-size: 0.96rem;
  font-weight: 800;
  color: #FFFFFF !important;
  background: linear-gradient(135deg, #2563EB 0%, #3544EE 50%, #7C3AED 100%);
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: 0 8px 24px -4px rgba(37, 99, 235, 0.45);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
}

.btn-hero-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 32px -4px rgba(37, 99, 235, 0.6), 0 0 16px rgba(124, 58, 237, 0.35);
}

.btn-hero-secondary {
  padding: 13px 24px;
  font-size: 0.94rem;
  font-weight: 700;
  color: #065F46 !important;
  background: #FFFFFF;
  border: 1.5px solid #A7F3D0;
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: 0 3px 12px rgba(16, 185, 129, 0.1);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.btn-hero-secondary:hover {
  border-color: #10B981;
  background: #ECFDF5;
  color: #047857 !important;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 22px rgba(16, 185, 129, 0.22);
}

.btn-hero-outline {
  padding: 13px 24px;
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--text-main) !important;
  background: #FFFFFF;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: 0 3px 12px rgba(11, 19, 43, 0.04);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.btn-hero-outline:hover {
  border-color: rgba(37, 99, 235, 0.45);
  color: var(--primary) !important;
  background: #EFF6FF;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.15);
}

/* 4-Card Hero Highlights Bento Strip */
.hero-highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 10px;
  text-align: left;
}

.hero-highlight-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 24px 20px 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 18px -2px rgba(11, 19, 43, 0.035);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
              border-color 0.35s ease;
  cursor: default;
}

/* Top Neon Line */
.hero-highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3.5px;
  opacity: 0;
  transform: scaleX(0.2);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: var(--radius-full);
  z-index: 2;
}

/* Light Shimmer Sweep */
.hero-highlight-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -120%;
  width: 60%;
  height: 200%;
  background: linear-gradient(105deg, transparent 20%, rgba(255, 255, 255, 0.75) 50%, transparent 80%);
  transform: rotate(25deg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, left 0.75s ease;
  z-index: 3;
}

.hero-highlight-card:hover {
  transform: translateY(-8px) scale(1.018);
}

.hero-highlight-card:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.hero-highlight-card:hover::after {
  opacity: 1;
  left: 140%;
}

/* Watermark Background Icon */
.hero-card-watermark {
  position: absolute;
  right: -10px;
  bottom: -15px;
  font-size: 80px;
  color: var(--text-main);
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: rotate(0deg) scale(1);
}

.hero-highlight-card:hover .hero-card-watermark {
  opacity: 0.085;
  transform: rotate(-10deg) scale(1.2);
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.hero-highlight-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
}

.hero-highlight-card:hover .hero-highlight-icon {
  transform: scale(1.15) rotate(-6deg);
}

.icon-amber { background: #FEF3C7; color: #D97706; }
.icon-emerald { background: #ECFDF5; color: #059669; }
.icon-blue { background: #EFF6FF; color: #2563EB; }
.icon-purple { background: #F3E8FF; color: #7C3AED; }
.icon-coral { background: #FEE2E2; color: #DC2626; }

.hero-card-tag {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.tag-purple { background: #F3E8FF; color: #7C3AED; }
.tag-amber { background: #FEF3C7; color: #B45309; }
.tag-emerald { background: #ECFDF5; color: #047857; }
.tag-sky { background: #E0F2FE; color: #0284C7; }
.tag-coral { background: #FEE2E2; color: #DC2626; }

.hero-highlight-card h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 8px;
  letter-spacing: -0.2px;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.hero-highlight-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Common Section Headline Styling */
.section-headline {
  text-align: center;
  max-width: 1050px;
  margin: 0 auto 28px;
}

.section-headline h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.65rem);
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.architecture-section .section-headline h2,
.process-section .section-headline h2 {
  white-space: nowrap;
}

.section-headline p {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.6;
  max-width: 820px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .architecture-section .section-headline h2,
  .process-section .section-headline h2 {
    white-space: normal;
  }
}

/* ==========================================================================
   OUR PRODUCTS SPLIT STAGE (Left Buttons, Right Screenshot Carousel)
   ========================================================================== */
.products-stage-section {
  padding: 40px 0 55px;
}

.products-split-stage {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 30px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 30px;
  box-shadow: var(--shadow-card);
  align-items: stretch;
}

/* Left Column: Product Selection Buttons */
.products-menu-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}

.product-select-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: var(--bg-surface-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  text-align: left;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              border-color 0.3s ease,
              background 0.3s ease;
}

/* Left Vertical Neon Indicator Bar */
.product-select-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4.5px;
  height: 100%;
  opacity: 0;
  transform: scaleY(0.2);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  z-index: 2;
}

/* Dynamic Light Shimmer Sweep */
.product-select-btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -120%;
  width: 60%;
  height: 200%;
  background: linear-gradient(105deg, transparent 20%, rgba(255, 255, 255, 0.8) 50%, transparent 80%);
  transform: rotate(25deg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, left 0.65s ease;
  z-index: 3;
}

.product-select-btn:hover {
  transform: translateX(6px) scale(1.015);
  background: #FFFFFF;
}

.product-select-btn:hover::before,
.product-select-btn.active::before {
  opacity: 1;
  transform: scaleY(1);
}

.product-select-btn:hover::after {
  opacity: 1;
  left: 140%;
}

.product-select-btn.active {
  transform: translateX(6px);
  background: #FFFFFF;
}

/* Watermark Background Icon */
.btn-watermark-icon {
  position: absolute;
  right: 28px;
  bottom: -12px;
  font-size: 64px;
  color: var(--text-main);
  opacity: 0.035;
  pointer-events: none;
  z-index: 0;
  transition: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: rotate(0deg) scale(1);
}

.product-select-btn:hover .btn-watermark-icon {
  opacity: 0.095;
  transform: rotate(-10deg) scale(1.22);
}

/* 1. VoltERP Button Theme (Amber) */
.product-btn-volterp::before {
  background: linear-gradient(180deg, #F59E0B 0%, #D97706 100%);
}
.product-btn-volterp:hover,
.product-btn-volterp.active {
  border-color: rgba(217, 119, 6, 0.45);
  box-shadow: 0 12px 28px -4px rgba(217, 119, 6, 0.18), 0 0 0 1px rgba(217, 119, 6, 0.15);
}
.product-btn-volterp:hover .btn-watermark-icon {
  color: #D97706;
}
.product-btn-volterp:hover .btn-icon-sq {
  box-shadow: 0 8px 20px -2px rgba(217, 119, 6, 0.35);
}
.product-btn-volterp.active .btn-chevron,
.product-btn-volterp:hover .btn-chevron {
  color: #D97706;
}

/* 2. PharmaX Button Theme (Sky Blue) */
.product-btn-pharmax::before {
  background: linear-gradient(180deg, #0284C7 0%, #06B6D4 100%);
}
.product-btn-pharmax:hover,
.product-btn-pharmax.active {
  border-color: rgba(2, 132, 199, 0.45);
  box-shadow: 0 12px 28px -4px rgba(2, 132, 199, 0.18), 0 0 0 1px rgba(2, 132, 199, 0.15);
}
.product-btn-pharmax:hover .btn-watermark-icon {
  color: #0284C7;
}
.product-btn-pharmax:hover .btn-icon-sq {
  box-shadow: 0 8px 20px -2px rgba(2, 132, 199, 0.35);
}
.product-btn-pharmax.active .btn-chevron,
.product-btn-pharmax:hover .btn-chevron {
  color: #0284C7;
}

/* 3. RetailX Button Theme (Emerald Green) */
.product-btn-retailx::before {
  background: linear-gradient(180deg, #059669 0%, #10B981 100%);
}
.product-btn-retailx:hover,
.product-btn-retailx.active {
  border-color: rgba(5, 150, 105, 0.45);
  box-shadow: 0 12px 28px -4px rgba(5, 150, 105, 0.18), 0 0 0 1px rgba(5, 150, 105, 0.15);
}
.product-btn-retailx:hover .btn-watermark-icon {
  color: #059669;
}
.product-btn-retailx:hover .btn-icon-sq {
  box-shadow: 0 8px 20px -2px rgba(5, 150, 105, 0.35);
}
.product-btn-retailx.active .btn-chevron,
.product-btn-retailx:hover .btn-chevron {
  color: #059669;
}

/* 4. BitePOS Button Theme (Coral Red) */
.product-btn-bitepos::before {
  background: linear-gradient(180deg, #DC2626 0%, #EA580C 100%);
}
.product-btn-bitepos:hover,
.product-btn-bitepos.active {
  border-color: rgba(220, 38, 38, 0.45);
  box-shadow: 0 12px 28px -4px rgba(220, 38, 38, 0.18), 0 0 0 1px rgba(220, 38, 38, 0.15);
}
.product-btn-bitepos:hover .btn-watermark-icon {
  color: #DC2626;
}
.product-btn-bitepos:hover .btn-icon-sq {
  box-shadow: 0 8px 20px -2px rgba(220, 38, 38, 0.35);
}
.product-btn-bitepos.active .btn-chevron,
.product-btn-bitepos:hover .btn-chevron {
  color: #DC2626;
}

.btn-icon-sq {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.product-select-btn:hover .btn-icon-sq {
  transform: scale(1.14) rotate(-6deg);
}

.icon-volterp { background: #FEF3C7; color: #D97706; }
.icon-pos { background: #E0F2FE; color: #0284C7; }
.icon-whatsapp { background: #FEE2E2; color: #DC2626; }
.icon-mobile { background: #F3E8FF; color: #7C3AED; }
.icon-custom { background: #ECFDF5; color: #059669; }

.btn-info-wrap {
  flex-grow: 1;
  position: relative;
  z-index: 1;
}

.btn-tag-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.product-badge-mini {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: var(--radius-full);
  letter-spacing: 0.3px;
  transition: transform 0.25s ease;
}

.product-select-btn:hover .product-badge-mini {
  transform: scale(1.06);
}

.tag-amber { background: #FEF3C7; color: #B45309; }
.tag-sky { background: #E0F2FE; color: #0369A1; }
.tag-emerald { background: #ECFDF5; color: #047857; }
.tag-coral { background: #FEE2E2; color: #B91C1C; }

.module-count-pill {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-dim);
  background: rgba(148, 163, 184, 0.12);
  padding: 2px 6px;
  border-radius: var(--radius-xs);
}

.btn-info-wrap strong {
  display: block;
  font-size: 0.98rem;
  color: var(--text-main);
  margin-bottom: 2px;
  font-family: var(--font-heading);
}

.btn-info-wrap small {
  display: block;
  font-size: 0.76rem;
  color: var(--text-dim);
  font-weight: 600;
}

.btn-chevron {
  font-size: 13px;
  color: var(--text-dim);
  position: relative;
  z-index: 1;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.product-select-btn:hover .btn-chevron {
  transform: translateX(5px) scale(1.15);
}

.product-select-btn.active .btn-chevron {
  transform: translateX(4px);
}

/* Right Side: Interactive Screenshot Carousel Window Frame */
.products-carousel-col {
  background: var(--bg-surface-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  min-height: 520px;
  box-shadow: 0 6px 24px -4px rgba(11, 19, 43, 0.04);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.products-carousel-col:hover {
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: 0 12px 32px -6px rgba(37, 99, 235, 0.08);
}

/* Mac Browser Chrome Bar */
.mac-chrome-bar {
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-light);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mac-traffic-lights {
  display: flex;
  gap: 7px;
  align-items: center;
}

.mac-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
  cursor: pointer;
}
.mac-dot.close { background: #FF5F56; }
.mac-dot.minimize { background: #FFBD2E; }
.mac-dot.maximize { background: #27C93F; }

.mac-dot.close:hover {
  transform: scale(1.28);
  box-shadow: 0 0 8px rgba(255, 95, 86, 0.8);
}
.mac-dot.minimize:hover {
  transform: scale(1.28);
  box-shadow: 0 0 8px rgba(255, 189, 46, 0.8);
}
.mac-dot.maximize:hover {
  transform: scale(1.28);
  box-shadow: 0 0 8px rgba(39, 201, 63, 0.8);
}

.carousel-slide-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.slide-nav-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: #FFFFFF;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 1px 4px rgba(11, 19, 43, 0.04);
}

.slide-nav-btn:hover {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
  transform: scale(1.16);
  box-shadow: 0 6px 16px -2px rgba(37, 99, 235, 0.4);
}

.slide-nav-btn:active {
  transform: scale(0.92);
}

/* Carousel Body & Slides Viewport */
.carousel-viewport {
  flex-grow: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.product-carousel-deck {
  display: none;
  animation: fadeInDeck 0.35s ease;
  height: 100%;
}

.product-carousel-deck.active {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

/* Slide Item Inside Carousel */
.carousel-slide-item {
  display: none;
  animation: fadeInDeck 0.3s ease;
}

.carousel-slide-item.active {
  display: block;
}

.slide-headline-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  flex-wrap: wrap;
  gap: 10px;
}

.slide-headline-row h3 {
  font-size: 1.35rem;
  letter-spacing: -0.2px;
}

.slide-tag-pill {
  font-size: 0.76rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.slide-tag-pill:hover {
  transform: scale(1.06);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* ==========================================================================
   DEDICATED REAL SCREENSHOT IMAGE DISPLAY FRAME + LIGHTBOX TRIGGER
   ========================================================================== */
.screenshot-display-frame {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 8px;
  box-shadow: var(--shadow-subtle);
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Shimmer shine over screenshot on hover */
.screenshot-display-frame::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -120%;
  width: 60%;
  height: 200%;
  background: linear-gradient(105deg, transparent 20%, rgba(255, 255, 255, 0.6) 50%, transparent 80%);
  transform: rotate(25deg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, left 0.75s ease;
  z-index: 2;
}

.screenshot-display-frame:hover {
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 16px 36px -8px rgba(37, 99, 235, 0.16);
  transform: translateY(-3px);
}

.screenshot-display-frame:hover::after {
  opacity: 1;
  left: 140%;
}

.screenshot-img {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  display: block;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.screenshot-display-frame:hover .screenshot-img {
  transform: scale(1.025);
}

.zoom-hover-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(11, 19, 43, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #FFFFFF;
  padding: 7px 16px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  opacity: 0;
  transform: translateY(8px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.2);
  z-index: 4;
}

.screenshot-display-frame:hover .zoom-hover-badge {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.zoom-hover-badge i {
  color: #60A5FA;
  transition: transform 0.25s ease;
}

.screenshot-display-frame:hover .zoom-hover-badge i {
  transform: scale(1.15) rotate(6deg);
}

/* Caption bar under screenshot */
.screenshot-caption-box {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 13px 18px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 2px 10px rgba(11, 19, 43, 0.02);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.screenshot-caption-box:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: 0 6px 20px -4px rgba(11, 19, 43, 0.06);
}

.caption-lead {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #334155;
  line-height: 1.5;
}

.caption-lead i {
  font-size: 1.05rem;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.screenshot-caption-box:hover .caption-lead i {
  transform: scale(1.22) rotate(-6deg);
}

.caption-lead strong {
  color: var(--text-main);
  font-weight: 700;
}

.caption-tag-pill {
  font-size: 0.76rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.2px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.caption-tag-pill:hover {
  transform: scale(1.06);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* Carousel Bottom Indicators & Feature Badges */
.carousel-footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
  flex-wrap: wrap;
  gap: 12px;
}

.carousel-indicators-dots {
  display: flex;
  gap: 7px;
  align-items: center;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #CBD5E1;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.carousel-dot:hover {
  transform: scale(1.35);
  background: var(--primary-light);
}

.carousel-dot.active {
  width: 24px;
  border-radius: 5px;
  background: var(--primary);
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.45);
}

.slide-feature-pills {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.slide-feature-pills span {
  font-size: 0.78rem;
  font-weight: 600;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  color: #334155;
  padding: 5px 13px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 1px 4px rgba(11, 19, 43, 0.02);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: default;
}

.slide-feature-pills span:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 6px 16px -2px rgba(37, 99, 235, 0.2);
  background: var(--primary-subtle);
}

.slide-feature-pills span i {
  transition: transform 0.25s ease;
}

.slide-feature-pills span:hover i {
  transform: scale(1.22) rotate(-6deg);
}

/* ==========================================================================
   Architecture Comparison Matrix (Offline vs Traditional Cloud)
   ========================================================================== */
.architecture-section {
  padding: 80px 0;
  background: #FFFFFF;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.architecture-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 32px;
}

.compare-card {
  border-radius: var(--radius-xl);
  padding: 36px 32px 30px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
              border-color 0.35s ease;
}

/* Light Shimmer Sweep on Compare Cards */
.compare-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -120%;
  width: 60%;
  height: 200%;
  background: linear-gradient(105deg, transparent 20%, rgba(255, 255, 255, 0.75) 50%, transparent 80%);
  transform: rotate(25deg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, left 0.75s ease;
  z-index: 3;
}

.compare-card:hover::after {
  opacity: 1;
  left: 140%;
}

.compare-watermark-icon {
  position: absolute;
  right: -10px;
  bottom: -15px;
  font-size: 110px;
  opacity: 0.035;
  pointer-events: none;
  z-index: 0;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.compare-card:hover .compare-watermark-icon {
  opacity: 0.085;
  transform: rotate(-10deg) scale(1.15);
}

/* 1. Cloud Flaws Card */
.compare-card-cloud {
  background: #FFFDFD;
  border: 1.5px solid #FECDD3;
  box-shadow: 0 4px 20px -2px rgba(225, 29, 72, 0.04);
}

.compare-card-cloud:hover {
  transform: translateY(-6px);
  border-color: #FDA4AF;
  box-shadow: 0 16px 36px -6px rgba(225, 29, 72, 0.12);
}

.compare-card-cloud h3 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: #9F1239;
  margin-bottom: 6px;
  letter-spacing: -0.2px;
  position: relative;
  z-index: 1;
}

.icon-cloud-warn {
  background: #FFE4E6;
  color: #E11D48;
}

.badge-cloud-warn {
  background: #FFE4E6;
  color: #9F1239;
  border: 1px solid #FECDD3;
}

/* 2. Y2K Advantages Card */
.compare-card-y2k {
  background: #FFFFFF;
  border: 1.5px solid rgba(37, 99, 235, 0.35);
  box-shadow: 0 10px 32px -4px rgba(37, 99, 235, 0.09), 0 0 0 1px rgba(37, 99, 235, 0.1);
  position: relative;
}

/* Top Neon Line for Y2K */
.compare-card-y2k::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2563EB, #10B981);
  border-top-left-radius: var(--radius-xl);
  border-top-right-radius: var(--radius-xl);
  z-index: 2;
}

.compare-card-y2k:hover {
  transform: translateY(-8px) scale(1.012);
  border-color: #2563EB;
  box-shadow: 0 20px 48px -8px rgba(37, 99, 235, 0.18), 0 0 0 1.5px rgba(37, 99, 235, 0.3);
}

.compare-card-y2k h3 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: #1E3A8A;
  margin-bottom: 6px;
  letter-spacing: -0.2px;
  position: relative;
  z-index: 1;
}

.icon-y2k-prime {
  background: #EFF6FF;
  color: #2563EB;
}

.badge-y2k-prime {
  background: #ECFDF5;
  color: #047857;
  border: 1px solid #A7F3D0;
}

.compare-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.compare-icon-sq {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  transition: all 0.35s ease;
}

.compare-card:hover .compare-icon-sq {
  transform: scale(1.12) rotate(-6deg);
}

.compare-status-badge {
  font-family: var(--font-heading);
  font-size: 0.74rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.compare-card-lead {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.compare-checklist {
  list-style: none;
  padding: 18px 0 0;
  margin: 0 0 20px 0;
  border-top: 1px dashed var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
  flex: 1;
}

.compare-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  line-height: 1.55;
}

.compare-checklist li i {
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.compare-card:hover .compare-checklist li i {
  transform: scale(1.2);
}

.compare-checklist li strong {
  display: block;
  font-size: 0.94rem;
  color: var(--text-main);
  font-family: var(--font-heading);
  margin-bottom: 2px;
}

.compare-checklist li span {
  color: var(--text-muted);
  font-size: 0.86rem;
}

/* In-Card Trays (Integrated into Cards) */
.card-cloud-flaw-tray {
  margin-top: auto;
  background: #FFF1F2;
  border: 1px solid #FECDD3;
  border-radius: var(--radius-md);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.86rem;
  color: #9F1239;
  line-height: 1.45;
  position: relative;
  z-index: 1;
}

.card-cloud-flaw-tray i {
  font-size: 1.25rem;
  flex-shrink: 0;
  color: #E11D48;
}

.card-cloud-flaw-tray strong {
  color: #881337;
  font-weight: 700;
}

.card-pipeline-tray {
  margin-top: auto;
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: var(--radius-md);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.card-pipeline-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #1E40AF;
  font-family: var(--font-heading);
  letter-spacing: 0.2px;
}

.card-pipeline-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.mini-step-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 8px;
  padding: 6px 10px;
  flex: 1;
  box-shadow: 0 1px 3px rgba(37, 99, 235, 0.05);
}

.mini-step-num {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  color: #2563EB;
  background: #EFF6FF;
  border-radius: 4px;
  padding: 2px 5px;
  flex-shrink: 0;
}

.mini-step-info strong {
  display: block;
  font-size: 0.76rem;
  color: var(--text-main);
  font-family: var(--font-heading);
  line-height: 1.2;
}

.mini-step-info small {
  display: block;
  font-size: 0.68rem;
  color: var(--text-muted);
  line-height: 1.2;
}

.mini-step-arrow {
  color: #93C5FD;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ==========================================================================
   Engineering Services Matrix (6-Pillar Bento Grid with Dynamic Animations)
   ========================================================================== */
.services-section {
  padding: 75px 0;
  background: #FFFFFF;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.services-3col-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.service-bento-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 32px 28px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px -2px rgba(11, 19, 43, 0.03);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
              border-color 0.35s ease;
  cursor: default;
}

/* Neon Top Border Accent Line */
.service-bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3.5px;
  opacity: 0;
  transform: scaleX(0.2);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: var(--radius-full);
  z-index: 2;
}

/* Dynamic Light Shimmer Sweep */
.service-bento-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -100%;
  width: 60%;
  height: 200%;
  background: linear-gradient(105deg, transparent 20%, rgba(255, 255, 255, 0.75) 50%, transparent 80%);
  transform: rotate(25deg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, left 0.75s ease;
  z-index: 3;
}

.service-bento-card:hover {
  transform: translateY(-9px) scale(1.015);
}

.service-bento-card:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.service-bento-card:hover::after {
  opacity: 1;
  left: 140%;
}

/* Watermark Background Icon Animation */
.service-watermark-icon {
  position: absolute;
  right: -15px;
  bottom: -20px;
  font-size: 115px;
  color: var(--text-main);
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: rotate(0deg) scale(1);
}

.service-bento-card:hover .service-watermark-icon {
  opacity: 0.085;
  transform: rotate(-10deg) scale(1.18);
}

/* Individual Card Themes: Top Neon Bar, Border Color, Glow & Icon Shadows */
/* 1. Primary Blue (ERP & SaaS) */
.card-glow-primary::before {
  background: linear-gradient(90deg, #2563EB, #60A5FA, #7C3AED);
}
.card-glow-primary:hover {
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 24px 48px -10px rgba(37, 99, 235, 0.18), 0 0 0 1px rgba(37, 99, 235, 0.15);
}
.card-glow-primary:hover .service-watermark-icon {
  color: #2563EB;
}
.card-glow-primary:hover .service-icon-sq {
  box-shadow: 0 10px 25px -4px rgba(37, 99, 235, 0.38);
}
.card-glow-primary:hover h4 {
  color: #1D4ED8;
}

/* 2. Emerald Green (POS) */
.card-glow-emerald::before {
  background: linear-gradient(90deg, #059669, #34D399, #10B981);
}
.card-glow-emerald:hover {
  border-color: rgba(5, 150, 105, 0.45);
  box-shadow: 0 24px 48px -10px rgba(5, 150, 105, 0.18), 0 0 0 1px rgba(5, 150, 105, 0.15);
}
.card-glow-emerald:hover .service-watermark-icon {
  color: #059669;
}
.card-glow-emerald:hover .service-icon-sq {
  box-shadow: 0 10px 25px -4px rgba(5, 150, 105, 0.38);
}
.card-glow-emerald:hover h4 {
  color: #047857;
}

/* 3. Purple (Mobile Apps) */
.card-glow-purple::before {
  background: linear-gradient(90deg, #7C3AED, #A78BFA, #EC4899);
}
.card-glow-purple:hover {
  border-color: rgba(124, 58, 237, 0.45);
  box-shadow: 0 24px 48px -10px rgba(124, 58, 237, 0.18), 0 0 0 1px rgba(124, 58, 237, 0.15);
}
.card-glow-purple:hover .service-watermark-icon {
  color: #7C3AED;
}
.card-glow-purple:hover .service-icon-sq {
  box-shadow: 0 10px 25px -4px rgba(124, 58, 237, 0.38);
}
.card-glow-purple:hover h4 {
  color: #6D28D9;
}

/* 4. Amber (Desktop Offline) */
.card-glow-amber::before {
  background: linear-gradient(90deg, #D97706, #FBBF24, #F59E0B);
}
.card-glow-amber:hover {
  border-color: rgba(217, 119, 6, 0.45);
  box-shadow: 0 24px 48px -10px rgba(217, 119, 6, 0.18), 0 0 0 1px rgba(217, 119, 6, 0.15);
}
.card-glow-amber:hover .service-watermark-icon {
  color: #D97706;
}
.card-glow-amber:hover .service-icon-sq {
  box-shadow: 0 10px 25px -4px rgba(217, 119, 6, 0.38);
}
.card-glow-amber:hover h4 {
  color: #B45309;
}

/* 5. Coral Red (WhatsApp Bots) */
.card-glow-coral::before {
  background: linear-gradient(90deg, #DC2626, #F87171, #EA580C);
}
.card-glow-coral:hover {
  border-color: rgba(220, 38, 38, 0.45);
  box-shadow: 0 24px 48px -10px rgba(220, 38, 38, 0.18), 0 0 0 1px rgba(220, 38, 38, 0.15);
}
.card-glow-coral:hover .service-watermark-icon {
  color: #DC2626;
}
.card-glow-coral:hover .service-icon-sq {
  box-shadow: 0 10px 25px -4px rgba(220, 38, 38, 0.38);
}
.card-glow-coral:hover h4 {
  color: #B91C1C;
}

/* 6. Sky Blue (Cloud Sync) */
.card-glow-sky::before {
  background: linear-gradient(90deg, #0284C7, #38BDF8, #2563EB);
}
.card-glow-sky:hover {
  border-color: rgba(2, 132, 199, 0.45);
  box-shadow: 0 24px 48px -10px rgba(2, 132, 199, 0.18), 0 0 0 1px rgba(2, 132, 199, 0.15);
}
.card-glow-sky:hover .service-watermark-icon {
  color: #0284C7;
}
.card-glow-sky:hover .service-icon-sq {
  box-shadow: 0 10px 25px -4px rgba(2, 132, 199, 0.38);
}
.card-glow-sky:hover h4 {
  color: #0369A1;
}

/* Top Row: Icon + Badge */
.service-bento-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.service-icon-sq {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-bento-card:hover .service-icon-sq {
  transform: scale(1.15) rotate(-6deg);
}

.service-badge-pill {
  font-family: var(--font-heading);
  font-size: 0.74rem;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-bento-card:hover .service-badge-pill {
  transform: scale(1.05);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.service-bento-card h4 {
  font-family: var(--font-heading);
  font-size: 1.28rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 11px;
  line-height: 1.35;
  letter-spacing: -0.2px;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.service-bento-card p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.68;
  margin-bottom: 22px;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}

/* Checklist with Stagger Glide Animation */
.service-checklist {
  list-style: none;
  margin: 0 0 22px 0;
  padding: 16px 0 0 0;
  border-top: 1px dashed var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.service-checklist li {
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-checklist li i {
  font-size: 0.95rem;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-bento-card:hover .service-checklist li:nth-child(1) {
  transform: translateX(6px);
}
.service-bento-card:hover .service-checklist li:nth-child(2) {
  transform: translateX(8px);
  transition-delay: 0.03s;
}
.service-bento-card:hover .service-checklist li:nth-child(3) {
  transform: translateX(10px);
  transition-delay: 0.06s;
}

.service-bento-card:hover .service-checklist li i {
  transform: scale(1.22);
}

/* Tech Footer & Tags */
.service-tech-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.tech-code-pill {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand-navy);
  background: var(--bg-surface-subtle);
  border: 1px solid var(--border-light);
  padding: 4px 11px;
  border-radius: 6px;
  display: inline-block;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-bento-card:hover .tech-code-pill {
  transform: translateY(-2px);
  background: #FFFFFF;
}

.tech-code-pill:hover {
  background: var(--primary-subtle) !important;
  color: var(--primary) !important;
  border-color: rgba(37, 99, 235, 0.4) !important;
  transform: translateY(-4px) scale(1.08) !important;
  box-shadow: 0 4px 12px -2px rgba(37, 99, 235, 0.25);
}

/* Hide Mobile Carousel Controls on Desktop */
.services-carousel-nav {
  display: none;
}

/* ==========================================================================
   Engineering & Onboarding Process Section (4-Step Seamless Roadmap)
   ========================================================================== */
.process-section {
  padding: 80px 0;
  background: #F8FAFC;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.process-4col-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 34px 26px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px -2px rgba(11, 19, 43, 0.03);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
              border-color 0.35s ease;
  cursor: default;
}

/* Neon Top Line on Process Cards */
.process-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3.5px;
  opacity: 0;
  transform: scaleX(0.2);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: var(--radius-full);
  z-index: 2;
}

/* Light Shimmer Sweep */
.process-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -120%;
  width: 60%;
  height: 200%;
  background: linear-gradient(105deg, transparent 20%, rgba(255, 255, 255, 0.75) 50%, transparent 80%);
  transform: rotate(25deg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, left 0.75s ease;
  z-index: 3;
}

.process-card:hover {
  transform: translateY(-9px) scale(1.015);
}

.process-card:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.process-card:hover::after {
  opacity: 1;
  left: 140%;
}

.process-watermark-num {
  position: absolute;
  right: 18px;
  top: 14px;
  font-family: var(--font-heading);
  font-size: 3.8rem;
  font-weight: 900;
  color: #0F172A;
  opacity: 0.04;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  transition: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.process-card:hover .process-watermark-num {
  opacity: 0.095;
  transform: scale(1.15) translateY(-4px);
}

.process-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.process-step-badge {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 11px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-blue {
  background: #EFF6FF;
  color: #2563EB;
  border: 1px solid #BFDBFE;
}

.badge-purple {
  background: #F3E8FF;
  color: #7C3AED;
  border: 1px solid #DDD6FE;
}

.badge-amber {
  background: #FEF3C7;
  color: #D97706;
  border: 1px solid #FDE68A;
}

.badge-emerald {
  background: #ECFDF5;
  color: #047857;
  border: 1px solid #A7F3D0;
}

.process-icon-sq {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.process-card:hover .process-icon-sq {
  transform: scale(1.15) rotate(-6deg);
}

.icon-blue { background: #EFF6FF; color: #2563EB; }
.icon-purple { background: #F3E8FF; color: #7C3AED; }
.icon-amber { background: #FEF3C7; color: #D97706; }
.icon-emerald { background: #ECFDF5; color: #059669; }

.process-card h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 10px;
  line-height: 1.35;
  letter-spacing: -0.2px;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.process-card p {
  color: var(--text-muted);
  font-size: 0.89rem;
  line-height: 1.62;
  margin-bottom: 22px;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}

.process-milestone-pill {
  background: #F8FAFC;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #334155;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  margin-top: auto;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.process-card:hover .process-milestone-pill {
  background: #FFFFFF;
  border-color: rgba(37, 99, 235, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px -2px rgba(11, 19, 43, 0.06);
}

/* ==========================================================================
   Contact & Direct Connect Section (Executive Engineering Access)
   ========================================================================== */
.contact-section {
  padding: 60px 0 75px;
  background: var(--bg-page);
  position: relative;
}

/* 2-Column Split Stage Layout */
.contact-split-stage {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 36px;
  align-items: stretch;
  width: 100%;
  margin-bottom: 30px;
}

/* Left Pane: Info, Direct Cards, CTAs */
.contact-info-pane {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  height: 100%;
}

.contact-info-pane h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  line-height: 1.22;
}

.contact-lead-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

.contact-cards-vertical {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 0;
  flex-grow: 1;
  justify-content: flex-start;
}

.contact-quick-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: #FFFFFF;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text-main);
  box-shadow: 0 2px 6px rgba(11, 19, 43, 0.02);
  transition: all 0.25s ease;
}

.contact-quick-link:hover {
  transform: translateY(-2px);
  border-color: #CBD5E1;
  box-shadow: 0 8px 20px -4px rgba(15, 23, 42, 0.08);
}

.contact-card-phone:hover {
  border-color: #93C5FD;
}
.contact-card-whatsapp:hover {
  border-color: #6EE7B7;
}
.contact-card-email:hover {
  border-color: #FDE68A;
}

.contact-icon-sq {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.contact-quick-link:hover .contact-icon-sq {
  transform: scale(1.08);
}

.contact-card-phone .contact-icon-sq {
  background: #EFF6FF;
  color: #2563EB;
}
.contact-card-whatsapp .contact-icon-sq {
  background: #ECFDF5;
  color: #10B981;
}
.contact-card-email .contact-icon-sq {
  background: #FEF3C7;
  color: #D97706;
}

.contact-info-wrap {
  flex-grow: 1;
}

.contact-card-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #64748B;
  margin-bottom: 2px;
}

.contact-info-wrap strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-main);
  font-family: var(--font-heading);
  line-height: 1.3;
}

.contact-sub-hint {
  display: block;
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 1px;
}

.contact-chevron {
  font-size: 14px;
  color: #94A3B8;
  transition: transform 0.25s ease, color 0.25s ease;
}

.contact-quick-link:hover .contact-chevron {
  transform: translateX(4px);
  color: var(--primary);
}

/* Right Pane: Form Box */
.contact-form-pane {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Clean Minimal Contact Form */
.contact-form-box {
  background: #FFFFFF;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 32px 30px;
  margin: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.04);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form-box:hover {
  border-color: #CBD5E1;
  box-shadow: 0 8px 28px -4px rgba(15, 23, 42, 0.07);
}

.contact-form-header {
  text-align: left;
  margin-bottom: 20px;
}

.contact-form-header h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 6px;
  letter-spacing: -0.2px;
}

.contact-form-header p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.form-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.form-field-group label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #334155;
  font-family: var(--font-heading);
}

.label-optional {
  font-weight: 500;
  font-size: 0.76rem;
  color: #94A3B8;
}

/* Simple Clean Inputs */
.input-clean,
.textarea-clean {
  width: 100%;
  background: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-family: var(--font-main);
  font-size: 0.92rem;
  color: var(--text-main);
  outline: none;
  transition: all 0.2s ease;
}

.input-clean:hover,
.textarea-clean:hover {
  background: #FFFFFF;
  border-color: #CBD5E1;
}

.input-clean:focus,
.textarea-clean:focus {
  background: #FFFFFF;
  border-color: #2563EB;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.input-clean::placeholder,
.textarea-clean::placeholder {
  color: #94A3B8;
  font-size: 0.86rem;
}

.textarea-clean {
  resize: vertical;
  min-height: 80px;
  line-height: 1.5;
}

/* Clean Dropdown */
.luxury-dropdown {
  position: relative;
  width: 100%;
  user-select: none;
}

.luxury-dropdown-trigger {
  width: 100%;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  border-radius: var(--radius-sm);
  padding: 0 14px;
  font-family: var(--font-main);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-main);
  cursor: pointer;
  outline: none;
  transition: all 0.2s ease;
}

.luxury-dropdown-trigger:hover {
  background: #FFFFFF;
  border-color: #CBD5E1;
}

.luxury-dropdown.open .luxury-dropdown-trigger,
.luxury-dropdown-trigger:focus {
  background: #FFFFFF;
  border-color: #2563EB;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.dropdown-trigger-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-grow: 1;
}

.dropdown-trigger-chevron {
  font-size: 11px;
  color: #94A3B8;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.luxury-dropdown.open .dropdown-trigger-chevron {
  transform: rotate(180deg);
  color: var(--primary);
}

.luxury-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  box-shadow: 0 16px 36px -6px rgba(15, 23, 42, 0.12);
  padding: 6px;
  z-index: 99999;
  max-height: 280px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: all 0.18s ease;
}

.luxury-dropdown.open .luxury-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu-heading {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #94A3B8;
  padding: 8px 12px 4px;
}

.luxury-dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.86rem;
  font-weight: 500;
  color: #334155;
  cursor: pointer;
  transition: all 0.15s ease;
}

.luxury-dropdown-item:hover {
  background: #F1F5F9;
  color: #0F172A;
}

.luxury-dropdown-item.active {
  background: #EFF6FF;
  color: #2563EB;
  font-weight: 600;
}

.luxury-dropdown-item .item-check {
  font-size: 11px;
  color: #2563EB;
  opacity: 0;
  transition: all 0.15s ease;
  margin-left: 10px;
}

.luxury-dropdown-item.active .item-check {
  opacity: 1;
}

.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 6px;
}

.btn-clean-submit,
.btn-submit-inquiry {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  background: #2563EB;
  color: #FFFFFF !important;
  font-family: var(--font-heading);
  font-size: 0.94rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px -2px rgba(37, 99, 235, 0.35);
  transition: all 0.2s ease;
  text-decoration: none !important;
}

.btn-clean-submit:hover,
.btn-submit-inquiry:hover {
  background: #1D4ED8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px -2px rgba(37, 99, 235, 0.45);
}

.btn-clean-submit:disabled,
.btn-submit-inquiry:disabled {
  opacity: 0.75;
  cursor: not-allowed;
  transform: none;
}

.form-security-clean,
.form-security-note {
  font-size: 0.82rem;
  color: #64748B;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.form-success-banner {
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.form-success-banner strong {
  color: #065F46;
  font-size: 0.95rem;
  display: block;
}

.form-success-banner p {
  color: #047857;
  font-size: 0.85rem;
  margin-top: 2px;
}

/* ==========================================================================
   Executive Luxury Footer (Clean Corporate Theme)
   ========================================================================== */
.executive-footer {
  background: #FFFFFF;
  color: var(--text-main);
  padding: 64px 0 32px;
  position: relative;
  border-top: 1.5px solid #E2E8F0;
  overflow: hidden;
}

.footer-bg-watermark {
  position: absolute;
  right: 30px;
  bottom: 60px;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  user-select: none;
}

.footer-watermark-img {
  height: 320px;
  width: auto;
  opacity: 0.045;
  filter: grayscale(100%) contrast(115%);
  transform: rotate(-18deg) scale(1);
  transition: all 0.65s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.executive-footer:hover .footer-watermark-img {
  opacity: 0.095;
  transform: rotate(-24deg) scale(1.08) translateY(-10px);
  filter: grayscale(30%) contrast(135%);
}

.footer-container {
  position: relative;
  z-index: 2;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 1.4fr 1.15fr 1.25fr 1.2fr;
  gap: 36px;
  margin-bottom: 48px;
}

/* Column 1: Standalone Grand Logo & Mission */
.footer-col-brand {
  display: flex;
  flex-direction: column;
}

.footer-brand-link {
  display: inline-block;
  text-decoration: none;
  margin-bottom: 16px;
  width: fit-content;
}

.footer-grand-logo {
  height: 110px;
  width: auto;
  max-width: 360px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(11, 19, 43, 0.06));
  transition: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateY(0) scale(1);
}

.footer-brand-link:hover .footer-grand-logo,
.executive-footer:hover .footer-grand-logo {
  transform: translateY(-5px) scale(1.04);
  filter: drop-shadow(0 14px 28px rgba(37, 99, 235, 0.22)) drop-shadow(0 4px 10px rgba(0, 0, 0, 0.08));
}

.footer-brand-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 18px;
  max-width: 360px;
}

/* Single-Line Live Status Badge (Strict No-Wrap) */
.footer-status-pill-wrap {
  width: 100%;
  display: flex;
}

.footer-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ECFDF5;
  border: 1.5px solid #A7F3D0;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  white-space: nowrap !important;
  width: max-content;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.1);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-status-badge:hover {
  transform: translateY(-2px);
  border-color: #34D399;
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.2);
}

.status-badge-text {
  font-size: 0.82rem;
  font-weight: 700;
  color: #065F46;
  white-space: nowrap !important;
  letter-spacing: 0.2px;
}

.status-dot-pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.7);
  animation: pulseDot 2s infinite ease-in-out;
  flex-shrink: 0;
}

/* Headers for Columns 2, 3, 4 */
.footer-col-header {
  margin-bottom: 20px;
  position: relative;
}

.footer-col-header h5 {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.2px;
  margin: 0 0 8px 0;
  white-space: nowrap;
}

.footer-col-header .header-line {
  display: block;
  width: 28px;
  height: 2.5px;
  background: linear-gradient(90deg, #2563EB, #7C3AED);
  border-radius: 2px;
}

/* Links List (Strict Single-Line & Clean Sleek Chevron) */
.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-links-list li {
  white-space: nowrap !important;
}

.footer-links-list li a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #475569;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap !important;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding: 2px 0;
}

.link-arrow-icon {
  font-size: 10px;
  color: #94A3B8;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
}

.footer-links-list li a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.footer-links-list li a:hover .link-arrow-icon {
  color: var(--primary);
  transform: translateX(2px);
}

/* Direct Contact Tiles (Col 4) */
.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-contact-tile {
  display: flex;
  align-items: center;
  gap: 13px;
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: var(--radius-md);
  padding: 11px 15px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(11, 19, 43, 0.025);
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-contact-tile:hover {
  transform: translateY(-2px) translateX(3px);
  box-shadow: 0 8px 20px -3px rgba(37, 99, 235, 0.16);
}

.tile-phone:hover { background: #EFF6FF; border-color: rgba(37, 99, 235, 0.45); }
.tile-wa:hover { background: #ECFDF5; border-color: rgba(16, 185, 129, 0.45); }
.tile-mail:hover { background: #FEF3C7; border-color: rgba(217, 119, 6, 0.45); }

.footer-contact-icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.footer-contact-tile:hover .footer-contact-icon {
  transform: scale(1.15) rotate(-6deg);
}

.footer-contact-icon.icon-phone { color: #2563EB; background: #EFF6FF; }
.footer-contact-icon.icon-wa { color: #059669; background: #ECFDF5; }
.footer-contact-icon.icon-mail { color: #D97706; background: #FEF3C7; }

.footer-contact-text {
  flex-grow: 1;
}

.footer-contact-text small {
  display: block;
  font-size: 0.72rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
  margin-bottom: 1px;
}

.footer-contact-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-main);
  font-family: var(--font-heading);
  white-space: nowrap;
}

.tile-arrow {
  font-size: 11px;
  color: #94A3B8;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-contact-tile:hover .tile-arrow {
  transform: translateX(4px);
  color: var(--primary);
}

/* Sub-Footer Bottom Bar */
.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 26px;
  border-top: 1.5px solid #E2E8F0;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.footer-bottom-left strong {
  color: var(--text-main);
  font-weight: 700;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.footer-quick-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-quick-nav a {
  color: #64748B;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.86rem;
  transition: color 0.2s ease;
}

.footer-quick-nav a:hover {
  color: var(--primary);
}

.footer-back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  background: #EFF6FF;
  border: 1.5px solid rgba(37, 99, 235, 0.3);
  border-radius: var(--radius-full);
  color: var(--primary) !important;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 10;
}

.footer-back-to-top:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #FFFFFF !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

.footer-back-to-top i {
  font-size: 11px;
  transition: transform 0.25s ease;
}

.footer-back-to-top:hover i {
  transform: translateY(-2px);
}

/* ==========================================================================
   Floating Action Button (Get in Touch - Smart Anti-Overlap Lift Physics)
   ========================================================================== */
.floating-contact-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: linear-gradient(135deg, #2563EB 0%, #3544EE 50%, #7C3AED 100%);
  color: #FFFFFF !important;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 28px -4px rgba(37, 99, 235, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.25);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  backdrop-filter: blur(12px);
  cursor: pointer;
}

/* Auto-hide when Contact / Footer is in view */
.floating-contact-btn.fab-hidden {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateY(30px) scale(0.7) !important;
}

/* Anti-Overlap Lift when Footer is in view */
.floating-contact-btn.footer-lifted {
  bottom: 92px !important;
  transform: scale(0.96);
  box-shadow: 0 10px 28px -4px rgba(37, 99, 235, 0.5), 0 0 14px rgba(124, 58, 237, 0.3);
}

.floating-contact-btn:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 14px 36px -4px rgba(37, 99, 235, 0.6), 0 0 16px rgba(124, 58, 237, 0.35);
  color: #FFFFFF !important;
}

.floating-contact-btn.footer-lifted:hover {
  transform: translateY(-4px) scale(1.02);
}

.floating-contact-btn .floating-contact-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: transform 0.25s ease;
}

.floating-contact-btn:hover .floating-contact-icon {
  transform: rotate(-15deg) scale(1.1);
}

.floating-contact-pulse {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #10B981;
  border: 2px solid #FFFFFF;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}

@media (max-width: 575px) {
  .floating-contact-btn {
    bottom: 18px;
    right: 18px;
    padding: 10px 18px;
    font-size: 0.88rem;
  }
}

/* ==========================================================================
   Fullscreen Image Lightbox Modal
   ========================================================================== */
.image-lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100000;
  background: rgba(11, 19, 43, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.lightbox-content-box {
  position: relative;
  max-width: 1200px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-lightbox-modal.active .lightbox-content-box {
  transform: scale(1);
}

.lightbox-close-btn {
  position: absolute;
  top: -48px;
  right: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  backdrop-filter: blur(8px);
}

.lightbox-close-btn:hover {
  background: #EF4444;
  border-color: #EF4444;
  transform: scale(1.1);
}

.lightbox-img-wrapper {
  background: #FFFFFF;
  padding: 8px;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px -12px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.2);
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lightbox-img-wrapper img {
  max-width: 100%;
  max-height: calc(80vh - 16px);
  object-fit: contain;
  border-radius: var(--radius-md);
  display: block;
}

.lightbox-caption {
  margin-top: 14px;
  color: #F8FAFC;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.2px;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
}

/* Animations */
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

@keyframes fadeInDeck {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* (Mobile responsive styles are loaded via portfolio-mobile.css) */
