/* ==========================================================================
   VERSION 7: LIQUID CHROME & CYBER-NEON
   ========================================================================== */
@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 */
   --c-void: #030305;
   --c-surface: #0A0A0F;
   --c-surface-glass: rgba(10, 10, 15, 0.7);
   --c-chrome: #E2E8F0;
   --c-cyan: #00F0FF;
   --c-cyan-glow: rgba(0, 240, 255, 0.4);
   --c-violet: #8A2BE2;
   --c-violet-glow: rgba(138, 43, 226, 0.4);

   /* Typography */
   --font-heading: 'Clash Display', sans-serif;
   --font-body: 'Inter', sans-serif;

   /* Effects */
   --gradient-neon: linear-gradient(135deg, var(--c-cyan), var(--c-violet));
   --gradient-chrome: linear-gradient(180deg, #FFFFFF, #94A3B8);
   --border-glass: 1px solid rgba(255, 255, 255, 0.1);

   /* Dimensions */
   --nav-height: 90px;
   --radius-sm: 8px;
   --radius-md: 16px;
   --radius-lg: 24px;

   /* Animations */
   --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
   --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
   --trans-fast: 0.3s var(--ease-out-expo);
   --trans-slow: 0.8s var(--ease-out-expo);
}

*,
*::before,
*::after {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

html {
   scroll-behavior: smooth;
   font-size: 16px;
}

body {
   background-color: var(--c-void);
   color: var(--c-chrome);
   font-family: var(--font-body);
   line-height: 1.6;
   overflow-x: hidden;
   -webkit-font-smoothing: antialiased;
}

body.no-scroll {
   overflow: hidden;
}

::selection {
   background: var(--c-cyan);
   color: var(--c-void);
}

::-webkit-scrollbar {
   width: 6px;
}

::-webkit-scrollbar-track {
   background: var(--c-void);
}

::-webkit-scrollbar-thumb {
   background: rgba(255, 255, 255, 0.2);
   border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
   background: var(--c-cyan);
}

/* ==========================================================================
      TYPOGRAPHY & UTILITIES
      ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
   font-family: var(--font-heading);
   font-weight: 700;
   line-height: 1.1;
   letter-spacing: 0.02em;
}

h1 {
   font-size: clamp(3rem, 7vw, 6rem);
   text-transform: uppercase;
}

h2 {
   font-size: clamp(2.5rem, 5vw, 4.5rem);
   text-transform: uppercase;
}

h3 {
   font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.text-neon {
   background: var(--gradient-neon);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
}

.text-chrome {
   background: var(--gradient-chrome);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
}

.text-muted {
   color: #94A3B8;
}

.container {
   width: 100%;
   max-width: 1440px;
   margin: 0 auto;
   padding: 0 5%;
   position: relative;
   z-index: 2;
}

.section-padding {
   padding: 8rem 0;
}

.text-center {
   text-align: center;
}

/* Micro-label */
.micro-label {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   padding: 8px 16px;
   background: rgba(255, 255, 255, 0.03);
   border: var(--border-glass);
   border-radius: 100px;
   font-family: var(--font-heading);
   font-size: 0.8rem;
   text-transform: uppercase;
   letter-spacing: 2px;
   color: var(--c-cyan);
   margin-bottom: 2rem;
}

.micro-dot {
   width: 6px;
   height: 6px;
   background: var(--c-cyan);
   border-radius: 50%;
   box-shadow: 0 0 10px var(--c-cyan-glow);
}

/* ==========================================================================
      BUTTONS
      ========================================================================== */
.btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 1.25rem 2.5rem;
   font-family: var(--font-heading);
   font-weight: 600;
   font-size: 0.9rem;
   text-transform: uppercase;
   letter-spacing: 1px;
   text-decoration: none;
   border-radius: 4px;
   transition: var(--trans-fast);
   cursor: pointer;
   border: none;
   position: relative;
   overflow: hidden;
   clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
}

.btn-primary {
   background: var(--c-cyan);
   color: var(--c-void);
   box-shadow: 0 0 20px var(--c-cyan-glow);
}

.btn-primary:hover {
   background: #fff;
   transform: translateY(-3px);
   box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4);
}

.btn-outline {
   background: rgba(0, 240, 255, 0.05);
   color: var(--c-cyan);
   border: 1px solid var(--c-cyan);
}

.btn-outline:hover {
   background: var(--c-cyan);
   color: var(--c-void);
   transform: translateY(-3px);
   box-shadow: 0 0 20px var(--c-cyan-glow);
}

/* ==========================================================================
      HEADER & MOBILE NAVBAR (STRICT CONSISTENCY)
      ========================================================================== */
.site-header {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: var(--nav-height);
   display: flex;
   align-items: center;
   z-index: 1000;
   background: transparent;
   border-bottom: 1px solid transparent;
   transition: var(--trans-slow);
}

.site-header.scrolled {
   background: rgba(3, 3, 5, 0.9);
   backdrop-filter: blur(20px);
   -webkit-backdrop-filter: blur(20px);
   border-bottom: var(--border-glass);
   height: 80px;
}

.nav-container {
   width: 100%;
   max-width: 1440px;
   margin: 0 auto;
   padding: 0 5%;
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.logo-link {
   display: flex;
   align-items: center;
   position: relative;
   z-index: 1001;
}

.site-logo {
   height: 70px;
   filter: brightness(0) invert(1);
}

.desktop-nav {
   display: flex;
   align-items: center;
   gap: 3rem;
}

.nav-links {
   display: flex;
   list-style: none;
   gap: 2.5rem;
}

.nav-links a {
   color: var(--c-chrome);
   text-decoration: none;
   font-family: var(--font-heading);
   font-size: 0.9rem;
   text-transform: uppercase;
   letter-spacing: 1px;
   transition: var(--trans-fast);
   position: relative;
}

.nav-links a:hover {
   color: var(--c-cyan);
}

/* Menu Toggle Button */
.menu-toggle {
   display: none;
   flex-direction: column;
   justify-content: space-between;
   width: 35px;
   height: 20px;
   cursor: pointer;
   z-index: 1001;
}

.menu-toggle span {
   display: block;
   width: 100%;
   height: 2px;
   background: var(--c-chrome);
   transition: var(--trans-fast);
   transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
   transform: translateY(9px) rotate(45deg);
   background: var(--c-cyan);
}

.menu-toggle.active span:nth-child(2) {
   opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
   transform: translateY(-9px) rotate(-45deg);
   background: var(--c-cyan);
}

/* Mobile Full-Screen Overlay */
.mobile-overlay {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100vh;
   background: rgba(3, 3, 5, 0.98);
   backdrop-filter: blur(15px);
   -webkit-backdrop-filter: blur(15px);
   z-index: 999;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   opacity: 0;
   visibility: hidden;
   transition: var(--trans-slow);
}

.mobile-overlay.open {
   opacity: 1;
   visibility: visible;
}

.mobile-links {
   list-style: none;
   text-align: center;
}

.mobile-links li {
   margin-bottom: 2rem;
   perspective: 1000px;
}

.mobile-links a {
   display: inline-block;
   font-family: var(--font-heading);
   font-size: 3rem;
   font-weight: 700;
   text-transform: uppercase;
   color: var(--c-chrome);
   text-decoration: none;
   transform: rotateX(-90deg) translateY(50px);
   opacity: 0;
   transform-origin: top;
   transition: transform 0.6s var(--ease-out-expo), opacity 0.6s, color 0.3s;
}

.mobile-overlay.open .mobile-links a {
   transform: rotateX(0deg) translateY(0);
   opacity: 1;
}

.mobile-links a:hover {
   color: var(--c-cyan);
   text-shadow: 0 0 20px var(--c-cyan-glow);
}

/* Staggered entry */
.mobile-links li:nth-child(1) a {
   transition-delay: 0.1s;
}

.mobile-links li:nth-child(2) a {
   transition-delay: 0.2s;
}

.mobile-links li:nth-child(3) a {
   transition-delay: 0.3s;
}

.mobile-links li:nth-child(4) a {
   transition-delay: 0.4s;
}

.mobile-links li:nth-child(5) a {
   transition-delay: 0.5s;
}

/* ==========================================================================
      HERO SECTION (3D DATA CORE)
      ========================================================================== */
.hero {
   min-height: 100vh;
   display: flex;
   align-items: center;
   position: relative;
   padding-top: var(--nav-height);
   overflow: hidden;
}

/* Liquid Background Blobs */
.bg-liquid {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   z-index: 0;
   pointer-events: none;
}

.blob {
   position: absolute;
   border-radius: 50%;
   filter: blur(150px);
   opacity: 0.5;
   animation: breathe 10s infinite alternate ease-in-out;
}

.blob-cyan {
   width: 600px;
   height: 600px;
   background: var(--c-cyan);
   top: -20%;
   right: -10%;
}

.blob-violet {
   width: 500px;
   height: 500px;
   background: var(--c-violet);
   bottom: -10%;
   left: -10%;
   animation-delay: -5s;
}

@keyframes breathe {
   0% {
      transform: scale(1) translate(0, 0);
   }

   100% {
      transform: scale(1.2) translate(-50px, 50px);
   }
}

.hero-grid {
   display: grid;
   grid-template-columns: 1.2fr 0.8fr;
   gap: 4rem;
   align-items: center;
   position: relative;
   z-index: 2;
}

.hero-text h1 {
   margin-bottom: 1.5rem;
   text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-text p {
   font-size: 1.25rem;
   color: var(--text-muted);
   margin-bottom: 3rem;
   max-width: 600px;
}

.hero-actions {
   display: flex;
   gap: 1.5rem;
}

/* 3D CSS Core Component */
.hero-3d-wrap {
   perspective: 1200px;
   display: flex;
   justify-content: center;
   align-items: center;
   height: 500px;
}

.core-cube {
   position: relative;
   width: 200px;
   height: 200px;
   transform-style: preserve-3d;
   animation: spinCube 20s infinite linear;
}

@keyframes spinCube {
   0% {
      transform: rotateX(0deg) rotateY(0deg);
   }

   100% {
      transform: rotateX(360deg) rotateY(360deg);
   }
}

.core-face {
   position: absolute;
   width: 200px;
   height: 200px;
   background: rgba(0, 240, 255, 0.05);
   border: 2px solid var(--c-cyan);
   box-shadow: inset 0 0 30px var(--c-cyan-glow);
   display: flex;
   align-items: center;
   justify-content: center;
   font-family: var(--font-heading);
   font-size: 1.5rem;
   font-weight: 700;
   color: var(--c-cyan);
   text-transform: uppercase;
   backdrop-filter: blur(5px);
}

.face-front {
   transform: translateZ(100px);
}

.face-back {
   transform: rotateY(180deg) translateZ(100px);
}

.face-right {
   transform: rotateY(90deg) translateZ(100px);
}

.face-left {
   transform: rotateY(-90deg) translateZ(100px);
}

.face-top {
   transform: rotateX(90deg) translateZ(100px);
}

.face-bottom {
   transform: rotateX(-90deg) translateZ(100px);
}

/* ==========================================================================
      INFINITE TICKER
      ========================================================================== */
.ticker-section {
   border-top: var(--border-glass);
   border-bottom: var(--border-glass);
   padding: 1.5rem 0;
   overflow: hidden;
   background: rgba(0, 0, 0, 0.3);
}

.ticker-inner {
   display: flex;
   width: max-content;
   animation: tickerScroll 20s linear infinite;
}

.ticker-item {
   font-family: var(--font-heading);
   font-size: 1.5rem;
   font-weight: 700;
   text-transform: uppercase;
   padding: 0 3rem;
   color: transparent;
   -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
   display: flex;
   align-items: center;
   gap: 3rem;
}

.ticker-item span {
   -webkit-text-stroke: 0;
   color: var(--c-cyan);
}

@keyframes tickerScroll {
   to {
      transform: translateX(-50%);
   }
}

/* ==========================================================================
      ABOUT / PHILOSOPHY
      ========================================================================== */
.about-grid {
   display: grid;
   grid-template-columns: 1fr 1.2fr;
   gap: 6rem;
   align-items: center;
}

.about-visual {
   position: relative;
   width: 100%;
   height: 600px;
   border: var(--border-glass);
   border-radius: var(--radius-lg);
   background: var(--c-surface);
   overflow: hidden;
   display: flex;
   align-items: center;
   justify-content: center;
}

/* SVG Grid background */
.about-visual::before {
   content: '';
   position: absolute;
   inset: 0;
   background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
   background-size: 40px 40px;
   opacity: 0.5;
}

.about-stats {
   display: flex;
   gap: 3rem;
   margin-top: 3rem;
   padding-top: 3rem;
   border-top: var(--border-glass);
}

.stat h3 {
   font-size: 3.5rem;
   line-height: 1;
   margin-bottom: 0.5rem;
}

.stat p {
   color: var(--text-muted);
   font-size: 0.9rem;
   text-transform: uppercase;
   letter-spacing: 1px;
}

/* ==========================================================================
      SERVICES (HOLOGRAPHIC CARDS)
      ========================================================================== */
.services-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 2rem;
   margin-top: 4rem;
}

.serv-card {
   background: rgba(10, 10, 15, 0.4);
   border: var(--border-glass);
   border-radius: var(--radius-md);
   padding: 3rem 2rem;
   position: relative;
   overflow: hidden;
   transition: var(--trans-slow);
   backdrop-filter: blur(10px);
}

.serv-card::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: radial-gradient(circle at top right, var(--c-cyan-glow), transparent 70%);
   opacity: 0;
   transition: var(--trans-fast);
   z-index: 0;
}

.serv-card:hover {
   transform: translateY(-10px);
   border-color: var(--c-cyan);
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

.serv-card:hover::before {
   opacity: 1;
}

.serv-card>* {
   position: relative;
   z-index: 1;
}

.serv-icon {
   width: 60px;
   height: 60px;
   background: rgba(0, 240, 255, 0.1);
   border: 1px solid var(--c-cyan);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.5rem;
   color: var(--c-cyan);
   margin-bottom: 2rem;
}

.serv-card h3 {
   font-size: 1.5rem;
   margin-bottom: 1rem;
}

.serv-card p {
   color: var(--text-muted);
}

/* ==========================================================================
      ROI CALCULATOR (TERMINAL UI)
      ========================================================================== */
.calc-section {
   background: var(--c-surface);
}

.calc-wrapper {
   background: var(--c-void);
   border: var(--border-glass);
   border-radius: var(--radius-lg);
   padding: 4rem;
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 5rem;
   box-shadow: inset 0 0 50px rgba(138, 43, 226, 0.1);
}

.slider-container {
   margin-top: 3rem;
}

.slider-labels {
   display: flex;
   justify-content: space-between;
   margin-bottom: 1rem;
   font-family: var(--font-heading);
   font-size: 1.25rem;
}

#budget-val {
   color: var(--c-cyan);
}

/* Custom Range Slider */
.cyber-slider {
   -webkit-appearance: none;
   width: 100%;
   height: 4px;
   background: rgba(255, 255, 255, 0.1);
   outline: none;
}

.cyber-slider::-webkit-slider-thumb {
   -webkit-appearance: none;
   width: 20px;
   height: 20px;
   background: var(--c-void);
   border: 3px solid var(--c-cyan);
   transform: rotate(45deg);
   cursor: pointer;
   box-shadow: 0 0 15px var(--c-cyan);
   margin-top: -8px;
}

.calc-outputs {
   display: flex;
   flex-direction: column;
   justify-content: center;
   gap: 2rem;
}

.output-box {
   border-left: 2px solid var(--c-violet);
   padding-left: 2rem;
}

.output-label {
   font-size: 0.85rem;
   color: var(--text-muted);
   text-transform: uppercase;
   letter-spacing: 2px;
   margin-bottom: 0.5rem;
}

.output-val {
   font-family: var(--font-heading);
   font-size: 3.5rem;
   font-weight: 700;
   line-height: 1;
}

/* ==========================================================================
      ANALYTICS (SVG DRAWING)
      ========================================================================== */
.analytics-grid {
   display: grid;
   grid-template-columns: 1fr 2fr;
   gap: 4rem;
   align-items: center;
}

.chart-box {
   background: var(--c-surface);
   border: var(--border-glass);
   border-radius: var(--radius-lg);
   padding: 3rem;
   position: relative;
   overflow: hidden;
}

.svg-chart {
   width: 100%;
   height: 250px;
   overflow: visible;
}

.grid-line {
   stroke: rgba(255, 255, 255, 0.05);
   stroke-dasharray: 5 5;
}

.data-path {
   fill: none;
   stroke: url(#neonGrad);
   stroke-width: 4;
   stroke-linecap: round;
   stroke-linejoin: round;
   stroke-dasharray: 1000;
   stroke-dashoffset: 1000;
   transition: stroke-dashoffset 2.5s var(--ease-out-expo);
}

.data-path.draw {
   stroke-dashoffset: 0;
}

.data-point {
   fill: var(--c-void);
   stroke: var(--c-cyan);
   stroke-width: 3;
   opacity: 0;
   transition: opacity 0.5s 2s;
}

.data-path.draw+.data-point {
   opacity: 1;
}

/* ==========================================================================
      INDUSTRY TABS
      ========================================================================== */
.industry-tabs {
   display: flex;
   justify-content: center;
   gap: 1rem;
   margin-bottom: 4rem;
   flex-wrap: wrap;
}

.tab-btn {
   padding: 1rem 2rem;
   background: transparent;
   border: var(--border-glass);
   border-radius: 4px;
   color: var(--c-chrome);
   font-family: var(--font-heading);
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 1px;
   cursor: pointer;
   transition: var(--trans-fast);
}

.tab-btn.active,
.tab-btn:hover {
   background: rgba(0, 240, 255, 0.1);
   border-color: var(--c-cyan);
   color: var(--c-cyan);
}

.tab-content {
   display: none;
   animation: cyberFade 0.5s ease-out forwards;
   text-align: center;
}

.tab-content.active {
   display: block;
}

@keyframes cyberFade {
   from {
      opacity: 0;
      transform: scale(0.95);
   }

   to {
      opacity: 1;
      transform: scale(1);
   }
}

.industry-card {
   background: var(--c-surface);
   border: var(--border-glass);
   border-radius: var(--radius-lg);
   padding: 5rem 2rem;
}

/* ==========================================================================
      TESTIMONIALS
      ========================================================================== */
.testi-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
   margin-top: 4rem;
}

.testi-card {
   background: rgba(255, 255, 255, 0.02);
   border: var(--border-glass);
   border-radius: var(--radius-md);
   padding: 3rem;
   position: relative;
}

.testi-card::before {
   content: '"';
   position: absolute;
   top: 1rem;
   left: 1.5rem;
   font-family: var(--font-heading);
   font-size: 5rem;
   color: rgba(255, 255, 255, 0.05);
   line-height: 1;
}

.testi-card p {
   font-size: 1.1rem;
   margin-bottom: 2rem;
   position: relative;
   z-index: 1;
}

.testi-author {
   display: flex;
   align-items: center;
   gap: 1rem;
}

.author-img {
   width: 50px;
   height: 50px;
   background: var(--c-violet);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: bold;
}

/* ==========================================================================
      CONTACT CTA
      ========================================================================== */
.contact-section {
   background: var(--c-surface);
}

.contact-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 4rem;
}

.contact-info {
   display: flex;
   flex-direction: column;
   gap: 2rem;
   margin-top: 3rem;
}

.info-row {
   border-left: 2px solid var(--c-cyan);
   padding-left: 1.5rem;
}

.info-label {
   font-size: 0.85rem;
   color: var(--text-muted);
   text-transform: uppercase;
   letter-spacing: 2px;
   display: block;
   margin-bottom: 0.5rem;
}

.info-val {
   font-family: var(--font-heading);
   font-size: 1.5rem;
}

.form-input {
   width: 100%;
   padding: 1.25rem 1.5rem;
   margin-bottom: 1.5rem;
   background: var(--c-void);
   border: var(--border-glass);
   color: #fff;
   font-family: var(--font-body);
   outline: none;
   transition: var(--trans-fast);
   border-radius: 4px;
}

.form-input:focus {
   border-color: var(--c-cyan);
   box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

textarea.form-input {
   height: 150px;
   resize: none;
}

/* ==========================================================================
      FOOTER (STRICT CONSISTENCY)
      ========================================================================== */
.site-footer {
   background: var(--c-void);
   padding: 6rem 0 2rem;
   border-top: var(--border-glass);
}

.footer-grid {
   display: grid;
   grid-template-columns: 2fr 1fr 1fr 1.5fr;
   gap: 4rem;
   margin-bottom: 4rem;
}

.footer-brand img {
   height: 70px;
   filter: brightness(0) invert(1);
   margin-bottom: 1.5rem;
}

.footer-brand p {
   color: var(--text-muted);
   max-width: 300px;
}

.footer-title {
   font-family: var(--font-heading);
   font-size: 1.25rem;
   margin-bottom: 1.5rem;
   color: #fff;
}

.footer-links {
   list-style: none;
}

.footer-links li {
   margin-bottom: 0.75rem;
}

.footer-links a,
.footer-links span {
   color: var(--text-muted);
   text-decoration: none;
   transition: var(--trans-fast);
}

.footer-links a:hover {
   color: var(--c-cyan);
   padding-left: 5px;
}

.footer-bottom {
   border-top: var(--border-glass);
   padding-top: 2rem;
   display: flex;
   justify-content: space-between;
   align-items: center;
   color: var(--text-muted);
   font-size: 0.9rem;
}

.legal-links {
   display: flex;
   gap: 2rem;
}

.legal-links a {
   color: var(--text-muted);
   text-decoration: none;
   transition: var(--trans-fast);
}

.legal-links a:hover {
   color: var(--c-violet);
}

/* ==========================================================================
      LIVE CHAT WIDGET
      ========================================================================== */
.chat-widget {
   position: fixed;
   bottom: 2rem;
   right: 2rem;
   z-index: 999;
}

.chat-btn {
   width: 60px;
   height: 60px;
   background: var(--gradient-neon);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
   box-shadow: 0 0 20px var(--c-cyan-glow);
   transition: var(--trans-fast);
}

.chat-btn:hover {
   transform: scale(1.1);
}

.chat-btn svg {
   width: 30px;
   height: 30px;
   fill: var(--c-void);
}

/* ==========================================================================
      LEGAL PAGES
      ========================================================================== */
.page-header {
   padding: 12rem 0 6rem;
   text-align: center;
   background: radial-gradient(circle at top center, rgba(138, 43, 226, 0.15), transparent 70%);
   border-bottom: var(--border-glass);
}

.legal-content {
   max-width: 800px;
   margin: 0 auto;
   padding: 5rem 0;
}

.legal-content h2 {
   color: var(--c-cyan);
   margin: 3rem 0 1rem;
   font-size: 1.75rem;
}

.legal-content p {
   color: var(--text-muted);
   margin-bottom: 1.5rem;
   font-size: 1.1rem;
}

/* ==========================================================================
      ANIMATION UTILS & RESPONSIVE
      ========================================================================== */
.reveal {
   opacity: 0;
   transform: translateY(40px);
   transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal.active {
   opacity: 1;
   transform: translateY(0);
}

@media (max-width: 1024px) {

   .hero-grid,
   .about-grid,
   .calc-wrapper,
   .analytics-grid,
   .contact-grid {
      grid-template-columns: 1fr;
      gap: 3rem;
   }

   .hero-3d-wrap {
      height: 300px;
   }

   .services-grid {
      grid-template-columns: repeat(2, 1fr);
   }

   .footer-grid {
      grid-template-columns: 1fr 1fr;
   }
}

@media (max-width: 768px) {
   .desktop-nav {
      display: none;
   }

   .menu-toggle {
      display: flex;
   }

   .footer-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
   }

   .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
   }

   .services-grid {
      grid-template-columns: 1fr;
   }
}