/* =========================
   Fonts (self-hosted)
   ========================= */
@font-face {
  font-family: "Fira Code";
  src: url("../fonts/FiraCode-VF.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

/* Fallback faces (older browsers) */
@font-face {
  font-family: "Fira Code";
  src: url("../fonts/FiraCode-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fira Code";
  src: url("../fonts/FiraCode-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* =========================
   Theme variables
   ========================= */
:root {
  --header-offset: 110px;
  --background-color: #fff;
  --border-color: #007acc;
  --text-color: #000;
  --accent-color: #ff6000;
  --font-family: "Fira Code", monospace;
  /* Cursor variables */
  --cursor-color: #ffc107;
  --cursor-size: 32px;
  --cursor-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  height: 100%;
  overflow-x: hidden;
}

body {
  min-height: 100%;
  margin: 0;
  padding: 0;
  padding-top: var(--header-offset);
  font-family: var(--font-family);
  background: var(--background-color);
  overflow-x: hidden;
  max-width: 100vw;
}

/* Accessibility */
.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: #ffffff;
  color: #111111;
  text-decoration: none;
  transform: translateY(-200%);
  transition: transform 0.2s ease;
  z-index: 3000;
}

.skip-link:focus {
  transform: translateY(0);
}

/* Page sections (SEO-friendly anchors) */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: white;
  padding: 0;
  z-index: 2000;
}
.vscode-window {
  position: relative;
  width: auto;
  max-width: 340px;
  height: auto;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  background: #ffffff;
  z-index: 10;
  display: flex;
  flex-direction: column;
  font-size: 24px;
}

/* Mini Title Bar */
.mini-title-bar {
  height: 28px;
  background: #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
}

.vscode-logo {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vscode-logo svg {
  width: 100%;
  height: 100%;
  display: block;
}

.window-controls {
  display: flex;
  gap: 6px;
  align-items: center;
}

.window-btn {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  cursor: pointer;
  transition: opacity 0.2s;
}

.window-btn:hover {
  opacity: 0.8;
}

.window-btn.close {
  background: #ff0e00;
}
.window-btn.minimize {
  background: yellow;
}
.window-btn.maximize {
  background: green;
}

/* Main Editor Area */
.editor-main {
  flex: 1;
  display: flex;
  position: relative;
  overflow: hidden;
}

/* Code Area */
.code-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

.line-numbers-column {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0px;
  background: var(--background-color);
  padding: 0;
  font-family: "Fira Code", monospace;
  font-size: 11px;
  color: #858585;
  text-align: right;
  user-select: none;
  display: none;
}

.code-content {
  flex: 1;
  padding: 10px 15px 10px 8px;
  font-family: "Fira Code", monospace;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 45px;
  justify-content: center;
}

/* Mini Status Bar */
.mini-status-bar {
  height: 18px;
  background: var(--border-color);
  display: flex;
  align-items: center;
  padding: 0 8px;
  font-family: "Fira Code", monospace;
  font-size: 9px;
  color: #ffffff;
  justify-content: center;
  overflow: hidden;
}

.status-message {
  display: flex;
  align-items: center;
  gap: 4px;
  opacity: 0;
  font-weight: 500;
  letter-spacing: 0.3px;
  transform: translateY(10px);
  transition: all 0.6s ease-out;
}

.status-message.visible {
  opacity: 0.95;
  transform: translateY(0);
}

.typing-line {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}

.typed-text {
  letter-spacing: -0.01em;
}

.cursor {
  display: inline-block;
  width: 2px;
  height: 15px;
  background-color: currentColor;
  animation: blink 0.8s step-end infinite;
  margin-left: 2px;
  vertical-align: middle;
  opacity: 0;
}

.cursor.visible {
  opacity: 1;
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}

.bracket {
  font-weight: 700;
  font-size: 16px;
  opacity: 0.95;
  margin: 0 2px;
}

.slash {
  font-weight: 700;
  font-size: 16px;
  opacity: 0.8;
}

/* IntelliSense Popup */
.intellisense-popup {
  position: absolute;
  top: 38px;
  left: 30px;
  background: #252526;
  border: 1px solid #454545;
  border-radius: 3px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
  font-family: "Fira Code", monospace;
  font-size: 10px;
  width: 200px;
  opacity: 0;
  transform: translateY(-5px);
  transition: all 0.3s ease-out;
  z-index: 100;
}

.intellisense-popup.visible {
  opacity: 1;
  transform: translateY(0);
}

.intellisense-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
  cursor: pointer;
  transition: background 0.2s;
}

.intellisense-item:hover {
  background: #2a2d2e;
}

.intellisense-item.selected {
  background: #094771;
}

.item-icon {
  color: #75beff;
  font-weight: bold;
  width: 12px;
  font-size: 10px;
}

.item-name {
  color: #cccccc;
  flex: 1;
}

.item-type {
  color: #858585;
  font-size: 9px;
}

/* Click Ripple Effect */
.click-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: red;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  z-index: 45;
}

.click-ripple.active {
  animation: rippleEffect 0.8s ease-out;
}

@keyframes rippleEffect {
  0% {
    width: 20px;
    height: 20px;
    opacity: 0.8;
  }
  100% {
    width: 80px;
    height: 80px;
    opacity: 0;
  }
}

/* Sparkle Effect */
.sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--text-color);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--text-color);
  opacity: 0;
  pointer-events: none;
  z-index: 55;
}

.sparkle.active {
  animation: sparkleEffect 0.8s ease-out;
}

@keyframes sparkleEffect {
  0% {
    opacity: 0;
    transform: translate(0, 0) scale(0);
  }
  40% {
    opacity: 1;
    transform: translate(var(--tx), var(--ty)) scale(1.5);
  }
  100% {
    opacity: 0;
    transform: translate(calc(var(--tx) * 2), calc(var(--ty) * 2)) scale(0);
  }
}

/* Glow pulse when clicking */
.editor-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0, 217, 255, 0.2), transparent 70%);
  opacity: 0;
  pointer-events: none;
  z-index: 5;
}

.editor-glow.active {
  animation: glowPulse 1s ease-out;
}

@keyframes glowPulse {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.vscode-window.cinematic-click {
  animation: windowCinematicClick 0.4s ease-out;
}

@keyframes windowCinematicClick {
  0% {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    filter: brightness(1);
  }
  30% {
    box-shadow:
      0 0 20px rgba(0, 120, 212, 0.6),
      0 0 40px rgba(0, 120, 212, 0.3);
    filter: brightness(1.15);
  }
  100% {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    filter: brightness(1);
  }
}

/* Contact Bar Styles */
.contact-bar {
  background: var(--border-color);
  padding: 8px 0;
  border-bottom: 1px solid #0052a3;
}

.contact-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  text-decoration: none;
  font-family: "Fira Code", monospace;
  font-size: 13px;
  transition: opacity 0.2s;
  cursor: pointer;
}

.contact-link:hover {
  opacity: 0.8;
}

/* Main Nav Styles */
.main-nav {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.main-nav-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 5px 10px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.logo-section {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.nav-menu-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 10px;
}

.nav-menu {
  display: flex;
  justify-content: center;
  gap: 35px;
  align-items: center;
}

.nav-link {
  color: #333;
  text-decoration: none;
  font-family: "Fira Code", monospace;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  cursor: pointer;
}

.nav-link:hover {
  color: #0066cc;
  border-bottom-color: #0066cc;
}

.nav-link.active {
  color: #0066cc;
}

.cta-section {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.cta-button {
  background: #0066cc;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-family: "Fira Code", monospace;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(0, 102, 204, 0.3);
  white-space: nowrap;
}

.cta-button:hover {
  background: #0052a3;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.4);
}

/* Main Content Styles */

/* Mobile Logo - Simplified version */
.mobile-logo {
  display: none;
  font-family: "Fira Code", monospace;
  font-size: 18px;
  font-weight: 700;
  color: var(--border-color);
  padding: 8px 16px;
  background: var(--background-color);
  border-radius: 6px;
  white-space: nowrap;
}

.mobile-logo-bracket {
  color: var(--accent-color);
  font-size: 22px;
  margin: 0 2px;
}

.mobile-logo-text {
  color: var(--text-color);
}

.mobile-logo-slash {
  color: var(--accent-color);
  font-size: 22px;
}

/* Burger Menu Styles */
.burger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  background: transparent;
  border: none;
  z-index: 1001;
}

.burger-line {
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.burger-menu.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

.mobile-menu-panel {
  position: fixed;
  top: 0;
  left: -100%;
  width: 280px;
  height: 100%;
  background: white;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: left 0.3s ease;
  overflow-y: auto;
  padding: 20px;
}

.mobile-menu-panel.active {
  left: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
}

.mobile-menu-close {
  font-size: 28px;
  color: #333;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
  line-height: 1;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav-link {
  color: #333;
  text-decoration: none;
  font-family: "Fira Code", monospace;
  font-size: 16px;
  font-weight: 500;
  padding: 15px 10px;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.2s;
  cursor: pointer;
}

.mobile-nav-link:hover {
  color: #0066cc;
  padding-left: 20px;
}

.mobile-nav-link.active {
  color: #0066cc;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .vscode-window {
    width: auto;
    max-width: 340px;
  }

  .mobile-logo {
    display: none;
  }

  .nav-menu {
    gap: 20px;
  }

  .nav-link {
    font-size: 16px;
  }

  .main-nav-inner {
    padding: 12px 5px;
  }

  .code-content {
    padding: 8px 12px 8px 6px;
    min-height: 40px;
  }

  .mini-status-bar {
    height: 16px;
    font-size: 8px;
  }
}

@media (max-width: 768px) {
  .contact-bar-inner {
    padding: 0 20px;
    gap: 15px;
  }

  .contact-link {
    font-size: 16px;
  }

  .contact-link span {
    display: none;
  }

  /* Hide desktop menu, show burger */
  .nav-menu-wrapper {
    display: none;
  }

  .burger-menu {
    display: flex;
  }

  .main-nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding: 12px;
  }

  .logo-section {
    flex: 1;
    order: 1;
    display: flex;
    justify-content: flex-start;
    overflow: visible;
  }

  .vscode-window {
    width: auto;
    max-width: 280px;
  }

  .code-content {
    padding: 6px 10px 6px 5px;
    min-height: 35px;
  }

  .mini-title-bar {
    height: 24px;
    padding: 0 6px;
  }

  .vscode-logo {
    width: 14px;
    height: 14px;
  }

  .window-btn {
    width: 8px;
    height: 8px;
  }

  .window-controls {
    gap: 4px;
  }

  .mini-status-bar {
    height: 14px;
    font-size: 7px;
    padding: 0 6px;
  }

  .burger-menu {
    flex: 0 0 auto;
    order: 2;
  }

  .cta-section {
    flex: 1;
    order: 3;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-width: 0;
  }

  .cta-button {
    padding: 10px 16px;
    font-size: 16px;
  }

  .mobile-logo {
    font-size: 16px;
  }

  .mobile-logo-bracket {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .cta-section {
    display: none;
  }
  .burger-menu {
    flex: 0 0 auto;
    margin-left: auto;
  }

  .main-nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
    padding: 4px 20px;
  }

  .vscode-window {
    width: auto;
    max-width: 225px;
  }

  .code-content {
    padding: 5px 8px 5px 4px;
    min-height: 30px;
  }

  .mini-title-bar {
    height: 20px;
    padding: 0 5px;
  }

  .vscode-logo {
    width: 12px;
    height: 12px;
  }

  .window-btn {
    width: 7px;
    height: 7px;
  }

  .window-controls {
    gap: 3px;
  }

  .mini-status-bar {
    height: 12px;
    font-size: 6px;
    padding: 0 5px;
  }

  .mobile-logo {
    font-size: 14px;
    padding: 6px 12px;
  }

  .mobile-logo-bracket {
    font-size: 18px;
  }
}

@view-transition {
  navigation: auto;
}

/* =========================
   Project overrides and formerly inline styles
   ========================= */

/* Links used for the logo */
.logo-link {
  text-decoration: none;
  display: block;
}

/* Make sure clickable areas show the pointer cursor */
.vscode-window {
  margin: 0;
  cursor: pointer;
}

.mobile-logo {
  cursor: pointer;
}

/* Typing colours */
.typed-text {
  color: var(--text-color);
}

.cursor {
  color: var(--text-color);
  height: 1.125em;
}

.bracket,
.slash {
  color: var(--accent-color);
}

/* Reveal closing tags during the cinematic sequence */
#closingSlash,
#closingBracket,
#footerClosingSlash,
#footerClosingBracket {
  opacity: 0;
  width: 0;
  overflow: hidden;
  transition:
    opacity 0.25s ease,
    width 0.25s ease;
}

#closingSlash.is-revealed,
#footerClosingSlash.is-revealed {
  opacity: 0.8;
  width: auto;
}

#closingBracket.is-revealed,
#footerClosingBracket.is-revealed {
  opacity: 0.95;
  width: auto;
}

/* Keep sparkles centred, JS only sets --tx/--ty */
.sparkle {
  top: 50%;
  left: 50%;
  color: var(--text-color);
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
}

/* Handle scrolling via a class, not inline styles */
.no-scroll {
  overflow: hidden;
}

@media (min-width: 512px) {
  .typing-line {
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  .typing-line {
    font-size: 20px;
  }
}
@media (min-width: 1024px) {
  .typing-line {
    font-size: 22px;
  }
}
@media (min-width: 1280px) {
  .typing-line {
    font-size: 24px;
  }
}

/* Scale brackets and slash relative to typing size */
.bracket,
.slash {
  font-size: 1.25em;
}

@media (max-width: 600px) {
  :root {
    --header-offset: 140px;
  }
}

/* =========================
   Marketing site additions
   ========================= */

.card {
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 18px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

/* Hand cursor container - FIXED POSITIONING */
.hand-cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  filter: drop-shadow(var(--cursor-shadow));
}

/* Both SVGs */
.cursor-svg,
.hand-svg {
  width: var(--cursor-size);
  height: var(--cursor-size);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  position: absolute;
  top: 0;
  left: 0;
}

/* Arrow cursor (default) */
.cursor-arrow {
  display: block;
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
}

/* Hand cursor (hidden by default) */
.cursor-hand {
  display: none;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}

/* When showing hand, hide arrow */
.hand-cursor.show-hand .cursor-arrow {
  opacity: 0;
  display: none !important;
}

.hand-cursor.show-hand .cursor-hand {
  display: block !important;
  opacity: 1;
}

/* Optional: Add a click animation */
@keyframes cursorClick {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

/* CINEMATIC HAND CURSOR ANIMATION - FIXED */
.hand-cursor.cinematic-entry {
  animation: cinematicHandEntry 6s ease-in-out;
}

@keyframes cinematicHandEntry {
  0% {
    opacity: 0;
    left: var(--cursor-start-x);
    top: var(--cursor-start-y);
    transform: translateX(0);
  }
  5% {
    opacity: 1;
    left: var(--cursor-start-x);
    top: var(--cursor-start-y);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    left: calc(var(--cursor-start-x) - 40px);
    top: calc(var(--cursor-start-y) - 15px);
    transform: translateX(0);
  }
  35% {
    opacity: 1;
    left: calc(var(--logo-right-x) + 20px);
    top: var(--logo-center-y);
    transform: translateX(0);
  }
  45% {
    opacity: 1;
    left: var(--logo-right-x);
    top: var(--logo-center-y);
    transform: translateX(0);
  }
  48% {
    opacity: 1;
    left: calc(var(--logo-right-x) - 20px);
    top: var(--logo-center-y);
    transform: translateX(0);
  }
  55% {
    opacity: 1;
    left: var(--logo-center-x);
    top: var(--logo-center-y);
    transform: translateX(0);
  }
  60% {
    opacity: 1;
    left: var(--logo-center-x);
    top: var(--logo-center-y);
    transform: translateX(0);
  }
  72% {
    opacity: 1;
    left: var(--logo-center-x);
    top: var(--logo-center-y);
    transform: translateX(0);
  }
  76% {
    opacity: 0.5;
    left: var(--logo-center-x);
    top: var(--logo-center-y);
    transform: translateX(0);
  }
  80% {
    opacity: 0;
    left: var(--logo-center-x);
    top: var(--logo-center-y);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    left: var(--logo-center-x);
    top: var(--logo-center-y);
    transform: translateX(0);
  }
}

/* =========================
   PAGE-WIDE BACKGROUND
   ========================= */

#main {
  position: relative;
  background: #000000;
}

.page-background {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.page-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 217, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 217, 255, 0.12) 1px, transparent 1px);
  background-size: 100px 100px;
  background-position: 0 0;
  z-index: 1;
}

.page-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 15s infinite ease-in-out;
  z-index: 2;
}

.page-orb.orb1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.4), transparent);
  top: -100px;
  left: -100px;
}

.page-orb.orb2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(181, 55, 242, 0.3), transparent);
  bottom: -150px;
  right: -150px;
  animation-delay: 5s;
}

.page-orb.orb3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 96, 0, 0.3), transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 10s;
}

/* =========================
   HERO SECTION
   ========================= */

.hero {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: transparent;
  position: relative;
  overflow: hidden;
  padding-top: 30px;
  padding-right: 20px;
  padding-bottom: 10px;
  padding-left: 20px;
  z-index: 1;
}

@keyframes orbFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(100px, -100px) scale(1.2);
  }
  66% {
    transform: translate(-80px, 80px) scale(0.9);
  }
}

/* Cube Section - holds cube with stats and badge */
.cube-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  margin: 40px auto;
  z-index: 10;
  position: relative;
  max-width: 1100px;
  padding: 0 20px;
}

/* Stats Side - Left */
.stats-side {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.stat-item {
  text-align: center;
  padding: 15px 25px;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(181, 55, 242, 0.05));
  border: 2px solid rgba(0, 217, 255, 0.3);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  animation: floatUp 4s ease-in-out infinite;
}

.stat-item:nth-child(2) {
  animation-delay: 0.5s;
  border-color: rgba(181, 55, 242, 0.3);
}

.stat-item:nth-child(3) {
  animation-delay: 1s;
  border-color: rgba(255, 96, 0, 0.3);
}

.stat-number {
  display: block;
  font-family: "Fira Code", monospace;
  font-size: 42px;
  font-weight: 700;
  color: #00d9ff;
  text-shadow: 0 0 20px rgba(0, 217, 255, 0.8);
  line-height: 1;
}

.stat-item:nth-child(2) .stat-number {
  color: #b537f2;
  text-shadow: 0 0 20px rgba(181, 55, 242, 0.8);
}

.stat-item:nth-child(3) .stat-number {
  color: #ff6000;
  text-shadow: 0 0 20px rgba(255, 96, 0, 0.8);
}

.stat-number::after {
  content: "+";
  font-size: 28px;
}

.stat-label {
  display: block;
  font-family: "Fira Code", monospace;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}

/* Badge Side - Right */
.badge-side {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.floating-badge {
  text-align: center;
  padding: 20px 25px;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.15), rgba(181, 55, 242, 0.1));
  border: 2px solid rgba(0, 217, 255, 0.4);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 25px rgba(0, 217, 255, 0.3);
  animation: floatUp 4s ease-in-out infinite;
  animation-delay: 0.3s;
}

.floating-badge.badge-alt {
  border-color: rgba(255, 96, 0, 0.4);
  box-shadow: 0 0 25px rgba(255, 96, 0, 0.3);
  animation-delay: 0.8s;
}

.badge-icon {
  display: block;
  font-size: 36px;
  margin-bottom: 8px;
}

/* Stars grid layout - 2-2-1 */
.badge-icon.stars-grid {
  display: grid;
  grid-template-columns: auto auto;
  gap: 2px 8px;
  font-size: 20px;
  justify-content: center;
}

.badge-icon.stars-grid span:nth-child(5) {
  grid-column: 1 / -1;
  justify-self: center;
}

.badge-text {
  display: block;
  font-family: "Fira Code", monospace;
  font-size: 16px;
  font-weight: 700;
  color: #00d9ff;
  text-shadow: 0 0 15px rgba(0, 217, 255, 0.6);
}

.badge-alt .badge-text {
  color: #ff6000;
  text-shadow: 0 0 15px rgba(255, 96, 0, 0.6);
}

.badge-subtext {
  display: block;
  font-family: "Fira Code", monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

@keyframes floatUp {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* 3D Cube container */
.cube-container {
  position: relative;
  perspective: 1200px;
  z-index: 10;
  width: 260px;
  height: 260px;
  flex-shrink: 0;
}

.cube {
  width: 260px;
  height: 260px;
  position: relative;
  transform-style: preserve-3d;
  animation: rotateCube 50s infinite linear;
}

@keyframes rotateCube {
  0% {
    transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg);
  }
}

.cube-face {
  position: absolute;
  width: 260px;
  height: 260px;
  border: 3px solid;
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Fira Code", monospace;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  padding: 20px;
  line-height: 1.4;
  box-shadow: inset 0 0 30px rgba(0, 217, 255, 0.01);
}

.cube-face.front {
  transform: translateZ(130px);
  border-color: rgba(0, 217, 255, 0.6);
  color: #00d9ff;
  text-shadow: 0 0 15px rgba(0, 217, 255, 1);
}

.cube-face.back {
  transform: rotateY(180deg) translateZ(130px);
  border-color: rgba(181, 55, 242, 0.6);
  color: #b537f2;
  text-shadow: 0 0 15px rgba(181, 55, 242, 1);
}

.cube-face.right {
  transform: rotateY(90deg) translateZ(130px);
  border-color: rgba(255, 96, 0, 0.6);
  color: #ff6000;
  text-shadow: 0 0 15px rgba(255, 96, 0, 1);
}

.cube-face.left {
  transform: rotateY(-90deg) translateZ(130px);
  border-color: rgba(0, 217, 255, 0.6);
  color: #00d9ff;
  text-shadow: 0 0 15px rgba(0, 217, 255, 1);
}

.cube-face.top {
  transform: rotateX(90deg) translateZ(130px);
  border-color: rgba(181, 55, 242, 0.6);
  color: #b537f2;
  text-shadow: 0 0 15px rgba(181, 55, 242, 1);
}

.cube-face.bottom {
  transform: rotateX(-90deg) translateZ(130px);
  border-color: rgba(255, 96, 0, 0.6);
  color: #ff6000;
  text-shadow: 0 0 15px rgba(255, 96, 0, 1);
}

/* Service Boxes Container - grid layout below cube */

/* Service box color variations */

/* Code Rain - Raining, Uprising, and Floating */
#codeRain {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

.code-text {
  position: absolute;
  font-family: "Fira Code", monospace;
  font-size: 14px;
  font-weight: 600;
}

.code-falling {
  animation: codeFall 12s infinite linear;
}

.code-rising {
  animation: codeRise 15s infinite linear;
}

.code-floating {
  animation: codeFloat 20s infinite ease-in-out;
}

@keyframes codeFall {
  0% {
    top: -10%;
    opacity: 0;
  }
  10% {
    opacity: 0.7;
  }
  90% {
    opacity: 0.7;
  }
  100% {
    top: 110%;
    opacity: 0;
  }
}

@keyframes codeRise {
  0% {
    bottom: -10%;
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    bottom: 110%;
    opacity: 0;
  }
}

@keyframes codeFloat {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  10% {
    opacity: 0.5;
  }
  50% {
    transform: translate(var(--float-x), var(--float-y));
    opacity: 0.7;
  }
  90% {
    opacity: 0.5;
  }
  100% {
    transform: translate(calc(var(--float-x) * 2), calc(var(--float-y) * 2));
    opacity: 0;
  }
}

/* Hero Content - AT THE TOP */
.hero-content {
  max-width: 1200px;
  text-align: center;
  z-index: 20;
  position: relative;
  margin-top: 0;
  margin-bottom: 30px;
  min-height: 280px;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  color: white;
  margin-bottom: 16px;
  font-weight: 700;
  text-shadow: 0 0 40px rgba(0, 217, 255, 0.6);
  letter-spacing: 2px;
  animation: fadeInScale 1s ease-out;
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.glitch {
  position: relative;
  display: inline-block;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.glitch::before {
  animation: glitch1 3s infinite;
  color: rgba(0, 217, 255, 0.7);
  z-index: -1;
}

.glitch::after {
  animation: glitch2 3s infinite;
  color: rgba(181, 55, 242, 0.7);
  z-index: -2;
}

@keyframes glitch1 {
  0%,
  100% {
    transform: translate(0);
  }
  20% {
    transform: translate(-3px, 2px);
  }
  40% {
    transform: translate(-2px, -2px);
  }
  60% {
    transform: translate(2px, 2px);
  }
  80% {
    transform: translate(3px, -2px);
  }
}

@keyframes glitch2 {
  0%,
  100% {
    transform: translate(0);
  }
  20% {
    transform: translate(3px, -2px);
  }
  40% {
    transform: translate(2px, 2px);
  }
  60% {
    transform: translate(-2px, -2px);
  }
  80% {
    transform: translate(-3px, 2px);
  }
}

.hero .accent {
  background: linear-gradient(135deg, #00d9ff, #b537f2, #ff6000);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero p {
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 25px;
  font-weight: 400;
  text-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
  min-height: 50px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero .typing-cursor {
  display: inline-block;
  width: 3px;
  height: 1.2em;
  background: #00d9ff;
  margin-left: 5px;
  animation: heroBlink 0.7s infinite;
  vertical-align: middle;
  box-shadow: 0 0 10px #00d9ff;
}

@keyframes heroBlink {
  0%,
  49% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

.cta-buttons {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.btn {
  padding: 20px 50px;
  font-size: 1.1rem;
  font-family: "Fira Code", monospace;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

.btn-primary {
  background: linear-gradient(135deg, #00d9ff, #007acc);
  color: white;
  clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
  box-shadow:
    0 0 40px rgba(0, 217, 255, 0.7),
    0 8px 30px rgba(0, 217, 255, 0.4);
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.btn-primary:hover::before {
  transform: translateX(100%);
}

.btn-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow:
    0 0 60px rgba(0, 217, 255, 1),
    0 15px 40px rgba(0, 217, 255, 0.6);
}

.btn-secondary {
  background: rgba(0, 0, 0, 0.5);
  color: #00d9ff;
  border: 3px solid #00d9ff;
  clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
  backdrop-filter: blur(10px);
  box-shadow:
    0 0 30px rgba(0, 217, 255, 0.4),
    inset 0 0 20px rgba(0, 217, 255, 0.1);
}

.btn-secondary:hover {
  transform: translateY(-5px) scale(1.05);
  background: rgba(0, 217, 255, 0.2);
  color: white;
  box-shadow:
    0 0 50px rgba(0, 217, 255, 0.9),
    0 15px 40px rgba(0, 217, 255, 0.5);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .cube-section {
    display: none;
  }

  .btn {
    width: 100%;
    max-width: 300px;
    padding: 16px 32px;
  }

  .hero-content {
    padding: 0 20px;
  }
}

/* =========================
   PAGE SECTIONS - SHARED STYLES
   ========================= */

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-family: "Fira Code", monospace;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin: 15px;
  text-shadow: 0 0 30px rgba(0, 217, 255, 0.4);
}

.section-subtitle {
  font-family: "Fira Code", monospace;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

/* =========================
   SERVICES SECTION
   ========================= */

.services-section {
  background: transparent;
  padding: 10px 0 100px 0;
  position: relative;
  z-index: 1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.service-card {
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.08), rgba(181, 55, 242, 0.05));
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 16px;
  padding: 30px 25px;
  text-align: center;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 217, 255, 0.5);
  box-shadow: 0 20px 40px rgba(0, 217, 255, 0.15);
}

.service-card-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: "Fira Code", monospace;
  font-size: 1.1rem;
  color: #00d9ff;
  margin-bottom: 12px;
}

.service-card p {
  font-family: "Fira Code", monospace;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-link {
  font-family: "Fira Code", monospace;
  font-size: 0.85rem;
  color: #00d9ff;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.service-link:hover {
  border-bottom-color: #00d9ff;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .service-card {
    padding: 20px 15px;
  }

  .service-card-icon {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   PORTFOLIO SECTION
   ========================= */

.portfolio-section {
  background: transparent;
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 50px;
}

.portfolio-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.portfolio-image {
  width: 100%;
  height: 100%;
}

.portfolio-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(181, 55, 242, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Fira Code", monospace;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.5);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay h3 {
  font-family: "Fira Code", monospace;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 5px;
}

.portfolio-overlay p {
  font-family: "Fira Code", monospace;
  font-size: 0.9rem;
  color: #00d9ff;
}

.portfolio-cta {
  text-align: center;
}

@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   WHY CHOOSE US SECTION
   ========================= */

.why-us-section {
  background: transparent;
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 35px 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  border-color: rgba(0, 217, 255, 0.3);
  background: rgba(0, 217, 255, 0.05);
}

.benefit-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.benefit-card h3 {
  font-family: "Fira Code", monospace;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 12px;
}

.benefit-card p {
  font-family: "Fira Code", monospace;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   PROCESS SECTION
   ========================= */

.process-section {
  background: transparent;
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
}

.process-step {
  flex: 1;
  max-width: 250px;
  text-align: center;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00d9ff, #007acc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Fira Code", monospace;
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  margin: 0 auto 20px;
  box-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
}

.process-step h3 {
  font-family: "Fira Code", monospace;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 12px;
}

.process-step p {
  font-family: "Fira Code", monospace;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.process-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #00d9ff, #b537f2);
  margin-top: 30px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .process-steps {
    flex-direction: column;
    align-items: center;
  }

  .process-connector {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, #00d9ff, #b537f2);
    margin: 10px 0;
  }

  .process-step {
    max-width: 300px;
  }
}

/* =========================
   TESTIMONIALS SECTION
   ========================= */

.testimonials-section {
  background: transparent;
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 35px 30px;
}

.testimonial-stars {
  font-size: 1.2rem;
  color: #ffc107;
  margin-bottom: 20px;
  letter-spacing: 3px;
}

.testimonial-card blockquote {
  margin: 0 0 25px;
}

.testimonial-card blockquote p {
  font-family: "Fira Code", monospace;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.author-name {
  font-family: "Fira Code", monospace;
  font-size: 1rem;
  font-weight: 600;
  color: #00d9ff;
}

.author-business {
  font-family: "Fira Code", monospace;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* =========================
   PRICING SECTION
   ========================= */

.pricing-section {
  background: transparent;
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: rgba(0, 217, 255, 0.3);
  transform: translateY(-5px);
}

.pricing-featured {
  border-color: #00d9ff;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(181, 55, 242, 0.05));
  transform: scale(1.05);
}

.pricing-featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #00d9ff, #007acc);
  color: #000;
  font-family: "Fira Code", monospace;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 20px;
  text-transform: uppercase;
}

.pricing-header h3 {
  font-family: "Fira Code", monospace;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 15px;
}

.pricing-price {
  margin-bottom: 30px;
}

.price-amount {
  font-family: "Fira Code", monospace;
  font-size: 3rem;
  font-weight: 700;
  color: #00d9ff;
  text-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
}

.price-period {
  font-family: "Fira Code", monospace;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  display: block;
  margin-top: 5px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  text-align: left;
}

.pricing-features li {
  font-family: "Fira Code", monospace;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features li::before {
  content: "✓";
  color: #00d9ff;
  margin-right: 10px;
}

.pricing-btn {
  width: 100%;
  margin-bottom: 15px;
}

.pricing-note {
  font-family: "Fira Code", monospace;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.pricing-custom {
  text-align: center;
  font-family: "Fira Code", monospace;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.pricing-custom a {
  color: #00d9ff;
  text-decoration: none;
}

.pricing-custom a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pricing-featured {
    transform: none;
  }

  .pricing-featured:hover {
    transform: translateY(-5px);
  }
}

/* =========================
   FAQ SECTION
   ========================= */

.faq-section {
  background: transparent;
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-item summary {
  font-family: "Fira Code", monospace;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  padding: 20px 25px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: #00d9ff;
  transition: transform 0.3s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover {
  background: rgba(0, 217, 255, 0.05);
}

.faq-answer {
  padding: 0 25px 25px;
}

.faq-answer p {
  font-family: "Fira Code", monospace;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

/* =========================
   CONTACT SECTION
   ========================= */

.contact-section {
  background: transparent;
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-info-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.contact-info-item h3 {
  font-family: "Fira Code", monospace;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 5px;
}

.contact-info-item a,
.contact-info-item p {
  font-family: "Fira Code", monospace;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  line-height: 1.5;
}

.contact-info-item a:hover {
  color: #00d9ff;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group-full {
  grid-column: 1 / -1;
}

.contact-form label {
  font-family: "Fira Code", monospace;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: "Fira Code", monospace;
  font-size: 1rem;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #00d9ff;
}

.contact-form select {
  cursor: pointer;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  grid-column: 1 / -1;
  justify-self: start;
}

@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }
}

/* =========================
   FOOTER - Modern Standard Layout
   ========================= */

.site-footer {
  background: white;
  position: relative;
  z-index: 10;
}

.footer-main {
  padding: 60px 0 40px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}

/* Footer Brand Column */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-brand .vscode-window {
  width: fit-content;
}

.footer-tagline {
  font-family: "Fira Code", monospace;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.7;
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  color: rgba(0, 0, 0, 0.6);
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--border-color);
  color: white;
  transform: translateY(-3px);
}

.social-icon svg {
  width: 18px;
  height: 18px;
}

/* Footer Links Columns */
.footer-links h4,
.footer-contact h4 {
  font-family: "Fira Code", monospace;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 20px 0;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 12px;
}

.footer-links a,
.footer-contact a {
  font-family: "Fira Code", monospace;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #00d9ff;
}

.footer-contact a svg,
.footer-location svg {
  flex-shrink: 0;
  color: var(--border-color);
}

.footer-location {
  font-family: "Fira Code", monospace;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Footer Bottom Bar */
.footer-bottom {
  padding: 20px 0;
  background: transparent;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-copyright {
  font-family: "Fira Code", monospace;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.5);
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 25px;
}

.footer-legal a {
  font-family: "Fira Code", monospace;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: #00d9ff;
}

/* Footer VSCode Window */
#footerVscodeWindow {
  position: relative;
  width: auto;
  max-width: 280px;
  height: auto;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  background: #ffffff;
  z-index: 10;
  display: flex;
  flex-direction: column;
  font-size: 20px;
}

/* Footer Responsive */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    align-items: center;
    text-align: center;
  }

  .footer-brand .vscode-window {
    width: fit-content;
  }

  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .footer-main {
    padding: 40px 0 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-links ul,
  .footer-contact ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-contact a,
  .footer-location {
    justify-content: center;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
}
