/* styles.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@300;500;700;900&display=swap');

:root {
   --bg-main: #0B0F19;
   --bg-card: #131A2A;
   --bg-card-hover: #1C263B;
   --accent-gold: #F5A623;
   --accent-gold-glow: rgba(245, 166, 35, 0.3);
   --accent-teal: #14B8A6;
   --accent-teal-glow: rgba(20, 184, 166, 0.3);
   --text-bright: #FFFFFF;
   --text-dim: #9CA3AF;
   --border-subtle: rgba(255, 255, 255, 0.08);
   --font-heading: 'Outfit', sans-serif;
   --font-body: 'Inter', sans-serif;
   --transition-smooth: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
   --shadow-float: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Base Reset */
* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

html {
   scroll-behavior: smooth;
   font-size: 16px;
   overflow-x: hidden;
}

body {
   font-family: var(--font-body);
   background-color: var(--bg-main);
   color: var(--text-dim);
   line-height: 1.6;
   position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
   width: 6px;
}

::-webkit-scrollbar-track {
   background: var(--bg-main);
}

::-webkit-scrollbar-thumb {
   background: var(--bg-card-hover);
   border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
   background: var(--accent-gold);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
   font-family: var(--font-heading);
   color: var(--text-bright);
   line-height: 1.2;
   margin-bottom: 1rem;
}

a {
   text-decoration: none;
   color: inherit;
}

ul {
   list-style: none;
}

img {
   max-width: 100%;
   display: block;
}

/* Utility Classes */
.container {
   max-width: 1300px;
   margin: 0 auto;
   padding: 0 2rem;
   position: relative;
   z-index: 2;
}

.section-padding {
   padding: 8rem 0;
}

.text-center {
   text-align: center;
}

.gold-text {
   color: var(--accent-gold);
}

.teal-text {
   color: var(--accent-teal);
}

/* Background Mesh Gradients */
.bg-mesh {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   overflow: hidden;
   z-index: 0;
   pointer-events: none;
}

.mesh-blob {
   position: absolute;
   filter: blur(150px);
   opacity: 0.4;
   border-radius: 50%;
   animation: breathe 15s infinite alternate ease-in-out;
}

.blob-1 {
   width: 600px;
   height: 600px;
   background: var(--accent-teal-glow);
   top: -200px;
   left: -200px;
}

.blob-2 {
   width: 500px;
   height: 500px;
   background: var(--accent-gold-glow);
   bottom: -100px;
   right: -100px;
   animation-delay: -5s;
}

@keyframes breathe {
   0% {
      transform: scale(1) translate(0, 0);
   }

   100% {
      transform: scale(1.2) translate(50px, 50px);
   }
}

/* =========================================
   STRICT HEADER & FOOTER
========================================= */
.global-header {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   background: rgba(11, 15, 25, 0.85);
   backdrop-filter: blur(20px);
   -webkit-backdrop-filter: blur(20px);
   z-index: 9999;
   border-bottom: 1px solid var(--border-subtle);
   transition: padding 0.4s ease, background 0.4s ease;
   padding: 1.5rem 0;
}

.global-header.scrolled {
   padding: 0.8rem 0;
   background: rgba(11, 15, 25, 0.98);
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.header-inner {
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.header-logo img {
   height: 50px;
   filter: brightness(0) invert(1);
}

.nav-menu {
   display: flex;
   gap: 3rem;
   align-items: center;
}

.nav-link {
   font-family: var(--font-heading);
   font-size: 1rem;
   font-weight: 500;
   color: var(--text-bright);
   position: relative;
   padding: 0.5rem 0;
   transition: color 0.3s ease;
}

.nav-link::after {
   content: '';
   position: absolute;
   bottom: 0;
   left: 0;
   width: 0;
   height: 2px;
   background: var(--accent-gold);
   transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
   color: var(--accent-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
   width: 100%;
}

/* Magnetic Button CTA */
.btn-magnetic {
   display: inline-flex;
   justify-content: center;
   align-items: center;
   padding: 1rem 2.5rem;
   background: transparent;
   color: var(--accent-gold);
   font-family: var(--font-heading);
   font-weight: 700;
   font-size: 1rem;
   border: 1px solid var(--accent-gold);
   border-radius: 50px;
   cursor: pointer;
   position: relative;
   overflow: hidden;
   transition: color 0.3s ease, transform 0.2s ease;
   z-index: 1;
   text-transform: uppercase;
   letter-spacing: 1px;
}

.btn-magnetic::before {
   content: '';
   position: absolute;
   top: 100%;
   left: 0;
   width: 100%;
   height: 100%;
   background: var(--accent-gold);
   transition: top 0.4s cubic-bezier(0.23, 1, 0.32, 1);
   z-index: -1;
   border-radius: 50% 50% 0 0;
}

.btn-magnetic:hover::before {
   top: 0;
   border-radius: 0;
}

.btn-magnetic:hover {
   color: var(--bg-main);
   box-shadow: 0 10px 20px var(--accent-gold-glow);
}

.mobile-nav-toggle {
   display: none;
   background: none;
   border: none;
   cursor: pointer;
   width: 35px;
   height: 24px;
   position: relative;
   z-index: 10000;
}

.mobile-nav-toggle span {
   display: block;
   width: 100%;
   height: 2px;
   background: var(--text-bright);
   position: absolute;
   left: 0;
   transition: 0.3s ease;
}

.mobile-nav-toggle span:nth-child(1) {
   top: 0;
}

.mobile-nav-toggle span:nth-child(2) {
   top: 11px;
}

.mobile-nav-toggle span:nth-child(3) {
   top: 22px;
}

.mobile-nav-toggle.open span:nth-child(1) {
   top: 11px;
   transform: rotate(45deg);
}

.mobile-nav-toggle.open span:nth-child(2) {
   opacity: 0;
}

.mobile-nav-toggle.open span:nth-child(3) {
   top: 11px;
   transform: rotate(-45deg);
}

.global-footer {
   background: #05080E;
   border-top: 1px solid var(--border-subtle);
   padding: 5rem 0 2rem;
   position: relative;
}

.footer-grid {
   display: grid;
   grid-template-columns: 2fr 1fr 1fr 1.5fr;
   gap: 4rem;
   margin-bottom: 4rem;
}

.footer-brand p {
   margin-top: 1.5rem;
   max-width: 300px;
   font-size: 0.95rem;
}

.footer-title {
   font-size: 1.2rem;
   color: var(--text-bright);
   margin-bottom: 1.5rem;
   position: relative;
   display: inline-block;
}

.footer-title::after {
   content: '';
   position: absolute;
   bottom: -5px;
   left: 0;
   width: 40px;
   height: 2px;
   background: var(--accent-teal);
}

.footer-links li {
   margin-bottom: 0.8rem;
}

.footer-links a {
   color: var(--text-dim);
   transition: var(--transition-smooth);
   font-size: 0.95rem;
   display: inline-flex;
   align-items: center;
}

.footer-links a::before {
   content: '›';
   margin-right: 8px;
   color: var(--accent-gold);
   opacity: 0;
   transform: translateX(-10px);
   transition: var(--transition-smooth);
   font-size: 1.2rem;
}

.footer-links a:hover {
   color: var(--accent-gold);
}

.footer-links a:hover::before {
   opacity: 1;
   transform: translateX(0);
}

.footer-contact li {
   display: flex;
   align-items: flex-start;
   gap: 1rem;
   margin-bottom: 1rem;
   font-size: 0.95rem;
}

.footer-contact i {
   color: var(--accent-teal);
   font-style: normal;
   font-size: 1.2rem;
}

.footer-bottom {
   text-align: center;
   padding-top: 2rem;
   border-top: 1px solid rgba(255, 255, 255, 0.05);
   font-size: 0.85rem;
}

/* =========================================
   SECTION 1: HERO (3D ORBITAL)
========================================= */
.hero-section {
   min-height: 100vh;
   display: flex;
   align-items: center;
   position: relative;
   padding-top: 80px;
   overflow: hidden;
}

.hero-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 2rem;
   align-items: center;
}

.hero-content h1 {
   font-size: 4.5rem;
   font-weight: 900;
   letter-spacing: -1px;
   margin-bottom: 1.5rem;
   line-height: 1.1;
}

.hero-content h1 span {
   background: linear-gradient(90deg, var(--accent-gold), #FFE066);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
}

.hero-content p {
   font-size: 1.2rem;
   margin-bottom: 3rem;
   max-width: 90%;
}

.hero-buttons {
   display: flex;
   gap: 1rem;
}

/* 3D Orbital Animation */
.hero-visual {
   display: flex;
   justify-content: center;
   align-items: center;
   height: 600px;
   position: relative;
   perspective: 1200px;
}

.orbital-system {
   position: relative;
   width: 400px;
   height: 400px;
   transform-style: preserve-3d;
   transform: rotateX(60deg) rotateY(-20deg) rotateZ(0deg);
   animation: systemRotate 30s infinite linear;
}

.orbit {
   position: absolute;
   top: 50%;
   left: 50%;
   border: 1px solid var(--accent-teal-glow);
   border-radius: 50%;
   transform: translate(-50%, -50%);
   transform-style: preserve-3d;
}

.orbit-1 {
   width: 100%;
   height: 100%;
   animation: spinOrbit 15s linear infinite;
}

.orbit-2 {
   width: 70%;
   height: 70%;
   border-color: var(--accent-gold-glow);
   border-style: dashed;
   animation: spinOrbitReverse 20s linear infinite;
}

.orbit-3 {
   width: 40%;
   height: 40%;
   border-color: rgba(255, 255, 255, 0.1);
   border-width: 2px;
   animation: spinOrbit 10s linear infinite;
}

.core-sphere {
   position: absolute;
   top: 50%;
   left: 50%;
   width: 60px;
   height: 60px;
   background: radial-gradient(circle at 30% 30%, #fff, var(--accent-teal));
   border-radius: 50%;
   transform: translate(-50%, -50%) rotateX(-60deg);
   box-shadow: 0 0 50px var(--accent-teal);
}

.data-node {
   position: absolute;
   width: 40px;
   height: 40px;
   background: var(--bg-card);
   border: 1px solid var(--accent-gold);
   border-radius: 50%;
   display: flex;
   justify-content: center;
   align-items: center;
   font-size: 0.8rem;
   font-weight: bold;
   color: var(--text-bright);
   top: -20px;
   left: 50%;
   transform: translateX(-50%) rotateX(-90deg);
   box-shadow: 0 0 15px var(--accent-gold-glow);
}

.orbit-2 .data-node {
   background: var(--accent-teal);
   border-color: var(--text-bright);
   top: 50%;
   left: -20px;
   transform: translateY(-50%) rotateY(90deg);
}

@keyframes systemRotate {
   0% {
      transform: rotateX(60deg) rotateY(-20deg) rotateZ(0deg);
   }

   100% {
      transform: rotateX(60deg) rotateY(-20deg) rotateZ(360deg);
   }
}

@keyframes spinOrbit {
   0% {
      transform: translate(-50%, -50%) rotateZ(0deg);
   }

   100% {
      transform: translate(-50%, -50%) rotateZ(360deg);
   }
}

@keyframes spinOrbitReverse {
   0% {
      transform: translate(-50%, -50%) rotateZ(360deg);
   }

   100% {
      transform: translate(-50%, -50%) rotateZ(0deg);
   }
}

/* =========================================
   SECTION 2: TRUST MARQUEE
========================================= */
.marquee-container {
   background: #080B14;
   padding: 2.5rem 0;
   border-top: 1px solid var(--border-subtle);
   border-bottom: 1px solid var(--border-subtle);
   display: flex;
   overflow: hidden;
   white-space: nowrap;
}

.marquee-track {
   display: inline-flex;
   gap: 4rem;
   padding-right: 4rem;
   animation: marqueeScroll 25s linear infinite;
   align-items: center;
}

.marquee-item {
   font-family: var(--font-heading);
   font-size: 1.5rem;
   font-weight: 700;
   color: #374151;
   text-transform: uppercase;
   transition: color 0.3s;
}

.marquee-item:hover {
   color: var(--accent-gold);
}

@keyframes marqueeScroll {
   0% {
      transform: translateX(0);
   }

   100% {
      transform: translateX(-100%);
   }
}

/* =========================================
   SECTION 3: ABOUT / STATS
========================================= */
.about-grid {
   display: grid;
   grid-template-columns: 1fr 1.2fr;
   gap: 5rem;
   align-items: center;
}

.about-img-wrap {
   position: relative;
   border-radius: 20px;
   overflow: hidden;
   aspect-ratio: 4/5;
}

.about-img-wrap::after {
   content: '';
   position: absolute;
   inset: 0;
   border: 2px solid var(--accent-teal);
   border-radius: 20px;
   transform: translate(15px, 15px);
   z-index: -1;
}

.glass-box {
   background: rgba(19, 26, 42, 0.7);
   backdrop-filter: blur(10px);
   border: 1px solid var(--border-subtle);
   padding: 3rem;
   border-radius: 20px;
   position: relative;
}

.stats-container {
   display: flex;
   gap: 2rem;
   margin-top: 3rem;
}

.stat-box {
   flex: 1;
   border-left: 2px solid var(--accent-gold);
   padding-left: 1.5rem;
}

.stat-num {
   font-size: 3rem;
   font-family: var(--font-heading);
   color: var(--text-bright);
   line-height: 1;
   margin-bottom: 0.5rem;
}

.stat-label {
   font-size: 0.9rem;
   text-transform: uppercase;
   letter-spacing: 1px;
   color: var(--text-dim);
}

/* =========================================
   SECTION 4: SERVICES (ACCORDION GRID)
========================================= */
.section-title {
   font-size: 3rem;
   margin-bottom: 1rem;
   text-transform: uppercase;
}

.section-subtitle {
   font-size: 1.1rem;
   color: var(--accent-teal);
   margin-bottom: 4rem;
   font-weight: 500;
   letter-spacing: 2px;
   text-transform: uppercase;
}

.services-layout {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 2rem;
}

.service-card {
   background: var(--bg-card);
   border: 1px solid var(--border-subtle);
   border-radius: 15px;
   padding: 3rem 2rem;
   position: relative;
   overflow: hidden;
   transition: var(--transition-smooth);
   group;
   cursor: pointer;
}

.service-card::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 0;
   background: linear-gradient(180deg, var(--accent-teal-glow), transparent);
   transition: height 0.4s ease;
   z-index: 0;
}

.service-card:hover::before {
   height: 100%;
}

.service-card:hover {
   transform: translateY(-10px);
   border-color: var(--accent-teal);
   box-shadow: var(--shadow-float);
}

.service-icon {
   width: 60px;
   height: 60px;
   background: rgba(20, 184, 166, 0.1);
   border-radius: 12px;
   display: flex;
   justify-content: center;
   align-items: center;
   margin-bottom: 1.5rem;
   position: relative;
   z-index: 1;
   transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
   background: var(--accent-teal);
   transform: scale(1.1) rotate(5deg);
}

.service-icon svg {
   width: 30px;
   height: 30px;
   fill: var(--accent-teal);
   transition: fill 0.4s;
}

.service-card:hover .service-icon svg {
   fill: var(--bg-main);
}

.service-content {
   position: relative;
   z-index: 1;
}

.service-content h3 {
   font-size: 1.5rem;
   margin-bottom: 1rem;
}

/* =========================================
   SECTION 5: INTERACTIVE DATA REPORTS
========================================= */
.reports-section {
   background: linear-gradient(to bottom, #080B14, var(--bg-main));
   border-top: 1px solid var(--border-subtle);
}

.report-ui {
   background: var(--bg-card);
   border-radius: 24px;
   border: 1px solid var(--border-subtle);
   padding: 3rem;
   display: grid;
   grid-template-columns: 250px 1fr;
   gap: 3rem;
   box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.report-tabs {
   display: flex;
   flex-direction: column;
   gap: 1rem;
}

.r-tab {
   background: transparent;
   border: 1px solid var(--border-subtle);
   color: var(--text-dim);
   padding: 1.2rem;
   text-align: left;
   border-radius: 12px;
   cursor: pointer;
   font-family: var(--font-heading);
   font-size: 1.1rem;
   transition: var(--transition-smooth);
}

.r-tab:hover {
   background: rgba(255, 255, 255, 0.02);
   color: var(--text-bright);
}

.r-tab.active {
   background: var(--accent-gold);
   color: var(--bg-main);
   border-color: var(--accent-gold);
   font-weight: bold;
}

.report-display {
   position: relative;
   min-height: 400px;
   display: flex;
   flex-direction: column;
   justify-content: center;
}

.r-panel {
   display: none;
   animation: fadeInRight 0.5s ease forwards;
}

.r-panel.active {
   display: block;
}

/* SVG Line Chart Animation */
.chart-svg {
   width: 100%;
   height: 250px;
   overflow: visible;
   margin-top: 2rem;
}

.chart-line {
   fill: none;
   stroke: var(--accent-teal);
   stroke-width: 4;
   stroke-linecap: round;
   stroke-linejoin: round;
   filter: drop-shadow(0 10px 10px rgba(20, 184, 166, 0.4));
   stroke-dasharray: 2000;
   stroke-dashoffset: 2000;
   animation: drawLine 2s ease-out forwards;
}

.chart-point {
   fill: var(--bg-card);
   stroke: var(--accent-gold);
   stroke-width: 3;
   r: 6;
   opacity: 0;
   animation: popIn 0.5s ease forwards;
}

.chart-point:nth-child(2) {
   animation-delay: 0.3s;
}

.chart-point:nth-child(3) {
   animation-delay: 0.6s;
}

.chart-point:nth-child(4) {
   animation-delay: 0.9s;
}

.chart-point:nth-child(5) {
   animation-delay: 1.2s;
}

.chart-point:nth-child(6) {
   animation-delay: 1.5s;
}

@keyframes drawLine {
   to {
      stroke-dashoffset: 0;
   }
}

@keyframes popIn {
   0% {
      opacity: 0;
      transform: scale(0);
   }

   100% {
      opacity: 1;
      transform: scale(1);
   }
}

@keyframes fadeInRight {
   from {
      opacity: 0;
      transform: translateX(30px);
   }

   to {
      opacity: 1;
      transform: translateX(0);
   }
}

/* =========================================
   SECTION 6: INDUSTRIES (MASONRY GRID)
========================================= */
.industry-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 1.5rem;
}

.ind-card {
   background: rgba(255, 255, 255, 0.02);
   border: 1px solid var(--border-subtle);
   padding: 3rem 2rem;
   text-align: center;
   border-radius: 16px;
   transition: var(--transition-smooth);
   cursor: crosshair;
}

.ind-card:hover {
   background: var(--bg-card-hover);
   border-color: var(--accent-gold);
   transform: translateY(-5px);
}

.ind-icon {
   font-size: 2.5rem;
   color: var(--accent-teal);
   margin-bottom: 1.5rem;
}

.ind-card h4 {
   font-size: 1.3rem;
   margin: 0;
}

/* =========================================
   SECTION 7: SVG PROCESS TIMELINE
========================================= */
.process-section {
   position: relative;
   overflow: hidden;
}

.process-wrapper {
   display: flex;
   flex-direction: column;
   gap: 4rem;
   position: relative;
   max-width: 800px;
   margin: 0 auto;
}

.process-wrapper::before {
   content: '';
   position: absolute;
   top: 0;
   bottom: 0;
   left: 40px;
   width: 2px;
   background: var(--border-subtle);
   z-index: 0;
}

.step-item {
   display: flex;
   gap: 3rem;
   position: relative;
   z-index: 1;
}

.step-number {
   width: 80px;
   height: 80px;
   background: var(--bg-main);
   border: 2px solid var(--accent-teal);
   border-radius: 50%;
   display: flex;
   justify-content: center;
   align-items: center;
   font-family: var(--font-heading);
   font-size: 2rem;
   font-weight: 700;
   color: var(--accent-teal);
   flex-shrink: 0;
   box-shadow: 0 0 20px rgba(20, 184, 166, 0.2);
   transition: var(--transition-smooth);
}

.step-item:hover .step-number {
   background: var(--accent-teal);
   color: var(--bg-main);
   transform: scale(1.1);
}

.step-content {
   background: var(--bg-card);
   padding: 2.5rem;
   border-radius: 16px;
   border: 1px solid var(--border-subtle);
   transition: var(--transition-smooth);
   flex: 1;
}

.step-item:hover .step-content {
   border-color: var(--accent-teal);
   transform: translateX(10px);
}

.step-content h3 {
   font-size: 1.5rem;
   color: var(--text-bright);
   margin-bottom: 0.5rem;
}

/* =========================================
   SECTION 8: TESTIMONIALS (3D SLIDER LOOK)
========================================= */
.testi-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 2rem;
   perspective: 1000px;
}

.testi-card {
   background: var(--bg-card);
   padding: 3rem;
   border-radius: 20px;
   border-top: 4px solid var(--accent-gold);
   position: relative;
   transition: transform 0.5s ease, box-shadow 0.5s ease;
   transform-style: preserve-3d;
}

.testi-card:hover {
   transform: translateY(-15px) rotateX(5deg);
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.testi-quote {
   font-size: 4rem;
   color: rgba(255, 255, 255, 0.05);
   position: absolute;
   top: 1rem;
   right: 2rem;
   font-family: serif;
   line-height: 1;
}

.testi-text {
   font-size: 1.1rem;
   font-style: italic;
   margin-bottom: 2rem;
   color: #D1D5DB;
}

.testi-author h4 {
   margin: 0;
   font-size: 1.1rem;
   color: var(--text-bright);
}

.testi-author p {
   margin: 0;
   font-size: 0.9rem;
   color: var(--accent-teal);
}

/* =========================================
   SECTION 9: CTA PRE-FOOTER
========================================= */
.cta-banner {
   background: linear-gradient(135deg, var(--bg-card) 0%, #0A1929 100%);
   border: 1px solid var(--border-subtle);
   border-radius: 30px;
   padding: 6rem 3rem;
   text-align: center;
   position: relative;
   overflow: hidden;
   box-shadow: inset 0 0 50px rgba(20, 184, 166, 0.1);
   margin: 0 2rem;
}

.cta-banner h2 {
   font-size: 3.5rem;
   margin-bottom: 1.5rem;
}

.cta-banner p {
   font-size: 1.2rem;
   max-width: 600px;
   margin: 0 auto 3rem;
   color: #D1D5DB;
}

/* =========================================
   FORMS & CONTACT PAGE
========================================= */
.contact-hero {
   padding: 12rem 0 5rem;
   text-align: center;
   background: radial-gradient(circle at 50% 100%, rgba(245, 166, 35, 0.1), transparent 60%);
}

.contact-hero h1 {
   font-size: 4rem;
}

.contact-container {
   display: grid;
   grid-template-columns: 1fr 1.5fr;
   gap: 4rem;
   padding-bottom: 8rem;
}

.contact-details h3 {
   font-size: 2rem;
   margin-bottom: 2rem;
   color: var(--accent-teal);
}

.c-info-item {
   display: flex;
   align-items: center;
   gap: 1.5rem;
   margin-bottom: 2rem;
}

.c-icon {
   width: 50px;
   height: 50px;
   background: rgba(20, 184, 166, 0.1);
   border-radius: 50%;
   display: flex;
   justify-content: center;
   align-items: center;
   color: var(--accent-teal);
   font-size: 1.5rem;
}

.form-wrapper {
   background: var(--bg-card);
   padding: 4rem;
   border-radius: 24px;
   border: 1px solid var(--border-subtle);
   box-shadow: var(--shadow-float);
}

.form-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 2rem;
}

.form-group {
   position: relative;
   margin-bottom: 1rem;
}

.form-group.full {
   grid-column: 1 / -1;
}

.form-group input,
.form-group textarea,
.form-group select {
   width: 100%;
   background: transparent;
   border: none;
   border-bottom: 2px solid var(--border-subtle);
   padding: 1rem 0;
   color: var(--text-bright);
   font-family: inherit;
   font-size: 1rem;
   transition: border-color 0.3s ease;
}

.form-group select option {
   background: var(--bg-card);
   color: var(--text-bright);
}

.form-group textarea {
   resize: vertical;
   min-height: 100px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
   outline: none;
   border-bottom-color: var(--accent-gold);
}

.form-group label {
   position: absolute;
   top: 1rem;
   left: 0;
   color: var(--text-dim);
   pointer-events: none;
   transition: 0.3s ease;
   font-size: 1rem;
}

.form-group input:focus~label,
.form-group input:valid~label,
.form-group textarea:focus~label,
.form-group textarea:valid~label {
   top: -15px;
   font-size: 0.8rem;
   color: var(--accent-gold);
}

/* =========================================
   LEGAL PAGES
========================================= */
.legal-header {
   padding: 12rem 0 4rem;
   text-align: center;
   border-bottom: 1px solid var(--border-subtle);
}

.legal-header h1 {
   font-size: 3.5rem;
   color: var(--accent-gold);
}

.legal-content {
   max-width: 900px;
   margin: 4rem auto 8rem;
   background: var(--bg-card);
   padding: 4rem;
   border-radius: 20px;
   border: 1px solid var(--border-subtle);
}

.legal-content h2 {
   font-size: 1.8rem;
   color: var(--text-bright);
   margin-top: 3rem;
   margin-bottom: 1rem;
   border-left: 4px solid var(--accent-teal);
   padding-left: 1rem;
}

.legal-content p {
   margin-bottom: 1.5rem;
   font-size: 1.05rem;
   color: #D1D5DB;
}

.legal-content ul {
   margin-left: 1.5rem;
   margin-bottom: 2rem;
}

.legal-content ul li {
   margin-bottom: 0.5rem;
   position: relative;
   padding-left: 1.5rem;
   color: #D1D5DB;
}

.legal-content ul li::before {
   content: '→';
   position: absolute;
   left: 0;
   color: var(--accent-gold);
}

/* =========================================
   ANIMATIONS & UTILITIES
========================================= */
.reveal {
   opacity: 0;
   transform: translateY(40px);
   transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
   opacity: 1;
   transform: translateY(0);
}

/* =========================================
   RESPONSIVE DESIGN
========================================= */
@media (max-width: 1024px) {

   .hero-grid,
   .about-grid,
   .contact-container {
      grid-template-columns: 1fr;
      text-align: center;
   }

   .hero-content h1 {
      font-size: 3.5rem;
   }

   .hero-buttons {
      justify-content: center;
   }

   .hero-visual {
      height: 400px;
   }

   .services-layout,
   .testi-grid {
      grid-template-columns: repeat(2, 1fr);
   }

   .report-ui {
      grid-template-columns: 1fr;
   }

   .report-tabs {
      flex-direction: row;
      overflow-x: auto;
      padding-bottom: 1rem;
   }

   .r-tab {
      flex: 1;
      text-align: center;
      white-space: nowrap;
   }

   .process-wrapper::before {
      left: 30px;
   }

   .step-number {
      width: 60px;
      height: 60px;
      font-size: 1.5rem;
   }
}

@media (max-width: 768px) {
   .nav-menu {
      position: fixed;
      top: 75px;
      left: 0;
      width: 100%;
      height: calc(100vh - 75px);
      background: var(--bg-main);
      flex-direction: column;
      justify-content: center;
      gap: 2rem;
      transform: translateX(100%);
      transition: transform 0.4s ease;
      z-index: 999;
   }

   .nav-menu.open {
      transform: translateX(0);
   }

   .mobile-nav-toggle {
      display: block;
   }

   .btn-magnetic.hide-mobile {
      display: none;
   }

   .services-layout,
   .testi-grid {
      grid-template-columns: 1fr;
   }

   .footer-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
      text-align: center;
   }

   .footer-title::after {
      left: 50%;
      transform: translateX(-50%);
   }

   .footer-contact li {
      justify-content: center;
   }

   .form-grid {
      grid-template-columns: 1fr;
   }

   .form-wrapper {
      padding: 2rem;
   }

   .cta-banner {
      padding: 3rem 1.5rem;
      margin: 0;
      border-radius: 15px;
   }
}