/* =========================================
   VARIABLES & GLOBAL RESETS
   ========================================= */
:root {
    --bg-dark: #0a0a0f;
    --bg-surface: #12121c;
    --bg-card: rgba(255, 255, 255, 0.03);
    --primary: #00f0ff;
    --secondary: #7000ff;
    --text-main: #f0f0f5;
    --text-muted: #9ba0b3;
    --font-main: 'Poppins', sans-serif;
    --transition-fast: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    --glow-primary: 0 0 20px rgba(0, 240, 255, 0.4);
    --glow-secondary: 0 0 20px rgba(112, 0, 255, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.dark-theme {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

/* =========================================
   CUSTOM CURSOR
   ========================================= */
.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid var(--secondary);
}

.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

/* =========================================
   TYPOGRAPHY
   ========================================= */
h1,
h2,
h3,
h4,
h5 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 span,
h2 span {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-heading p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 50px;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-fast);
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: none;
}

.btn-glow {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: #fff;
    box-shadow: var(--glow-primary);
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--secondary), var(--primary));
    z-index: -1;
    transition: opacity var(--transition-fast);
    opacity: 0;
}

.btn-glow:hover::before {
    opacity: 1;
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-secondary);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: rgba(0, 240, 255, 0.1);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* =========================================
   PRELOADER
   ========================================= */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.loader-content {
    text-align: center;
}

.preloader-logo {
    width: 150px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
    filter: brightness(1) invert(1);
}

.cyber-progress {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.cyber-bar {
    width: 0%;
    height: 100%;
    background: var(--primary);
    box-shadow: var(--glow-primary);
    animation: loadBar 2s ease forwards;
}

@keyframes loadBar {
    100% {
        width: 100%;
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* =========================================
   HEADER (STRICTLY IDENTICAL)
   ========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-fast);
}

.header.scrolled {
    padding: 10px 0;
    background: rgba(10, 10, 15, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo img {
    height: 40px;
    filter: drop-shadow(0 0 5px rgba(0, 240, 255, 0.5));
    filter: brightness(1) invert(1);
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition-fast);
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-toggle,
.nav-close {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* =========================================
   HERO SECTION (INDEX)
   ========================================= */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: floatOrb 10s infinite alternate;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -100px;
    left: -100px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--secondary);
    bottom: -100px;
    right: -100px;
    animation-delay: -5s;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    transform: perspective(500px) rotateX(60deg);
    transform-origin: bottom;
    opacity: 0.3;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid var(--primary);
    border-radius: 20px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* 3D Dashboard Mockup */
.floating-dashboard {
    background: var(--bg-surface);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: perspective(1000px) rotateY(-15deg) rotateX(10deg);
    animation: floatDash 6s infinite alternate ease-in-out;
    padding: 20px;
}

.dash-header {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f56;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #27c93f;
}

.chart-mockup {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    height: 150px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.bar {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px 4px 0 0;
    transition: var(--transition-slow);
}

.bar.primary {
    background: var(--primary);
    box-shadow: 0 0 15px var(--primary);
}

.h-40 {
    height: 40%;
}

.h-50 {
    height: 50%;
}

.h-70 {
    height: 70%;
}

.h-90 {
    height: 90%;
}

.h-100 {
    height: 100%;
}

.dash-stats {
    display: flex;
    gap: 15px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
    flex: 1;
    font-weight: 600;
    color: var(--primary);
}

@keyframes floatDash {
    0% {
        transform: perspective(1000px) rotateY(-15deg) rotateX(10deg) translateY(0);
    }

    100% {
        transform: perspective(1000px) rotateY(-15deg) rotateX(10deg) translateY(-20px);
    }
}

@keyframes floatOrb {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(30px, 30px);
    }
}

/* =========================================
   MARQUEE SECTION
   ========================================= */
.marquee-section {
    padding: 40px 0;
    background: var(--bg-surface);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    gap: 80px;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}

.marquee-content span {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.marquee-content span i {
    color: var(--primary);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* =========================================
   SERVICES SECTION (3D CARDS)
   ========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card-3d {
    perspective: 1000px;
    height: 350px;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.service-card-3d:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    padding: 40px 30px;
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.card-front {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(0, 240, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
    box-shadow: var(--glow-primary);
}

.card-front h3 {
    margin-bottom: 15px;
}

.card-front p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, var(--bg-surface), #1a1a2e);
    border-color: var(--primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-back h3 {
    color: var(--primary);
    margin-bottom: 20px;
}

.card-back ul {
    margin-bottom: auto;
}

.card-back ul li {
    margin-bottom: 10px;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-back ul li::before {
    content: '✓';
    color: var(--primary);
}

.btn-text {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
}

/* =========================================
   INDUSTRIES SECTION
   ========================================= */
.industries-section {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
}

.industry-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.industry-content,
.industry-visual {
    flex: 1;
}

.industry-accordion {
    margin-top: 40px;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.03);
    margin-bottom: 15px;
    border-radius: 8px;
    border-left: 3px solid transparent;
    transition: var(--transition-fast);
}

.accordion-item.active {
    border-left-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
}

.accordion-header {
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.accordion-item.active .accordion-header {
    color: var(--primary);
}

.accordion-body {
    padding: 0 20px 20px;
    color: var(--text-muted);
    display: none;
}

.accordion-item.active .accordion-body {
    display: block;
    animation: fadeIn 0.5s ease;
}

/* 3D Hologram Cube */
.industry-visual {
    display: flex;
    justify-content: center;
    perspective: 800px;
}

.hologram-cube {
    width: 200px;
    height: 200px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotateCube 15s infinite linear;
}

.face {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(0, 240, 255, 0.1);
    border: 2px solid rgba(0, 240, 255, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 4rem;
    color: var(--primary);
    box-shadow: inset 0 0 20px rgba(0, 240, 255, 0.2);
}

.face.front {
    transform: translateZ(100px);
}

.face.back {
    transform: rotateY(180deg) translateZ(100px);
}

.face.right {
    transform: rotateY(90deg) translateZ(100px);
}

.face.left {
    transform: rotateY(-90deg) translateZ(100px);
}

.face.top {
    transform: rotateX(90deg) translateZ(100px);
}

.face.bottom {
    transform: rotateX(-90deg) translateZ(100px);
}

@keyframes rotateCube {
    0% {
        transform: rotateX(0deg) rotateY(0deg);
    }

    100% {
        transform: rotateX(360deg) rotateY(360deg);
    }
}

/* =========================================
   CALCULATOR SECTION
   ========================================= */
.calc-wrapper {
    background: var(--bg-surface);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.range-group {
    margin-bottom: 30px;
}

.range-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
}

.range-group span {
    color: var(--primary);
    font-weight: 700;
}

input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    background: transparent;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    margin-top: -8px;
    box-shadow: var(--glow-primary);
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.calc-results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.result-box {
    background: rgba(255, 255, 255, 0.02);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.result-box h4 {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.result-value {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.result-box p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.result-box.highlight {
    border-color: rgba(112, 0, 255, 0.5);
    background: rgba(112, 0, 255, 0.05);
}

.result-box.highlight .result-value {
    color: var(--secondary);
}

.result-box.highlight-glow {
    border-color: var(--primary);
    background: rgba(0, 240, 255, 0.05);
    box-shadow: var(--glow-primary);
}

.result-box.highlight-glow .result-value {
    color: var(--primary);
}

/* =========================================
   REPORTS SECTION
   ========================================= */
.report-dashboard {
    display: flex;
    background: var(--bg-surface);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.report-sidebar {
    width: 250px;
    background: rgba(0, 0, 0, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.report-sidebar ul li {
    padding: 20px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-fast);
    font-weight: 500;
}

.report-sidebar ul li:hover,
.report-sidebar ul li.active {
    background: rgba(0, 240, 255, 0.05);
    color: var(--primary);
    border-left: 4px solid var(--primary);
}

.report-content {
    flex: 1;
    padding: 40px;
}

.report-panel {
    display: none;
}

.report-panel.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.report-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.badge.success {
    background: rgba(39, 201, 63, 0.1);
    color: #27c93f;
    border-color: #27c93f;
}

.svg-chart-container {
    width: 100%;
    height: 300px;
}

.line-chart {
    width: 100%;
    height: 100%;
}

.chart-line {
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    animation: drawLine 3s ease forwards;
}

.chart-area {
    opacity: 0;
    animation: fadeInArea 2s ease 1.5s forwards;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fadeInArea {
    to {
        opacity: 1;
    }
}

/* =========================================
   TESTIMONIALS SECTION
   ========================================= */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testi-card {
    background: var(--bg-surface);
    padding: 40px;
    border-radius: 15px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-fast);
}

.testi-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 240, 255, 0.3);
}

.quote-icon {
    font-size: 2rem;
    color: rgba(0, 240, 255, 0.2);
    position: absolute;
    top: 20px;
    right: 30px;
}

.testi-text {
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testi-author .avatar {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    font-size: 1.2rem;
}

.testi-author h4 {
    margin: 0;
    font-size: 1rem;
}

.testi-author span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section {
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(112, 0, 255, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.cta-container h2 {
    font-size: 3rem;
}

.cta-container p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* =========================================
   INNER PAGES (CONTACT & LEGAL)
   ========================================= */
.inner-page {
    padding-top: 80px;
}

.page-header {
    padding: 100px 0 50px;
    background: linear-gradient(to bottom, rgba(0, 240, 255, 0.05), transparent);
}

.slim-header {
    padding: 80px 0 20px;
}

.page-header h1 {
    font-size: 3.5rem;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* Contact Specific */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    background: var(--bg-surface);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-card .icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 240, 255, 0.1);
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
}

.info-card h3 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.info-card p,
.info-card a {
    color: var(--text-muted);
}

.cyber-form {
    background: var(--bg-surface);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cyber-form h3 {
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-family: inherit;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

/* Legal Pages */
.legal-layout .legal-card {
    background: var(--bg-surface);
    padding: 60px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-card h2 {
    margin-top: 40px;
    color: var(--primary);
    font-size: 1.5rem;
}

.legal-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

/* =========================================
   LIVE CHAT
   ========================================= */
.live-chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    color: #000;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--glow-primary);
    transition: transform var(--transition-fast);
}

.chat-toggle:hover {
    transform: scale(1.1);
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    background: var(--bg-surface);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: none;
    flex-direction: column;
    overflow: hidden;
    transform-origin: bottom right;
    animation: scaleUp 0.3s ease;
}

.chat-window.active {
    display: flex;
}

.chat-header {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

.chat-header button {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

.chat-body {
    padding: 20px;
    height: 300px;
    overflow-y: auto;
    background: var(--bg-dark);
}

.chat-msg {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    max-width: 80%;
}

.chat-msg.bot {
    border-bottom-left-radius: 0;
    color: var(--primary);
}

.chat-input {
    display: flex;
    padding: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.chat-input input {
    flex: 1;
    background: none;
    border: none;
    color: #fff;
    outline: none;
    padding-right: 10px;
}

.chat-input button {
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    font-size: 1.2rem;
}

/* =========================================
   FOOTER (STRICTLY IDENTICAL)
   ========================================= */
.footer {
    background: #050508;
    position: relative;
    padding-top: 80px;
}

.footer-top-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent);
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-about .logo img {
    height: 45px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(0, 240, 255, 0.3));
    filter: brightness(1) invert(1);
}

.footer-about-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: var(--transition-fast);
}

.footer-socials a:hover {
    background: var(--primary);
    color: #000;
    box-shadow: var(--glow-primary);
}

.footer-title {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 15px;
}

.footer-links ul li a,
.footer-services ul li a {
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.footer-links ul li a:hover,
.footer-services ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.contact-list li i {
    color: var(--primary);
    margin-top: 5px;
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a:hover {
    color: var(--primary);
}

/* =========================================
   ANIMATIONS & MEDIA QUERIES
   ========================================= */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleUp {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

[data-observe] {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

[data-observe="fade-up"] {
    transform: translateY(50px);
}

[data-observe="fade-left"] {
    transform: translateX(50px);
}

[data-observe="fade-right"] {
    transform: translateX(-50px);
}

[data-observe="zoom-in"] {
    transform: scale(0.9);
}

[data-observe].is-visible {
    opacity: 1;
    transform: translate(0) scale(1);
}

@media (max-width: 1024px) {

    .hero-container,
    .contact-grid,
    .calc-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    h1 {
        font-size: 3rem !important;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--bg-surface);
        flex-direction: column;
        padding: 80px 40px;
        transition: 0.4s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
    }

    .menu-toggle,
    .nav-close {
        display: block;
    }

    .header-actions .btn {
        display: none;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .industry-flex,
    .report-dashboard {
        flex-direction: column;
    }

    .report-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .report-sidebar ul {
        display: flex;
        overflow-x: auto;
    }
}