/* ==========================================================================
   AWWWARDS-WINNING DESIGN SYSTEM | PURE CSS
   Theme: Deep Space Cybernetic
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Syncopate:wght@400;700&family=Space+Grotesk:wght@300;400;500;700&family=Inter:wght@300;400;500&display=swap");

:root {
  --bg-base: #030305;
  --bg-surface: rgba(10, 10, 15, 0.6);
  --primary: #00f3ff;
  --primary-glow: rgba(0, 243, 255, 0.4);
  --secondary: #9d00ff;
  --text-main: #ffffff;
  --text-muted: #888899;
  --font-display: "Syncopate", sans-serif;
  --font-ui: "Space Grotesk", sans-serif;
  --font-body: "Inter", sans-serif;
  --spring-ease: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --smooth-ease: cubic-bezier(0.19, 1, 0.22, 1);
  --cursor-size: 10px;
  --nav-height: 90px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  width: 100%;
  background-color: var(--bg-base);
  color: var(--text-main);
  font-family: var(--font-body);
  overflow: hidden; /* Handled by custom smooth scroll */
  cursor: none; /* Custom cursor */
  -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
      CUSTOM CURSOR & AMBIENT CANVAS
      ========================================================================== */
#custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--cursor-size);
  height: var(--cursor-size);
  background: var(--primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  mix-blend-mode: exclusion;
  transition:
    width 0.3s,
    height 0.3s,
    background 0.3s;
  transform: translate(-50%, -50%);
}
#cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition:
    transform 0.1s linear,
    width 0.3s,
    height 0.3s;
}
.cursor-hover #custom-cursor {
  width: 60px;
  height: 60px;
  background: var(--text-main);
  mix-blend-mode: difference;
}
.cursor-hover #cursor-follower {
  width: 80px;
  height: 80px;
  border-color: transparent;
}

#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
}
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.85" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)" opacity="0.05"/%3E%3C/svg%3E');
}

/* ==========================================================================
      SMOOTH SCROLL WRAPPER
      ========================================================================== */
#scroll-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 2;
}
#scroll-content {
  width: 100%;
  will-change: transform;
  transform-style: preserve-3d;
}

/* ==========================================================================
      PRELOADER (Cinematic Curtain)
      ========================================================================== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--bg-base);
  color: var(--text-main);
}
.preloader-curtain {
  position: absolute;
  width: 100%;
  height: 50%;
  background: #000;
  left: 0;
  transition: transform 1.5s var(--spring-ease);
}
.preloader-curtain.top {
  top: 0;
  transform-origin: top;
}
.preloader-curtain.bottom {
  bottom: 0;
  transform-origin: bottom;
}
.preloader-logo {
  font-family: var(--font-display);
  font-size: 3vw;
  letter-spacing: 10px;
  z-index: 2;
  overflow: hidden;
}
.preloader-logo span {
  display: inline-block;
  transform: translateY(100%);
  transition: transform 0.8s var(--spring-ease);
}
.preloader-progress {
  position: absolute;
  bottom: 10%;
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 2;
}
.preloader-bar {
  height: 100%;
  width: 0%;
  background: var(--primary);
  transition: width 0.1s linear;
  box-shadow: 0 0 10px var(--primary-glow);
}
body.loaded #preloader .preloader-curtain.top {
  transform: scaleY(0);
}
body.loaded #preloader .preloader-curtain.bottom {
  transform: scaleY(0);
}
body.loaded #preloader {
  pointer-events: none;
  background: transparent;
  transition: background 0.1s 1.5s;
}
body.loaded .preloader-logo,
body.loaded .preloader-progress {
  opacity: 0;
  transition: opacity 0.5s;
}

/* ==========================================================================
      HEADER & NAVIGATION
      ========================================================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5vw;
  background: linear-gradient(to bottom, rgba(3, 3, 5, 0.9), transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.5s var(--smooth-ease);
}
.header-hidden {
  transform: translateY(-100%);
}
.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: var(--text-main);
}
.logo-img {
  width: 60px;
  height: auto;
  filter: invert(1);
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
}

nav ul {
  display: flex;
  gap: 40px;
  list-style: none;
}
nav a {
  color: var(--text-main);
  text-decoration: none;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  padding: 5px 0;
}
nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transform: translateX(-101%);
  transition: transform 0.4s var(--smooth-ease);
}
nav a:hover::after {
  transform: translateX(0);
}

/* Magnetic Tilt Button */
.btn-magnetic {
  position: relative;
  padding: 15px 35px;
  background: transparent;
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: none;
  overflow: hidden;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
  text-decoration: none;
  display: inline-block;
}
.btn-magnetic span {
  position: relative;
  z-index: 2;
  pointer-events: none;
}
.btn-magnetic::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  border-radius: 30px;
  transform: scale(0);
  transition: transform 0.5s var(--spring-ease);
  z-index: 1;
}
.btn-magnetic:hover {
  border-color: transparent;
  box-shadow: 0 10px 30px rgba(0, 243, 255, 0.3);
}
.btn-magnetic:hover::before {
  transform: scale(1);
}

/* ==========================================================================
      PAGE SECTIONS & 3D SYSTEM
      ========================================================================== */
section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 150px 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform-style: preserve-3d;
}

/* 1. Hero 3D Environment */
.hero {
  perspective: 1500px;
  overflow: hidden;
  align-items: center;
  text-align: center;
}
.hero-content {
  transform-style: preserve-3d;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 1;
  text-transform: uppercase;
  transform: translateZ(100px);
  text-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}
.hero-subtitle {
  font-family: var(--font-ui);
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: var(--text-muted);
  max-width: 600px;
  transform: translateZ(50px);
}
.hero-3d-floor {
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background-image:
    linear-gradient(rgba(0, 243, 255, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 243, 255, 0.2) 1px, transparent 1px);
  background-size: 50px 50px;
  transform: rotateX(75deg) translateZ(-200px);
  animation: floorMove 10s linear infinite;
  z-index: 0;
  opacity: 0.3;
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
  -webkit-mask-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 1),
    rgba(0, 0, 0, 0)
  );
}
@keyframes floorMove {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 50px;
  }
}

/* Text Scramble Effect */
.scramble-text span {
  display: inline-block;
  min-width: 1ch;
}

/* 2. Ticker Tape */
.ticker-section {
  min-height: auto;
  padding: 50px 0;
  background: var(--text-main);
  color: var(--bg-base);
  overflow: hidden;
  transform: rotate(-2deg) scale(1.05);
}
.ticker-wrap {
  display: flex;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 3rem;
  text-transform: uppercase;
  font-weight: 700;
}
.ticker-item {
  padding: 0 2vw;
  display: flex;
  align-items: center;
  gap: 2vw;
}
.ticker-item i {
  color: var(--secondary);
}
.ticker-track {
  display: flex;
  animation: ticker 20s linear infinite;
}
@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* 3. Scrollytelling About */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5vw;
  align-items: center;
}
.about-text {
  font-family: var(--font-ui);
  font-size: 2.5rem;
  line-height: 1.4;
}
.reveal-text span {
  opacity: 0.1;
  transition:
    opacity 0.4s,
    color 0.4s;
}
.reveal-text span.active {
  opacity: 1;
  color: var(--primary);
}
.about-visual {
  width: 100%;
  height: 60vh;
  background: var(--bg-surface);
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.liquid-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  transform: translate(-50%, -50%);
  animation:
    blobMorph 8s ease-in-out infinite alternate,
    rotateBlob 20s linear infinite;
  filter: blur(40px);
  opacity: 0.6;
}
@keyframes blobMorph {
  0% {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  }
  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}
@keyframes rotateBlob {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* 4. 3D Services Stack */
.services {
  text-align: center;
  perspective: 2000px;
}
.section-header {
  margin-bottom: 80px;
  font-family: var(--font-display);
  font-size: 4rem;
  text-transform: uppercase;
}
.stack-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  height: 500px;
  margin: 0 auto;
  transform-style: preserve-3d;
}
.service-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 20, 25, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  transition:
    transform 0.8s var(--spring-ease),
    opacity 0.8s;
  cursor: grab;
  transform-origin: center bottom;
}
.service-card:active {
  cursor: grabbing;
}
.service-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 20px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.service-card p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* 5. ROI Calculator Visualizer */
.roi {
  background: radial-gradient(
    circle at center,
    rgba(157, 0, 255, 0.1) 0%,
    var(--bg-base) 70%
  );
}
.roi-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5vw;
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 30px;
  padding: 60px;
}
.calc-controls {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.range-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  outline: none;
}
.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  box-shadow: 0 0 10px var(--primary-glow);
}
.calc-output {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(0, 243, 255, 0.2);
  box-shadow: inset 0 0 50px rgba(0, 243, 255, 0.05);
}
.odometer {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--primary);
  text-shadow: 0 0 20px var(--primary-glow);
  display: flex;
}
.odometer-digit {
  display: inline-block;
  transition: transform 0.5s var(--spring-ease);
}

/* 6. Process SVG Line */
.process {
  position: relative;
}
.process-path-container {
  position: absolute;
  top: 0;
  left: 50%;
  width: 10px;
  height: 100%;
  transform: translateX(-50%);
  z-index: 0;
}
.process-line {
  width: 2px;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 auto;
}
.process-progress {
  width: 2px;
  height: 0%;
  background: var(--secondary);
  margin: 0 auto;
  box-shadow: 0 0 15px var(--secondary);
  transition: height 0.1s linear;
}
.process-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10vw;
  margin-bottom: 15vh;
  position: relative;
  z-index: 1;
}
.process-step:nth-child(even) {
  direction: rtl;
}
.process-step:nth-child(even) > * {
  direction: ltr;
}
.step-content {
  background: var(--bg-surface);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.8s var(--spring-ease);
}
.step-content.in-view {
  transform: translateY(0);
  opacity: 1;
}
.step-number {
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.05);
  position: absolute;
  top: -20px;
  right: 20px;
}

/* 7. Testimonials 3D Orbit */
.testimonials {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.orbit-container {
  position: relative;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
}
.core-brand {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 50px var(--primary-glow);
  animation: pulseCore 3s infinite alternate;
}
.core-brand img {
  width: 60px;
  filter: invert(1);
}
@keyframes pulseCore {
  0% {
    transform: scale(0.9);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.1);
    opacity: 1;
  }
}
.orbit-card {
  position: absolute;
  width: 250px;
  background: rgba(10, 10, 15, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 15px;
  transform-origin: center;
  transition: all 0.5s;
  cursor: none;
}
.orbit-card:hover {
  border-color: var(--secondary);
  transform: scale(1.1) !important;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(157, 0, 255, 0.2);
}
.client-name {
  font-family: var(--font-ui);
  font-weight: 700;
  color: var(--primary);
  margin-top: 10px;
  font-size: 0.9rem;
}

/* 8. AI Chat Matcher */
.ai-chat {
  align-items: center;
  text-align: center;
}
.chat-interface {
  width: 100%;
  max-width: 600px;
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 500px;
}
.chat-header {
  padding: 20px;
  background: rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-family: var(--font-ui);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}
.status-dot {
  width: 10px;
  height: 10px;
  background: #00ff00;
  border-radius: 50%;
  box-shadow: 0 0 10px #00ff00;
  animation: blink 1s infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.chat-body {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.msg {
  padding: 15px 20px;
  border-radius: 20px;
  max-width: 80%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  animation: msgIn 0.5s var(--spring-ease);
  transform-origin: bottom left;
}
.msg.ai {
  background: rgba(0, 243, 255, 0.1);
  border: 1px solid rgba(0, 243, 255, 0.2);
  align-self: flex-start;
  border-bottom-left-radius: 5px;
}
.msg.user {
  background: rgba(157, 0, 255, 0.1);
  border: 1px solid rgba(157, 0, 255, 0.2);
  align-self: flex-end;
  border-bottom-right-radius: 5px;
  transform-origin: bottom right;
}
@keyframes msgIn {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.chat-choices {
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.choice-btn {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--text-main);
  padding: 10px 20px;
  border-radius: 20px;
  font-family: var(--font-ui);
  cursor: none;
  transition: all 0.3s;
}
.choice-btn:hover {
  background: var(--primary);
  color: #000;
}

/* ==========================================================================
      LEGAL PAGES & CONTACT FORMS SPECIFICS
      ========================================================================== */
.page-header {
  min-height: 50vh;
  align-items: flex-start;
  justify-content: flex-end;
  padding-bottom: 50px;
  background: radial-gradient(
    circle at top right,
    rgba(0, 243, 255, 0.1),
    transparent 50%
  );
}
.page-title {
  font-family: var(--font-display);
  font-size: 4rem;
  text-transform: uppercase;
}
.legal-content {
  padding-top: 50px;
}
.legal-container {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-surface);
  padding: 60px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  font-family: var(--font-body);
  line-height: 1.8;
  color: #ccc;
}
.legal-container h2 {
  font-family: var(--font-ui);
  font-size: 2rem;
  color: var(--text-main);
  margin: 40px 0 20px;
}
.legal-container p {
  margin-bottom: 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5vw;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 40px;
}
.contact-info-item i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-top: 5px;
}
.contact-info-item h4 {
  font-family: var(--font-ui);
  font-size: 1.2rem;
  margin-bottom: 5px;
}
.contact-form {
  background: var(--bg-surface);
  padding: 50px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-main);
  padding: 15px 20px;
  border-radius: 10px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
}

/* ==========================================================================
      FOOTER (Global)
      ========================================================================== */
footer {
  background: #010102;
  padding: 100px 5vw 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 10;
}
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4vw;
  margin-bottom: 60px;
}
.footer-logo {
  width: 80px;
  filter: invert(1);
  margin-bottom: 20px;
}
.footer-about p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer-col h3 {
  font-family: var(--font-ui);
  font-size: 1.2rem;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 15px;
}
.footer-col ul a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-col ul a:hover {
  color: var(--text-main);
}
.footer-contact li {
  display: flex;
  gap: 15px;
  align-items: center;
  color: var(--text-muted);
  margin-bottom: 15px;
}
.footer-contact i {
  color: var(--secondary);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 0.85rem;
}
.footer-legal-links {
  display: flex;
  gap: 20px;
}
.footer-legal-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-legal-links a:hover {
  color: var(--primary);
}

/* ==========================================================================
      RESPONSIVE DESIGN
      ========================================================================== */
@media (max-width: 1024px) {
  .about,
  .roi-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .process-step {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .process-path-container {
    left: 20px;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
  .hero-title {
    font-size: 10vw;
  }
}
@media (max-width: 768px) {
  nav ul {
    display: none;
  } /* Mobile menu implementation omitted for brevity but space exists */
  .footer-main {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .stack-container {
    height: 400px;
  }
  .service-card {
    padding: 30px;
  }
  .orbit-container {
    width: 300px;
    height: 300px;
  }
  .orbit-card {
    width: 200px;
    padding: 15px;
  }
}
