/* ==========================================================================
   CSS VARIABLES & THEME SETUP
   ========================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Clash+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap");

:root {
  /* Color palette — premium dark technology brand */
  --bg-main: #030305;
  --bg-secondary: #0a0a0f;
  --bg-glass: rgba(255, 255, 255, 0.03);
  --border-glass: rgba(255, 255, 255, 0.08);

  --accent-primary: #00f0ff;
  --accent-primary-glow: rgba(0, 240, 255, 0.3);
  --accent-secondary: #7000ff;
  --accent-secondary-glow: rgba(112, 0, 255, 0.3);

  --text-primary: #ffffff;
  --text-secondary: #a0a0ab;
  --text-muted: #666670;

  /* Typography */
  --font-heading: "Clash Display", sans-serif;
  --font-body: "Inter", sans-serif;

  /* Easings */
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-in-out-circ: cubic-bezier(0.785, 0.135, 0.15, 0.86);

  /* Dimensions */
  --header-height: 90px;
  --container-width: 1400px;
  --section-padding: clamp(80px, 10vw, 150px);
}

/* ==========================================================================
      RESET & GLOBAL STYLES
      ========================================================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none; /* Custom cursor */
  background-image: radial-gradient(
    circle at 50% 0%,
    var(--bg-secondary) 0%,
    var(--bg-main) 70%
  );
}

::selection {
  background: var(--accent-primary);
  color: #000;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
  background: var(--border-glass);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-secondary);
}

/* Noise Overlay for Texture */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
}

/* ==========================================================================
      TYPOGRAPHY
      ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.title-xl {
  font-size: clamp(3rem, 8vw, 7rem);
  text-transform: uppercase;
}
.title-lg {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}
.title-md {
  font-size: clamp(2rem, 4vw, 3rem);
}
.title-sm {
  font-size: clamp(1.5rem, 2vw, 2rem);
}

p {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.text-gradient {
  background: linear-gradient(
    90deg,
    var(--text-primary),
    var(--text-secondary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-accent {
  background: linear-gradient(
    90deg,
    var(--accent-primary),
    var(--accent-secondary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}

/* ==========================================================================
      LAYOUT & UTILITIES
      ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 5%;
}

.section-padding {
  padding: var(--section-padding) 0;
}
.pt-0 {
  padding-top: 0;
}
.pb-0 {
  padding-bottom: 0;
}

/* ==========================================================================
      CUSTOM CURSOR
      ========================================================================== */
.cursor-dot,
.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 10000;
  pointer-events: none;
}
.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-primary);
  transition: transform 0.2s var(--ease-out-expo);
}
.cursor-outline {
  width: 40px;
  height: 40px;
  border: 1px solid var(--accent-primary-glow);
  transition:
    transform 0.15s ease-out,
    width 0.3s,
    height 0.3s,
    background-color 0.3s;
}
.cursor-hover .cursor-outline {
  width: 60px;
  height: 60px;
  background-color: rgba(0, 240, 255, 0.1);
  border-color: transparent;
}
.cursor-hover .cursor-dot {
  transform: translate(-50%, -50%) scale(0);
}

/* ==========================================================================
      PRELOADER
      ========================================================================== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-main);
  z-index: 10001;
  display: flex;
  justify-content: center;
  align-items: center;
  transition:
    opacity 1s var(--ease-out-expo),
    visibility 1s;
}
.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}
.loader-text {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--text-primary);
  display: flex;
  overflow: hidden;
}
.loader-text span {
  display: inline-block;
  transform: translateY(100%);
  animation: slideUpLoader 0.5s forwards var(--ease-out-expo);
}
@keyframes slideUpLoader {
  to {
    transform: translateY(0);
  }
}

/* ==========================================================================
      COMPONENTS: BUTTONS
      ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 100px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-out-expo);
  z-index: 1;
  border: none;
  cursor: none;
}

.btn-primary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--accent-primary);
  box-shadow: 0 0 20px var(--accent-primary-glow);
}
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--accent-primary),
    var(--accent-secondary)
  );
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease-out-expo);
}
.btn-primary:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.btn-primary:hover {
  box-shadow: 0 0 30px var(--accent-secondary-glow);
  border-color: transparent;
}

.btn-glass {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(10px);
  color: var(--text-primary);
}
.btn-glass:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Magnetic Wrapper Utility */
.magnetic-wrap {
  display: inline-block;
}

/* ==========================================================================
      HEADER & NAVIGATION (EXACTLY CONSISTENT)
      ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: all 0.4s ease;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(3, 3, 5, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-glass);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  z-index: 1001;
}
.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
}
.nav-list {
  display: flex;
  gap: 3rem;
}
.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  position: relative;
  transition: color 0.3s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-primary);
  transition: width 0.3s var(--ease-out-expo);
}
.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  z-index: 1001;
}
.nav-toggle,
.nav-close {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: none;
}

/* ==========================================================================
      FOOTER (EXACTLY CONSISTENT)
      ========================================================================== */
.footer {
  background: #010102;
  padding: 100px 0 30px;
  border-top: 1px solid var(--border-glass);
  position: relative;
  overflow: hidden;
}
/* Footer Glow */
.footer::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 200px;
  background: var(--accent-primary);
  filter: blur(150px);
  opacity: 0.1;
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo {
  margin-bottom: 1.5rem;
  display: block;
}
.footer-about-text {
  font-size: 0.95rem;
  margin-bottom: 2rem;
  max-width: 300px;
}

.social-links {
  display: flex;
  gap: 1rem;
}
.social-links a {
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--border-glass);
  border-radius: 50%;
  color: var(--text-primary);
  transition: all 0.3s ease;
}
.social-links a:hover {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: #000;
  transform: translateY(-5px);
}

.footer-col-title {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}
.footer-links ul li {
  margin-bottom: 0.8rem;
}
.footer-links a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition:
    color 0.3s,
    padding-left 0.3s;
}
.footer-links a:hover {
  color: var(--accent-primary);
  padding-left: 8px;
}

.footer-contact ul li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  align-items: flex-start;
}
.footer-contact i {
  color: var(--accent-primary);
  margin-top: 5px;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-glass);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ==========================================================================
      INDEX PAGE SECTIONS
      ========================================================================== */

/* 1. HERO SECTION */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--header-height);
}
.hero-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: floatOrb 10s infinite alternate ease-in-out;
}
.orb-1 {
  width: 400px;
  height: 400px;
  background: var(--accent-primary);
  top: -10%;
  left: -10%;
}
.orb-2 {
  width: 500px;
  height: 500px;
  background: var(--accent-secondary);
  bottom: -20%;
  right: -10%;
  animation-delay: -5s;
}

@keyframes floatOrb {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(50px, 50px) scale(1.1);
  }
}

.hero-content {
  max-width: 900px;
  position: relative;
  z-index: 2;
}
.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: 50px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2rem;
  color: var(--accent-primary);
}
.hero .title-xl {
  margin-bottom: 1.5rem;
  line-height: 1;
}
.hero p {
  font-size: clamp(1.1rem, 1.5vw, 1.5rem);
  max-width: 600px;
  margin-bottom: 3rem;
}
.hero-btns {
  display: flex;
  gap: 1.5rem;
}

/* 3D Abstract Shape */
.hero-visual {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  z-index: 1;
  perspective: 1000px;
}
.shape-container {
  width: 100%;
  height: 100%;
  animation: spin3D 20s infinite linear;
  transform-style: preserve-3d;
}
@keyframes spin3D {
  100% {
    transform: rotateX(360deg) rotateY(360deg);
  }
}

/* 2. MARQUEE */
.marquee-section {
  padding: 2rem 0;
  border-y: 1px solid var(--border-glass);
  background: rgba(0, 0, 0, 0.5);
  overflow: hidden;
  display: flex;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: scrollMarquee 30s linear infinite;
}
.marquee-item {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px var(--text-secondary);
  margin: 0 2rem;
  text-transform: uppercase;
  transition: color 0.3s;
}
.marquee-item:hover {
  color: var(--accent-primary);
  -webkit-text-stroke: 0;
}
@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* 3. ABOUT / INTRO */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.stat-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
.stat-item h3 {
  font-size: 3.5rem;
  color: var(--text-primary);
  line-height: 1;
}
.stat-item p {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-primary);
  margin-top: 0.5rem;
}

/* 4. SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}
.service-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  padding: 3rem 2rem;
  border-radius: 20px;
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at top right,
    rgba(0, 240, 255, 0.1),
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-primary);
}
.service-card:hover::before {
  opacity: 1;
}
.service-icon {
  width: 70px;
  height: 70px;
  background: rgba(0, 240, 255, 0.05);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  color: var(--accent-primary);
  margin-bottom: 2rem;
  border: 1px solid rgba(0, 240, 255, 0.1);
}
.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.service-card .btn-link {
  color: var(--accent-primary);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}
.service-card .btn-link i {
  transition: transform 0.3s;
}
.service-card:hover .btn-link i {
  transform: translateX(5px);
}

/* 5. PROCESS */
.process-wrapper {
  position: relative;
  margin-top: 5rem;
}
.process-line {
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--border-glass);
  z-index: 1;
}
.process-line-progress {
  height: 100%;
  background: var(--accent-primary);
  width: 0;
  transition: width 1s ease-out;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
}
.process-step {
  position: relative;
}
.step-number {
  width: 100px;
  height: 100px;
  background: var(--bg-main);
  border: 2px solid var(--border-glass);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  transition: all 0.4s;
}
.process-step:hover .step-number {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  box-shadow: 0 0 20px var(--accent-primary-glow);
}

/* 6. INTERACTIVE CALCULATOR */
.calc-section {
  background: var(--bg-secondary);
  border-y: 1px solid var(--border-glass);
}
.calc-container {
  background: var(--bg-main);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.calc-controls label {
  display: block;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  font-size: 1.2rem;
}
.range-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: var(--border-glass);
  outline: none;
  margin-bottom: 3rem;
}
.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-primary);
  cursor: none;
  box-shadow: 0 0 15px var(--accent-primary-glow);
  transition: transform 0.2s;
}
.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}
.calc-results {
  background: rgba(0, 240, 255, 0.02);
  border: 1px solid rgba(0, 240, 255, 0.1);
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
}
.result-item {
  margin-bottom: 2rem;
}
.result-item:last-child {
  margin-bottom: 0;
}
.result-value {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent-primary);
  line-height: 1;
  margin-top: 0.5rem;
}

/* 7. SAMPLE REPORTS UI */
.reports-ui {
  position: relative;
  width: 100%;
  height: 500px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  overflow: hidden;
  padding: 2rem;
  display: flex;
  gap: 2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.ui-sidebar {
  width: 200px;
  border-right: 1px solid var(--border-glass);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ui-skeleton {
  height: 20px;
  background: var(--border-glass);
  border-radius: 4px;
  opacity: 0.5;
}
.ui-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.ui-header-skel {
  height: 40px;
  width: 40%;
  background: var(--border-glass);
  border-radius: 6px;
}
.ui-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}
.ui-card {
  background: rgba(255, 255, 255, 0.02);
  height: 100px;
  border-radius: 8px;
  border: 1px solid var(--border-glass);
}
.ui-chart {
  flex: 1;
  background: linear-gradient(to top, rgba(112, 0, 255, 0.1), transparent);
  border-bottom: 2px solid var(--accent-secondary);
  position: relative;
}
.ui-chart::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background-image: url('data:image/svg+xml,%3Csvg preserveAspectRatio="none" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M0 100 L 20 80 L 40 90 L 60 40 L 80 60 L 100 20" fill="none" stroke="%237000ff" stroke-width="2"/%3E%3C/svg%3E');
  background-size: 100% 100%;
}

/* 8. INDUSTRIES */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-glass);
  border: 1px solid var(--border-glass);
  margin-top: 3rem;
}
.industry-item {
  background: var(--bg-main);
  padding: 4rem 2rem;
  text-align: center;
  transition: background 0.3s;
}
.industry-item:hover {
  background: var(--bg-secondary);
}
.industry-item i {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  transition:
    color 0.3s,
    transform 0.3s;
}
.industry-item:hover i {
  color: var(--accent-primary);
  transform: scale(1.1);
}

/* 9. TESTIMONIALS */
.testi-slider {
  position: relative;
  overflow: hidden;
  margin-top: 3rem;
}
.testi-track {
  display: flex;
  transition: transform 0.5s var(--ease-out-expo);
}
.testi-slide {
  min-width: 100%;
  padding: 0 10%;
}
.testi-content {
  font-size: 2rem;
  font-family: var(--font-heading);
  line-height: 1.4;
  margin-bottom: 2rem;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--border-glass);
}
.testi-controls {
  display: flex;
  gap: 1rem;
  margin-top: 3rem;
  justify-content: center;
}
.ctrl-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
  cursor: none;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ctrl-btn:hover {
  background: var(--text-primary);
  color: #000;
}

/* 10. FLOATING CHAT WIDGET */
.chat-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}
.chat-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--accent-primary),
    var(--accent-secondary)
  );
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  cursor: none;
  transition: transform 0.3s;
  border: none;
}
.chat-btn:hover {
  transform: scale(1.1);
}

/* ==========================================================================
      CONTACT PAGE & FORMS
      ========================================================================== */
.page-header {
  padding: 200px 0 100px;
  text-align: center;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-glass);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 100%;
  background: radial-gradient(
    circle,
    var(--accent-secondary-glow) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}
.contact-info-block {
  margin-bottom: 3rem;
}
.contact-info-block h4 {
  color: var(--accent-primary);
  margin-bottom: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.contact-info-block p,
.contact-info-block a {
  font-size: 1.5rem;
  font-family: var(--font-heading);
  color: var(--text-primary);
}

.custom-form {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  padding: 3rem;
  border-radius: 20px;
}
.form-group {
  position: relative;
  margin-bottom: 2rem;
}
.form-control {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-glass);
  padding: 1rem 0;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}
.form-control:focus {
  border-color: var(--accent-primary);
}
.form-label {
  position: absolute;
  top: 1rem;
  left: 0;
  color: var(--text-secondary);
  pointer-events: none;
  transition: all 0.3s ease;
}
.form-control:focus ~ .form-label,
.form-control:not(:placeholder-shown) ~ .form-label {
  top: -10px;
  font-size: 0.8rem;
  color: var(--accent-primary);
}
select.form-control {
  appearance: none;
  cursor: none;
}
select.form-control option {
  background: var(--bg-main);
  color: var(--text-primary);
}

/* ==========================================================================
      LEGAL PAGES
      ========================================================================== */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-glass);
  padding: 4rem;
  border-radius: 20px;
  border: 1px solid var(--border-glass);
}
.legal-content h2 {
  font-size: 1.8rem;
  margin: 3rem 0 1.5rem;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-glass);
  padding-bottom: 0.5rem;
}
.legal-content p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}
.legal-content strong {
  color: var(--text-primary);
}

/* ==========================================================================
      ANIMATIONS & REVEALS (VANILLA JS HOOKS)
      ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s var(--ease-out-expo);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 1s var(--ease-out-expo);
}
.reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 1s var(--ease-out-expo);
}
.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.stagger-1 {
  transition-delay: 0.1s;
}
.stagger-2 {
  transition-delay: 0.2s;
}
.stagger-3 {
  transition-delay: 0.3s;
}
.stagger-4 {
  transition-delay: 0.4s;
}

/* ==========================================================================
      MEDIA QUERIES
      ========================================================================== */
@media (max-width: 1200px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 2rem;
  }
  .process-line {
    display: none;
  }
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 992px) {
  .about-grid,
  .calc-container,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-visual {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--bg-main);
    flex-direction: column;
    justify-content: center;
    transition: right 0.5s var(--ease-out-expo);
    z-index: 999;
  }
  .nav-menu.open {
    right: 0;
  }
  .nav-list {
    flex-direction: column;
    text-align: center;
    font-size: 2rem;
  }
  .nav-toggle,
  .nav-close {
    display: block;
    z-index: 1002;
  }
  .nav-close {
    position: absolute;
    top: 30px;
    right: 5%;
  }
  .header-actions .btn {
    display: none;
  }

  .title-xl {
    font-size: 3rem;
  }
  .reports-ui {
    flex-direction: column;
    height: auto;
  }
  .ui-sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 1rem;
    flex-direction: row;
  }
  .industry-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .legal-content {
    padding: 2rem;
  }
}
