/* ==========================================================================
   Guessy.in — Next-Gen Full-Stack & Game Development Studio Design System
   Modern Cyber-Glass Dark UI with High-Tech Neon Accents (Production Grade)
   ========================================================================== */

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

:root {
  --bg-main: #050713;
  --bg-secondary: #090e24;
  --bg-card: rgba(12, 17, 40, 0.7);
  --bg-card-hover: rgba(18, 26, 58, 0.85);
  --bg-glass: rgba(10, 15, 36, 0.65);
  
  --cyan-neon: #00f2fe;
  --cyan-glow: rgba(0, 242, 254, 0.35);
  --emerald-neon: #00ff87;
  --emerald-glow: rgba(0, 255, 135, 0.35);
  --purple-neon: #8b5cf6;
  --purple-glow: rgba(139, 92, 246, 0.35);
  --amber-neon: #ffb703;
  --blue-neon: #38bdf8;
  
  --text-white: #ffffff;
  --text-title: #f8fafc;
  --text-body: #cbd5e1;
  --text-muted: #94a3b8;
  --text-dark: #64748b;
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-glass: rgba(99, 102, 241, 0.2);
  --border-cyan: rgba(0, 242, 254, 0.3);
  --border-emerald: rgba(0, 255, 135, 0.3);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 26px;
  --radius-full: 9999px;
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  
  --shadow-card: 0 15px 35px -10px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 30px rgba(0, 242, 254, 0.25);
  --shadow-hover: 0 20px 45px -5px rgba(0, 242, 254, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Plus Jakarta Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-main);
  color: var(--text-body);
  overflow-x: hidden;
  line-height: 1.6;
  background-image: 
    radial-gradient(circle at 15% 10%, rgba(0, 242, 254, 0.09) 0%, transparent 45%),
    radial-gradient(circle at 85% 30%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 70%, rgba(0, 255, 135, 0.06) 0%, transparent 45%);
  background-attachment: fixed;
}

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

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
  transition: var(--transition-normal);
}

.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Background Matrix Canvas */
#matrixCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  opacity: 0.28;
}

/* Header / Navbar */
.studio-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(5, 7, 19, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition-normal);
}

.studio-header.scrolled {
  background: rgba(5, 7, 19, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  border-bottom: 1px solid rgba(0, 242, 254, 0.15);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.5px;
}

.logo-badge {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #00f2fe, #4facfe);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #050713;
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.4);
}

.brand-name {
  color: #fff;
}

.studio-tag {
  font-size: 10px;
  font-weight: 800;
  color: var(--cyan-neon);
  background: rgba(0, 242, 254, 0.12);
  border: 1px solid rgba(0, 242, 254, 0.3);
  padding: 2px 8px;
  border-radius: 6px;
  letter-spacing: 1px;
}

.brand-logo-img {
  height: 42px;
  width: auto;
  display: block;
  transition: transform var(--transition-fast);
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-item-dropdown {
  position: relative;
}

.nav-link {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
}

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

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

.dropdown-arrow {
  font-size: 10px;
  transition: transform var(--transition-fast);
}

.nav-item-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  width: 320px;
  background: rgba(10, 16, 38, 0.96);
  border: 1px solid rgba(0, 242, 254, 0.25);
  border-radius: var(--radius-md);
  padding: 12px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 242, 254, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-normal);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nav-item-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  background: transparent;
}

.dropdown-item:hover {
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid rgba(0, 242, 254, 0.2);
  transform: translateX(4px);
}

.dropdown-icon {
  font-size: 20px;
  flex-shrink: 0;
}

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

.dropdown-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
}

.dropdown-desc {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.3;
}

.btn-nav-quote {
  background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
  color: #050713;
  font-weight: 800;
  font-size: 13.5px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 18px rgba(0, 242, 254, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-nav-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 242, 254, 0.5);
  color: #050713;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  padding: 8px;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition: var(--transition-normal);
}

/* Mobile Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 82%;
  max-width: 360px;
  height: 100vh;
  background: rgba(8, 12, 28, 0.98);
  backdrop-filter: blur(25px);
  border-left: 1px solid rgba(0, 242, 254, 0.2);
  z-index: 1001;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -15px 0 40px rgba(0, 0, 0, 0.8);
}

.mobile-nav-drawer.active {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.mobile-close-btn {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mobile-nav-link {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-title);
  display: block;
  padding: 8px 0;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  padding-top: 130px;
  padding-bottom: 60px;
  position: relative;
  z-index: 1;
}

.hero-grid-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid rgba(0, 242, 254, 0.25);
  color: var(--cyan-neon);
  font-size: 12.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.pulsing-dot {
  width: 8px;
  height: 8px;
  background-color: var(--emerald-neon);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--emerald-neon);
  animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.hero-title {
  font-size: 50px;
  font-weight: 900;
  line-height: 1.12;
  color: #ffffff;
  letter-spacing: -1.5px;
  margin-bottom: 18px;
}

.gradient-text {
  background: linear-gradient(135deg, #00f2fe 0%, #4facfe 50%, #00ff87 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  min-height: 56px;
}

.hero-subtitle {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 600px;
}

.hero-subtitle strong {
  color: #fff;
  font-weight: 700;
}

.service-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.service-tag-pill {
  background: rgba(14, 20, 48, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-body);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(10px);
  transition: all var(--transition-fast);
}

.service-tag-pill:hover {
  border-color: var(--cyan-neon);
  color: #fff;
  transform: translateY(-2px);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.btn-glow {
  background: linear-gradient(135deg, #00f2fe 0%, #4facfe 50%, #00c6ff 100%);
  color: #050713;
  font-weight: 800;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 25px rgba(0, 242, 254, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 242, 254, 0.6);
  color: #050713;
}

.btn-outline-glow {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(10px);
  transition: all var(--transition-fast);
}

.btn-outline-glow:hover {
  border-color: var(--cyan-neon);
  background: rgba(0, 242, 254, 0.1);
  color: var(--cyan-neon);
  transform: translateY(-3px);
}

/* Stats Counter Bar */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  width: 100%;
}

.stat-card {
  background: rgba(12, 17, 40, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 14px 12px;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.stat-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 242, 254, 0.3);
}

.stat-number {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.5px;
}

.stat-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Hero Visual Card */
.hero-visual-card {
  background: linear-gradient(145deg, rgba(14, 22, 54, 0.85) 0%, rgba(8, 12, 32, 0.95) 100%);
  border: 1px solid rgba(0, 242, 254, 0.25);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 242, 254, 0.15);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.terminal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 16px;
}

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

.terminal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot-red { background-color: #ff5f56; }
.dot-yellow { background-color: #ffbd2e; }
.dot-green { background-color: #27c93f; }

.terminal-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  font-family: monospace;
}

.live-status-pill {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 800;
  color: var(--emerald-neon);
  background: rgba(0, 255, 135, 0.1);
  padding: 2px 8px;
  border-radius: 6px;
}

.hero-showcase-screen {
  background: rgba(4, 6, 16, 0.9);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px;
  margin-bottom: 16px;
}

.code-line {
  font-family: 'Consolas', monospace;
  font-size: 12px;
  line-height: 1.6;
}
.token-kw { color: #ff79c6; font-weight: 700; }
.token-fn { color: #50fa7b; }
.token-str { color: #f1fa8c; }
.token-num { color: #bd93f9; }
.token-comment { color: #6272a4; }

.hero-mini-showcases {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mini-showcase-box {
  background: rgba(14, 20, 48, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mini-icon {
  font-size: 20px;
}

.mini-meta h5 {
  font-size: 12px;
  color: #fff;
  font-weight: 700;
}

.mini-meta span {
  font-size: 10.5px;
  color: var(--cyan-neon);
}

/* ==========================================================================
   Continuous Infinite Tech Marquee (CSS FIXED)
   ========================================================================== */
.tech-marquee-section {
  width: 100%;
  overflow: hidden;
  background: rgba(8, 12, 28, 0.85);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px 0;
  position: relative;
  z-index: 1;
}

.marquee-container {
  display: flex;
  width: 100%;
  overflow: hidden;
  user-select: none;
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.marquee-track {
  display: flex;
  flex-direction: row;
  align-items: center;
  white-space: nowrap;
  gap: 20px;
  animation: marqueeScroll 28s linear infinite;
  will-change: transform;
}

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

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14, 20, 48, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 13.5px;
  font-weight: 700;
  color: #f1f5f9;
  flex-shrink: 0;
}

.marquee-item .tech-icon {
  font-size: 16px;
}

/* ==========================================================================
   Common Section Styles
   ========================================================================== */
.section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.section-head {
  text-align: center;
  margin-bottom: 50px;
}

.section-badge {
  display: inline-block;
  color: var(--cyan-neon);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid rgba(0, 242, 254, 0.2);
  padding: 4px 14px;
  border-radius: var(--radius-full);
}

.section-title {
  font-size: 38px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.8px;
  margin-bottom: 12px;
}

.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
}

/* ==========================================================================
   Services Suite
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--cyan-neon), transparent);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-8px);
  background: var(--bg-card-hover);
  border-color: rgba(0, 242, 254, 0.4);
  box-shadow: var(--shadow-hover);
}

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

.service-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  border: 1px solid;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-card p {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 18px;
}

.service-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  flex: 1;
}

.service-features-list li {
  font-size: 12.5px;
  font-weight: 600;
  color: #e2e8f0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features-list li span {
  color: var(--emerald-neon);
  font-weight: 800;
}

.service-tech-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.tech-chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11px;
  font-weight: 700;
  color: var(--cyan-neon);
  padding: 3px 10px;
  border-radius: 6px;
}

/* ==========================================================================
   Portfolio & Products Catalog Section
   ========================================================================== */
.portfolio-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.filter-btn {
  background: rgba(14, 20, 48, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  font-weight: 700;
  font-size: 13.5px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(10px);
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.filter-btn.active {
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.2), rgba(0, 255, 135, 0.2));
  border-color: var(--cyan-neon);
  color: #fff;
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.25);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.portfolio-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 22px;
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
}

.portfolio-card.flagship-featured {
  grid-column: span 3;
  background: linear-gradient(135deg, rgba(14, 22, 58, 0.9) 0%, rgba(8, 12, 34, 0.95) 100%);
  border: 1.5px solid rgba(0, 242, 254, 0.4);
  box-shadow: 0 0 35px rgba(0, 242, 254, 0.15);
}

.portfolio-card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  border-color: rgba(0, 242, 254, 0.4);
  box-shadow: var(--shadow-hover);
}

.card-top-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.category-tag {
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--cyan-neon);
  letter-spacing: 0.5px;
}

.status-badge {
  font-size: 10.5px;
  font-weight: 800;
  color: var(--emerald-neon);
  background: rgba(0, 255, 135, 0.1);
  border: 1px solid rgba(0, 255, 135, 0.3);
  padding: 2px 8px;
  border-radius: 6px;
}

.portfolio-card h4 {
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.portfolio-card p {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.portfolio-tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.portfolio-tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 3px 9px;
  border-radius: 4px;
}

.btn-card-action {
  width: 100%;
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid rgba(0, 242, 254, 0.3);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all var(--transition-fast);
}

.btn-card-action:hover {
  background: linear-gradient(135deg, #00f2fe, #4facfe);
  color: #050713;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(0, 242, 254, 0.35);
}

/* ==========================================================================
   Tech Stack & Architecture Section
   ========================================================================== */
.tech-architecture-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.tech-domain-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  backdrop-filter: blur(16px);
  transition: all var(--transition-normal);
}

.tech-domain-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 242, 254, 0.3);
  box-shadow: var(--shadow-hover);
}

.domain-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.domain-icon {
  font-size: 22px;
}

.domain-header h4 {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
}

.tech-items-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tech-items-list li {
  font-size: 13px;
  color: var(--text-body);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tech-items-list li span.highlight {
  font-weight: 700;
  color: #fff;
}

.tech-items-list li span.badge {
  font-size: 10.5px;
  color: var(--cyan-neon);
  background: rgba(0, 242, 254, 0.1);
  padding: 1px 6px;
  border-radius: 4px;
}

/* ==========================================================================
   How We Work (5-Step Agile Roadmap)
   ========================================================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}

.process-step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 22px 16px;
  text-align: left;
  backdrop-filter: blur(14px);
  transition: all var(--transition-normal);
  position: relative;
}

.process-step-card:hover {
  transform: translateY(-6px);
  border-color: var(--cyan-neon);
  box-shadow: var(--shadow-hover);
}

.step-num {
  font-size: 28px;
  font-weight: 900;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--cyan-neon);
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.process-step-card h4 {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.process-step-card p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ==========================================================================
   Inquiry & Cost Estimation Section
   ========================================================================== */
.inquiry-wrapper {
  background: linear-gradient(145deg, rgba(14, 22, 54, 0.8) 0%, rgba(8, 12, 32, 0.95) 100%);
  border: 1px solid rgba(0, 242, 254, 0.3);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 45px rgba(0, 242, 254, 0.15);
  backdrop-filter: blur(20px);
}

.inquiry-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
}

.inquiry-form-col h3 {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.inquiry-form-col p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  background: rgba(6, 9, 22, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: #fff;
  font-size: 14px;
  transition: all var(--transition-fast);
}

.form-control:focus {
  border-color: var(--cyan-neon);
  box-shadow: 0 0 12px rgba(0, 242, 254, 0.3);
  outline: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.service-select-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.service-choice-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  font-size: 12.5px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.service-choice-btn.selected {
  background: rgba(0, 242, 254, 0.15);
  border-color: var(--cyan-neon);
  color: #fff;
}

.btn-submit-inquiry {
  width: 100%;
  background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
  color: #050713;
  font-weight: 900;
  font-size: 15px;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 6px 20px rgba(0, 242, 254, 0.4);
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-submit-inquiry:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 242, 254, 0.6);
}

.inquiry-perks-col {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  padding-left: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}

.perk-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.perk-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.perk-meta h4 {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2px;
}

.perk-meta p {
  font-size: 12.5px;
  color: var(--text-muted);
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.studio-footer {
  background: #03050d;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 60px 0 30px 0;
  position: relative;
  z-index: 1;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand-col p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 12px;
  max-width: 320px;
}

.footer-col h5 {
  font-size: 14.5px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-list a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

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

.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 12px;
  color: var(--text-dark);
  flex-wrap: wrap;
  gap: 12px;
}

/* ==========================================================================
   Multi-Page Common Components (Page Hero, Breadcrumb, Tabs, Details)
   ========================================================================== */
.page-hero {
  padding: 140px 0 70px 0;
  position: relative;
  background: radial-gradient(circle at 50% 0%, rgba(0, 242, 254, 0.12) 0%, transparent 60%);
  border-bottom: 1px solid var(--border-subtle);
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.breadcrumb-nav a {
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.breadcrumb-nav a:hover {
  color: var(--cyan-neon);
}

.breadcrumb-separator {
  color: var(--text-dark);
  font-size: 11px;
}

.breadcrumb-current {
  color: #fff;
  font-weight: 600;
}

.page-hero-title {
  font-size: 44px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.page-hero-desc {
  font-size: 17px;
  color: var(--text-body);
  max-width: 780px;
  line-height: 1.65;
  margin-bottom: 30px;
}

.page-hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-body);
}

.meta-pill .pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald-neon);
  box-shadow: 0 0 8px var(--emerald-neon);
}

/* Service Detail Sections */
.service-feature-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition-normal);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.service-feature-box:hover {
  border-color: rgba(0, 242, 254, 0.35);
  box-shadow: var(--shadow-card), 0 0 25px rgba(0, 242, 254, 0.15);
  transform: translateY(-4px);
}

.service-feature-box h3 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.deliverable-card {
  background: rgba(12, 18, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all var(--transition-normal);
}

.deliverable-card:hover {
  border-color: rgba(0, 255, 135, 0.3);
  background: rgba(16, 24, 56, 0.8);
}

.deliverable-icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}

.deliverable-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.deliverable-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Tech Matrix Grid */
.tech-matrix-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.tech-matrix-card {
  background: rgba(9, 14, 34, 0.8);
  border: 1px solid rgba(0, 242, 254, 0.15);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  transition: all var(--transition-normal);
}

.tech-matrix-card:hover {
  border-color: var(--cyan-neon);
  box-shadow: 0 8px 24px rgba(0, 242, 254, 0.15);
  transform: translateY(-3px);
}

.tech-matrix-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.tech-matrix-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.tech-matrix-desc {
  font-size: 12px;
  color: var(--text-muted);
}

/* Architecture Flowcards */
.arch-flow-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 30px;
  position: relative;
}

.arch-flow-step {
  background: rgba(14, 20, 48, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 24px;
  position: relative;
}

.arch-step-num {
  font-size: 11px;
  font-weight: 800;
  color: var(--cyan-neon);
  background: rgba(0, 242, 254, 0.12);
  border: 1px solid rgba(0, 242, 254, 0.3);
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 12px;
}

.arch-flow-step h4 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 8px;
}

.arch-flow-step p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* FAQ Accordion Component (SEO & AEO) */
.faq-wrap {
  max-width: 860px;
  margin: 36px auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: rgba(12, 17, 40, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item.active {
  border-color: rgba(0, 242, 254, 0.35);
  background: rgba(14, 22, 52, 0.85);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: transparent;
  color: #fff;
  font-size: 15.5px;
  font-weight: 700;
  text-align: left;
}

.faq-toggle-icon {
  font-size: 18px;
  color: var(--cyan-neon);
  transition: transform var(--transition-fast);
}

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

.faq-answer {
  padding: 0 24px 20px 24px;
  color: var(--text-body);
  font-size: 14px;
  line-height: 1.65;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 242, 254, 0.4);
  box-shadow: var(--shadow-card), 0 0 30px rgba(0, 242, 254, 0.15);
}

.pricing-card.featured {
  border-color: var(--cyan-neon);
  background: rgba(14, 22, 54, 0.85);
  box-shadow: 0 10px 40px rgba(0, 242, 254, 0.2);
}

.pricing-popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #00f2fe, #00ff87);
  color: #050713;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(0, 242, 254, 0.4);
}

.pricing-plan-title {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.pricing-plan-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 24px;
  min-height: 40px;
}

.pricing-price-box {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-price {
  font-size: 38px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
}

.pricing-period {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-left: 4px;
}

.pricing-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex-grow: 1;
}

.pricing-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-body);
}

.pricing-check {
  color: var(--emerald-neon);
  font-weight: 800;
}

/* Careers Grid */
.careers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.job-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.job-card:hover {
  border-color: rgba(0, 242, 254, 0.4);
  transform: translateY(-3px);
}

.job-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.job-type-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--emerald-neon);
  background: rgba(0, 255, 135, 0.1);
  border: 1px solid rgba(0, 255, 135, 0.3);
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.job-title {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.job-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 18px;
  flex-grow: 1;
}

.job-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 16px;
}

.job-location {
  font-size: 12.5px;
  color: var(--text-muted);
}

/* Legal Content Typography */
.legal-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 48px;
  line-height: 1.8;
  color: var(--text-body);
}

.legal-section {
  margin-bottom: 36px;
}

.legal-section h2 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(0, 242, 254, 0.15);
  padding-bottom: 8px;
}

.legal-section h3 {
  font-size: 17px;
  color: var(--cyan-neon);
  margin: 18px 0 8px 0;
}

.legal-section p {
  font-size: 14.5px;
  color: var(--text-body);
  margin-bottom: 14px;
}

.legal-section ul {
  padding-left: 20px;
  margin-bottom: 14px;
}

.legal-section li {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

/* CTA Highlight Banner */
.cta-highlight-banner {
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.12) 0%, rgba(0, 255, 135, 0.08) 100%);
  border: 1px solid rgba(0, 242, 254, 0.3);
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
  margin: 60px 0;
  position: relative;
  overflow: hidden;
}

.cta-highlight-banner h3 {
  font-size: 32px;
  color: #fff;
  margin-bottom: 14px;
  font-weight: 800;
}

.cta-highlight-banner p {
  font-size: 16px;
  color: var(--text-body);
  max-width: 620px;
  margin: 0 auto 28px auto;
}

/* ==========================================================================
   Mobile & Responsive Media Queries
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hero-title {
    font-size: 42px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .portfolio-card.flagship-featured {
    grid-column: span 2;
  }
  .tech-architecture-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .inquiry-grid {
    grid-template-columns: 1fr;
  }
  .inquiry-perks-col {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-left: 0;
    padding-top: 24px;
  }
  .footer-top-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
  .hero-title {
    font-size: 34px;
  }
  .hero-subtitle {
    font-size: 15px;
  }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-card.flagship-featured {
    grid-column: span 1;
  }
  .tech-architecture-grid {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-top-grid {
    grid-template-columns: 1fr;
  }
}
