/* ==========================================================================
   CSS RESET & QUANTUM THEME VARIABLES
   ========================================================================== */
:root {
    /* Backgrounds */
    --space-dark: #020c1b;
    --space-navy: #0a192f;
    --space-light: #112240;
    --space-lightest: #233554;

    /* Accents */
    --cyan-primary: #64ffda;
    --cyan-glow: rgba(100, 255, 218, 0.4);
    --blue-secondary: #48cae4;
    --blue-glow: rgba(72, 202, 228, 0.4);

    /* Text Colors */
    --text-white: #e6f1ff;
    --text-slate: #8892b0;
    --text-slate-light: #a8b2d1;
    --text-dark: #020c1b;

    /* Typography */
    --font-sans: 'SF Pro Display', 'San Francisco', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, sans-serif;
    --font-mono: 'SF Mono', 'Fira Code', 'Fira Mono', 'Roboto Mono', monospace;

    /* Sizing & Layout */
    --nav-height: 100px;
    --nav-scroll-height: 70px;
    --max-width: 1440px;
    --section-pad: 100px;

    /* Transitions & Shadows */
    --transition-fast: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    --transition-slow: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    --shadow-soft: 0 10px 30px -15px rgba(2, 12, 27, 0.7);
    --shadow-cyan: 0 0 20px rgba(100, 255, 218, 0.2);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--space-dark);
    color: var(--text-slate);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
    /* Custom cursor applied */
}

::selection {
    background-color: var(--cyan-primary);
    color: var(--space-dark);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--space-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--space-lightest);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--cyan-primary);
}

/* ==========================================================================
   CUSTOM CURSOR
   ========================================================================== */
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    background-color: var(--cyan-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    box-shadow: 0 0 10px var(--cyan-primary);
}

.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 36px;
    height: 36px;
    border: 1px solid var(--cyan-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9998;
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

/* ==========================================================================
   TYPOGRAPHY & UTILITIES
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-white);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(3rem, 6vw, 5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    display: inline-block;
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

.text-cyan {
    color: var(--cyan-primary);
}

.text-mono {
    font-family: var(--font-mono);
    font-size: 0.9rem;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2.5rem;
}

.section {
    padding: var(--section-pad) 0;
    position: relative;
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    color: var(--cyan-primary);
    background-color: transparent;
    border: 1px solid var(--cyan-primary);
    border-radius: 4px;
    padding: 1rem 2rem;
    font-family: var(--font-mono);
    line-height: 1;
    cursor: none;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--cyan-glow);
    transform: translateY(100%);
    transition: var(--transition-fast);
    z-index: -1;
}

.btn:hover {
    color: var(--space-dark);
}

.btn:hover::before {
    transform: translateY(0);
}

.btn-fill {
    background-color: var(--cyan-primary);
    color: var(--space-dark);
    font-weight: 700;
}

.btn-fill:hover {
    background-color: transparent;
    color: var(--cyan-primary);
    box-shadow: var(--shadow-cyan);
}

/* ==========================================================================
   HEADER (STRICTLY CONSISTENT ACROSS ALL PAGES)
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background-color: rgba(2, 12, 27, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    height: var(--nav-scroll-height);
    box-shadow: var(--shadow-soft);
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-wrapper img {
    height: 50px;
    filter: invert(1) brightness(2);
}

.site-header.scrolled .logo-wrapper img {
    height: 45px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-link {
    color: var(--text-white);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    position: relative;
    cursor: none;
}

.nav-link::before {
    content: '0' counter(nav-item) '.';
    counter-increment: nav-item;
    color: var(--cyan-primary);
    margin-right: 5px;
}

.nav-menu {
    counter-reset: nav-item;
}

.nav-link:hover {
    color: var(--cyan-primary);
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: none;
    width: 35px;
    height: 24px;
    position: relative;
    z-index: 1001;
}

.mobile-toggle span {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--cyan-primary);
    left: 0;
    transition: var(--transition-fast);
}

.mobile-toggle span:nth-child(1) {
    top: 0;
}

.mobile-toggle span:nth-child(2) {
    top: 11px;
}

.mobile-toggle span:nth-child(3) {
    top: 22px;
}

.mobile-toggle.active span:nth-child(1) {
    top: 11px;
    transform: rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    top: 11px;
    transform: rotate(-45deg);
}

/* ==========================================================================
   HERO SECTION (WITH 3D ORBIT CSS)
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: var(--nav-height);
}

/* Background Grid Pattern */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(100, 255, 218, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(100, 255, 218, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -1;
    perspective: 1000px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    max-width: 540px;
    color: var(--text-slate-light);
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

/* 3D Holographic Orbit */
.hero-visual {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.orbit-system {
    position: relative;
    width: 300px;
    height: 300px;
    transform-style: preserve-3d;
    transform: rotateX(60deg) rotateY(-20deg);
}

.orbit-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(100, 255, 218, 0.2);
    border-radius: 50%;
    transform-style: preserve-3d;
}

.ring-1 {
    animation: orbitSpin 10s linear infinite;
}

.ring-2 {
    animation: orbitSpin 15s linear infinite reverse;
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    border-color: rgba(72, 202, 228, 0.3);
}

.ring-3 {
    animation: orbitSpin 20s linear infinite;
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
}

.orbit-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, var(--cyan-primary) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%) rotateX(-60deg) rotateY(20deg);
    box-shadow: 0 0 50px var(--cyan-primary);
    animation: corePulse 3s ease-in-out infinite;
}

.satellite {
    position: absolute;
    top: -10px;
    left: 50%;
    width: 20px;
    height: 20px;
    background-color: var(--blue-secondary);
    border-radius: 50%;
    transform: translateX(-50%) rotateX(-90deg);
    box-shadow: 0 0 20px var(--blue-secondary);
}

/* ==========================================================================
   STATS SECTION
   ========================================================================== */
.stats-wrapper {
    background-color: var(--space-navy);
    padding: 4rem 0;
    border-top: 1px solid rgba(100, 255, 218, 0.1);
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-box {
    padding: 2rem;
    position: relative;
}

.stat-box::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 20%;
    height: 60%;
    width: 1px;
    background-color: rgba(100, 255, 218, 0.2);
}

.stat-box:last-child::after {
    display: none;
}

.stat-num {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-white);
    font-family: var(--font-mono);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--cyan-primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-section {
    background-color: var(--space-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.section-title {
    display: flex;
    align-items: center;
    white-space: nowrap;
    margin-bottom: 2.5rem;
}

.section-title::after {
    content: '';
    display: block;
    height: 1px;
    width: 300px;
    background-color: var(--space-lightest);
    margin-left: 20px;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-slate-light);
}

.about-image {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    background-color: var(--space-navy);
    border: 1px solid var(--space-lightest);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(100, 255, 218, 0.1);
    transition: var(--transition-slow);
}

.about-image:hover::before {
    background-color: transparent;
}

/* ==========================================================================
   SERVICES SECTION (NEUMORPHIC GLOW CARDS)
   ========================================================================== */
.services-section {
    background-color: var(--space-navy);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: var(--space-light);
    border-radius: 4px;
    padding: 3rem 2rem;
    position: relative;
    transition: var(--transition-fast);
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, var(--cyan-primary), var(--blue-secondary));
    border-radius: 4px;
    z-index: -1;
    opacity: 0;
    transition: var(--transition-fast);
    transform: scale(0.98);
}

.service-card:hover {
    transform: translateY(-10px);
    background-color: var(--space-dark);
}

.service-card:hover::before {
    opacity: 1;
    transform: scale(1.02);
}

.service-icon {
    font-size: 3rem;
    color: var(--cyan-primary);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.service-card ul {
    list-style: none;
    margin-top: 1.5rem;
}

.service-card ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-slate);
}

.service-card ul li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--cyan-primary);
}

/* ==========================================================================
   INTERACTIVE CAMPAIGN REPORT SIMULATOR
   ========================================================================== */
.reports-section {
    background-color: var(--space-dark);
}

.dashboard-container {
    background-color: var(--space-navy);
    border: 1px solid var(--space-lightest);
    border-radius: 8px;
    display: grid;
    grid-template-columns: 250px 1fr;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.dash-sidebar {
    background-color: var(--space-light);
    padding: 2rem 0;
    border-right: 1px solid var(--space-lightest);
}

.dash-tab {
    width: 100%;
    background: transparent;
    border: none;
    border-left: 3px solid transparent;
    padding: 1rem 2rem;
    text-align: left;
    color: var(--text-slate);
    font-family: var(--font-mono);
    font-size: 0.9rem;
    cursor: none;
    transition: var(--transition-fast);
}

.dash-tab:hover,
.dash-tab.active {
    background-color: rgba(100, 255, 218, 0.05);
    color: var(--cyan-primary);
    border-left-color: var(--cyan-primary);
}

.dash-main {
    padding: 3rem;
}

.dash-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--space-lightest);
    padding-bottom: 1rem;
}

.dash-title {
    color: var(--text-white);
    font-size: 1.5rem;
    margin: 0;
}

.dash-metric {
    font-size: 2.5rem;
    color: var(--cyan-primary);
    font-family: var(--font-mono);
    font-weight: 700;
    line-height: 1;
}

.bar-chart {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    height: 250px;
    padding-top: 20px;
}

.bar-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    height: 100%;
}

.bar-fill {
    width: 100%;
    background: linear-gradient(to top, rgba(100, 255, 218, 0.2), var(--cyan-primary));
    border-radius: 4px 4px 0 0;
    height: 0%;
    /* JS animated */
    transition: height 1s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 -5px 15px rgba(100, 255, 218, 0.2);
}

.bar-label {
    color: var(--text-slate);
    font-family: var(--font-mono);
    font-size: 0.8rem;
}

/* ==========================================================================
   INDUSTRY EXPERTISE TABS
   ========================================================================== */
.industry-section {
    background-color: var(--space-navy);
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.ind-box {
    background-color: var(--space-dark);
    border: 1px solid var(--space-lightest);
    padding: 2rem;
    text-align: center;
    border-radius: 4px;
    transition: var(--transition-fast);
}

.ind-box:hover {
    border-color: var(--cyan-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(100, 255, 218, 0.1);
}

.ind-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--blue-secondary);
}

/* ==========================================================================
   PROCESS TIMELINE
   ========================================================================== */
.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 4rem auto 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background-color: var(--space-lightest);
    transform: translateX(-50%);
}

.process-step {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-content {
    width: 45%;
    background-color: var(--space-light);
    padding: 2rem;
    border-radius: 4px;
    position: relative;
}

.step-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background-color: var(--space-dark);
    border: 2px solid var(--cyan-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--cyan-primary);
    font-family: var(--font-mono);
    font-weight: 700;
    z-index: 2;
}

/* ==========================================================================
   TESTIMONIALS (MASONRY GRID)
   ========================================================================== */
.testimonials-section {
    background-color: var(--space-dark);
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testi-card {
    background-color: var(--space-navy);
    padding: 2.5rem;
    border-radius: 4px;
    border: 1px solid var(--space-lightest);
}

.testi-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testi-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--space-light);
    border: 2px solid var(--cyan-primary);
}

.testi-name {
    color: var(--text-white);
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
}

.testi-role {
    color: var(--cyan-primary);
    font-family: var(--font-mono);
    font-size: 0.8rem;
}

.testi-body {
    font-size: 1rem;
    color: var(--text-slate-light);
    font-style: italic;
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.cta-section {
    background-color: var(--space-light);
    text-align: center;
    border-top: 1px solid var(--space-lightest);
    border-bottom: 1px solid var(--space-lightest);
    padding: 8rem 0;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
}

/* ==========================================================================
   PAGES SPECIFICS (CONTACT & LEGAL)
   ========================================================================== */
.page-header {
    padding: 200px 0 100px;
    background-color: var(--space-navy);
    text-align: center;
    border-bottom: 1px solid var(--space-lightest);
}

.page-header h1 {
    font-size: 4rem;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.page-header .text-mono {
    color: var(--cyan-primary);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.contact-info-panel {
    background-color: var(--space-light);
    padding: 3rem;
    border-radius: 4px;
}

.contact-detail {
    margin-bottom: 2.5rem;
}

.contact-detail h4 {
    color: var(--cyan-primary);
    font-family: var(--font-mono);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.contact-detail p {
    color: var(--text-white);
    font-size: 1.2rem;
}

.contact-form {
    background-color: var(--space-navy);
    padding: 3rem;
    border-radius: 4px;
    border: 1px solid var(--space-lightest);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    color: var(--cyan-primary);
    font-family: var(--font-mono);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    background-color: var(--space-dark);
    border: 1px solid var(--space-lightest);
    padding: 1rem;
    color: var(--text-white);
    border-radius: 4px;
    font-family: var(--font-sans);
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--cyan-primary);
    box-shadow: 0 0 10px rgba(100, 255, 218, 0.1);
}

/* Legal Content */
.legal-box {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--space-navy);
    padding: 4rem;
    border-radius: 4px;
    border: 1px solid var(--space-lightest);
}

.legal-box h2 {
    color: var(--cyan-primary);
    margin-top: 3rem;
    font-size: 1.5rem;
}

.legal-box h2:first-child {
    margin-top: 0;
}

.legal-box p {
    color: var(--text-slate-light);
}

.legal-box ul {
    list-style: none;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-box ul li {
    position: relative;
    color: var(--text-slate-light);
    margin-bottom: 0.5rem;
}

.legal-box ul li::before {
    content: '▹';
    position: absolute;
    left: -1.5rem;
    color: var(--cyan-primary);
}

/* ==========================================================================
   FOOTER (STRICTLY CONSISTENT ACROSS ALL PAGES)
   ========================================================================== */
.site-footer {
    background-color: var(--space-dark);
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--space-lightest);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    max-width: 300px;
}

.footer-heading {
    color: var(--text-white);
    font-family: var(--font-mono);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-slate);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--cyan-primary);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 10px;
    color: var(--text-slate);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.footer-contact li span {
    color: var(--cyan-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--space-lightest);
    font-family: var(--font-mono);
    font-size: 0.8rem;
}

.footer-legal a {
    margin-left: 1.5rem;
}

.footer-legal a:hover {
    color: var(--cyan-primary);
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes orbitSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes corePulse {

    0%,
    100% {
        transform: translate(-50%, -50%) rotateX(-60deg) rotateY(20deg) scale(1);
        box-shadow: 0 0 40px var(--cyan-primary);
    }

    50% {
        transform: translate(-50%, -50%) rotateX(-60deg) rotateY(20deg) scale(1.1);
        box-shadow: 0 0 80px var(--cyan-primary);
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {

    .hero-grid,
    .about-grid,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual {
        height: 400px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testi-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .dashboard-container {
        grid-template-columns: 1fr;
    }

    .dash-sidebar {
        display: flex;
        overflow-x: auto;
        border-right: none;
        border-bottom: 1px solid var(--space-lightest);
        padding: 1rem;
    }

    .dash-tab {
        width: auto;
        white-space: nowrap;
        border-left: none;
        border-bottom: 3px solid transparent;
    }

    .dash-tab:hover,
    .dash-tab.active {
        border-left-color: transparent;
        border-bottom-color: var(--cyan-primary);
    }

    .process-timeline::before {
        left: 30px;
    }

    .step-content {
        width: calc(100% - 80px);
        margin-left: auto;
    }

    .process-step,
    .process-step:nth-child(even) {
        flex-direction: row;
    }

    .step-number {
        left: 30px;
    }
}

@media (max-width: 768px) {
    body {
        cursor: auto;
    }

    .cursor-dot,
    .cursor-ring {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: var(--nav-height);
        right: -100%;
        width: 100%;
        height: calc(100vh - var(--nav-height));
        background-color: var(--space-dark);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition-slow);
    }

    .nav-menu.active {
        right: 0;
    }

    .mobile-toggle {
        display: block;
    }

    .stats-grid,
    .testi-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .stat-box::after {
        display: none;
    }

    .dash-main {
        padding: 1.5rem;
    }

    .bar-chart {
        gap: 10px;
    }

    .legal-box {
        padding: 2rem;
    }
}