/* ========================================
   Navbar (Raycast style)
   ======================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.navbar-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 32px;
  width: auto;
}

/* Nav links */
.navbar-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: #bababa;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

/* Right side */
.navbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link-en {
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.nav-link-en:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

/* CTA Button */
.navbar-cta, a.navbar-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #000;
  background: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.navbar-cta:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 1px;
  transition: all 0.2s ease;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 12px 24px 20px;
  background: rgba(10, 10, 10, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-menu.open {
  display: flex;
}

.mobile-link {
  padding: 12px 0;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.2s ease;
}

.mobile-link:hover {
  color: #fff;
}

.mobile-link:last-child {
  border-bottom: none;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar-links {
    display: none;
  }
  
  .nav-link-en,
  .navbar-cta, a.navbar-cta {
    display: none;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .navbar-inner {
    padding: 0 16px;
  }
}

/* ========================================
   ZEKE LAB — Custom Styles
   ======================================== */

/* Scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Selection color */
::selection {
  background: rgba(37, 99, 235, 0.3);
  color: #F8FAFC;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #0D0D0D;
}
::-webkit-scrollbar-thumb {
  background: #2A2A2A;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #334155;
}

/* ========================================
   Hero Background (Canvas-based)
   ======================================== */

.hero-bg {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: transparent;
  z-index: 1;
}

.hero-bg > *:not(canvas) {
  position: relative;
  z-index: 2;
}

#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
}

/* ========================================
   Animations
   ======================================== */

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Section reveal on scroll */
.section-reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Hover lift effect for cards */
.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Navbar blur background */
nav {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, #A0A0A0 0%, #808080 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Focus states for accessibility */
a:focus-visible,
button:focus-visible {
  outline: 2px solid #A0A0A0;
  outline-offset: 2px;
}

/* Smooth image loading */
img {
  transition: opacity 0.3s ease;
}

/* Link underline effect */
.nav-link {
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #A0A0A0;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Mobile menu animation */
#mobileMenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

#mobileMenu.open {
  max-height: 300px;
}

/* Tag styles */
.tag {
  font-size: 0.65rem;
  padding: 0.2rem 0.5rem;
  border-radius: 0.25rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Responsive typography */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem !important;
    line-height: 1.2 !important;
  }
  
  h2 {
    font-size: 2rem !important;
  }
}

/* Print styles */
@media print {
  nav, footer, .animate-bounce {
    display: none !important;
  }
  
  body {
    background: white !important;
    color: black !important;
  }
  
  section {
    page-break-inside: avoid;
  }
}

/* Hero text line spacing */
.hero-text {
  line-height: 1.8;
}

.hero-text h1 {
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.hero-text p {
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

/* Word reveal spacing */
.word-reveal {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
  will-change: opacity, transform;
  line-height: 1.8;
}

/* ========================================
   Word Reveal Animation (Raycast style)
   ======================================== */

.word-reveal {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
  will-change: opacity, transform;
  line-height: 2;
}

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

/* Hero content block spacing */
/* Override max-w-3xl for hero */
.hero-content { max-width: 100% !important; }

.hero-content > * {
  margin-bottom: 2rem;
}

.hero-content > *:last-child {
  margin-bottom: 0;
}

/* Hero button spacing */
.hero-buttons {
  gap: 1rem;
  margin-top: 1.5rem;
}

/* Hero full width override */
.hero-full-width {
  max-width: 100% !important;
  width: 100%;
}

/* ========================================
   CTA Buttons (Raycast style)
   ======================================== */

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.cta-button-primary {
  background: #fff;
  color: #000;
  border: none;
}

.cta-button-primary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
}

.cta-button-primary:active {
  transform: translateY(0);
}

.cta-button-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.cta-button-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

/* ========================================
   Full-page Scroll Snap
   ======================================== */

html {
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

section.min-h-screen {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

/* ========================================
   About Section Redesign
   ======================================== */

.about-intro {
  max-width: 100%;
}

.about-quote {
  position: relative;
}

.about-quote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 120px;
  color: rgba(37, 99, 235, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.about-quote p {
  position: relative;
  z-index: 1;
}

.about-card {
  padding: 2rem;
  background: rgba(26, 26, 26, 0.6);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}

.about-card:hover {
  background: rgba(26, 26, 26, 0.8);
  border-color: rgba(37, 99, 235, 0.3);
  transform: translateY(-4px);
}

.about-card .icon-wrap {
  transition: transform 0.3s ease;
}

.about-card:hover .icon-wrap {
  transform: scale(1.1);
}

/* Gradient divider */
.bg-gradient-to-r from-primary to-accent {
  background: linear-gradient(90deg, #A0A0A0, #808080);
}

/* ========================================
   About Section Enhanced Design
   ======================================== */

/* Background decoration */
.about-bg-decoration {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 168, 51, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Title styling */
#about h2 {
  position: relative;
  display: inline-block;
}

.title-underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #A0A0A0, #808080);
  margin: 0 auto;
  border-radius: 2px;
}

/* Quote section */
.about-quote {
  position: relative;
}

.quote-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(255, 168, 51, 0.1) 0%, transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}

.about-quote-card {
  position: relative;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(30, 30, 30, 0.9) 100%);
  border: 1px solid rgba(255, 168, 51, 0.2);
  border-radius: 24px;
  padding: 3rem 4rem;
  text-align: center;
}

.quote-mark {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 100px;
  color: rgba(255, 168, 51, 0.15);
  font-family: Georgia, serif;
  line-height: 1;
}

/* Enhanced cards */
.about-card-enhanced {
  position: relative;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(22, 22, 22, 0.8) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 2.5rem;
  overflow: hidden;
  transition: all 0.4s ease;
}

.about-card-enhanced:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 168, 51, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.about-card-enhanced:hover .card-glow {
  opacity: 0.5;
}

.card-glow-1 {
  top: -50px;
  right: -50px;
  background: #A0A0A0;
}

.card-glow-2 {
  top: -50px;
  right: -50px;
  background: #808080;
}

.card-glow-3 {
  top: -50px;
  right: -50px;
  background: #A0A0A0;
}

.about-card-inner {
  position: relative;
  z-index: 1;
}

.card-icon {
  margin-bottom: 1.5rem;
}

.icon-bg {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(255, 168, 51, 0.2) 0%, rgba(255, 128, 0, 0.1) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #A0A0A0;
  transition: all 0.3s ease;
}

.about-card-enhanced:hover .icon-bg {
  background: linear-gradient(135deg, rgba(255, 168, 51, 0.3) 0%, rgba(255, 128, 0, 0.2) 100%);
  transform: scale(1.1);
}

.card-number {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  font-size: 48px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  transition: color 0.3s ease;
}

.about-card-enhanced:hover .card-number {
  color: rgba(255, 168, 51, 0.08);
}

/* Accent color */
.text-accent {
  color: #A0A0A0;
}

.text-accent.font-bold {
  color: #A0A0A0;
}

/* ========================================
   Solutions Section Redesign
   ======================================== */

.solutions-bg-decoration {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(255, 168, 51, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.solutions-card {
  position: relative;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(22, 22, 22, 0.8) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 2rem;
  overflow: hidden;
  transition: all 0.4s ease;
}

.solutions-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 168, 51, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.solutions-card-inner {
  position: relative;
  z-index: 1;
}

.solutions-card .card-glow {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.25;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.solutions-card:hover .card-glow {
  opacity: 0.45;
}

.solutions-card .card-glow-1 { top: -40px; right: -40px; background: #A0A0A0; }
.solutions-card .card-glow-2 { top: -40px; right: -40px; background: #808080; }
.solutions-card .card-glow-3 { top: -40px; right: -40px; background: #A0A0A0; }
.solutions-card .card-glow-4 { top: -40px; right: -40px; background: #808080; }
.solutions-card .card-glow-5 { top: -40px; right: -40px; background: #A0A0A0; }

.solutions-card .card-icon {
  margin-bottom: 1.5rem;
}

.solutions-card .icon-bg {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(255, 168, 51, 0.15) 0%, rgba(255, 128, 0, 0.08) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #A0A0A0;
  transition: all 0.3s ease;
}

.solutions-card:hover .icon-bg {
  background: linear-gradient(135deg, rgba(255, 168, 51, 0.25) 0%, rgba(255, 128, 0, 0.15) 100%);
  transform: scale(1.1);
}

.solutions-card .card-number {
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  font-size: 42px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  transition: color 0.3s ease;
}

.solutions-card:hover .card-number {
  color: rgba(255, 168, 51, 0.06);
}

/* ========================================
   Solutions Section - Metallic Gray Theme
   ======================================== */

#solutions {
  /* Override background decoration */
}

#solutions .solutions-bg-decoration {
  background: radial-gradient(circle, rgba(160, 160, 160, 0.08) 0%, transparent 70%);
}

#solutions .solutions-card {
  background: linear-gradient(135deg, rgba(40, 40, 40, 0.9) 0%, rgba(30, 30, 30, 0.9) 100%);
}

#solutions .solutions-card:hover {
  border-color: rgba(160, 160, 160, 0.3);
}

#solutions .solutions-card .card-glow {
  opacity: 0.2;
}

#solutions .solutions-card:hover .card-glow {
  opacity: 0.4;
}

#solutions .solutions-card .card-glow-1,
#solutions .solutions-card .card-glow-2,
#solutions .solutions-card .card-glow-3,
#solutions .solutions-card .card-glow-4,
#solutions .solutions-card .card-glow-5 {
  background: #A0A0A0;
}

#solutions .solutions-card .icon-bg {
  background: linear-gradient(135deg, rgba(160, 160, 160, 0.15) 0%, rgba(128, 128, 128, 0.1) 100%);
  color: #A0A0A0;
}

#solutions .solutions-card:hover .icon-bg {
  background: linear-gradient(135deg, rgba(160, 160, 160, 0.25) 0%, rgba(128, 128, 128, 0.2) 100%);
}

#solutions .solutions-card .card-number {
  color: rgba(255, 255, 255, 0.03);
}

#solutions .solutions-card:hover .card-number {
  color: rgba(160, 160, 160, 0.08);
}

/* Title underline for solutions */
#solutions .title-underline {
  background: linear-gradient(90deg, #A0A0A0, #808080);
}

/* ========================================
   Infrastructure & Products Cards
   ======================================== */

.infra-card,
.product-card {
  position: relative;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(22, 22, 22, 0.8) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 1.75rem;
  overflow: hidden;
  transition: all 0.4s ease;
}

.infra-card:hover,
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 168, 51, 0.3);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
}

.infra-card-inner,
.product-card-inner {
  position: relative;
  z-index: 1;
}

.infra-card .card-glow,
.product-card .card-glow {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.25;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.infra-card:hover .card-glow,
.product-card:hover .card-glow {
  opacity: 0.45;
}

.card-glow-1 { top: -30px; right: -30px; background: #FFA833; }
.card-glow-2 { top: -30px; right: -30px; background: #FF8000; }
.card-glow-3 { top: -30px; right: -30px; background: #FFA833; }

.infra-card .card-icon,
.product-card .card-icon {
  margin-bottom: 1rem;
}

.infra-card .icon-bg {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(255, 168, 51, 0.15) 0%, rgba(255, 128, 0, 0.08) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFA833;
  transition: all 0.3s ease;
}

.infra-card:hover .icon-bg,
.product-card:hover .icon-bg {
  background: linear-gradient(135deg, rgba(255, 168, 51, 0.25) 0%, rgba(255, 128, 0, 0.15) 100%);
  transform: scale(1.05);
}

.product-card .icon-bg {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(255, 168, 51, 0.15) 0%, rgba(255, 128, 0, 0.08) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.product-card:hover .icon-bg {
  transform: scale(1.05);
}

/* ========================================
   Infrastructure Redesign
   ======================================== */

.infra-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 168, 51, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.infra-header-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #FFA833, #FF8000);
  margin: 0 auto;
  border-radius: 2px;
}

/* Section Header */
.infra-section-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.infra-section-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(255, 168, 51, 0.15) 0%, rgba(255, 128, 0, 0.08) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFA833;
  flex-shrink: 0;
}

/* Hardware Cards */
.infra-hardware-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .infra-hardware-grid {
    grid-template-columns: 1fr;
  }
}

.infra-hardware-card {
  background: linear-gradient(145deg, rgba(26, 26, 26, 0.9) 0%, rgba(18, 18, 18, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  gap: 1.5rem;
  transition: all 0.4s ease;
}

.infra-hardware-card:hover {
  border-color: rgba(255, 168, 51, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.hardware-visual {
  width: 100px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hardware-content {
  flex: 1;
}

.infra-tag {
  display: inline-block;
  font-size: 11px;
  padding: 4px 10px;
  background: rgba(255, 168, 51, 0.1);
  color: #FFA833;
  border-radius: 6px;
}

/* Hardware Device Visual */
.hardware-device {
  position: relative;
  width: 80px;
  height: 80px;
}

.device-layer {
  position: absolute;
  border-radius: 8px;
  border: 1px solid rgba(255, 168, 51, 0.3);
}

.layer-1 {
  width: 80px;
  height: 80px;
  top: 0;
  left: 0;
  background: rgba(255, 168, 51, 0.05);
}

.layer-2 {
  width: 60px;
  height: 60px;
  top: 10px;
  left: 10px;
  background: rgba(255, 168, 51, 0.08);
}

.layer-3 {
  width: 40px;
  height: 40px;
  top: 20px;
  left: 20px;
  background: rgba(255, 168, 51, 0.12);
}

.device-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #FFA833;
}

/* Hardware Host Visual */
.hardware-host {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.host-box {
  width: 70px;
  height: 40px;
  background: linear-gradient(180deg, rgba(255, 168, 51, 0.2) 0%, rgba(255, 168, 51, 0.08) 100%);
  border: 1px solid rgba(255, 168, 51, 0.3);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #FFA833;
}

.host-led {
  width: 6px;
  height: 6px;
  background: #FFA833;
  border-radius: 50%;
  box-shadow: 0 0 8px #FFA833;
  animation: pulse-led 2s ease-in-out infinite;
}

@keyframes pulse-led {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.host-cables {
  display: flex;
  gap: 4px;
}

.cable {
  width: 20px;
  height: 3px;
  background: rgba(255, 168, 51, 0.4);
  border-radius: 2px;
}

/* Divider */
.infra-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3rem 0;
  position: relative;
}

.infra-divider::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.divider-text {
  background: #0D0D0D;
  padding: 0 1.5rem;
  color: #FFA833;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
}

/* Software Grid */
.infra-software-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 768px) {
  .infra-software-grid {
    grid-template-columns: 1fr;
  }
}

.infra-software-card {
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  padding: 1.25rem;
  transition: all 0.3s ease;
}

.infra-software-card:hover {
  background: rgba(26, 26, 26, 0.9);
  border-color: rgba(255, 168, 51, 0.2);
  transform: translateY(-3px);
}

.software-icon-wrap {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(255, 168, 51, 0.12) 0%, rgba(255, 128, 0, 0.06) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFA833;
  margin-bottom: 1rem;
}

.infra-software-card .infra-tag {
  margin-top: 0.75rem;
  font-size: 10px;
  padding: 3px 8px;
}

/* ========================================
   Services Section Redesign
   ======================================== */

.services-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 168, 51, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.service-card {
  position: relative;
  background: linear-gradient(145deg, rgba(26, 26, 26, 0.8) 0%, rgba(20, 20, 20, 0.8) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 1.75rem;
  overflow: hidden;
  transition: all 0.4s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 168, 51, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.service-card-highlight {
  background: linear-gradient(145deg, rgba(30, 26, 20, 0.9) 0%, rgba(22, 18, 14, 0.9) 100%);
  border-color: rgba(255, 168, 51, 0.15);
}

.service-glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(255, 168, 51, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

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

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(255, 168, 51, 0.15) 0%, rgba(255, 128, 0, 0.08) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFA833;
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, rgba(255, 168, 51, 0.25) 0%, rgba(255, 128, 0, 0.15) 100%);
  transform: scale(1.05);
}

.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.service-list-item {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  padding: 4px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.service-list-item:nth-child(odd) {
  padding-right: 8px;
}

.service-list-item:nth-child(even) {
  padding-left: 8px;
  border-left: 1px solid rgba(255, 255, 255, 0.04);
}

/* ========================================
   Services Grand Redesign
   ======================================== */

.services-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  pointer-events: none;
}

.services-orb-1 {
  width: 500px;
  height: 500px;
  background: #FFA833;
  top: 10%;
  left: -10%;
  animation: float-orb 12s ease-in-out infinite;
}

.services-orb-2 {
  width: 400px;
  height: 400px;
  background: #FF8000;
  bottom: 10%;
  right: -5%;
  animation: float-orb 15s ease-in-out infinite reverse;
}

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

.services-header-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #FFA833, transparent);
  margin: 0 auto;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-featured {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem 2.5rem;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(20, 20, 20, 0.7) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.service-featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 168, 51, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-featured:hover {
  border-color: rgba(255, 168, 51, 0.2);
  transform: translateX(8px);
  box-shadow: -8px 0 40px rgba(255, 168, 51, 0.1);
}

.service-featured:hover::before {
  opacity: 1;
}

.service-featured-accent {
  background: linear-gradient(135deg, rgba(255, 168, 51, 0.08) 0%, rgba(20, 20, 20, 0.9) 100%);
  border-color: rgba(255, 168, 51, 0.15);
}

.service-number {
  font-size: 3.5rem;
  font-weight: 200;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  min-width: 80px;
  transition: color 0.4s ease;
}

.service-featured:hover .service-number {
  color: rgba(255, 168, 51, 0.15);
}

.service-content {
  flex: 1;
}

.service-icon-large {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(255, 168, 51, 0.12) 0%, rgba(255, 128, 0, 0.06) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFA833;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.service-featured:hover .service-icon-large {
  background: linear-gradient(135deg, rgba(255, 168, 51, 0.2) 0%, rgba(255, 128, 0, 0.1) 100%);
  transform: scale(1.05);
}

.service-arrow {
  color: rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.service-featured:hover .service-arrow {
  color: #FFA833;
  transform: translateX(6px);
}

/* ========================================
   Links Section Redesign
   ======================================== */

.links-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 168, 51, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

  background: linear-gradient(145deg, rgba(26, 26, 26, 0.5) 0%, rgba(18, 18, 18, 0.5) 100%);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 2rem;
}

.social-grid {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.social-qr-placeholder {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.social-card:hover .social-qr-placeholder {
  border-color: rgba(255, 168, 51, 0.3);
  color: rgba(255, 168, 51, 0.4);
}

.social-name {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   Products Section Orb Background
   ======================================== */

.products-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
  pointer-events: none;
}

.products-orb-1 {
  width: 450px;
  height: 450px;
  background: #FFA833;
  top: 15%;
  right: -8%;
  animation: float-orb 14s ease-in-out infinite;
}

.products-orb-2 {
  width: 350px;
  height: 350px;
  background: #FF8000;
  bottom: 15%;
  left: -5%;
  animation: float-orb 11s ease-in-out infinite reverse;
}

/* ========================================
   Products Section - Spotlight & Grid Effect
   ======================================== */

.products-spotlight {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(255, 168, 51, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.products-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* ========================================
   Follow Me Section - Larger & Bolder
   ======================================== */

#links {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

#links .max-w-5xl {
  max-width: 700px;
}

#links .text-4xl {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.links-main-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.link-card {
  background: linear-gradient(145deg, rgba(26, 26, 26, 0.9) 0%, rgba(20, 20, 20, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.4s ease;
}

.link-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 168, 51, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.link-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(255, 168, 51, 0.15) 0%, rgba(255, 128, 0, 0.08) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFA833;
  margin: 0 auto 1.25rem;
  transition: all 0.3s ease;
}

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

.link-card:hover .link-icon {
  background: linear-gradient(135deg, rgba(255, 168, 51, 0.25) 0%, rgba(255, 128, 0, 0.15) 100%);
  transform: scale(1.1);
}

.link-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.link-card p {
  font-size: 0.875rem;
}

/* Social section larger */
.social-section {
  padding: 2.5rem;
  max-width: 700px;
  margin: 0 auto;
}

.social-section h3 {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.social-grid {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
}

.social-card {
  gap: 1rem;
}

.social-qr-placeholder {
  width: 100px;
  height: 100px;
}

.social-qr-placeholder svg {
  width: 48px;
  height: 48px;
}

.social-name {
  font-size: 14px;
}

#links .social-section p {
  margin-top: 1.5rem;
  font-size: 13px;
}

/* ========================================
   Solutions Section - Red Theme Override
   ======================================== */

#solutions .solutions-bg-decoration {
  background: radial-gradient(circle, rgba(255, 168, 51, 0.08) 0%, transparent 70%);
}

#solutions .title-underline {
  background: linear-gradient(90deg, #FFA833, #FF8000);
}

#solutions .solutions-card {
  background: linear-gradient(135deg, rgba(40, 30, 30, 0.9) 0%, rgba(30, 25, 25, 0.9) 100%);
}

#solutions .solutions-card:hover {
  border-color: rgba(229, 57, 53, 0.4);
}

#solutions .solutions-card .card-glow {
  background: #FFA833;
}

#solutions .solutions-card .card-glow-2 {
  background: #FF8000;
}

#solutions .solutions-card .card-glow-3 {
  background: #FF6600;
}

#solutions .solutions-card .icon-bg {
  background: linear-gradient(135deg, rgba(229, 57, 53, 0.15) 0%, rgba(198, 40, 40, 0.08) 100%);
  color: #FFA833;
}

#solutions .solutions-card:hover .icon-bg {
  background: linear-gradient(135deg, rgba(229, 57, 53, 0.25) 0%, rgba(198, 40, 40, 0.15) 100%);
}
