/* styles.css */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Syne:wght@500;700;800&display=swap');

:root {
   --bg-dark: #030712;
   --bg-glass: rgba(15, 23, 42, 0.4);
   --bg-glass-heavy: rgba(15, 23, 42, 0.8);
   --emerald: #10b981;
   --emerald-glow: rgba(16, 185, 129, 0.4);
   --violet: #8b5cf6;
   --violet-glow: rgba(139, 92, 246, 0.4);
   --text-main: #f8fafc;
   --text-muted: #94a3b8;
   --border-glass: rgba(255, 255, 255, 0.1);
   --font-head: 'Syne', sans-serif;
   --font-body: 'DM Sans', sans-serif;
   --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Reset & Typography */
* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   cursor: none;
}

html {
   scroll-behavior: smooth;
   overflow-x: hidden;
}

body {
   font-family: var(--font-body);
   background-color: var(--bg-dark);
   color: var(--text-main);
   line-height: 1.6;
   overflow-x: hidden;
   position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
   font-family: var(--font-head);
   font-weight: 800;
   line-height: 1.1;
   margin-bottom: 1rem;
   color: #fff;
}

p {
   margin-bottom: 1.5rem;
   color: var(--text-muted);
   font-size: 1.1rem;
}

a {
   text-decoration: none;
   color: inherit;
   transition: var(--transition);
}

ul {
   list-style: none;
}

img {
   max-width: 100%;
   display: block;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
   width: 8px;
}

::-webkit-scrollbar-track {
   background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
   background: linear-gradient(to bottom, var(--emerald), var(--violet));
   border-radius: 4px;
}

/* Custom Cursor */
.cursor-dot {
   width: 8px;
   height: 8px;
   background: var(--emerald);
   border-radius: 50%;
   position: fixed;
   top: 0;
   left: 0;
   transform: translate(-50%, -50%);
   pointer-events: none;
   z-index: 10000;
   box-shadow: 0 0 10px var(--emerald);
}

.cursor-outline {
   width: 40px;
   height: 40px;
   border: 1px solid var(--violet);
   border-radius: 50%;
   position: fixed;
   top: 0;
   left: 0;
   transform: translate(-50%, -50%);
   pointer-events: none;
   z-index: 9999;
   transition: width 0.2s, height 0.2s, background 0.2s;
}

.cursor-outline.hover {
   width: 60px;
   height: 60px;
   background: rgba(139, 92, 246, 0.1);
   border-color: var(--emerald);
}

/* Ambient Aurora Background */
.aurora-bg {
   position: fixed;
   top: 0;
   left: 0;
   width: 100vw;
   height: 100vh;
   overflow: hidden;
   z-index: -1;
   pointer-events: none;
}

.aurora-blob {
   position: absolute;
   border-radius: 50%;
   filter: blur(120px);
   opacity: 0.5;
   animation: floatBlob 20s infinite alternate ease-in-out;
}

.blob-1 {
   width: 600px;
   height: 600px;
   background: var(--emerald-glow);
   top: -200px;
   left: -100px;
}

.blob-2 {
   width: 700px;
   height: 700px;
   background: var(--violet-glow);
   bottom: -300px;
   right: -100px;
   animation-delay: -5s;
}

.blob-3 {
   width: 400px;
   height: 400px;
   background: rgba(59, 130, 246, 0.3);
   top: 40%;
   left: 40%;
   animation-delay: -10s;
}

@keyframes floatBlob {
   0% {
      transform: translate(0, 0) scale(1);
   }

   100% {
      transform: translate(100px, 150px) scale(1.2);
   }
}

/* =========================================
   STRICT GLOBAL HEADER & FOOTER
========================================= */
header {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   background: transparent;
   z-index: 1000;
   padding: 1.5rem 0;
   transition: var(--transition);
   border-bottom: 1px solid transparent;
}

header.scrolled {
   background: var(--bg-glass-heavy);
   backdrop-filter: blur(20px);
   -webkit-backdrop-filter: blur(20px);
   padding: 1rem 0;
   border-bottom: 1px solid var(--border-glass);
}

.header-container {
   max-width: 1400px;
   margin: 0 auto;
   padding: 0 2rem;
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.logo img {
   height: 40px;
   filter: invert(1);
}

.nav-links {
   display: flex;
   gap: 3rem;
}

.nav-links a {
   font-family: var(--font-head);
   font-size: 1rem;
   color: var(--text-main);
   position: relative;
   padding: 0.5rem 0;
   text-transform: uppercase;
   letter-spacing: 1px;
}

.nav-links a::after {
   content: '';
   position: absolute;
   bottom: 0;
   left: 0;
   width: 0;
   height: 2px;
   background: linear-gradient(90deg, var(--emerald), var(--violet));
   transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
   width: 100%;
}

.btn-glow {
   background: rgba(255, 255, 255, 0.05);
   color: #fff;
   border: 1px solid var(--emerald);
   padding: 0.8rem 2.5rem;
   font-family: var(--font-head);
   font-size: 0.9rem;
   text-transform: uppercase;
   letter-spacing: 2px;
   border-radius: 50px;
   position: relative;
   overflow: hidden;
   transition: var(--transition);
   z-index: 1;
}

.btn-glow::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: linear-gradient(135deg, var(--emerald), var(--violet));
   z-index: -1;
   opacity: 0;
   transition: opacity 0.3s ease;
}

.btn-glow:hover::before {
   opacity: 1;
}

.btn-glow:hover {
   box-shadow: 0 0 30px var(--emerald-glow);
   border-color: transparent;
}

.mobile-toggle {
   display: none;
   width: 30px;
   height: 20px;
   position: relative;
   z-index: 1001;
   background: none;
   border: none;
}

.mobile-toggle span {
   display: block;
   position: absolute;
   height: 2px;
   width: 100%;
   background: #fff;
   border-radius: 2px;
   transition: 0.3s;
}

.mobile-toggle span:nth-child(1) {
   top: 0;
}

.mobile-toggle span:nth-child(2) {
   top: 9px;
}

.mobile-toggle span:nth-child(3) {
   top: 18px;
}

.mobile-toggle.active span:nth-child(1) {
   top: 9px;
   transform: rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
   opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
   top: 9px;
   transform: rotate(-45deg);
}

footer {
   background: #010308;
   padding: 6rem 0 2rem;
   border-top: 1px solid var(--border-glass);
   position: relative;
   overflow: hidden;
}

.footer-container {
   max-width: 1400px;
   margin: 0 auto;
   padding: 0 2rem;
   display: grid;
   grid-template-columns: 2fr 1fr 1fr 1.5fr;
   gap: 4rem;
   position: relative;
   z-index: 2;
}

.footer-col p {
   margin-top: 1.5rem;
   font-size: 0.95rem;
   max-width: 300px;
}

.footer-title {
   font-size: 1.2rem;
   color: #fff;
   margin-bottom: 2rem;
   position: relative;
   display: inline-block;
}

.footer-title::after {
   content: '';
   position: absolute;
   left: 0;
   bottom: -5px;
   width: 20px;
   height: 2px;
   background: var(--emerald);
}

.footer-links li {
   margin-bottom: 1rem;
}

.footer-links a {
   display: inline-flex;
   align-items: center;
   color: var(--text-muted);
   transition: var(--transition);
}

.footer-links a::before {
   content: '>';
   margin-right: 8px;
   color: var(--violet);
   opacity: 0;
   transform: translateX(-10px);
   transition: var(--transition);
}

.footer-links a:hover {
   color: var(--emerald);
   transform: translateX(5px);
}

.footer-links a:hover::before {
   opacity: 1;
   transform: translateX(0);
}

.footer-contact li {
   display: flex;
   align-items: center;
   gap: 1rem;
   margin-bottom: 1rem;
   color: var(--text-muted);
}

.footer-contact i {
   color: var(--emerald);
   font-style: normal;
   font-size: 1.2rem;
}

.footer-bottom {
   text-align: center;
   padding-top: 3rem;
   margin-top: 3rem;
   border-top: 1px solid var(--border-glass);
   font-size: 0.9rem;
   color: var(--text-muted);
}

/* =========================================
   LAYOUT UTILITIES
========================================= */
section {
   padding: 8rem 0;
   position: relative;
   z-index: 1;
}

.container {
   max-width: 1400px;
   margin: 0 auto;
   padding: 0 2rem;
}

.sec-head {
   text-align: center;
   margin-bottom: 5rem;
}

.sec-head .tag {
   display: inline-block;
   padding: 0.5rem 1.5rem;
   background: var(--bg-glass);
   border: 1px solid var(--border-glass);
   border-radius: 50px;
   color: var(--emerald);
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 2px;
   margin-bottom: 1.5rem;
   font-size: 0.8rem;
   backdrop-filter: blur(10px);
}

.sec-head h2 {
   font-size: 3.5rem;
   margin-bottom: 1.5rem;
}

.sec-head h2 span {
   background: linear-gradient(to right, var(--emerald), var(--violet));
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
}

.sec-head p {
   max-width: 600px;
   margin: 0 auto;
}

/* =========================================
   SECTION 1: HERO & 3D HOLOGRAM
========================================= */
.hero {
   min-height: 100vh;
   display: flex;
   align-items: center;
   padding-top: 100px;
}

.hero-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 4rem;
   align-items: center;
}

.hero-text h1 {
   font-size: 5rem;
   line-height: 1.05;
   margin-bottom: 1.5rem;
   text-transform: uppercase;
}

.hero-text h1 span {
   color: transparent;
   -webkit-text-stroke: 1px var(--emerald);
   display: block;
   text-shadow: 0 0 30px var(--emerald-glow);
}

.hero-text p {
   font-size: 1.3rem;
   margin-bottom: 3rem;
   max-width: 90%;
   color: var(--text-main);
}

.hero-btns {
   display: flex;
   gap: 1.5rem;
}

/* 3D Holographic Interface Element */
.hero-3d {
   position: relative;
   height: 500px;
   perspective: 1000px;
   display: flex;
   justify-content: center;
   align-items: center;
}

.hologram-wrapper {
   position: relative;
   width: 300px;
   height: 300px;
   transform-style: preserve-3d;
   animation: float3D 10s ease-in-out infinite alternate;
}

.holo-ring {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   border: 2px solid;
   border-radius: 50%;
   display: flex;
   justify-content: center;
   align-items: center;
   background: rgba(16, 185, 129, 0.05);
   backdrop-filter: blur(5px);
}

.ring-1 {
   border-color: var(--emerald);
   transform: rotateX(60deg) rotateY(0deg);
   animation: spinRing 15s linear infinite;
   box-shadow: 0 0 30px var(--emerald-glow);
}

.ring-2 {
   border-color: var(--violet);
   transform: rotateX(60deg) rotateY(60deg);
   animation: spinRing 20s linear infinite reverse;
   width: 80%;
   height: 80%;
   top: 10%;
   left: 10%;
   box-shadow: 0 0 30px var(--violet-glow);
}

.ring-3 {
   border-color: #fff;
   transform: rotateX(60deg) rotateY(120deg);
   animation: spinRing 12s linear infinite;
   width: 60%;
   height: 60%;
   top: 20%;
   left: 20%;
   border-style: dashed;
}

.holo-core {
   position: absolute;
   top: 50%;
   left: 50%;
   width: 60px;
   height: 60px;
   background: #fff;
   border-radius: 50%;
   transform: translate(-50%, -50%);
   box-shadow: 0 0 50px #fff, 0 0 100px var(--emerald);
   animation: pulseCore 2s infinite alternate;
   display: flex;
   justify-content: center;
   align-items: center;
   color: var(--bg-dark);
   font-weight: bold;
   font-family: var(--font-head);
   font-size: 0.8rem;
}

@keyframes spinRing {
   100% {
      transform: rotateX(60deg) rotateY(360deg);
   }
}

@keyframes float3D {
   0% {
      transform: translateY(-20px) rotateX(10deg);
   }

   100% {
      transform: translateY(20px) rotateX(-10deg);
   }
}

@keyframes pulseCore {
   0% {
      transform: translate(-50%, -50%) scale(1);
   }

   100% {
      transform: translate(-50%, -50%) scale(1.2);
   }
}

/* =========================================
   SECTION 2: TRUST MARQUEE
========================================= */
.marquee {
   padding: 3rem 0;
   background: var(--bg-glass);
   border-top: 1px solid var(--border-glass);
   border-bottom: 1px solid var(--border-glass);
   overflow: hidden;
   display: flex;
   white-space: nowrap;
   backdrop-filter: blur(10px);
}

.marquee-track {
   display: flex;
   align-items: center;
   gap: 6rem;
   padding-right: 6rem;
   animation: marquee 25s linear infinite;
}

.marquee-item {
   font-family: var(--font-head);
   font-size: 2rem;
   font-weight: 800;
   color: transparent;
   -webkit-text-stroke: 1px var(--text-muted);
   text-transform: uppercase;
   transition: var(--transition);
}

.marquee-item:hover {
   color: var(--emerald);
   -webkit-text-stroke: 0;
   text-shadow: 0 0 20px var(--emerald-glow);
}

@keyframes marquee {
   0% {
      transform: translateX(0);
   }

   100% {
      transform: translateX(-100%);
   }
}

/* =========================================
   SECTION 3: ABOUT / GLASS CARDS
========================================= */
.about-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 4rem;
   align-items: center;
}

.glass-panel {
   background: var(--bg-glass);
   border: 1px solid var(--border-glass);
   border-radius: 30px;
   padding: 4rem;
   backdrop-filter: blur(20px);
   -webkit-backdrop-filter: blur(20px);
   box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
   position: relative;
   overflow: hidden;
}

.glass-panel::before {
   content: '';
   position: absolute;
   top: -50%;
   left: -50%;
   width: 200%;
   height: 200%;
   background: radial-gradient(circle, var(--emerald-glow) 0%, transparent 60%);
   opacity: 0.3;
   animation: rotateBg 10s linear infinite;
   pointer-events: none;
}

.glass-panel h2 {
   font-size: 3rem;
   margin-bottom: 1.5rem;
   position: relative;
   z-index: 1;
}

.glass-panel p {
   position: relative;
   z-index: 1;
   font-size: 1.15rem;
}

.glass-stats {
   display: flex;
   gap: 2rem;
   margin-top: 3rem;
   position: relative;
   z-index: 1;
}

.stat {
   border-left: 2px solid var(--emerald);
   padding-left: 1.5rem;
}

.stat h3 {
   font-size: 3rem;
   margin-bottom: 0.2rem;
   color: var(--emerald);
}

.stat p {
   font-size: 0.9rem;
   text-transform: uppercase;
   margin: 0;
}

@keyframes rotateBg {
   100% {
      transform: rotate(360deg);
   }
}

/* =========================================
   SECTION 4: SERVICES (3D TILT CARDS)
========================================= */
.services-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 2rem;
   perspective: 1000px;
}

.svc-card {
   background: var(--bg-glass);
   border: 1px solid var(--border-glass);
   border-radius: 20px;
   padding: 3rem 2rem;
   backdrop-filter: blur(10px);
   transition: transform 0.1s ease, box-shadow 0.3s ease;
   transform-style: preserve-3d;
   position: relative;
}

.svc-card:hover {
   box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
   border-color: var(--emerald);
}

.svc-icon {
   width: 70px;
   height: 70px;
   background: rgba(255, 255, 255, 0.05);
   border: 1px solid var(--border-glass);
   border-radius: 16px;
   display: flex;
   justify-content: center;
   align-items: center;
   font-size: 2rem;
   margin-bottom: 1.5rem;
   color: var(--emerald);
   transform: translateZ(30px);
   transition: var(--transition);
}

.svc-card:hover .svc-icon {
   background: var(--emerald);
   color: var(--bg-dark);
}

.svc-card h3 {
   font-size: 1.5rem;
   transform: translateZ(40px);
   margin-bottom: 1rem;
}

.svc-card p {
   transform: translateZ(20px);
   margin: 0;
}

/* =========================================
   SECTION 5: INTERACTIVE REPORTS (SVG CHARTS)
========================================= */
.reports-wrapper {
   background: var(--bg-glass-heavy);
   border: 1px solid var(--border-glass);
   border-radius: 30px;
   padding: 4rem;
   backdrop-filter: blur(20px);
   display: grid;
   grid-template-columns: 250px 1fr;
   gap: 4rem;
}

.report-tabs {
   display: flex;
   flex-direction: column;
   gap: 1rem;
}

.r-tab {
   background: transparent;
   color: var(--text-muted);
   border: 1px solid var(--border-glass);
   padding: 1.2rem;
   border-radius: 15px;
   font-family: var(--font-head);
   font-weight: 700;
   font-size: 1.1rem;
   text-align: left;
   transition: var(--transition);
   position: relative;
   overflow: hidden;
}

.r-tab:hover {
   background: rgba(255, 255, 255, 0.05);
   color: #fff;
}

.r-tab.active {
   background: var(--emerald);
   border-color: var(--emerald);
   color: var(--bg-dark);
}

.report-panel {
   display: none;
   animation: fadeIn 0.5s ease;
}

.report-panel.active {
   display: block;
}

.chart-container {
   width: 100%;
   height: 300px;
   margin-top: 2rem;
   position: relative;
}

/* Animated SVG Area Chart */
.area-chart {
   width: 100%;
   height: 100%;
   overflow: visible;
}

.chart-grid {
   stroke: rgba(255, 255, 255, 0.05);
   stroke-width: 1;
}

.chart-line {
   fill: none;
   stroke: var(--emerald);
   stroke-width: 3;
   stroke-dasharray: 1000;
   stroke-dashoffset: 1000;
   filter: drop-shadow(0 0 10px var(--emerald));
   animation: drawLine 2s ease forwards;
}

.chart-area {
   fill: url(#emerald-grad);
   opacity: 0;
   animation: fadeArea 1s ease 1s forwards;
}

.chart-point {
   fill: var(--bg-dark);
   stroke: var(--emerald);
   stroke-width: 3;
   r: 5;
   opacity: 0;
   animation: popPoint 0.5s ease forwards;
}

.chart-point:nth-of-type(1) {
   animation-delay: 0.2s;
}

.chart-point:nth-of-type(2) {
   animation-delay: 0.4s;
}

.chart-point:nth-of-type(3) {
   animation-delay: 0.6s;
}

.chart-point:nth-of-type(4) {
   animation-delay: 0.8s;
}

.chart-point:nth-of-type(5) {
   animation-delay: 1.0s;
}

@keyframes drawLine {
   to {
      stroke-dashoffset: 0;
   }
}

@keyframes fadeArea {
   to {
      opacity: 0.5;
   }
}

@keyframes popPoint {
   to {
      opacity: 1;
      transform: scale(1.5);
   }
}

@keyframes fadeIn {
   from {
      opacity: 0;
      transform: translateY(20px);
   }

   to {
      opacity: 1;
      transform: translateY(0);
   }
}

/* =========================================
   SECTION 6: PROCESS TIMELINE
========================================= */
.timeline {
   position: relative;
   max-width: 900px;
   margin: 0 auto;
}

.timeline::before {
   content: '';
   position: absolute;
   top: 0;
   left: 50px;
   height: 100%;
   width: 2px;
   background: var(--border-glass);
}

.tl-item {
   display: flex;
   gap: 3rem;
   margin-bottom: 4rem;
   position: relative;
}

.tl-num {
   width: 100px;
   height: 100px;
   background: var(--bg-glass);
   border: 2px solid var(--violet);
   border-radius: 50%;
   display: flex;
   justify-content: center;
   align-items: center;
   font-family: var(--font-head);
   font-size: 2.5rem;
   font-weight: 800;
   color: var(--violet);
   z-index: 2;
   flex-shrink: 0;
   box-shadow: 0 0 30px var(--violet-glow);
   backdrop-filter: blur(10px);
   transition: var(--transition);
}

.tl-item:hover .tl-num {
   background: var(--violet);
   color: #fff;
   transform: scale(1.1);
}

.tl-content {
   background: var(--bg-glass);
   border: 1px solid var(--border-glass);
   padding: 3rem;
   border-radius: 20px;
   backdrop-filter: blur(10px);
   transition: var(--transition);
   flex: 1;
}

.tl-item:hover .tl-content {
   border-color: var(--violet);
   transform: translateX(10px);
}

.tl-content h3 {
   font-size: 1.8rem;
   margin-bottom: 1rem;
   color: #fff;
}

/* =========================================
   SECTION 7: INDUSTRY HEX GRID
========================================= */
.hex-grid {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   gap: 2rem;
}

.hex-item {
   width: 220px;
   height: 250px;
   background: var(--bg-glass);
   border: 1px solid var(--border-glass);
   clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   text-align: center;
   padding: 2rem;
   transition: var(--transition);
   backdrop-filter: blur(10px);
}

.hex-item:hover {
   background: var(--emerald);
   transform: scale(1.1);
   box-shadow: 0 0 40px var(--emerald-glow);
}

.hex-icon {
   font-size: 2.5rem;
   margin-bottom: 1rem;
   color: var(--emerald);
   transition: var(--transition);
}

.hex-item:hover .hex-icon {
   color: var(--bg-dark);
}

.hex-item h4 {
   font-size: 1.1rem;
   transition: var(--transition);
}

.hex-item:hover h4 {
   color: var(--bg-dark);
}

/* =========================================
   SECTION 8: TESTIMONIALS (MASONRY)
========================================= */
.masonry-grid {
   display: column;
   column-count: 3;
   column-gap: 2rem;
}

.test-card {
   background: var(--bg-glass);
   border: 1px solid var(--border-glass);
   padding: 3rem;
   border-radius: 20px;
   break-inside: avoid;
   margin-bottom: 2rem;
   position: relative;
   backdrop-filter: blur(10px);
   transition: var(--transition);
}

.test-card:hover {
   border-color: var(--emerald);
   transform: translateY(-5px);
}

.test-quote {
   font-size: 4rem;
   color: rgba(255, 255, 255, 0.05);
   font-family: serif;
   position: absolute;
   top: 1rem;
   right: 2rem;
   line-height: 1;
}

.test-text {
   font-size: 1.1rem;
   font-style: italic;
   margin-bottom: 2rem;
   color: #e2e8f0;
   position: relative;
   z-index: 1;
}

.test-author h4 {
   margin: 0;
   color: var(--emerald);
}

/* =========================================
   SECTION 9: VIDEO REEL TEASER
========================================= */
.video-teaser {
   text-align: center;
   padding: 8rem 2rem;
   background: var(--bg-glass);
   border-top: 1px solid var(--border-glass);
   border-bottom: 1px solid var(--border-glass);
   position: relative;
   overflow: hidden;
   backdrop-filter: blur(10px);
}

.play-btn {
   width: 100px;
   height: 100px;
   background: rgba(16, 185, 129, 0.2);
   border: 2px solid var(--emerald);
   border-radius: 50%;
   display: inline-flex;
   justify-content: center;
   align-items: center;
   margin: 0 auto 2rem;
   position: relative;
   transition: var(--transition);
}

.play-btn::after {
   content: '';
   border-style: solid;
   border-width: 15px 0 15px 25px;
   border-color: transparent transparent transparent #fff;
   margin-left: 5px;
}

.play-btn:hover {
   background: var(--emerald);
   transform: scale(1.1);
   box-shadow: 0 0 40px var(--emerald-glow);
}

.pulse-ring {
   position: absolute;
   inset: -20px;
   border: 1px solid var(--emerald);
   border-radius: 50%;
   animation: pulseRing 2s infinite;
   pointer-events: none;
}

@keyframes pulseRing {
   0% {
      transform: scale(1);
      opacity: 1;
   }

   100% {
      transform: scale(1.5);
      opacity: 0;
   }
}

/* =========================================
   SECTION 10: CTA
========================================= */
.cta-box {
   background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(139, 92, 246, 0.1));
   border: 1px solid var(--border-glass);
   border-radius: 30px;
   padding: 6rem 2rem;
   text-align: center;
   backdrop-filter: blur(20px);
   box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
   position: relative;
   overflow: hidden;
}

.cta-box h2 {
   font-size: 4rem;
   margin-bottom: 1.5rem;
}

/* =========================================
   FORMS & CONTACT PAGE
========================================= */
.contact-layout {
   display: grid;
   grid-template-columns: 1fr 1.5fr;
   gap: 4rem;
}

.contact-info {
   background: var(--bg-glass);
   padding: 4rem;
   border-radius: 30px;
   border: 1px solid var(--border-glass);
   backdrop-filter: blur(10px);
}

.c-item {
   display: flex;
   align-items: center;
   gap: 1.5rem;
   margin-bottom: 2.5rem;
}

.c-icon {
   width: 60px;
   height: 60px;
   background: rgba(255, 255, 255, 0.05);
   border: 1px solid var(--emerald);
   border-radius: 50%;
   display: flex;
   justify-content: center;
   align-items: center;
   color: var(--emerald);
   font-size: 1.5rem;
}

.form-box {
   background: var(--bg-glass);
   padding: 4rem;
   border-radius: 30px;
   border: 1px solid var(--border-glass);
   backdrop-filter: blur(10px);
}

.form-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 2rem;
}

.input-wrap {
   position: relative;
   margin-bottom: 2rem;
}

.input-wrap.full {
   grid-column: 1 / -1;
}

.input-wrap input,
.input-wrap textarea,
.input-wrap select {
   width: 100%;
   background: transparent;
   border: none;
   border-bottom: 2px solid var(--border-glass);
   padding: 1rem 0;
   color: #fff;
   font-family: var(--font-body);
   font-size: 1.1rem;
   transition: var(--transition);
}

.input-wrap textarea {
   resize: vertical;
   min-height: 120px;
}

.input-wrap select option {
   background: var(--bg-dark);
   color: #fff;
}

.input-wrap input:focus,
.input-wrap textarea:focus,
.input-wrap select:focus {
   outline: none;
   border-bottom-color: var(--emerald);
}

.input-wrap label {
   position: absolute;
   left: 0;
   top: 1rem;
   color: var(--text-muted);
   pointer-events: none;
   transition: var(--transition);
   font-size: 1.1rem;
}

.input-wrap input:focus~label,
.input-wrap input:valid~label,
.input-wrap textarea:focus~label,
.input-wrap textarea:valid~label {
   top: -15px;
   font-size: 0.85rem;
   color: var(--emerald);
}

/* =========================================
   LEGAL PAGES
========================================= */
.page-header {
   padding: 12rem 0 4rem;
   text-align: center;
   border-bottom: 1px solid var(--border-glass);
}

.page-header h1 {
   font-size: 4rem;
   color: var(--emerald);
}

.legal-box {
   max-width: 900px;
   margin: 0 auto;
   background: var(--bg-glass);
   border: 1px solid var(--border-glass);
   padding: 5rem;
   border-radius: 30px;
   backdrop-filter: blur(10px);
}

.legal-box h2 {
   font-size: 1.8rem;
   margin-top: 3rem;
   margin-bottom: 1rem;
   color: var(--violet);
   border-bottom: 1px solid var(--border-glass);
   padding-bottom: 0.5rem;
}

.legal-box p {
   color: #cbd5e1;
   margin-bottom: 1.5rem;
}

.legal-box ul {
   margin-left: 2rem;
   margin-bottom: 2rem;
}

.legal-box ul li {
   color: #cbd5e1;
   margin-bottom: 0.5rem;
   list-style-type: square;
}

/* =========================================
   SCROLL REVEAL UTILITY
========================================= */
.reveal {
   opacity: 0;
   transform: translateY(50px);
   transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
   opacity: 1;
   transform: translateY(0);
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1024px) {

   .hero-grid,
   .about-grid,
   .contact-layout {
      grid-template-columns: 1fr;
      text-align: center;
   }

   .hero-text h1 {
      font-size: 4rem;
   }

   .hero-btns {
      justify-content: center;
   }

   .hero-3d {
      height: 400px;
      margin-top: 2rem;
   }

   .services-grid,
   .masonry-grid {
      grid-template-columns: repeat(2, 1fr);
      column-count: 2;
   }

   .reports-wrapper {
      grid-template-columns: 1fr;
   }

   .report-tabs {
      flex-direction: row;
      overflow-x: auto;
   }

   .r-tab {
      flex: 1;
      text-align: center;
      white-space: nowrap;
   }

   .footer-container {
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
   }

   .timeline::before {
      left: 50px;
   }
}

@media (max-width: 768px) {
   .nav-links {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: var(--bg-glass-heavy);
      backdrop-filter: blur(20px);
      flex-direction: column;
      justify-content: center;
      align-items: center;
      transition: var(--transition);
      transform: translateY(-100%);
      z-index: 999;
   }

   .nav-links.active {
      transform: translateY(0);
   }

   .mobile-toggle {
      display: block;
   }

   .btn-glow.hide-mobile {
      display: none;
   }

   .services-grid,
   .masonry-grid,
   .form-grid {
      grid-template-columns: 1fr;
      column-count: 1;
   }

   .footer-container {
      grid-template-columns: 1fr;
      text-align: center;
   }

   .footer-title::after {
      left: 50%;
      transform: translateX(-50%);
   }

   .footer-contact li {
      justify-content: center;
   }

   .cursor-dot,
   .cursor-outline {
      display: none;
   }

   /* Disable custom cursor on mobile */
   * {
      cursor: auto;
   }

   .legal-box {
      padding: 2rem;
   }
}