@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800;900&family=Fira+Code:wght@400;500&display=swap');

/* Reset and Variables */
:root {
  --bg-dark: #05070D;
  --bg-darker: #020306;
  --bg-card: rgba(9, 19, 33, 0.45);
  --bg-card-hover: rgba(13, 29, 51, 0.65);
  --neon-cyan: #27C6FF;
  --neon-blue: #0055FF;
  --neon-purple: #8B5CFF;
  --text-primary: #FFFFFF;
  --text-secondary: #94A3B8;
  --text-muted: #475569;
  --border-glow: rgba(39, 198, 255, 0.15);
  --border-glow-hover: rgba(139, 92, 255, 0.4);
  --font-sans: 'Outfit', 'Inter', -apple-system, sans-serif;
  --font-mono: 'Fira Code', monospace;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-dark);
  font-family: var(--font-sans);
  color: var(--text-primary);
  overflow-x: hidden;
}

body {
  background-color: var(--bg-dark);
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(39, 198, 255, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 60%, rgba(139, 92, 255, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 50% -10%, rgba(0, 85, 255, 0.1) 0%, transparent 35%),
    linear-gradient(rgba(255, 255, 255, 0.005) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.005) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 100% 100%, 64px 64px, 64px 64px;
  background-attachment: fixed;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
  background: rgba(39, 198, 255, 0.2);
  border-radius: 5px;
  border: 2px solid var(--bg-dark);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--neon-cyan);
}

/* Typography & Layout Utilities */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

p {
  color: var(--text-secondary);
  font-family: 'Inter', sans-serif;
}

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

.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

.gradient-text {
  background: linear-gradient(135deg, #FFFFFF 30%, var(--neon-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.neon-glow-cyan {
  text-shadow: 0 0 15px rgba(39, 198, 255, 0.5);
  color: var(--neon-cyan);
}

.neon-glow-blue {
  text-shadow: 0 0 15px rgba(0, 85, 255, 0.6);
  color: #3b82f6;
}

/* Glassmorphism Elements */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glow);
  border-radius: 16px;
  padding: 2rem;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(39, 198, 255, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: var(--transition-normal);
  z-index: 0;
}

.glass-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-glow-hover);
  box-shadow: 0 10px 30px -10px rgba(139, 92, 255, 0.25);
}

.glass-card:hover::before {
  opacity: 1;
}

.glass-card > * {
  position: relative;
  z-index: 1;
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.75rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: var(--transition-normal);
  border: none;
  outline: none;
}

.btn-cyan {
  background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-blue) 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(39, 198, 255, 0.3);
}

.btn-cyan:hover {
  box-shadow: 0 4px 30px var(--neon-cyan);
  transform: translateY(-2px);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  backdrop-filter: blur(8px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(39, 198, 255, 0.25);
  transform: translateY(-2px);
}

/* Floating Navigation Bar */
header.premium-navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1400px;
  z-index: 100;
  background: rgba(5, 7, 13, 0.4);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  transition: all var(--transition-normal);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(39, 198, 255, 0.05);
}

header.premium-navbar.scrolled {
  top: 10px;
  background: rgba(5, 7, 13, 0.75);
  border-color: rgba(39, 198, 255, 0.25);
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(139, 92, 255, 0.1);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  padding: 0 2rem;
}

.nav-logo-group {
  display: flex;
  flex-direction: column;
}

.nav-logo-group .logo-main {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: 'Outfit', sans-serif;
}

.nav-logo-group .logo-subtitle {
  font-size: 0.58rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: -1px;
  font-weight: 600;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 0.25rem 0;
  font-family: 'Outfit', sans-serif;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
  text-shadow: 0 0 10px rgba(39, 198, 255, 0.3);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
  transition: all var(--transition-fast);
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 80%;
}

.nav-ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-nav-talk {
  background: linear-gradient(135deg, var(--neon-purple) 0%, var(--neon-blue) 100%);
  color: #fff;
  box-shadow: 0 0 15px rgba(139, 92, 255, 0.3);
  font-size: 0.85rem;
  padding: 0.55rem 1.25rem;
}

.btn-nav-talk:hover {
  box-shadow: 0 0 25px rgba(139, 92, 255, 0.6);
  transform: translateY(-1px);
}

.btn-nav-demo {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-primary);
  font-size: 0.85rem;
  padding: 0.55rem 1.25rem;
}

.btn-nav-demo:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(39, 198, 255, 0.2);
  transform: translateY(-1px);
}

.nav-menu-grid {
  font-size: 1.25rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
}

.nav-menu-grid:hover {
  color: var(--neon-cyan);
}

/* Hero Section */
.hero-section {
  padding-top: 160px;
  padding-bottom: 120px;
  position: relative;
  overflow: hidden;
  background-image: radial-gradient(circle at 80% 30%, rgba(139, 92, 255, 0.1) 0%, transparent 60%);
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(39, 198, 255, 0.06);
  border: 1px solid rgba(39, 198, 255, 0.2);
  border-radius: 9999px;
  padding: 0.5rem 1.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--neon-cyan);
  margin-bottom: 1.5rem;
  box-shadow: 0 0 20px rgba(39, 198, 255, 0.1);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--neon-cyan);
  box-shadow: 0 0 10px var(--neon-cyan);
  animation: pulse-glow 1.5s infinite;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.hero-title span {
  display: block;
  font-weight: 900;
  background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 40px rgba(39, 198, 255, 0.2);
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

.hero-actions .btn {
  font-size: 0.92rem;
  padding: 0.85rem 2rem;
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.hero-stat-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat-card i {
  font-size: 1.25rem;
  color: var(--neon-cyan);
  margin-bottom: 4px;
  opacity: 0.8;
}

.hero-stat-card span {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
}

.hero-stat-card p {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* 3D Space Hologram Display */
.hero-visual {
  position: relative;
  height: 520px;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1500px;
}

/* Hologram Base Grid Platform */
.holo-platform {
  position: absolute;
  bottom: 40px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(139, 92, 255, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  transform: rotateX(75deg);
  border: 2px solid rgba(139, 92, 255, 0.4);
  box-shadow: 0 0 50px rgba(139, 92, 255, 0.6), inset 0 0 50px rgba(139, 92, 255, 0.4);
  z-index: 1;
}

.holo-platform::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 1px dashed rgba(39, 198, 255, 0.3);
  border-radius: 50%;
  animation: rotate-clockwise 20s linear infinite;
}

.holo-platform::after {
  content: '';
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border: 2px solid rgba(39, 198, 255, 0.2);
  border-radius: 50%;
  animation: rotate-counter 15s linear infinite;
}

/* Coding Symbol Hologram */
.holo-code-symbol {
  position: absolute;
  top: 40%;
  left: 30%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  z-index: 5;
  filter: drop-shadow(0 0 25px rgba(39, 198, 255, 0.8));
  animation: holo-float 6s ease-in-out infinite;
}

.holo-code-symbol svg {
  width: 100%;
  height: 100%;
}

.holo-code-symbol path {
  fill: none;
  stroke: url(#cyan-purple-grad);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 400;
  stroke-dashoffset: 0;
  animation: dash-stroke 4s linear infinite alternate;
}

/* Perspective Workspace Dashboard Mockup */
.holo-dashboard {
  position: absolute;
  right: -10px;
  top: 30px;
  width: 580px;
  height: 380px;
  background: rgba(9, 19, 33, 0.7);
  backdrop-filter: blur(20px);
  border: 1.5px solid rgba(39, 198, 255, 0.25);
  border-radius: 18px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8), 0 0 30px rgba(39, 198, 255, 0.15);
  transform: rotateY(-22deg) rotateX(10deg) rotateZ(1deg);
  transform-style: preserve-3d;
  z-index: 4;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.holo-dashboard:hover {
  transform: rotateY(-15deg) rotateX(8deg) rotateZ(0deg) scale(1.02);
  border-color: rgba(139, 92, 255, 0.4);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.9), 0 0 45px rgba(139, 92, 255, 0.25);
}

.holo-db-header {
  height: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.25rem;
  background: rgba(5, 7, 13, 0.4);
}

.holo-db-window-dots {
  display: flex;
  gap: 6px;
}

.holo-db-window-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.holo-db-window-dots span:nth-child(1) { background: #ef4444; }
.holo-db-window-dots span:nth-child(2) { background: #eab308; }
.holo-db-window-dots span:nth-child(3) { background: #22c55e; }

.holo-db-search {
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
  height: 24px;
  width: 220px;
  display: flex;
  align-items: center;
  padding: 0 8px;
  font-size: 0.65rem;
  color: var(--text-muted);
  gap: 6px;
  border: 1px solid rgba(255,255,255,0.02);
}

.holo-db-profile {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
}

.holo-db-profile i {
  color: var(--text-secondary);
  font-size: 0.9rem;
  cursor: pointer;
}

.holo-db-avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--neon-cyan);
}

.holo-db-layout {
  display: grid;
  grid-template-columns: 120px 1fr;
  height: calc(100% - 48px);
}

.holo-db-sidebar {
  border-right: 1px solid rgba(255,255,255,0.06);
  padding: 0.75rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  background: rgba(5, 7, 13, 0.2);
}

.holo-db-sidebar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
  color: var(--text-secondary);
  font-weight: 500;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.holo-db-sidebar-item.active {
  background: rgba(39, 198, 255, 0.08);
  color: var(--neon-cyan);
  border-left: 2px solid var(--neon-cyan);
  font-weight: 600;
}

.holo-db-sidebar-item:hover:not(.active) {
  color: #fff;
  background: rgba(255,255,255,0.03);
}

.holo-db-main {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  overflow-y: auto;
}

.holo-db-overview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.holo-db-overview-header h4 {
  font-size: 0.88rem;
}

.holo-db-overview-select {
  font-size: 0.6rem;
  color: var(--text-secondary);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 2px 6px;
  background: rgba(0,0,0,0.2);
}

.holo-db-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.holo-db-stat-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.holo-db-stat-card span {
  font-size: 0.55rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.holo-db-stat-card h5 {
  font-size: 0.8rem;
  font-weight: 800;
}

.holo-db-stat-card p {
  font-size: 0.5rem;
  color: #22c55e;
  font-weight: bold;
}

.holo-db-inner-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0.75rem;
}

.holo-db-analytics-box {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 0.5rem;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.holo-db-analytics-box h6 {
  font-size: 0.65rem;
  color: var(--text-secondary);
}

.holo-db-line-chart {
  height: 50px;
  background: linear-gradient(180deg, rgba(39, 198, 255, 0.05) 0%, transparent 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 1.5px solid var(--neon-cyan);
}

.holo-db-line-chart::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  height: 25px;
  border-top: 1.5px solid var(--neon-purple);
  opacity: 0.7;
}

.holo-db-order-status-box {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 0.5rem;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.holo-db-order-status-box h6 {
  font-size: 0.65rem;
  color: var(--text-secondary);
}

.holo-db-donut-layout {
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 60px;
}

.holo-db-donut {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: conic-gradient(var(--neon-cyan) 0% 65%, var(--neon-purple) 65% 85%, #eab308 85% 95%, #ef4444 95% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.holo-db-donut::after {
  content: '';
  position: absolute;
  width: 28px;
  height: 28px;
  background: #091321;
  border-radius: 50%;
}

.holo-db-donut-legend {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.48rem;
  color: var(--text-secondary);
}

.holo-db-donut-legend span {
  display: flex;
  align-items: center;
  gap: 3px;
}

.holo-db-donut-legend span::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  display: inline-block;
}

.legend-comp::before { background: var(--neon-cyan); }
.legend-prep::before { background: var(--neon-purple); }
.legend-pend::before { background: #eab308; }

.holo-db-bottom-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0.75rem;
}

.holo-db-table-box {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 0.5rem;
  max-height: 100px;
  overflow: hidden;
}

.holo-db-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.52rem;
  text-align: left;
}

.holo-db-table th {
  color: var(--text-muted);
  padding-bottom: 2px;
}

.holo-db-table td {
  border-bottom: 1px solid rgba(255,255,255,0.02);
  padding: 3px 0;
}

.holo-db-table tr:last-child td {
  border: none;
}

.holo-db-live-box {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-height: 100px;
}

.holo-db-live-box h6 {
  font-size: 0.62rem;
  color: var(--text-secondary);
}

.holo-db-live-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow-y: auto;
}

.holo-db-live-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.5rem;
  color: var(--text-secondary);
}

.holo-db-live-item span:first-child {
  font-weight: 600;
  color: #fff;
}

/* Orbiting hologram spheres */
.holo-orbit-sphere {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(39, 198, 255, 0.8) 0%, rgba(0, 85, 255, 0.4) 70%, transparent 100%);
  filter: blur(1px) drop-shadow(0 0 10px rgba(39, 198, 255, 0.5));
  z-index: 6;
  pointer-events: none;
}

.sphere-1 {
  width: 24px;
  height: 24px;
  top: 15%;
  left: 20%;
  animation: orb-float-1 8s ease-in-out infinite;
}

.sphere-2 {
  width: 14px;
  height: 14px;
  bottom: 25%;
  right: 40%;
  background: radial-gradient(circle at 30% 30%, rgba(139, 92, 255, 0.8) 0%, rgba(85, 0, 255, 0.4) 70%, transparent 100%);
  filter: blur(0.5px) drop-shadow(0 0 8px rgba(139, 92, 255, 0.5));
  animation: orb-float-2 10s ease-in-out infinite;
}

/* Orbiting Screens HUD */
.hud-screen {
  position: absolute;
  background: rgba(9, 19, 33, 0.55);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(39, 198, 255, 0.2);
  border-radius: 12px;
  padding: 0.5rem;
  z-index: 3;
  box-shadow: 0 15px 30px rgba(0,0,0,0.5);
  transition: all var(--transition-normal);
  cursor: pointer;
}

.hud-screen:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 20px rgba(39, 198, 255, 0.3);
  transform: translateY(-5px) scale(1.05) !important;
}

.hud-screen-1 {
  top: 25%;
  left: -20px;
  width: 140px;
  transform: rotateZ(-8deg);
  animation: holo-float 7s ease-in-out infinite alternate;
}

.hud-screen-2 {
  bottom: 12%;
  left: 15%;
  width: 150px;
  transform: rotateZ(5deg);
  animation: holo-float 8s ease-in-out infinite alternate 1s;
}

/* Animations */
@keyframes rotate-clockwise {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes rotate-counter {
  0% { transform: rotate(360deg); }
  100% { transform: rotate(0deg); }
}

@keyframes holo-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
}

@keyframes orb-float-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -30px) scale(1.1); }
}

@keyframes orb-float-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-25px, 20px) scale(0.9); }
}

@keyframes dash-stroke {
  0% { stroke-dashoffset: 400; }
  100% { stroke-dashoffset: 0; }
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 0.8; box-shadow: 0 0 8px rgba(39, 198, 255, 0.4); }
  50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 16px rgba(39, 198, 255, 0.8); }
}

/* Statistics Row (Single Line Row Layout with Enlarged Numbers) */
.stats-section {
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
  z-index: 10;
  background: rgba(9, 19, 33, 0.4);
}

.stats-grid {
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 1rem !important;
  flex-wrap: nowrap !important;
  width: 100% !important;
}

.stat-item {
  text-align: center;
  flex: 1;
  padding: 0.5rem;
}

.stat-num {
  font-size: 3.2rem !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  background: linear-gradient(135deg, #FFFFFF 0%, #27C6FF 50%, #8B5CFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.stat-label {
  font-size: 0.82rem !important;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.4rem;
  white-space: nowrap;
}

/* Trusted Brands Section */
.trusted-brands-section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  background: rgba(5, 7, 13, 0.3);
  position: relative;
  z-index: 10;
}

.trusted-brands-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.trusted-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  min-width: 150px;
}

.trusted-logos-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
  gap: 2rem;
  flex-wrap: wrap;
}

.trusted-logo-item {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.trusted-logo-item:hover {
  color: var(--neon-cyan);
  text-shadow: 0 0 10px rgba(39, 198, 255, 0.4);
}

/* Services Section */
.services-section {
  padding: 120px 0;
  position: relative;
}

.services-layout {
  display: grid;
  grid-template-columns: 1.1fr 1.9fr;
  gap: 4rem;
}

.services-intro {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: sticky;
  top: 120px;
  height: fit-content;
}

.services-intro .section-tag {
  margin-bottom: 1rem;
}

.services-intro .section-title {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.services-intro .section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.services-intro-btn {
  color: var(--neon-cyan);
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  transition: transform var(--transition-fast);
}

.services-intro-btn:hover {
  transform: translateX(5px);
  text-shadow: 0 0 10px rgba(39, 198, 255, 0.3);
}

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

.service-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 1px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  z-index: 1;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 20px rgba(39, 198, 255, 0.15);
}

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

.service-card-inner {
  background: #05070D;
  border-radius: 19px;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  z-index: 2;
  height: 100%;
}

.service-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(39, 198, 255, 0.05);
  border: 1px solid rgba(39, 198, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-cyan);
  font-size: 1.75rem;
  transition: all var(--transition-normal);
}

.service-card:hover .service-icon {
  background: var(--neon-cyan);
  color: #05070D;
  box-shadow: 0 0 15px var(--neon-cyan);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Products Section */
.products-section {
  padding: 120px 0;
  border-top: 1px solid rgba(255,255,255,0.03);
  background-image: radial-gradient(circle at 10% 80%, rgba(39, 198, 255, 0.05) 0%, transparent 60%);
}

.products-layout {
  display: grid;
  grid-template-columns: 1.15fr 1.85fr;
  gap: 4rem;
  align-items: flex-start;
}

.products-showcase {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-showcase-card {
  background: rgba(9, 19, 33, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  transition: all var(--transition-normal);
}

.product-showcase-card:hover {
  border-color: rgba(39, 198, 255, 0.25);
  box-shadow: 0 25px 60px rgba(0,0,0,0.6), 0 0 20px rgba(39, 198, 255, 0.1);
  transform: translateY(-5px);
}

.product-showcase-content {
  max-width: 60%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-showcase-content h3 {
  font-size: 1.75rem;
  font-weight: 800;
}

.product-showcase-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.product-showcase-image {
  position: absolute;
  right: -50px;
  bottom: -40px;
  width: 320px;
  height: 240px;
  background: #05070D;
  border-top-left-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: -15px -15px 30px rgba(0,0,0,0.8);
  padding: 10px;
  transform: rotate(-5deg);
  transition: all var(--transition-normal);
}

.product-showcase-card:hover .product-showcase-image {
  transform: rotate(0deg) translateY(-10px) translateX(-10px);
}

.product-db-mock {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: rgba(9, 19, 33, 0.9);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.04);
}

.products-carousel-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 2rem;
}

/* Development Process Timeline */
.timeline-section {
  padding: 120px 0;
  background: rgba(2, 3, 6, 0.3);
  position: relative;
}

.timeline-path-svg {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 90%;
  height: 120px;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
}

.timeline-path-line {
  fill: none;
  stroke: url(#timeline-grad);
  stroke-width: 2.5;
  stroke-dasharray: 8 8;
  animation: dash-flow 30s linear infinite;
}

.timeline-nodes-container {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.timeline-node-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 140px;
}

.timeline-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #05070D;
  border: 2px dashed rgba(39, 198, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-cyan);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  position: relative;
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
  transition: all var(--transition-normal);
}

.timeline-node-card:hover .timeline-circle {
  border-style: solid;
  border-color: var(--neon-purple);
  color: #fff;
  transform: scale(1.15);
  box-shadow: 0 0 25px rgba(139, 92, 255, 0.5);
}

.timeline-circle::after {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border: 1px solid rgba(39, 198, 255, 0.15);
  border-radius: 50%;
  opacity: 0;
  transition: all var(--transition-normal);
}

.timeline-node-card:hover .timeline-circle::after {
  opacity: 1;
  transform: scale(1.1);
}

.timeline-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.timeline-desc {
  font-size: 0.72rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

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

/* Scalable Custom OS Engines - Small Boxes Layout */
.solutions-grid {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 1rem !important;
  margin-top: 2rem;
}

.solution-card {
  padding: 1rem 0.85rem !important;
  border-radius: 12px !important;
  min-height: auto !important;
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(18, 30, 49, 0.6) !important;
  border: 1px solid rgba(39, 198, 255, 0.15) !important;
  transition: all 0.3s ease !important;
}
.solution-card:hover {
  transform: translateY(-4px) !important;
  border-color: var(--neon-cyan) !important;
  box-shadow: 0 10px 25px rgba(39, 198, 255, 0.15) !important;
}

.solution-icon {
  font-size: 1.5rem !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 10px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 0.5rem !important;
  background: rgba(39, 198, 255, 0.1) !important;
  color: var(--neon-cyan) !important;
  border: 1px solid rgba(39, 198, 255, 0.25) !important;
}

.solution-title {
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  margin-bottom: 0.25rem !important;
  color: #FFF !important;
}

.solution-desc {
  font-size: 0.7rem !important;
  color: var(--text-secondary) !important;
  line-height: 1.35 !important;
}

/* Technology Stack (Arranged in 2 Lines) */
.tech-capsules-section {
  padding: 80px 0;
  border-top: 1px solid rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.tech-capsules-container {
  display: grid !important;
  grid-template-columns: repeat(7, 1fr) !important;
  gap: 0.85rem !important;
  max-width: 1100px;
  margin: 2rem auto 0 auto;
}

.tech-capsule {
  background: rgba(18, 30, 49, 0.7) !important;
  border: 1px solid rgba(39, 198, 255, 0.2) !important;
  border-radius: 10px !important;
  padding: 0.65rem 0.85rem !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  color: var(--text-secondary);
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  cursor: pointer;
  transition: all var(--transition-normal);
  white-space: nowrap !important;
}

.tech-capsule i {
  font-size: 1.15rem;
  transition: color var(--transition-fast);
}

.tech-capsule:hover {
  background: rgba(39, 198, 255, 0.05);
  border-color: var(--neon-cyan);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 10px 20px -5px rgba(39, 198, 255, 0.2);
}

.tech-capsule:nth-child(2n):hover {
  background: rgba(139, 92, 255, 0.05);
  border-color: var(--neon-purple);
  box-shadow: 0 10px 20px -5px rgba(139, 92, 255, 0.2);
}

.tech-capsule:hover i {
  color: var(--neon-cyan);
}

.tech-capsule:nth-child(2n):hover i {
  color: var(--neon-purple);
}

/* Why Choose Us */
.why-choose-section {
  padding: 120px 0;
}

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

.why-choose-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: all var(--transition-normal);
}

.why-choose-card:hover {
  transform: translateY(-6px);
  border-color: rgba(39, 198, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 20px rgba(39, 198, 255, 0.05);
}

.why-choose-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(139, 92, 255, 0.08);
  border: 1px solid rgba(139, 92, 255, 0.2);
  color: var(--neon-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all var(--transition-normal);
}

.why-choose-card:hover .why-choose-icon {
  background: var(--neon-purple);
  color: #fff;
  box-shadow: 0 0 15px var(--neon-purple);
}

.why-choose-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
}

.why-choose-card p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Interactive Dashboard Preview Section */
.dashboard-preview-section {
  padding: 120px 0;
  background: radial-gradient(circle at center, rgba(139, 92, 255, 0.08) 0%, transparent 60%);
  border-top: 1px solid rgba(255,255,255,0.03);
}

.device-showcase-perspective {
  position: relative;
  width: 100%;
  height: 600px;
  margin-top: 4rem;
  perspective: 2000px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.preview-device {
  position: absolute;
  background: #091321;
  border: 1.5px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 50px rgba(0,0,0,0.8);
  border-radius: 12px;
  overflow: hidden;
  transition: all var(--transition-slow);
}

.preview-device:hover {
  z-index: 10 !important;
  transform: translateZ(50px) rotateY(-5deg) rotateX(5deg) !important;
  border-color: var(--neon-cyan);
  box-shadow: 0 30px 70px rgba(0,0,0,0.9), 0 0 30px rgba(39, 198, 255, 0.2);
}

/* Desktop screen */
.device-desktop {
  width: 620px;
  height: 380px;
  top: 10%;
  left: 10%;
  transform: rotateY(-18deg) rotateX(10deg) rotateZ(1deg);
  z-index: 1;
}

/* Tablet screen */
.device-tablet {
  width: 320px;
  height: 420px;
  bottom: 10%;
  right: 15%;
  transform: rotateY(15deg) rotateX(8deg) rotateZ(-2deg);
  z-index: 3;
}

/* Mobile Screen */
.device-mobile {
  width: 180px;
  height: 360px;
  bottom: 5%;
  left: 45%;
  transform: rotateY(-8deg) rotateX(5deg) translateZ(100px);
  z-index: 5;
  border-radius: 20px;
  border-width: 4px;
}

/* Smartwatch */
.device-watch {
  width: 110px;
  height: 130px;
  top: 15%;
  right: 40%;
  transform: rotateY(10deg) rotateX(5deg) translateZ(40px);
  z-index: 4;
  border-radius: 20px;
  border-width: 2px;
  background: #05070d;
}

/* Hovering transparent glass chart widget */
.device-chart {
  width: 240px;
  height: 160px;
  top: 5%;
  right: 10%;
  background: rgba(39, 198, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1.5px solid rgba(39, 198, 255, 0.25);
  transform: rotateY(20deg) rotateX(12deg) translateZ(80px);
  z-index: 6;
  box-shadow: 0 15px 35px rgba(0,0,0,0.6);
  padding: 1rem;
}

/* Client Success Metrics Row (circular HUDs) */
.hud-metrics-section {
  padding: 100px 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.hud-metrics-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2.5rem;
}

.hud-metric-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.hud-circle-wrapper {
  width: 130px;
  height: 130px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hud-svg-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.hud-circle-bg {
  fill: none;
  stroke: rgba(255,255,255,0.02);
  stroke-width: 4;
}

.hud-circle-dash {
  fill: none;
  stroke: var(--neon-cyan);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 345;
  stroke-dashoffset: 86; /* 75% fill */
  filter: drop-shadow(0 0 5px rgba(39, 198, 255, 0.5));
}

.hud-metric-card:nth-child(even) .hud-circle-dash {
  stroke: var(--neon-purple);
  filter: drop-shadow(0 0 5px rgba(139, 92, 255, 0.5));
}

.hud-outer-rotating {
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: 50%;
  animation: rotate-clockwise 12s linear infinite;
}

.hud-outer-rotating::after {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--neon-cyan);
  box-shadow: 0 0 8px var(--neon-cyan);
}

.hud-inner-rotating {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px dashed rgba(255,255,255,0.04);
  border-radius: 50%;
  animation: rotate-counter 8s linear infinite;
}

.hud-center-val {
  font-size: 1.45rem;
  font-weight: 800;
  font-family: var(--font-sans);
}

.hud-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

/* Call To Action with glowing sphere */
.futuristic-cta-section {
  padding: 160px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.glow-sphere {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 255, 0.25) 0%, rgba(39, 198, 255, 0.1) 40%, transparent 70%);
  filter: blur(80px);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  animation: pulse-sphere 8s ease-in-out infinite;
}

.cta-container-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.cta-title-glowing {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff 0%, var(--neon-cyan) 50%, var(--neon-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(39, 198, 255, 0.15);
}

.cta-desc-premium {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 2rem;
}

.cta-actions-row {
  display: flex;
  gap: 1.5rem;
}

.cta-actions-row .btn {
  padding: 0.85rem 2.25rem;
  font-size: 0.95rem;
}

@keyframes pulse-sphere {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

/* Footer Styles */
footer.premium-footer {
  background: var(--bg-darker);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 100px 0 40px 0;
  position: relative;
  z-index: 10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
  gap: 3.5rem;
  margin-bottom: 5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition-normal);
}

.footer-socials a:hover {
  background: var(--neon-cyan);
  color: #05070D;
  border-color: var(--neon-cyan);
  box-shadow: 0 0 15px var(--neon-cyan);
  transform: translateY(-2px);
}

.footer-links-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
}

.footer-links-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links-col ul a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.footer-links-col ul a:hover {
  color: var(--neon-cyan);
  padding-left: 6px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-contact-item i {
  color: var(--neon-cyan);
  font-size: 1.2rem;
  margin-top: 2px;
}

.footer-contact-item div {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.footer-contact-item div span {
  display: block;
  color: var(--text-muted);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.footer-newsletter-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-newsletter-box p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.footer-newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.footer-newsletter-form input {
  flex-grow: 1;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 0.6rem 0.85rem;
  color: #fff;
  font-size: 0.85rem;
  outline: none;
  transition: all var(--transition-fast);
}

.footer-newsletter-form input:focus {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 10px rgba(39, 198, 255, 0.15);
}

.footer-newsletter-form button {
  background: var(--neon-cyan);
  color: #05070D;
  border: none;
  border-radius: 8px;
  padding: 0 1rem;
  cursor: pointer;
  font-weight: 700;
  transition: all var(--transition-fast);
}

.footer-newsletter-form button:hover {
  background: #fff;
  box-shadow: 0 0 15px rgba(255,255,255,0.5);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 2rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom-links a {
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--neon-cyan);
}

.scroll-top-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.scroll-top-btn:hover {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(39, 198, 255, 0.2);
  transform: translateY(-2px);
}

/* Contact Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 3, 6, 0.85);
  backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  width: 100%;
  max-width: 500px;
  background: rgba(14, 23, 42, 0.95);
  border: 1px solid var(--neon-cyan);
  box-shadow: 0 0 40px rgba(0, 229, 255, 0.3);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  transform: scale(0.9);
  transition: transform var(--transition-normal);
}

.modal-overlay.active .modal-box {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.75rem;
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition-fast);
}

.modal-close:hover {
  color: var(--neon-cyan);
}

.modal-title {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.modal-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition-fast);
}

.form-input:focus {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
}

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

/* ========================================================== */
/* HORECA-OS PRODUCT DETAILS STYLE SET                        */
/* ========================================================== */
.horeca-hero {
  padding-top: 180px;
  padding-bottom: 80px;
  background: radial-gradient(circle at 80% 20%, rgba(0, 229, 255, 0.15) 0%, transparent 50%);
}

.horeca-hero-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
}

.horeca-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 80px 0;
}

.h-feat-card {
  padding: 2rem;
}

.h-feat-icon {
  font-size: 2rem;
  color: var(--neon-cyan);
  margin-bottom: 1rem;
}

.case-study-section {
  padding: 100px 0;
  background: rgba(2, 3, 6, 0.5);
  position: relative;
  overflow: hidden;
}

.case-study-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 4.5rem;
  align-items: center;
}

.case-metric-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.c-metric {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 1.5rem;
  border-radius: 12px;
}

.c-metric h4 {
  font-size: 1.8rem;
  color: var(--neon-cyan);
  margin-bottom: 2px;
}

.c-metric p {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.interactive-demo-section {
  padding: 80px 0;
}

.pos-dashboard-mock {
  width: 100%;
  border-radius: 20px;
  border: 1px solid var(--border-glow-hover);
  background: #060a12;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 229, 255, 0.15);
}

.pos-dash-header {
  background: #0c1220;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.pos-dash-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pos-user-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--neon-cyan);
  color: #030712;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.pos-dash-body {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1.5rem;
  padding: 1.5rem;
}

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

.pos-card-item {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 12px;
  padding: 1.25rem;
  cursor: pointer;
  text-align: center;
  transition: var(--transition-fast);
}

.pos-card-item:hover {
  background: rgba(0, 229, 255, 0.05);
  border-color: var(--neon-cyan);
  transform: translateY(-3px);
}

.pos-card-img {
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
  display: block;
}

.pos-card-title {
  font-size: 0.88rem;
  font-weight: 600;
}

.pos-card-price {
  font-size: 0.85rem;
  color: var(--neon-cyan);
  font-weight: 700;
}

.pos-billing-terminal {
  background: rgba(10, 16, 30, 0.6);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pos-billing-list {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 180px;
  max-height: 240px;
  overflow-y: auto;
  padding-right: 0.25rem;
}

.pos-billing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  padding-bottom: 0.5rem;
}

.pos-billing-item .remove-item {
  cursor: pointer;
  color: #ef4444;
  margin-left: 0.5rem;
}

.kitchen-tickets-section {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 1.5rem;
  background: rgba(0,0,0,0.2);
}

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

.kitchen-tickets-header span {
  font-size: 0.75rem;
  background: #22c55e;
  color: #000;
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: bold;
}

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

.kitchen-ticket-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 1rem;
  font-size: 0.78rem;
}

.ticket-meta {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-bottom: 0.4rem;
  margin-bottom: 0.4rem;
  color: var(--text-muted);
}

.ticket-items {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

/* ========================================================== */
/* RESPONSIVE BREAKPOINTS                                     */
/* ========================================================== */
@media (max-width: 1024px) {
  .hero-layout, .vision-layout, .portfolio-layout, .horeca-hero-layout, .case-study-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .solutions-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .demo-tabs {
    grid-template-columns: repeat(2, 1fr);
  }
  .timeline-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .timeline-line {
    display: none;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tech-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .tech-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .pos-simulator-grid, .pos-dashboard-mock .pos-dash-body {
    grid-template-columns: 1fr;
  }
  .timeline-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .navbar-container {
    padding: 0 1rem;
  }
  .nav-menu {
    display: none; /* simple mobile drawer could be added */
  }
}

/* -------------------------------------------------- */
/* MOBILE APP OVERLAY SYSTEM (Adaptive index.html)    */
/* -------------------------------------------------- */
.android-status-bar,
.app-header-mobile,
.app-bottom-nav,
.contact-pane {
  display: none !important;
}

@media (max-width: 600px) {
  /* Force body to fit app screen layout */
  html, body {
    height: 100% !important;
    overflow: hidden !important;
    background-color: #020306 !important;
  }
  body {
    display: flex;
    flex-direction: column;
  }

  /* Android Status Bar styling */
  .android-status-bar {
    display: flex !important;
    height: 38px;
    background: #020306;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    justify-content: space-between;
    align-items: center;
    padding: 0 1.25rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: #FFFFFF;
    z-index: 1000;
  }
  .android-status-bar .status-icons {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
  }

  /* Mobile App Header */
  .app-header-mobile {
    display: block !important;
    background: #05070D;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 999;
  }
  .navbar-mobile-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .navbar-mobile-row .nav-logo-group {
    text-decoration: none;
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 700;
  }
  .btn-talk-mobile {
    background: linear-gradient(135deg, #00E5FF 0%, #0055FF 100%);
    border: none;
    color: #020306;
    font-weight: 700;
    font-size: 0.72rem;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
  }

  /* Mobile Bottom Nav */
  .app-bottom-nav {
    display: flex !important;
    height: 58px;
    background: #020306;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    justify-content: space-around;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  }
  .bottom-nav-item {
    background: transparent;
    border: none;
    outline: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    color: #94A3B8;
    font-size: 0.65rem;
    font-weight: 500;
    cursor: pointer;
    flex-grow: 1;
    justify-content: center;
    height: 100%;
    font-family: 'Outfit', sans-serif;
  }
  .bottom-nav-item i {
    font-size: 1.25rem;
  }
  .bottom-nav-item.active {
    color: #00E5FF;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
  }

  /* Hide standard Desktop navbar and footer */
  header.premium-navbar,
  footer.premium-footer,
  .cta-section {
    display: none !important;
  }

  /* Scroll viewport on mobile */
  .app-scroll-viewport-index {
    flex-grow: 1;
    overflow-y: auto;
    padding-bottom: 70px;
    scroll-behavior: smooth;
  }

  /* Responsive sections collapsing */
  .hero-layout, 
  .solutions-grid, 
  .demo-tabs,
  .timeline-grid,
  .tech-grid,
  .why-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  
  .hero-visual {
    display: none !important; /* hide heavy 3D laptop visual on mobile app screen */
  }

  .hero-section {
    padding: 2rem 0 !important;
  }

  .hero-title {
    font-size: 2.2rem !important;
    line-height: 1.2;
  }

  .solutions-section,
  .demo-lab-section,
  .process-section,
  .tech-section,
  .portfolio-section,
  .why-section,
  .testimonial-section {
    padding: 2.5rem 0 !important;
  }

  /* Active tab switching logic via body class */
  body.tab-active-home section,
  body.tab-active-home footer {
    display: none !important;
  }
  body.tab-active-home .hero-section,
  body.tab-active-home .stats-section,
  body.tab-active-home .process-section,
  body.tab-active-home .testimonial-section {
    display: block !important;
  }

  body.tab-active-solutions section,
  body.tab-active-solutions footer {
    display: none !important;
  }
  body.tab-active-solutions .solutions-section,
  body.tab-active-solutions .tech-section,
  body.tab-active-solutions .portfolio-section {
    display: block !important;
  }

  body.tab-active-labs section,
  body.tab-active-labs footer {
    display: none !important;
  }
  body.tab-active-labs .demo-lab-section {
    display: block !important;
  }

  body.tab-active-contact section,
  body.tab-active-contact footer {
    display: none !important;
  }
  body.tab-active-contact .contact-pane {
    display: block !important;
  }
}

/* Subpage Hero Banner Styles */
.subpage-hero {
  padding: 180px 0 80px 0;
  background: radial-gradient(circle at 10% 20%, rgba(39, 198, 255, 0.06) 0%, transparent 60%);
  text-align: center;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.subpage-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #fff 0%, var(--neon-cyan) 60%, var(--neon-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(39, 198, 255, 0.15);
}

.subpage-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.subpage-content {
  padding: 100px 0;
  position: relative;
}

/* ========================================== */
/* HORECA OS LANDING PAGE STYLES              */
/* ========================================== */

.horeca-hero {
  padding: 180px 0 100px 0;
  background: radial-gradient(circle at 10% 20%, rgba(39, 198, 255, 0.08) 0%, transparent 60%),
              radial-gradient(circle at 90% 80%, rgba(139, 92, 255, 0.05) 0%, transparent 60%);
  position: relative;
  overflow: hidden;
}

.horeca-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: center;
  z-index: 1;
  pointer-events: none;
}

.hero-details {
  position: relative;
  z-index: 5;
}

.hero-ctas {
  position: relative;
  z-index: 10;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-ctas a,
.hero-ctas button {
  position: relative;
  z-index: 10;
  cursor: pointer !important;
  pointer-events: auto !important;
}

.hero-stats-banner {
  display: flex;
  gap: 2rem;
  margin-top: 3.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  flex-wrap: wrap;
}

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

.hero-stat-pill i {
  color: var(--neon-cyan);
  font-size: 1.5rem;
}

.hero-stat-pill span {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* 3D Dashboard Mockup in Hero */
.horeca-hero-visual {
  perspective: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
  position: relative;
}

.hero-kds-mockup {
  background: #0d1220;
  border: 1px solid rgba(39, 198, 255, 0.2);
  border-radius: 16px;
  width: 100%;
  max-width: 580px;
  padding: 1.5rem;
  box-shadow: 0 30px 60px rgba(0,0,0,0.8), 0 0 30px rgba(39, 198, 255, 0.1);
  transform: rotateY(-18deg) rotateX(10deg) rotateZ(2deg);
  transition: transform var(--transition-normal);
}

.hero-kds-mockup:hover {
  transform: rotateY(-5deg) rotateX(5deg) rotateZ(0deg);
}

/* Live Client Network Section */
.live-network-section {
  padding: 120px 0;
  background: #05070D;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.network-grid-container {
  display: grid;
  grid-template-columns: 1.8fr 1.2fr;
  gap: 3rem;
  align-items: stretch;
  position: relative;
  z-index: 5;
}

/* Map background styling */
.map-canvas-container {
  position: relative;
  background: rgba(10, 15, 30, 0.4);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 20px;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
}

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

.map-card-overlay {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

/* Live Client Cards */
.live-client-card {
  background: rgba(20, 25, 35, 0.85);
  border: 1px solid rgba(39, 198, 255, 0.1);
  border-radius: 12px;
  padding: 1.25rem;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.live-client-card:hover {
  transform: translateY(-4px);
  border-color: var(--neon-cyan);
  box-shadow: 0 8px 30px rgba(39, 198, 255, 0.15);
}

.client-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-bottom: 0.5rem;
  margin-bottom: 0.75rem;
}

.client-name-group h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.client-name-group span {
  font-size: 0.65rem;
  color: var(--text-muted);
}

.live-indicator {
  font-size: 0.65rem;
  font-weight: 700;
  color: #22c55e;
  display: flex;
  align-items: center;
  gap: 4px;
}

.live-indicator::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px #22c55e;
  animation: pulseLiveDot 1.2s infinite;
}

@keyframes pulseLiveDot {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 12px #22c55e; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

.client-metrics-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.metric-row {
  display: flex;
  flex-direction: column;
}

.metric-row label {
  font-size: 0.65rem;
  color: var(--text-muted);
}

.metric-row span {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-mono);
}

/* Live Activity Log Panel */
.activity-feed-panel {
  background: rgba(13, 18, 30, 0.8);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 20px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  height: 520px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.feed-header {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-bottom: 0.75rem;
  margin-bottom: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.feed-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.feed-header h3 i {
  color: #22c55e;
}

.activity-logs-container {
  flex-grow: 1;
  overflow-y: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  position: relative;
}

.activity-log-item {
  display: flex;
  gap: 0.75rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
  animation: slideLogItem 0.4s ease-out;
}

@keyframes slideLogItem {
  from { transform: translateY(-20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.activity-log-item i {
  font-size: 1.25rem;
  color: var(--neon-cyan);
  margin-top: 2px;
}

.log-content-row {
  display: flex;
  flex-direction: column;
}

.log-content-row p {
  font-size: 0.78rem;
  color: #fff;
  line-height: 1.4;
}

.log-content-row span {
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Live Terminal Overlay */
.live-terminal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 7, 13, 0.95);
  backdrop-filter: blur(15px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.live-terminal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.terminal-box-wrapper {
  background: #0b0f19;
  border: 1.5px solid var(--neon-cyan);
  border-radius: 20px;
  width: 90%;
  max-width: 1200px;
  height: 85%;
  box-shadow: 0 0 50px rgba(39, 198, 255, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.terminal-header {
  background: rgba(39, 198, 255, 0.05);
  border-bottom: 1.5px solid rgba(39, 198, 255, 0.2);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.terminal-title-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.terminal-close-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.75rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.terminal-close-btn:hover {
  color: var(--neon-red);
}

.terminal-workspace {
  flex-grow: 1;
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  overflow-y: auto;
}

.terminal-widget {
  background: rgba(20, 25, 35, 0.6);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.terminal-widget h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--neon-cyan);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-bottom: 0.5rem;
}

/* Integrations carousel */
.integrations-track {
  display: flex;
  gap: 3rem;
  animation: tickerScroll 25s linear infinite;
  width: max-content;
}

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Subpage Hero Banner Styles */
.subpage-hero {
  padding: 180px 0 80px 0;
  background: radial-gradient(circle at 10% 20%, rgba(39, 198, 255, 0.06) 0%, transparent 60%);
  text-align: center;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.subpage-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #fff 0%, var(--neon-cyan) 60%, var(--neon-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(39, 198, 255, 0.15);
}

.subpage-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.subpage-content {
  padding: 100px 0;
  position: relative;
}


