/* ==========================================================================
   1. VARIABLES & RESET
   ========================================================================== */
:root {
    /* Colors */
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --bg-card-hover: #1f1f1f;
    --text-main: #e0e0e0;
    --text-muted: #a0a0a0;

    /* Accents */
    --primary: #00f3ff;
    /* Cyan */
    --primary-dark: #00c2cc;
    --secondary: #bc13fe;
    /* Neon Purple */
    --accent: #ffd700;
    /* Gold */
    --danger: #ff2a6d;

    /* Gradients */
    --grad-main: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --grad-dark: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%);

    /* Typography */
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --header-height: 80px;

    /* Effects */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 30px rgba(0, 243, 255, 0.1);
    --glow: 0 0 15px rgba(0, 243, 255, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ==========================================================================
   2. UTILITIES & ANIMATIONS
   ========================================================================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

.highlight {
    color: var(--primary);
}

.highlight-yellow {
    color: var(--accent);
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.loader-content {
    text-align: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(0, 243, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: spin 1s ease-in-out infinite;
    margin: 0 auto 20px;
}

.loading-text {
    font-size: 1.2rem;
    letter-spacing: 3px;
    color: var(--primary);
}

/* Keyframes */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes glitch {
    0% {
        transform: translate(0);
    }

    20% {
        transform: translate(-2px, 2px);
    }

    40% {
        transform: translate(-2px, -2px);
    }

    60% {
        transform: translate(2px, 2px);
    }

    80% {
        transform: translate(2px, -2px);
    }

    100% {
        transform: translate(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 243, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 243, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 243, 255, 0);
    }
}

/* Animation Classes */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* Glitch Text Effect */
.glitch-text {
    position: relative;
    color: var(--primary);
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
}

.glitch-text::before {
    left: 2px;
    text-shadow: -1px 0 var(--secondary);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim-1 5s infinite linear alternate-reverse;
}

.glitch-text::after {
    left: -2px;
    text-shadow: -1px 0 var(--danger);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim-2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim-1 {
    0% {
        clip: rect(20px, 9999px, 80px, 0);
    }

    100% {
        clip: rect(90px, 9999px, 10px, 0);
    }
}

@keyframes glitch-anim-2 {
    0% {
        clip: rect(60px, 9999px, 10px, 0);
    }

    100% {
        clip: rect(10px, 9999px, 80px, 0);
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary);
    color: #000;
}

.btn-primary:hover {
    background: #fff;
    box-shadow: 0 0 20px var(--primary);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--secondary);
    color: #fff;
}

.btn-secondary:hover {
    background: var(--secondary);
    box-shadow: 0 0 20px var(--secondary);
}

.btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}

.btn-block {
    width: 100%;
}

/* ==========================================================================
   3. HEADER & NAVIGATION
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.5);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease, padding 0.3s ease;
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    padding: 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
}

.logo img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.main-nav {
    display: none;
}

@media (min-width: 992px) {
    .main-nav {
        display: block;
    }
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-main);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.header-actions {
    display: none;
}

@media (min-width: 992px) {
    .header-actions {
        display: block;
    }
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: block;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
}

@media (min-width: 992px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.hamburger-box {
    width: 30px;
    height: 24px;
    position: relative;
}

.hamburger-inner {
    width: 100%;
    height: 2px;
    background: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: '';
    width: 100%;
    height: 2px;
    background: #fff;
    position: absolute;
    transition: all 0.3s ease;
}

.hamburger-inner::before {
    top: -8px;
}

.hamburger-inner::after {
    top: 8px;
}

.mobile-menu-toggle.active .hamburger-inner {
    background: transparent;
}

.mobile-menu-toggle.active .hamburger-inner::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-inner::after {
    top: 0;
    transform: rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    z-index: 1001;
    transition: right 0.5s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
}

.mobile-nav {
    position: relative;
    z-index: 2;
    text-align: center;
}

.mobile-nav-list li {
    margin: 20px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.mobile-menu.active .mobile-nav-list li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .mobile-nav-list li:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-menu.active .mobile-nav-list li:nth-child(2) {
    transition-delay: 0.2s;
}

.mobile-menu.active .mobile-nav-list li:nth-child(3) {
    transition-delay: 0.3s;
}

.mobile-menu.active .mobile-nav-list li:nth-child(4) {
    transition-delay: 0.4s;
}

.mobile-menu.active .mobile-nav-list li:nth-child(5) {
    transition-delay: 0.5s;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #fff;
    text-transform: uppercase;
    position: relative;
}

.mobile-nav-link:hover {
    color: var(--primary);
}

.nav-num {
    font-size: 1rem;
    color: var(--secondary);
    vertical-align: super;
}

/* ==========================================================================
   4. HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--header-height);
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.hero-text-wrapper {
    flex: 1;
    max-width: 600px;
}

.hero-subtitle {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    border-left: 3px solid var(--secondary);
    padding-left: 10px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 90%;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.hero-visual {
    flex: 1;
    display: none;
    justify-content: center;
    perspective: 1000px;
}

@media (min-width: 992px) {
    .hero-visual {
        display: flex;
    }
}

/* 3D Cube Animation */
.cube {
    width: 200px;
    height: 200px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotateCube 20s infinite linear;
}

.face {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(0, 243, 255, 0.1);
    border: 2px solid var(--primary);
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.2) inset;
    backdrop-filter: blur(2px);
}

/* Specific selectors using .face class to avoid conflicts with timeline */
.face.front {
    transform: rotateY(0deg) 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);
}

@keyframes rotateCube {
    from {
        transform: rotateX(0deg) rotateY(0deg);
    }

    to {
        transform: rotateX(360deg) rotateY(360deg);
    }
}

.scroll-down-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    z-index: 2;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: mouse-scroll 1.5s infinite;
}

@keyframes mouse-scroll {
    0% {
        top: 6px;
        opacity: 1;
    }

    100% {
        top: 24px;
        opacity: 0;
    }
}

/* ==========================================================================
   5. STATS SECTION
   ========================================================================== */
.stats-section {
    background: var(--bg-card);
    padding: 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    text-align: center;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-number {
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: 700;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   6. SERVICES SECTION
   ========================================================================== */
.section-header {
    margin-bottom: 60px;
}

.section-tag {
    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
}

.section-desc {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-muted);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--primary);
    transition: height 0.3s ease;
}

.service-card:hover::before {
    height: 100%;
}

.card-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.card-content h3 {
    font-size: 1.5rem;
}

.service-list {
    margin: 20px 0;
}

.service-list li {
    margin-bottom: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.service-list li i {
    color: var(--secondary);
    margin-right: 10px;
}

.learn-more {
    color: #fff;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.learn-more:hover {
    color: var(--primary);
    gap: 10px;
}

/* ==========================================================================
   7. ROI CALCULATOR
   ========================================================================== */
.calculator-section {
    background: linear-gradient(to right, #0a0a0a, #111);
    position: relative;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-lg-5,
.col-lg-7,
.col-lg-6 {
    padding: 0 15px;
}

.col-lg-5 {
    width: 100%;
}

.col-lg-7 {
    width: 100%;
}

.col-lg-6 {
    width: 100%;
}

@media (min-width: 992px) {
    .col-lg-5 {
        width: 41.66%;
    }

    .col-lg-7 {
        width: 58.33%;
    }

    .col-lg-6 {
        width: 50%;
    }
}

.align-center {
    align-items: center;
}

.calc-features {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.cf-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.cf-item i {
    color: var(--accent);
}

.calculator-card {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.calc-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.calc-input-group {
    flex: 1;
    min-width: 200px;
}

.calc-input-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-muted);
}

input[type="range"] {
    width: 100%;
    height: 6px;
    background: #333;
    border-radius: 5px;
    outline: none;
    -webkit-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: 0 0 10px var(--primary);
}

.range-value {
    margin-top: 10px;
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 700;
}

.calc-results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.result-box {
    background: #111;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.result-box.projected {
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid var(--primary);
}

.result-box .label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.result-box .value {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: #fff;
}

.badge {
    font-size: 0.7rem;
    background: var(--primary);
    color: #000;
    padding: 2px 6px;
    border-radius: 4px;
    width: fit-content;
    margin-top: 5px;
}

.disclaimer-text {
    font-size: 0.75rem;
    color: #555;
    margin-top: 15px;
}

/* ==========================================================================
   8. PROCESS SECTION
   ========================================================================== */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 50px auto 0;
}

.timeline-line {
    position: absolute;
    content: '';
    width: 4px;
    height: 100%;
    background: #333;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    box-sizing: border-box;
}

.timeline-item.left {
    left: 0;
    text-align: right;
}

.timeline-item.right {
    left: 50%;
}

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--bg-dark);
    border: 3px solid var(--primary);
    border-radius: 50%;
    top: 25px;
    z-index: 2;
}

.left .timeline-dot {
    right: -12px;
}

.right .timeline-dot {
    left: -12px;
}

.timeline-content {
    background: var(--bg-card);
    padding: 25px;
    border-radius: 8px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.timeline-content:hover {
    border-color: var(--secondary);
    transform: translateY(-3px);
}

.step-num {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.05);
    font-weight: 700;
    position: absolute;
    top: 0;
    font-family: var(--font-heading);
}

.left .step-num {
    left: 20px;
}

.right .step-num {
    right: 20px;
}

@media (max-width: 768px) {
    .timeline-line {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 0;
    }

    .timeline-item.left {
        left: 0;
        text-align: left;
    }

    .timeline-item.right {
        left: 0;
    }

    .left .timeline-dot,
    .right .timeline-dot {
        left: 10px;
    }

    .left .step-num {
        left: auto;
        right: 20px;
    }
}

/* ==========================================================================
   9. INDUSTRIES & TESTIMONIALS
   ========================================================================== */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (min-width: 768px) {
    .industry-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.ind-item {
    background: #111;
    padding: 30px 20px;
    text-align: center;
    border-radius: 6px;
    transition: 0.3s;
    border: 1px solid transparent;
}

.ind-item:hover {
    border-color: var(--primary);
    background: #161616;
}

.ind-item i {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

/* Testimonials */
.testimonials-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-card {
    display: none;
    background: var(--bg-card);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    animation: fadeIn 0.5s ease;
}

.testimonial-card.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.quote-icon {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.review-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 30px;
    color: #ddd;
}

.reviewer-details h4 {
    margin-bottom: 5px;
    color: var(--primary);
}

.reviewer-details span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.rating {
    color: var(--accent);
    margin-top: 10px;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.control-btn {
    background: transparent;
    border: 1px solid #333;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.control-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #000;
}

/* ==========================================================================
   10. REPORT SECTION & CTA
   ========================================================================== */
.report-visuals {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.report-card {
    background: #1a1a1a;
    width: 300px;
    height: 250px;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 243, 255, 0.2);
}

.report-card.floating {
    animation: float 6s ease-in-out infinite;
}

.chart-mockup {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 100px;
    width: 100%;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #333;
}

.bar {
    width: 20%;
    background: var(--grad-main);
    border-radius: 4px 4px 0 0;
}

.bar-1 {
    height: 40%;
    animation: grow-bar 2s ease-out;
}

.bar-2 {
    height: 60%;
    animation: grow-bar 2.2s ease-out;
}

.bar-3 {
    height: 50%;
    animation: grow-bar 2.4s ease-out;
}

.bar-4 {
    height: 90%;
    animation: grow-bar 2.6s ease-out;
}

@keyframes grow-bar {
    from {
        height: 0;
    }
}

.feature-list {
    margin: 30px 0;
}

.feature-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.feature-list i {
    color: var(--primary);
}

.cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 3rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* ==========================================================================
   11. FOOTER
   ========================================================================== */
.footer {
    background: #050505;
    padding-top: 80px;
    border-top: 1px solid #222;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

@media (min-width: 768px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-top {
        grid-template-columns: 1.5fr 1.5fr  1.5fr;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    filter: brightness(0) invert(1);
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 1px solid #333;
}

.social-link:hover {
    background: var(--primary);
    color: #000;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--primary);
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: var(--text-muted);
}

.footer-col ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--text-muted);
}

.footer-contact i {
    color: var(--secondary);
    margin-top: 5px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    background: #111;
    border: 1px solid #333;
    padding: 10px;
    color: #fff;
    border-radius: 4px;
}

.newsletter-form button {
    background: var(--primary);
    border: none;
    padding: 0 15px;
    border-radius: 4px;
    cursor: pointer;
}

.footer-bottom {
    border-top: 1px solid #1a1a1a;
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 20px;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-bottom p {
    color: #666;
    font-size: 0.9rem;
}

.footer-legal-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-legal-links a {
    color: #666;
    font-size: 0.9rem;
}

.footer-legal-links a:hover {
    color: var(--primary);
}

/* ==========================================================================
   12. LEGAL PAGES & CONTACT SPECIFIC
   ========================================================================== */
.page-header-section {
    padding: 180px 0 100px;
    text-align: center;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8), var(--bg-dark));
    position: relative;
}

.page-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.page-subtitle {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1.2rem;
}

.legal-content {
    padding-bottom: 100px;
}

.legal-section {
    margin-bottom: 40px;
    background: var(--bg-card);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-section h2 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.legal-section p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

/* Contact Form */
.contact-section-standalone {
    padding-bottom: 100px;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-info,
.contact-form-wrapper {
    flex: 1;
    min-width: 300px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item .contact-icon {
    width: 50px;
    height: 50px;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary);
    font-size: 1.2rem;
    border: 1px solid #333;
}

.contact-form {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #444;
    padding: 10px 0;
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom-color: var(--primary);
}

.form-group label {
    position: absolute;
    top: 10px;
    left: 0;
    color: #666;
    transition: 0.3s;
    pointer-events: none;
}

.form-group input:focus~label,
.form-group input:not(:placeholder-shown)~label,
.form-group textarea:focus~label,
.form-group textarea:not(:placeholder-shown)~label {
    top: -20px;
    font-size: 0.8rem;
    color: var(--primary);
}

/* Success Popup */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.popup-content {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    max-width: 400px;
    border: 1px solid var(--primary);
    position: relative;
}

.popup-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.popup-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
}